diff --git a/chart-unit.cabal b/chart-unit.cabal
--- a/chart-unit.cabal
+++ b/chart-unit.cabal
@@ -1,5 +1,5 @@
 name:           chart-unit
-version:        0.6.3.0
+version:        0.7.0.0
 synopsis:       Native haskell charts.
 description:    <<https://tonyday567.github.io/other/mainExample.svg>>
                 .
@@ -75,71 +75,6 @@
       Chart.Rect
       Chart.Svg
       Chart.Text
-  other-modules:
-      Paths_chart_unit
-  default-language: Haskell2010
-
-executable chart-unit-gallery
-  main-is: gallery.hs
-  hs-source-dirs:
-      examples
-  ghc-options: -funbox-strict-fields -fforce-recomp -threaded -rtsopts -with-rtsopts=-N
-  build-depends:
-      base >=4.7 && <5
-    , chart-unit
-    , diagrams-lib
-    , formatting
-    , generic-lens-labels
-    , lens
-    , mwc-probability >= 2.0.2
-    , mwc-random
-    , numhask
-    , numhask-prelude
-    , numhask-histogram
-    , numhask-range
-    , primitive
-    , protolude
-    , text
-    , time
-  other-modules:
-      Paths_chart_unit
-  default-language: Haskell2010
-
-executable chart-unit-main-example
-  main-is: mainExample.hs
-  hs-source-dirs:
-      examples
-  ghc-options: -funbox-strict-fields -fforce-recomp -threaded -rtsopts -with-rtsopts=-N
-  build-depends:
-      base >=4.7 && <5
-    , chart-unit
-    , generic-lens-labels
-    , lens
-    , numhask
-    , numhask-prelude
-    , numhask-range
-  other-modules:
-      Paths_chart_unit
-  default-language: Haskell2010
-
-executable chart-unit-source-examples
-  main-is: sourceExamples.hs
-  hs-source-dirs:
-      examples
-  ghc-options: -funbox-strict-fields -fforce-recomp -threaded -rtsopts -with-rtsopts=-N
-  build-depends:
-      base >=4.7 && <5
-    , chart-unit
-    , diagrams-lib
-    , generic-lens-labels
-    , lens
-    , numhask
-    , numhask-prelude
-    , numhask-range
-    , protolude
-    , text
-  other-modules:
-      Paths_chart_unit
   default-language: Haskell2010
 
 test-suite test
diff --git a/examples/gallery.hs b/examples/gallery.hs
deleted file mode 100644
--- a/examples/gallery.hs
+++ /dev/null
@@ -1,484 +0,0 @@
-{-# LANGUAGE DataKinds #-}
-{-# LANGUAGE DeriveGeneric #-}
-{-# LANGUAGE FlexibleContexts #-}
-{-# LANGUAGE NegativeLiterals #-}
-{-# LANGUAGE NoImplicitPrelude #-}
-{-# LANGUAGE OverloadedLabels #-}
-{-# LANGUAGE OverloadedStrings #-}
-{-# LANGUAGE RankNTypes #-}
-{-# OPTIONS_GHC -Wall #-}
-{-# OPTIONS_GHC -Wno-type-defaults #-}
-{-# OPTIONS_GHC -fno-warn-name-shadowing #-}
-{-# OPTIONS_GHC -Wno-unused-top-binds #-}
- 
-import Chart
-import Control.Lens hiding (beside)
-import Control.Monad.Primitive (PrimState)
-import Data.Generics.Labels ()
-import Data.List ((!!), head, zipWith3)
-import Data.Time
-import Data.Time.Calendar.WeekDate
-import qualified Diagrams.Prelude as D
-import qualified Diagrams.TwoD.Text
-import Formatting
-import NumHask.Histogram
-import NumHask.Prelude as P
-import System.Random.MWC
-import System.Random.MWC.Probability
-
-import qualified Data.Text as Text
-
--- * example data generation
--- Standard normal random variates in one dimension.
-rvs :: Gen (PrimState IO) -> Int -> IO [Double]
-rvs gen n = samples n standardNormal gen
-
--- This generates n V2 random variates where the x and y parts are correlated.
-rvsCorr :: Gen (PrimState IO) -> Int -> Double -> IO [Pair Double]
-rvsCorr gen n c = do
-  s0 <- rvs gen n
-  s1 <- rvs gen n
-  let s1' = zipWith (\x y -> c * x + sqrt (1 - c * c) * y) s0 s1
-  pure $ zipWith Pair s0 s1'
-
--- * a grid
-gridExample :: Chart b
-gridExample =
-  hud
-    (def & #grids .~
-     [ GridOptions
-         Vert
-         (GridExact GridOuterPos 10)
-         (LineOptions 0.001 (black `withOpacity` 1))
-     , GridOptions
-         Hori
-         (GridExact GridOuterPos 10)
-         (LineOptions 0.001 (black `withOpacity` 1))
-     ] &
-     #axes .
-     ix 0 %~
-     ((#tickStyle .~
-       TickPlaced
-         (zip (grid OuterPos (Range -0.5 0.5) 10) (replicate 11 "abcdef"))) .
-      (#label . #text . #alignH .~ AlignLeft) .
-      (#gap .~ 0) .
-      (#label . #text . #rotation .~ -45)) &
-     #axes .
-     ix 1 %~
-     (#label . #text . #alignH .~ AlignLeft))
-    sixbyfour
-    one
-
-timeData :: Int -> IO [Day]
-timeData n = do
-  now <- getCurrentTime
-  let (UTCTime today _) = now
-  let toWeekDay x =
-        let (_, _, d) = toWeekDate x
-        in d
-  let isWeekend x = toWeekDay x `elem` [6, 7]
-  pure $ filter (not . isWeekend) $ take n $ (`addDays` today) <$> [0 ..]
-
--- * dealing with time
-timeExample :: [Day] -> Chart b
-timeExample dates =
-  hud (#axes .~ [adef, defYAxis] $ def) sixbyfour r <>
-  glyphChart
-    [#color .~ red `withOpacity` 1 $ #borderSize .~ 0 $ #size .~ 0.01 $ def]
-    sixbyfour
-    r
-    [xs'] <>
-  lglyphChart
-    [def]
-    [ #shape .~ Square $ #color .~ blue `withOpacity` 1 $ #borderSize .~ 0 $
-      #size .~ 0.04 $ def
-    ]
-    sixbyfour
-    r
-    [ zip
-        (Text.pack . formatTime defaultTimeLocale "%a, %d %b" .
-         (\x -> dates !! x) .
-         fst <$>
-         ts)
-        ((\x -> xs' !! x) . fst <$> ts)
-    ]
-  where
-    today = Data.List.head dates
-    g = 6
-    xs = fromIntegral . (`diffDays` today) <$> dates
-    xs' = lineOneD xs
-    r = range [xs']
-    (Ranges rx _) = r
-    (ts, _) =
-      placedTimeLabelDiscontinuous
-        PosInnerOnly
-        Nothing
-        g
-        ((`UTCTime` 0) <$> dates)
-    ts' = (\(x, y) -> (fromIntegral x, y)) <$> ts
-    (Ranges aspx _) = sixbyfour
-    adef = adjustAxis def aspx rx $ #tickStyle .~ TickPlaced ts' $ defXAxis
-
--- * scatter chart
-mkScatterData :: IO [[Pair Double]]
-mkScatterData = do
-  g <- create
-  xys <- rvsCorr g 1000 0.7
-  xys1 <- rvsCorr g 1000 -0.5
-  pure
-    [ (\(Pair x y) -> Pair (x ^^ 2 + 3 * x - 1) (y + 1)) <$> xys
-    , (\(Pair x y) -> Pair (x ^^ 2 + 3 * x + 1) y) <$> xys1
-    ]
-
-scatterHistExample :: [[Pair Double]] -> Chart b
-scatterHistExample xys =
-  D.beside
-    (D.r2 (1, 0))
-    (D.beside (D.r2 (0, -1)) (sc1 <> hud1) (D.reflectY histx))
-    (D.reflectY $ D.rotateBy (3 / 4) histy)
-  where
-    sopts =
-      zipWith3
-        (\x y z -> GlyphOptions x y (ucolor 0 0 0 0) 0 z)
-        [0.01, 0.02, 0.03]
-        ((\x -> withOpacity (d3Colors1 x) 0.3) <$> [6, 8])
-        [Circle, Triangle, Square]
-    mainAspect = Rect -0.5 0.5 -0.5 0.5
-    minorAspect = Rect -0.5 0.5 -0.1 0.1
-    sc1 = glyphChart_ sopts mainAspect xys
-    histx = rectChart_ defHist minorAspect hx
-    histy = rectChart_ defHist minorAspect hy
-    hud1 =
-      hud
-        (#axes .~ [#place .~ PlaceTop $ #label . #orientation .~ Pair 0 1 $ def] $
-         def)
-        mainAspect
-        (range xys)
-    defHist =
-      (\x -> #borderSize .~ 0 $ #color .~ d3Colors1 x `withOpacity` 0.5 $ def) <$>
-      [6, 8]
-    makeHist n = makeRects IgnoreOvers . regular n
-    hx = makeHist 50 . fmap (view D._x) <$> xys
-    hy = makeHist 50 . fmap (view D._y) <$> xys
-
--- * haskell survey example
-data SurveyQ = SurveyQ
-  { surveyTitle :: Text
-  , surveyData :: [(Text, Int)]
-  , surveyBarGap :: Double
-  , surveyNumberDrop :: Double
-  , surveyBarColor :: AlphaColour Double
-  , surveyNumberColor :: AlphaColour Double
-  , surveyAutoOptions :: AutoOptions
-  } deriving (Show, Generic)
-
-q7 :: SurveyQ
-q7 =
-  SurveyQ
-    "How frequently do you use Haskell?"
-    [ ("Daily", 469)
-    , ("Weekly", 452)
-    , ("Monthly", 215)
-    , ("Yearly", 36)
-    , ("Rarely", 51)
-    ]
-    0.2
-    0.07
-    (ucolor 0.341 0.224 0.388 1)
-    (ucolor 1 1 0.33 1)
-    (#allowDiagonal .~ False $ #maxXRatio .~ 0.16 $ def)
- 
-q24 :: SurveyQ
-q24 =
-  SurveyQ
-    "Which editors do you use for Haskell?"
-    [ ("Vim", 534)
-    , ("Emacs", 501)
-    , ("VS Code", 202)
-    , ("Atom", 169)
-    , ("Sublime", 92)
-    , ("Notepad++", 28)
-    , ("VS", 3)
-    , ("Other", 134)
-    ]
-    0.2
-    (-0.03)
-    (ucolor 0.341 0.224 0.388 1)
-    (ucolor 0.33 0.33 0.33 1)
-    def
-
-surveyChart :: SurveyQ -> Chart b
-surveyChart (SurveyQ t d bgap ngap bc tc ao) =
-  surveyText tc ngap (snd <$> d) <> surveyBars bc bgap (snd <$> d) <>
-  surveyHud ao t d
-
-surveyBars :: AlphaColour Double -> Double -> [Int] -> Chart b
-surveyBars rc gap d =
-  rectChart
-    [#borderSize .~ 0 $ #color .~ rc $ def]
-    sixbyfour
-    (barRange [fromIntegral <$> d])
-    [rectBars gap $ fromIntegral <$> d]
-
-surveyHud :: AutoOptions -> Text -> [(Text, Int)] -> Chart b
-surveyHud ao t d =
-  hud
-    (#outerPad .~ 1 $ #titles .~ [(def, t)] $ #axes .~
-     [ #tickStyle .~ TickRound 4 $ defYAxis
-     , adjustAxis ao aspx rx $ #gap .~ 0 $ #tickStyle .~ TickLabels (fst <$> d) $
-       defXAxis
-     ] $
-     def)
-    sixbyfour
-    r
-  where
-    r = barRange [fromIntegral . snd <$> d]
-    (Ranges rx _) = r
-    (Ranges aspx _) = sixbyfour
-
-surveyText :: AlphaColour Double -> Double -> [Int] -> Chart b
-surveyText tc gap ys =
-  textChart
-    (repeat (#color .~ tc $ def))
-    sixbyfour
-    (barRange [fromIntegral <$> ys])
-    [ zipWith
-        (\x y ->
-           ( show y
-           , Pair
-               (x + 0.5)
-               ((if y > 0
-                   then -ngap
-                   else ngap) +
-                fromIntegral y)))
-        [0 ..]
-        ys
-    ]
-  where
-    ngap = gap * fromIntegral (maximum ys) :: Double
-
--- * one-dim chart example
-makeQuantiles :: Double -> IO [Double]
-makeQuantiles n = do
-  g <- create
-  xs <- rvs g 100000
-  pure (regularQuantiles n xs)
-
-skinnyExample :: [Double] -> [Double] -> Chart b
-skinnyExample qs qs' = hud' <> ticks' <> labels'
-  where
-    r = Ranges (space qs) (Range 0 0.2)
-    hud' =
-      hud
-      (HudOptions
-        1.1
-        [#label . #text . #size .~ 0.25 $ def]
-        []
-        []
-        []
-        clear)
-      skinny
-      r
-    labels' =
-      textChart
-      [#alignH .~ AlignLeft $ #rotation .~ 45 $ #size .~ 0.2 $ def]
-      skinny
-      r
-      [ zipWith
-        (\x y -> (x, Pair y 0.05))
-        ["min", "3rd Q", "median", "1st Q", "max"]
-        qs'
-      ]
-    ticks' = glyphChart [def] skinny r [(`Pair` 0.02) <$> qs]
-
--- * comparing histograms
-makeHistDiffExample :: IO ([Rect Double], [Rect Double])
-makeHistDiffExample = do
-  g <- create
-  xys <- rvs g 1000
-  xys1 <- rvs g 1000
-  let cuts = grid OuterPos (Range -5.0 5.0) 50
-  pure
-    ( makeRects IgnoreOvers (fill cuts xys)
-    , makeRects IgnoreOvers (fill cuts ((1.5 *) <$> xys1)))
-
-histDiffExample :: ([Rect Double], [Rect Double]) -> Chart b
-histDiffExample (h1, h2) =
-  let deltah =
-        zipWith (\(Rect x y z w) (Rect _ _ _ w') -> Rect x y z (w - w')) h1 h2
-      mainAspect = Rect -0.75 0.75 -0.5 0.5
-      botAspect = Rect -0.75 0.75 -0.2 0.2
-      (Ranges rx ry) = fold $ fold [h1, h2]
-      (Ranges _ deltary) = fold (abs <$> deltah)
-  in D.pad 1.1 $
-     D.beside
-       (D.r2 (0, -1))
-       (rectChart
-          [ #borderColor .~ ucolor 0 0 0 0 $
-            #color .~ ucolor 0.365 0.647 0.855 0.2 $
-            def
-          , #borderColor .~ ucolor 0 0 0 0 $
-            #color .~ ucolor 0.88 0.53 0.23 0.8 $
-            def
-          ]
-          mainAspect
-          (Ranges rx ry)
-          [h1, h2])
-       (rectChart
-          [ #borderColor .~ ucolor 0 0 0 0 $
-            #color .~ ucolor 0.88 0.53 0.23 0.8 $
-            def
-          ]
-          botAspect
-          (Ranges rx deltary)
-          [deltah]) <>
-        hud def botAspect (Ranges rx deltary)
-
--- * clipping
-clip :: Rect Double -> Chart b -> Chart b
-clip (Rect xl xu yl yu) c =
-  D.clipped
-    (D.pathFromLocTrail $ D.moveTo (D.p2 (xl, yl)) $ D.scaleY (yu - yl) $
-     D.scaleX (xu - xl) $
-     D.moveOriginTo (D.p2 (-0.5, -0.5)) D.unitSquare)
-    c
-
-grp :: Int -> [a] -> [[a]]
-grp n =
-  unfoldr
-    (\x ->
-       let y = splitAt n x
-       in if null (fst y)
-            then Nothing
-            else Just y)
-
--- | chop a chart extent into a double list of Rects
-chop ::
-  ( D.Renderable (D.Path D.V2 Double) b
-  , D.Renderable (Diagrams.TwoD.Text.Text Double) b) =>
-  Pair Int -> Chart b -> [[Rect Double]]
-chop p@(Pair _ n) ch = grp n $ gridSpace (Rect xl xu yl yu) p
-  where
-    (xl, xu) = fromMaybe (-0.5, 0.5) (D.extentX ch)
-    (yl, yu) = fromMaybe (-0.5, 0.5) (D.extentY ch)
-
-clippingExample ::
-     RectOptions
-  -> Double
-  -> Int
-  -> Chart b
-  -> Chart b
-clippingExample rcfg p n ch =
-  stack (Pair 0 1) (D.pad p . D.centerXY) $
-  hori (\a -> D.pad p $ bound rcfg 1 $ D.centerXY $ clip a ch) <$>
-  chop (Pair n n) ch
-
--- * schoolbook
-schoolbookHud :: Chart b
-schoolbookHud =
-  hud
-    (#axes .~ [] $
-     #titles .~ [(def, "y = x² - 3")] $
-     #grids .~
-     [ GridOptions
-         Vert
-         (GridExact GridOuterPos 10)
-         (LineOptions 0.005 schoolBlue)
-     , GridOptions
-         Hori
-         (GridExact GridOuterPos 10)
-         (LineOptions 0.005 schoolBlue)
-     , GridOptions
-         Vert
-         (GridExact GridOuterPos 50)
-         (LineOptions 0.002 schoolBlue)
-     , GridOptions
-         Hori
-         (GridExact GridOuterPos 50)
-         (LineOptions 0.002 schoolBlue)
-     ] $
-     def)
-    asquare
-    (Rect -5 5 -5 5)
-  where
-    schoolBlue = ucolor 0.19 0.74 0.89 0.7
-
-parabola :: Rect Double -> (Double -> Double) -> Int -> Range Double -> Chart b
-parabola r f grain xscope =
-  lineChart
-    [#size .~ 0.01 $ #color .~ ucolor 0.6 0.6 0.6 1 $ def]
-    asquare
-    r
-    [dataXY f xscope grain]
-
-ceptLines ::
-    Rect Double
-  -> Rect Double
-  -> (Double -> Double)
-  -> Double
-  -> Chart b
-ceptLines asp r@(Ranges rx ry) f x =
-  mconcat $ lines (#color .~ ucolor 0.2 0.2 0.2 1 $ #size .~ 0.005 $ def) .
-  fmap (Chart.project r asp) <$>
-  [[Pair (lower rx) (f x), Pair x (f x)], [Pair x (lower ry), Pair x (f x)]]
-
-cepts ::
-    Rect Double
-  -> Rect Double
-  -> (Double -> Double)
-  -> Double
-  -> Chart b
-cepts a r@(Ranges rx ry) f x =
-  textChart
-    [def, #alignH .~ AlignCenter $ #rotation .~ 0 $ def]
-    a
-    r
-    [ [("x = " <> sformat (fixed 1) x, Pair x (lower ry - 1))]
-    , [("y = " <> sformat (fixed 1) (f x), Pair (lower rx - 1.5) (f x))]
-    ]
-
-schoolbookExample :: Double -> Chart b
-schoolbookExample x =
-  bound (#color .~ ucolor 1 1 1 0.1 $ def) 1.05 $ schoolbookHud <>
-  parabola r f grain xscope <>
-  ceptLines asquare r f x <>
-  glyphChart [#color .~ red `withOpacity` 0.5 $ def] asquare r [[Pair x (f x)]] <>
-  cepts asquare r f x
-  where
-    f x = x * x - 3
-    r = Rect -5 5 -5 5
-    xscope = Range -3 3
-    grain = 50
-
-main :: IO ()
-main = do
-  putStrLn ("gridExample" :: Text)
-  fileSvg "other/gridExample.svg" def gridExample
-  ts <- timeData 200
-  putStrLn ("timeExample" :: Text)
-  fileSvg "other/timeExample.svg" def $ timeExample ts
-  xys <- mkScatterData
-  putStrLn ("scatterHistExample" :: Text)
-  fileSvg "other/scatterHistExample.svg" def (scatterHistExample xys)
-  putStrLn ("skinnyExample" :: Text)
-  qs <- makeQuantiles 20
-  qs' <- makeQuantiles 4
-  fileSvg "other/skinnyExample.svg" (#size .~ Pair 600 150 $ def) $
-    skinnyExample qs qs'
-  putStrLn ("histDiffExample" :: Text)
-  hs <- makeHistDiffExample
-  fileSvg "other/histDiffExample.svg" (#size .~ Pair 600 600 $ def) $
-    histDiffExample hs
-  putStrLn ("clippingExample" :: Text)
-  fileSvg "other/clippingExample.svg" (#size .~ Pair 600 600 $ def) $
-    clippingExample
-      (#color .~ ucolor 0.3 0.3 0.3 0.1 $ def)
-      1.1
-      5
-      (schoolbookExample -1)
-  putStrLn ("schoolbookExample" :: Text)
-  fileSvg "other/schoolbookExample.svg" (#size .~ Pair 400 400 $ def)
-    (schoolbookExample -1)
-  putStrLn ("haskell survey examples" :: Text)
-  fileSvg "other/q7Example.svg" def $ surveyChart q7
-  fileSvg "other/q24Example.svg" def $ surveyChart q24
diff --git a/examples/mainExample.hs b/examples/mainExample.hs
deleted file mode 100644
--- a/examples/mainExample.hs
+++ /dev/null
@@ -1,83 +0,0 @@
-{-# LANGUAGE FlexibleContexts #-}
-{-# LANGUAGE NoImplicitPrelude #-}
-{-# LANGUAGE OverloadedStrings #-}
-{-# LANGUAGE OverloadedLabels #-}
-{-# OPTIONS_GHC -Wall #-}
-
-import Chart
-import Control.Lens
-import Data.Generics.Labels()
-import NumHask.Prelude
-
-ls :: [[Pair Double]]
-ls =
-  map (uncurry Pair) <$>
-  [ [(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)]
-  ]
-
-lopts :: [LineOptions]
-lopts =
-  zipWith
-  (\x y -> LineOptions x (withOpacity (d3Colors1 y) 0.6))
-  [0.01, 0.02, 0.005]
-  [0,1,2]
-
-as :: [AxisOptions]
-as = 
-  [ defXAxis
-  , defYAxis
-  , #label . #orientation .~ Pair 0 1 $
-    #place .~ PlaceTop $
-    defXAxis
-  , #label . #orientation .~ Pair 1 0 $
-    #place .~ PlaceRight $
-    defYAxis
-  ] 
-
-titles' :: [(TitleOptions, Text)]
-titles' =
-  [ (def, "Example Chart")
-  , ( #align .~ AlignCenter $
-      #text . #rotation .~ 90 $
-      #text . #size .~ 0.12 $
-      #place .~ PlaceLeft $
-      def
-    , "left axis title")
-  , ( #text . #color .~ ublue $
-      #text . #size .~ 0.08 $
-      #align .~ AlignRight $
-      #place .~ PlaceBottom $
-      def
-    , "bottom right, non-essential note")
-  ]
-
-legends' :: [(LegendType, Text)]
-legends' =
-  [(LegendText def, "legend")] <>
-  [(LegendPixel (blob ublue) 0.05, "pixel")] <>
-  [(LegendRect def 0.05, "rect")] <>
-  [(LegendGLine def def 0.10, "glyph+line")] <>
-  [(LegendGlyph def, "just a glyph")] <>
-  zipWith
-    (\x y -> (LegendLine x 0.05, y))
-    lopts
-    ["short", "much longer name", "line 3"]
-
-mainExample :: Chart b
-mainExample =
-  renderChart
-  (ChartOptions
-   Nothing
-   sixbyfour
-   [ LineChart (zip lopts ls)
-   , HudChart $
-     #titles .~ titles' $
-     #axes .~ as $
-     #axes %~ map (#outerPad .~ 1) $
-     #legends .~ [#chartType .~ legends' $ def] $
-     def])
-
-main :: IO ()
-main = fileSvg "other/mainExample.svg" def mainExample
diff --git a/examples/sourceExamples.hs b/examples/sourceExamples.hs
deleted file mode 100644
--- a/examples/sourceExamples.hs
+++ /dev/null
@@ -1,519 +0,0 @@
-{-# LANGUAGE DataKinds #-}
-{-# LANGUAGE FlexibleContexts #-}
-{-# LANGUAGE NegativeLiterals #-}
-{-# LANGUAGE NoImplicitPrelude #-}
-{-# LANGUAGE OverloadedLabels #-}
-{-# LANGUAGE OverloadedStrings #-}
-{-# LANGUAGE RankNTypes #-}
-{-# OPTIONS_GHC -Wall #-}
-{-# OPTIONS_GHC -fno-warn-name-shadowing #-}
-{-# OPTIONS_GHC -fno-warn-type-defaults #-}
-
--- | examples used in haddock docs
-import Chart
-import Control.Lens
-import Data.Generics.Labels()
-import NumHask.Prelude
-import qualified Data.Text as Text
-import qualified Diagrams.Prelude as D
-
--- * Chart.Core examples 
-scaleExample :: IO ()
-scaleExample =
-  fileSvg "other/scaleExample.svg" (#size .~ Pair 300 120 $ def) $
-  withHud
-  def
-  widescreen
-  (Rect 0 12 0 0.2)
-  (lineChart (repeat def))
-  (vlineOneD ((0.01*) <$> [0..10]))
-
--- * example charts look n feel
-hudbits :: Text -> Maybe Text -> [Text] -> [LegendType] -> HudOptions -> HudOptions
-hudbits t subt ts ls x =
-  #titles .~
-  [(#place .~ PlaceLeft $
-    #align .~ AlignLeft $
-    #text . #rotation .~ 90 $
-    #text . #size .~ 0.2 $
-    #text . #color .~ d3Colors1 0 `withOpacity` 1 $
-    def, t)] <>
-  (case subt of
-     Nothing -> []
-     Just subt' -> 
-       [(#place .~ PlaceBottom $
-         #align .~ AlignRight $
-         #text . #rotation .~ 0 $
-         #text . #size .~ 0.12 $
-         #text . #color .~ d3Colors1 0 `withOpacity` 1 $
-         def, subt')]) $ 
-  #legends .~
-  [#chartType .~ zip ls ts $
-   #align .~ AlignRight $
-   #text . #size .~ 0.2 $
-   def ] $
-  #axes . each . #gap .~ 0.1 $
-  x
-
--- * Chart.Text examples
-text_Example :: Chart b
-text_Example = text_ (#textType .~ TextPath def $ def) "Welcome to chart-unit!"
-
-text_SvgExample :: Chart b
-text_SvgExample = text_
-  (#textType .~ TextSvg (#textBox .~ def $ #svgFont .~ Just "Comic Sans MS" $ def) $
-   #size .~ 0.2 $
-   def)
-  "abc & 0123 & POW!"
-
-text_PathExample :: Chart b
-text_PathExample = text_
-  (#textType .~ TextPath (#font .~ FromFontFile "other/Hasklig-Regular.svg" $ def) $
-   #size .~ 0.2 $
-   def)
-   "0123 <*> <$> <| |> <> <- -> => ::"
-
-ts :: [(Text, Pair Double)]
-ts = zip
-  (map Text.singleton ['a' .. 'z'])
-  [Pair (sin (x * 0.1)) x | x <- [0 .. 25]]
-
-textChart_Example :: Chart b
-textChart_Example =
-  D.pad 1.1 $ textChart_ [#size .~ 0.33 $ def] widescreen [ts]
-
-labelledExample :: Chart b
-labelledExample = D.pad 1.1 $
-  labelled (LabelOptions
-    (#alignH .~ AlignLeft $ #rotation .~ 45 $ def) (Pair 1 1) 0.02)
-  "a label"
-  (glyph_ def)
-
-textHudExample :: Chart b
-textHudExample =
-  hud
-  (hudbits "Text Chart" (Just "text and glyphs have a similar feel") [] [] def)
-  widescreen
-  (range ts)
-
--- * Chart.Glyph examples
-glyph_Example :: Chart b
-glyph_Example = glyph_ def
-
-glyphsExample :: Chart b
-glyphsExample = glyphs def (dataXY sin (Range 0 (2*pi)) 30)
-
-gopts :: [GlyphOptions]
-gopts =
-  [ #borderSize .~ 0.001 $
-    #size .~ 0.1 $
-    def
-  , #borderSize .~ 0.001 $
-    #size .~ 0.1 $
-    #color .~ rybColor 7 `withOpacity` 0.4 $
-    #shape .~ Triangle $ def
-  ]
-
-gdata :: [[Pair Double]]
-gdata =
-  [ dataXY sin (Range 0 (2*pi)) 30
-  , dataXY cos (Range 0 (2*pi)) 30
-  ]
-
-glyphChart_Example :: Chart b
-glyphChart_Example = glyphChart_ gopts widescreen gdata
-
-lglyphsExample :: Chart b
-lglyphsExample =
-  lglyphs def def $
-  zip (show <$> [0 ..]) [Pair (x / 10) (sin x / 10) | x <- [0 .. 10]]
-
-lgdata :: [(Text, Pair Double)]
-lgdata =
-  (\(p@(Pair x y)) -> (show x <> "," <> show y, fromIntegral <$> p)) <$>
-    (Pair <$> [0 .. 5] <*> [0 .. 5] :: [Pair Int])
-
-lglyphChart_Example :: Rect Double -> Chart b
-lglyphChart_Example a =
-  lglyphChart_
-  [#gap .~ 0.015 $ #text . #size .~ 0.12 $ def]
-  [#color .~ black `withOpacity` 1 $
-   #borderSize .~ 0 $
-   #size .~ 0.01 $
-   def]
-  a
-  [lgdata]
-
-glyphHudExample :: Chart b
-glyphHudExample = 
-  hud
-  (#legends . each . #align .~ AlignLeft $
-   hudbits "Glyph Chart" (Just "text elements are paths not svg text")
-   ["sin", "cos"]
-   (LegendGlyph <$> gopts) $
-   #axes .~
-    [ #label . #text . #size .~ 0.3 $
-      #tickStyle .~ TickPlaced pis $
-      #label . #text . #textType .~
-      TextPath (TextPathOptions (FromFontFile "other/SourceCodePro-Regular.svg")) $
-      defXAxis
-    ] $ def)
-  widescreen
-  (range gdata)
-  where
-    pis =
-      [ (0,"zero")
-      , (pi/2, "π/2")
-      , (pi, "π")
-      , (3 * pi / 2, "3π/2")
-      , (2*pi,"2π")
-      ]
-
-lglyphHudExample :: Chart b
-lglyphHudExample = hud
-  (#titles . each . _1 . #gap .~ 0.2 $
-   hudbits "LGlyph Chart" (Just "Glyphs with text labels are very useful") [] [] $
-   #axes .~ [] $
-   def)
-  widescreen
-  (range (fmap snd <$> [lgdata]))
-
--- * Chart.Lines examples
-linesExample :: Int -> Chart b
-linesExample n =
-  lines
-  (#color .~ red `withOpacity` 0.5 $ def)
-  (dataXY cos (Range 0 (4*pi)) n)
-
-ls :: [[Pair Double]]
-ls =
-  map (uncurry Pair) <$>
-  [ [(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)]
-  ]
-
-lopts :: [LineOptions]
-lopts =
-  zipWith
-  (\x y -> LineOptions x (withOpacity (d3Colors1 y) 0.6))
-  [0.01, 0.02, 0.005]
-  [0,1,2]
-
-lineChart_Example :: Chart b
-lineChart_Example = lineChart_ lopts sixbyfour ls
-
-gopts3 :: [GlyphOptions]
-gopts3 =
-  zipWith
-  (\x y ->
-     #color .~ withOpacity (d3Colors1 x) 0.2 $
-     #borderColor .~ withOpacity (d3Colors1 x) 1 $
-     #borderSize .~ 0.005 $
-     #shape .~ y $
-     #size .~ 0.08 $
-     def)
-  [6,8,2]
-  [Triangle, Square, Circle]
-
-glineChart_Example :: Chart b
-glineChart_Example = glineChart_ lopts gopts3 sixbyfour ls
-
-lineHudExample :: Chart b
-lineHudExample = 
-  hud
-  (hudbits "Line Chart" Nothing ["hockey stick", "slope", "vertical"]
-   ((`LegendLine` 0.05) <$> lopts) def)
-  sixbyfour
-  (range ls)
-
-glineHudExample :: Chart b
-glineHudExample = renderChart
-  (ChartOptions (Just (Rect 0 5 0 5)) sixbyfour
-  [ GlineChart
-    (getZipList $
-      (\x y z -> (x,y,z)) <$> ZipList
-      lopts <*> ZipList
-      gopts3 <*> ZipList
-      ls)
-  , HudChart
-    (#legends . each . #gap .~ 0.2 $
-     #titles . each . _1 . #gap .~ 0.2 $
-     hudbits "Gline Chart" Nothing ["triangle", "square", "circle"]
-     (zipWith (\x y -> LegendGLine x y 0.1) gopts3 lopts) $
-     #axes .~ [] $
-     def)
-  , LGlyphChart
-    [ ( #gap .~ 0.015 $ #text . #size .~ 0.12 $ def
-      , #color .~ black `withOpacity` 1 $
-        #borderSize .~ 0 $
-        #size .~ 0.01 $
-        def
-      , lgdata)]
-  ])
-
--- * Chart.Rect examples
-rect_Example :: Double -> Chart b
-rect_Example n =
-  labelled (opts (Pair n 1)) "z,w" $
-  labelled (opts (Pair n -1)) "z,y" $
-  labelled (opts (Pair (-n) 1)) "x,w" $
-  labelled (opts (Pair (-n) -1)) "x,y" $
-  rect_ def (Ranges (n *. one) one)
-  where
-    opts :: Pair Double -> LabelOptions
-    opts o =
-      #text %~
-        ( (#color .~ black `withOpacity` 0.8) .
-          (#size .~ 0.3)) $
-      #orientation .~ o $
-      def
-
-rectsExample :: Chart b
-rectsExample =
-  rects def (rectBars 0.1 [1, 2, 3, 5, 8, 0, -2, 11, 2, 1])
-
-ropts :: [RectOptions]
-ropts =
-  [ #borderSize .~ 0 $ def
-  , #borderSize .~ 0 $ #color .~ ucolor 0.3 0.3 0.3 0.2 $ def
-  ]
- 
-rss :: [[Rect Double]]
-rss =
-  [ rectXY (\x -> exp (-(x ** 2) / 2)) (Range -5 5) 50
-  , rectXY (\x -> 0.5 * exp (-(x ** 2) / 8)) (Range -5 5) 50
-  ]
-
-rectChart_Example :: Chart b
-rectChart_Example = rectChart_ ropts widescreen rss
-
-pixel_Example :: Chart b
-pixel_Example = text_ opt "I'm a pixel!" <> pixel_ (Pixel one ublue)
-  where
-    opt =
-      #color .~ withOpacity black 0.8 $
-      #size .~ 0.2 $
-      def
-
-pixelsExample :: Chart b
-pixelsExample =
-  pixels
-    [ Pixel
-      (Rect (5 * x) (5 * x + 0.1) (sin (10 * x)) (sin (10 * x) + 0.1))
-      (dissolve (2 * x) ublue)
-    | x <- grid OuterPos (Range 0 1) 100
-    ]
-
-pixelChart_Example :: Chart b
-pixelChart_Example =
-  pixelChart_ asquare
-  [(\(r,c) ->
-      Pixel r
-      (blend c
-       (ucolor 0.47 0.73 0.86 1)
-       (ucolor 0.01 0.06 0.22 1)
-      )) <$>
-   rectF (\(Pair x y) -> (x+y)*(x+y))
-   one (Pair 40 40)]
-
-pixelateChartExample :: Chart b
-pixelateChartExample = pixelateChart def asquare one (\(Pair x y) -> (x+y)*(x+y))
-
-rectHudExample :: Chart b
-rectHudExample =
-  hud
-  (#legends . each . #place .~ PlaceBottom $
-   #legends . each . #align .~ AlignCenter $
-   hudbits "Rect Chart" Nothing ["blue gaussian", "grey wider distribution"]
-   ((`LegendRect` 0.05) <$> ropts) $
-   #axes .~ [defXAxis] $
-   def)
-  widescreen
-  (fold $ fold rss)
-
-pixelHudExample :: Chart b
-pixelHudExample =
-  hud
-  (hudbits "Pixel Chart" Nothing ["red", "blue"]
-   ((`LegendPixel` 0.05) <$> ropts) def)
-  asquare
-  one
-
--- * Chart.Arrow examples
-arrowsExample :: Chart b
-arrowsExample =
-  arrows
-  (#maxLength .~ 0.5 $
-   #maxHeadLength .~ 0.2 $
-   #maxStaffWidth .~ 0.01 $ def)
-  [ Arrow (Pair x (sin (5 * x))) (Pair x (cos x))
-  | x <- grid MidPos (one :: Range Double) 100
-  ]
-
-arrowChart_Example :: Chart b
-arrowChart_Example = arrowChart_ [def] asquare [as]
-  where
-    as =
-      normArrows
-      [ Arrow (Pair x y) (Pair (sin 1 / x + 0.0001) (cos 1 / y + 0.0001))
-      | x <- grid MidPos (one :: Range Double) 20
-      , y <- grid MidPos (one :: Range Double) 20
-      ]
-
-arrowHudExample :: Chart b
-arrowHudExample = 
-  hud
-  (hudbits "Arrow Chart" Nothing ["this way up"] []
--- ((`LegendArrow` 0.05) <$> [def]) $
-   def)
-  asquare
-  one
-
--- * Chart.Hud examples
-hudExample :: Chart b
-hudExample = hud def sixbyfour one
-
-withHudExample :: Chart b
-withHudExample = withHud_ hopts sixbyfour (lineChart lopts) ls
-  where
-    hopts =
-      #titles .~ [(def, "withHud Example")] $
-      #legends .~
-      [ #chartType .~ zipWith
-        (\x y -> (LegendLine x 0.05, y))
-        lopts
-        ["line1", "line2", "line3"]
-        $ def
-      ] $ def
-
-axisExample :: Chart b
-axisExample = axis aopts one (Range 0 100000)
-  where
-    aopts :: AxisOptions
-    aopts =
-      #label . #text %~
-      ((#rotation .~ -45) .
-       (#size .~ 0.06) .
-       (#alignH .~ AlignLeft)) $
-      #gap .~ 0.0001 $ def
-
-legends' :: [(LegendType, Text)]
-legends' =
-  [(LegendText def, "legend")] <> [(LegendPixel (blob ublue) 0.05, "pixel")] <>
-  -- [(LegendArrow (def & #minStaffWidth .~ 0.01 & #minHeadLength .~ 0.03) 0.05, "arrow")] <>
-  [(LegendRect def 0.05, "rect")] <>
-  [(LegendGLine def def 0.10, "glyph+line")] <>
-  [(LegendGlyph def, "just a glyph")] <>
-  zipWith
-    (\x y -> (LegendLine x 0.05, y))
-    lopts
-    ["short", "much longer name", "line 3"]
-
-legendExample :: Chart b
-legendExample = legend $ #chartType .~ legends' $ def
-
--- * Chart.Bar examples
-barExample :: Chart b
-barExample  =
-  barChart def (BarData [ys] Nothing Nothing) <>
-  hud
-  ( #titles .~ [(def,"Bar Chart")] $
-    #axes .~
-    [ #tickStyle .~
-      TickLabels labels' $
-      def
-    ] $
-    def)
-  sixbyfour
-  (fold (abs <$> rs))
-  where
-    labels' = fmap Text.pack <$> take 10 $ (:[]) <$> ['a'..]
-    rs = rectBars 0.1 ys
-    ys = [1,2,3,5,8,0,-2,11,2,1]
-
--- * difference between svg text and path text
-testTextDiffs :: Double -> Double -> Text -> (Double, Double, Double) -> Maybe Text -> Chart b
-testTextDiffs s ns txt (nb, nm, nt) fnt =
-  D.pad 1.1 $ vert identity $ D.centerXY .
-  (\(ah,av,txt) ->
-     D.showOrigin' (D.OriginOpts red 0.001 0.001)
-      (text_
-      (#alignH .~ ah $
-       #alignV .~ av $
-       #size .~ s $
-       #color .~ red `withOpacity` 1 $
-       def) txt) <>
-     D.showOrigin' (D.OriginOpts blue 0.003 0.003)
-      (text_
-      (#alignV .~ av $
-       #alignH .~ ah $
-       #size .~ s $
-       #textType .~ TextSvg (TextSvgOptions ns nb nm nt fnt 1.1 0.55 clear) $
-       def) txt)) <$>
-  ((\x y -> (x,y,txt)) <$>
-   [AlignLeft, AlignCenter, AlignRight] <*>
-   [AlignBottom, AlignMid, AlignTop])
-
-main :: IO ()
-main = do
-  scaleExample
-  fileSvg "other/text_Example.svg" (#size .~ Pair 400 100 $ def) text_Example
-  fileSvg "other/text_SvgExample.svg" (#size .~ Pair 400 100 $ def) text_SvgExample
-  fileSvg "other/text_PathExample.svg" (#size .~ Pair 400 100 $ def) text_PathExample
-  fileSvg "other/textChart_Example.svg" (#size .~ Pair 400 100 $ def)
-    textChart_Example
-  fileSvg "other/labelledExample.svg" (#size .~ Pair 100 100 $ def) labelledExample
-  fileSvg "other/textHudExample.svg" def $
-    textHudExample <> textChart_Example
-  fileSvg "other/glyph_Example.svg" (#size .~ Pair 400 100 $ def) glyph_Example
-  fileSvg "other/glyphsExample.svg" (#size .~ Pair 400 100 $ def) glyphsExample
-  fileSvg "other/glyphChart_Example.svg" (#size .~ Pair 450 150 $ def)
-    glyphChart_Example
-  fileSvg "other/lglyphsExample.svg" (#size .~ Pair 400 100 $ def) lglyphsExample
-  fileSvg
-    "other/lglyphChart_Example.svg"
-    (#size .~ Pair 600 200 $ def)
-    (lglyphChart_Example widescreen)
-  fileSvg "other/glyphHudExample.svg" def $
-    glyphHudExample <> glyphChart_Example
-  fileSvg "other/lglyphHudExample.svg" def $
-    lglyphHudExample <> lglyphChart_Example widescreen
-  fileSvg "other/linesExample.svg" (#size .~ Pair 400 100 $ def) (linesExample 100)
-  fileSvg "other/lineChart_Example.svg" (#size .~ Pair 300 200 $ def)
-    lineChart_Example
-  fileSvg "other/glineChart_Example.svg" (#size .~ Pair 300 200 $ def)
-    glineChart_Example
-  fileSvg "other/lineHudExample.svg" def $
-    lineHudExample <> lineChart_Example
-  fileSvg "other/glineHudExample.svg" def glineHudExample
-  fileSvg "other/rect_Example.svg" (#size .~ Pair 300 200 $ def) $ rect_Example 2
-  fileSvg "other/rectsExample.svg" (#size .~ Pair 300 200 $ def) rectsExample
-  fileSvg "other/rectChart_Example.svg" (#size .~ Pair 300 100 $ def)
-    rectChart_Example
-  fileSvg "other/pixel_Example.svg" (#size .~ Pair 100 100 $ def) pixel_Example
-  fileSvg "other/pixelsExample.svg" (#size .~ Pair 300 100 $ def) pixelsExample
-  fileSvg "other/pixelChart_Example.svg" (#size .~ Pair 300 300 $ def)
-    pixelChart_Example
-  fileSvg "other/rectHudExample.svg" def $
-    rectHudExample <> rectChart_Example
-  fileSvg "other/pixelHudExample.svg" def $
-    pixelHudExample <> pixelateChartExample
-  fileSvg "other/arrowsExample.svg" (#size .~ Pair 100 300 $ def) arrowsExample
-  fileSvg "other/arrowChart_Example.svg" (#size .~ Pair 300 300 $ def)
-    arrowChart_Example
-  fileSvg "other/arrowHudExample.svg" def $
-    arrowHudExample <> arrowChart_Example
-  fileSvg "other/hudExample.svg" (#size .~ Pair 300 300 $ def) hudExample
-  fileSvg "other/withHudExample.svg" (#size .~ Pair 300 200 $ def) withHudExample
-  fileSvg "other/axisExample.svg" (#size .~ Pair 400 100 $ def) axisExample
-  fileSvg "other/legendExample.svg" (#size .~ Pair 300 300 $ def) legendExample
-  -- small hud examples
-  fileSvg "other/hud.svg" (#size .~ Pair 100 100 $ def) (D.showOrigin $ hud def one one)
-  putStrLn ("barExample" :: Text)
-  fileSvg "other/barExample.svg" def barExample
-
-  -- tests
-  putStrLn ("testing text differences" :: Text)
-  fileSvg "other/testTextDiffs.svg" (#size .~ Pair 400 600 $ def) $
-    testTextDiffs 1 0.77 "abcdefghij012345" (0.25,-0.1,0.25) (Just "san-serif")
diff --git a/other/LinLibertine.svg b/other/LinLibertine.svg
deleted file mode 100644
--- a/other/LinLibertine.svg
+++ /dev/null
@@ -1,10319 +0,0 @@
-<?xml version="1.0" standalone="no"?>
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
-<!--
-2003-08-29: Created.
-2004-07-25: v(1.0) release candidate
-2005-12-28: v(1.1.0) stable
-2006-01-01: v(2.0.0) stable
-2006-09-05: v(2.2.0) stable
-2006-12-04: v(2.3.0) stable
-2007-03-11: v(2.4.0) stable
-2007-12-00: v(2.7.0) stable
-2008-06-00: v(2.8.14) stable
-
--->
-<svg>
-<metadata>
-Created by FontForge 20120601 at Mon Jul  2 00:09:39 2012
- By Gillian Tiefenlicht
-Linux Libertine by Philipp H. Poll,
-Open Font under Terms of following Free Software Licenses:
-GPL (General Public License) with font-exception and OFL (Open Font License).
-Created with FontForge (http://fontforge.sf.net)
-Sept 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011,2012
-</metadata>
-<defs>
-<font id="LinLibertineO" horiz-adv-x="0" >
-  <font-face 
-    font-family="Linux Libertine O"
-    font-weight="400"
-    font-stretch="normal"
-    units-per-em="1000"
-    panose-1="2 0 5 3 0 0 0 0 0 0"
-    ascent="754"
-    descent="-246"
-    x-height="431"
-    cap-height="647"
-    bbox="-1082 -256 6171 1125"
-    underline-thickness="40"
-    underline-position="-98"
-    stemh="36"
-    stemv="79"
-    unicode-range="U+0020-1D550"
-  />
-<missing-glyph horiz-adv-x="500" 
-d="M50 603v-508l170 254zM80 50h340l-170 254zM280 349l170 -254v508zM250 394l170 253h-340zM0 0v698h500v-698h-500z" />
-    <glyph glyph-name="ellipsis" unicode="&#x2e;&#x2e;&#x2e;" horiz-adv-x="749" 
-d="M57 43c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53zM322 43c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53zM586 43c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" />
-    <glyph glyph-name="exclamdbl" unicode="&#x21;&#x21;" horiz-adv-x="472" 
-d="M328 660c24 0 53 -19 53 -73c0 -65 -14 -107 -24 -193c-13 -108 -13 -168 -15 -182c-1 -11 -4 -20 -14 -20s-13 7 -14 13c-2 21 -8 111 -16 189c-9 88 -23 123 -23 193c0 54 29 73 53 73zM275 45c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53zM144 658
-c24 0 53 -19 53 -73c0 -65 -14 -107 -24 -193c-13 -108 -13 -168 -15 -182c-1 -11 -4 -20 -14 -20s-13 7 -14 13c-2 21 -8 111 -16 189c-9 88 -23 123 -23 193c0 54 29 73 53 73zM91 43c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" />
-    <glyph glyph-name="question_question" unicode="&#x3f;&#x3f;" horiz-adv-x="811" 
-d="M490 572c0 -15 2 -21 6 -26s6 -11 6 -24c0 -23 -20 -35 -39 -35c-16 0 -41 8 -41 43c0 38 21 66 51 90c29 25 71 39 124 39c102 0 168 -60 168 -151c0 -79 -62 -123 -109 -157c-23 -17 -43 -33 -52 -50c-13 -25 -14 -49 -14 -73v-44c0 -7 -9 -10 -17 -10s-16 3 -16 10v46
-c0 43 5 102 70 161c40 37 55 66 55 113c0 65 -38 122 -95 122s-97 -24 -97 -54zM520 43c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53zM114 572c0 -15 2 -21 6 -26s6 -11 6 -24c0 -23 -20 -35 -39 -35c-16 0 -41 8 -41 43c0 38 21 66 51 90
-c29 25 71 39 124 39c102 0 168 -60 168 -151c0 -79 -62 -123 -109 -157c-23 -17 -43 -33 -52 -50c-13 -25 -14 -49 -14 -73v-44c0 -7 -9 -10 -17 -10s-16 3 -16 10v46c0 43 5 102 70 161c40 37 55 66 55 113c0 65 -38 122 -95 122s-97 -24 -97 -54zM144 43c0 29 24 53 53 53
-s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" />
-    <glyph glyph-name="question_exclam" unicode="&#x3f;&#x21;" horiz-adv-x="675" 
-d="M531 660c24 0 53 -19 53 -73c0 -65 -14 -107 -24 -193c-13 -108 -13 -168 -15 -182c-1 -11 -4 -20 -14 -20s-13 7 -14 13c-2 21 -8 111 -16 189c-9 88 -23 123 -23 193c0 54 29 73 53 73zM478 45c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53zM114 572
-c0 -15 2 -21 6 -26s6 -11 6 -24c0 -23 -20 -35 -39 -35c-16 0 -41 8 -41 43c0 38 21 66 51 90c29 25 71 39 124 39c102 0 168 -60 168 -151c0 -79 -62 -123 -109 -157c-23 -17 -43 -33 -52 -50c-13 -25 -14 -49 -14 -73v-44c0 -7 -9 -10 -17 -10s-16 3 -16 10v46
-c0 43 5 102 70 161c40 37 55 66 55 113c0 65 -38 122 -95 122s-97 -24 -97 -54zM144 43c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" />
-    <glyph glyph-name="exclam_question" unicode="&#x21;&#x3f;" horiz-adv-x="637" 
-d="M144 658c24 0 53 -19 53 -73c0 -65 -14 -107 -24 -193c-13 -108 -13 -168 -15 -182c-1 -11 -4 -20 -14 -20s-13 7 -14 13c-2 21 -8 111 -16 189c-9 88 -23 123 -23 193c0 54 29 73 53 73zM91 43c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53zM316 570
-c0 -15 2 -21 6 -26s6 -11 6 -24c0 -23 -20 -35 -39 -35c-16 0 -41 8 -41 43c0 38 21 66 51 90c29 25 71 39 124 39c102 0 168 -60 168 -151c0 -79 -62 -123 -109 -157c-23 -17 -43 -33 -52 -50c-13 -25 -14 -49 -14 -73v-44c0 -7 -9 -10 -17 -10s-16 3 -16 10v46
-c0 43 5 102 70 161c40 37 55 66 55 113c0 65 -38 122 -95 122s-97 -24 -97 -54zM346 41c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" />
-    <glyph glyph-name="centigrade" unicode="&#xb0;C" horiz-adv-x="804" 
-d="M544 -10c-85.7 0 -159.2 33.7 -207 82c-55.9 56.5 -84 133.8 -84 212c0 193 125 326 284 326c138 0 168 -32 197 -38c13.3 -51.8 17.4 -101.1 20 -150c-7.90002 -5.5 -18 -6 -29 -4c-26 93 -78 158 -186 158c-79 0 -196 -66 -196 -278c0 -137 83 -265 208 -265
-c85 0 125 22 191 105c12 -1.8 21 -7.39999 25 -15c-60 -88 -126 -133 -223 -133zM209 508c0 33 -20 72 -65 72c-43 0 -66 -36 -66 -72c0 -35 24 -69 66 -69c41 0 65 35 65 69zM44 509c0 56 45 101 100 101s99 -45 99 -101c0 -55 -44 -100 -99 -100s-100 45 -100 100z" />
-    <glyph glyph-name="fahrenheit" unicode="&#xb0;F" horiz-adv-x="802" 
-d="M570 278h-93v-156c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-50 1 -79 2 -129 2c-51 0 -81 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v356c0 83 -17 88 -87 91c-6 6 -6 27 0 33c50 -1 129 -2 129 -2h255.3c24.7 0 29.5 0.599976 47 4c2.40002 0 3.60004 -0.700012 4 -3
-c1.40002 -7.59998 16.5 -104 21.7 -145c-8 -3 -19 -5 -31 -5c-22 69 -47 109 -153 109h-65c-24 0 -36 -10 -36 -34v-210h93c85 0 88 13 91 68c6 6 27 6 33 0c-1 -30 -2 -52 -2 -86s1 -53 2 -88c-6 -6 -27 -6 -33 0c-3 45 -6 68 -91 68zM209 508c0 33 -20 72 -65 72
-c-43 0 -66 -36 -66 -72c0 -35 24 -69 66 -69c41 0 65 35 65 69zM44 509c0 56 45 101 100 101s99 -45 99 -101c0 -55 -44 -100 -99 -100s-100 45 -100 100z" />
-    <glyph glyph-name="f_f" unicode="ff" horiz-adv-x="582" 
-d="M447 122c0 -83 11 -87 79 -91c6 -6 6 -27 0 -33c-43 1 -86 2 -118 2c-34.3 0 -66 -1 -95 -2c-6 6 -6 27 0 33c44 4 55 8 55 91v268h-199v-268c0 -83 13 -87 59 -91c6 -6 6 -27 0 -33c-32 1 -65.7 2 -98 2c-36.3 0 -72 -1 -105 -2c-6 6 -6 27 0 33c54 4 65 8 65 91v268
-h-67c-4 0 -5 1 -5 6v13c0 8 5 20 23 20h49c0 122 33 193 102 233c21 12 47 19 74 19c80 0 125 -34 138 -58c34 53 91 75 128 75c74 0 120 -33 120 -74c0 -20 -15 -35 -35 -35c-27 0 -37 19 -47 40c-9 20 -30 34 -54 34c-22 0 -48 -9 -62 -82c-6 -34 -7 -79 -7 -99v-53h108
-c5 0 8 -2 8 -6v-20c0 -9 -14 -13 -24 -13h-92v-268zM378 564c-1.5 -1.20001 -3.79999 -2 -6 -2c-26 0 -35 20 -44 40c-10.7 24.9 -29.3 49 -64 49c-15 0 -60 -11 -81 -91c-6 -19 -14 -54 -14 -122v-9h199v40c0 19.7 1 59 10 95z" />
-    <glyph glyph-name="f_i" unicode="fi" horiz-adv-x="560" 
-d="M470 122c0 -83 11 -87 72 -91c6 -6 6 -27 0 -33c-37 1 -76.2 2 -111 2c-36.1 0 -72 -1 -107 -2c-6 6 -6 27 0 33c55 4 67 8 67 91v197c0 51 -8 71 -39 71h-179v-268c0 -83 10 -87 74 -91c6 -6 6 -27 0 -33c-33 1 -78 2 -113 2c-35.2 0 -71 -1 -105 -2c-6 6 -6 27 0 33
-c54 4 65 8 65 91v268h-67c-4 0 -5 1 -5 6v13c0 8 5 20 23 20h49v15c0 78 9 139 51 188c41 47.8 96.2 66 142 66c93 0 178 -47.6 178 -110c0 -21 -21 -41 -43 -41c-31 0 -52.3 15.3 -62 65c-8 41 -42.5 52 -85 52c-68 0 -102 -83.5 -102 -178v-57h197c35 0 64 1 94 13
-c4 0 10 -2 10 -6c0 0 -4 -64 -4 -103v-211z" />
-    <glyph glyph-name="f_l" unicode="fl" horiz-adv-x="540" 
-d="M452 122c0 -83 14 -87 70 -91c6 -6 6 -27 0 -33c-32 1 -66 2 -109 2c-39 0 -69 -1 -99 -2c-6 6 -6 27 0 33c50 3 59 8 59 91v441c0 8.70001 0.700012 19.7 1 25c-12 4 -22 14 -28 27c-13 33 -49 49 -79 49c-33 0 -96 -34 -96 -188v-47h110c5 0 8 -2 8 -6v-20
-c0 -9 -14 -13 -23 -13h-93v-268c0 -83 13 -86 69 -91c6 -6 6 -27 0 -33c-35 1 -71.7 2 -108 2c-34.3 0 -71 -1 -105 -2c-6 6 -6 27 0 33c54 4 65 8 65 91v268h-67c-4 0 -5 1 -5 6v13c0 8 5 20 23 20h51v30c0 166 103 239 187 239c35 0 81 -8 103 -23c16.3 4 40.7 15 54 23
-c9 0 13 -3 13 -10c0 0 -1 -40 -1 -105v-461z" />
-    <glyph glyph-name="f_f_i" unicode="ffi" horiz-adv-x="829" 
-d="M380 565c-2 -2 -5 -2 -7 -2c-26 0 -35 18 -43 39c-12 35 -37 51 -62 51c-15 0 -69 -12 -90 -92c-6 -19 -11 -52 -11 -120v-12h202v40c0 22.3 2 60 11 96zM660 122v217c0 40 -2 51 -28 51h-184v-268c0 -83 9 -87 64 -91c6 -6 6 -27 0 -33c-34 1 -70 2 -103 2
-c-34 0 -66 -1 -95 -2c-6 6 -6 27 0 33c44 4 55 8 55 91v268h-200v-268c0 -83 13 -87 59 -91c6 -6 6 -27 0 -33c-31 1 -64.3 2 -98 2c-33 0 -69 -1 -105 -2c-6 6 -6 27 0 33c54 4 65 8 65 91v268h-67c-4 0 -5 1 -5 6v13c0 8 5 20 23 20h51c0 122 26 193 95 233
-c21 13 56 19 83 19c80 0 123 -33 136 -58c27 35 85 75 151 75c37 0 73 -10 98 -27c37 -25 72 -64 72 -101c0 -21 -21 -39 -42 -39c-32 0 -50 25 -59 79c-7.20001 43.1 -48 55 -81 55s-97 -25 -97 -179v-57h194c35 0 65 1 95 13c3 0 4 -1.10001 4 -3c0 0 -2 -59 -2 -89v-228
-c0 -83 14 -87 70 -91c6 -6 6 -27 0 -33c-36 1 -75 2 -109 2s-67 -1 -99 -2c-6 6 -6 27 0 33c50 3 59 8 59 91z" />
-    <glyph glyph-name="f_f_l" unicode="ffl" horiz-adv-x="815" 
-d="M380 562h-2c-25 0 -35 15 -41 29c-11 26 -40 55 -80 55c-31 0 -63 -26 -79 -86c-6 -19 -9 -54 -9 -122v-9h200v40c1 20 3 57 11 93zM727 122c0 -83 14 -87 70 -91c6 -6 6 -27 0 -33c-43 1 -66 2 -109 2c-39 0 -57 -1 -99 -2c-6 6 -6 27 0 33c50 3 59 8 59 91v441
-c0 4 2 21 1 25c-12 4 -22 14 -28 27c-13 33 -53 49 -83 49c-26 0 -72 -27 -82 -83c-6 -34 -8 -79 -8 -99v-53h108c5 0 8 -2 8 -6v-20c0 -9 -14 -13 -24 -13h-92v-268c0 -83 9 -87 64 -91c6 -6 6 -27 0 -33c-43 1 -63 2 -103 2c-37 0 -53 -1 -95 -2c-6 6 -6 27 0 33
-c44 4 55 8 55 91v268h-200v-268c0 -83 13 -87 59 -91c6 -6 6 -27 0 -33c-43 1 -60 2 -98 2c-41 0 -63 -1 -105 -2c-6 6 -6 27 0 33c54 4 65 8 65 91v268h-67c-4 0 -5 1 -5 6v13c0 8 5 20 23 20h49c0 82 7 121 26 157c24.4 46.3 78 95 145 95c79 0 129 -34 142 -53
-c17 31 82 70 138 70c35 0 98 -8 120 -23c23.7 4.70001 42.2 18.3 54 23c9 0 13 -3 13 -10c0 0 -1 -40 -1 -105v-461z" />
-    <glyph glyph-name="longs_t" unicode="&#x17f;t" horiz-adv-x="561" 
-d="M169 122c0 -83 11 -88 72 -91c6 -6 6 -27 0 -33c-43 1 -68 2 -111 2c-44 0 -70 -1 -112 -2c-6 6 -6 27 0 33c61 3 72 8 72 91v257c0 12 1 16 -13 16h-44c-4 0 -5 1 -5 5v9c0 8 5 20 23 20c31 0 39 21 40 48c10 171 108 221 182 221c105 0 150 -52 150 -148v-121h110
-c5 0 8 -2 8 -6v-20c0 -9 -14 -13 -24 -13h-94v-253c0 -62 6 -92 33 -92c26 0 45 8 71 28c10 -1 16 -6.7 18 -17c-38 -44 -79 -66 -124 -66c-46 0 -73 28 -73 99v301h-60c-3 0 -5 1 -5 4v31c0 3 1 4 4 4h46c27 0 32 15 32 116c0 79 -29 120 -98 120c-33 0 -98 -37 -98 -179
-v-364z" />
-    <glyph glyph-name="f_b" unicode="fb" horiz-adv-x="778" 
-d="M94 122v268h-67c-4 0 -5 1 -5 6v13c0 8 5 20 23 20h49v43c0 156 115 228 199 228c35 0 61 -10 83 -25c13 3 41 12 57 23c8 0 12 -3 12 -10c0 0 -3 -40 -3 -105v-184c0 -9 3.70001 -10.7 10 -5c31 28 69.1 45 112 45c87 0 177 -75 177 -197c0 -159 -119 -252 -221 -252
-c-35.3 0 -65.1 5.5 -88 24.8c-11 9.2 -17 9.2 -27.3 -2.8c-7.70001 -8.9 -17.6 -18.2 -23.7 -24c-12 0 -17 4 -22 12c4.20001 21.8 4 32 4 71v488c0 5 0 28 -1 32c-39.6 13.2 -24.8 75 -88 75c-33 0 -101 -23 -101 -177v-60h108c5 0 8 -2 8 -6v-20c0 -9 -14 -13 -23 -13h-93
-v-268c0 -83 11 -87 79 -91c6 -6 6 -27 0 -33c-43 1 -72 2 -118 2c-41 0 -63 -1 -105 -2c-6 6 -6 27 0 33c54 4 65 8 65 91zM459 363c-12.9 -11.4 -17 -21 -17 -42v-250c20 -25 41 -47 72 -47c95 0 141 86 141 200c0 97 -50 171 -111 171c-29 0 -59 -9 -85 -32z" />
-    <glyph glyph-name="f_f_h" unicode="ffh" horiz-adv-x="1052" 
-d="M368 567l-3 -2c-50 0 -39 57 -74 79c-16 10 -24 12 -35 12c-15 0 -57 -13 -78 -93c-6 -19 -11 -55 -11 -123v-11h191v43c1 20 1 59 10 95zM626.2 671.7c13 3 46.8 15.3 62.8 26.3c8 0 12 -3 12 -10c0 0 -3 -35 -3 -100v-234c67 67 136 83 175 83c72 0 97 -52 97 -155
-v-206c0 -29 10.7 -39.6 43 -43l19 -2c5 -0.5 9 -3 9 -8v-23l-2 -2s-69 2 -108 2c-35 0 -103 -2 -103 -2l-2 2v23c0 5 3 7.6 7 8l20 2c32.8 3.3 43 14 43 43v198c0 81 -21 116 -67 116c-29 0 -72 -17 -131 -73v-241c0 -29 12.5 -39.8 43 -43l19 -2c4 -0.4 8 -3 8 -8v-23
-l-2 -2s-68 2 -107 2c-36 0 -96 -2 -96 -2l-1 2v23c0 5 2.09998 7.1 7 8l11 2c36.4 6.6 43 14 43 43v502v11h-6c-28 0 -37 22 -47 43c-10 20 -36 36 -60 36c-22 0 -56 -11 -70 -84c-6 -34 -7 -79 -7 -99v-56h110c5 0 8 -2 8 -6v-20c0 -9 -14 -13 -24 -13h-94v-314
-c0 -29 7.60001 -39.3 43 -43l19 -2c5 -0.5 8 -3 8 -8v-23l-2 -2s-68 2 -107 2c-36 0 -104 -2 -104 -2l-2 2v23c0 5 3 7.5 8 8l19 2c32.4 3.4 43 14 43 43v314h-191v-314c0 -29 9.60001 -39.5 43 -43l19 -2c4 -0.4 8 -3 8 -8v-23l-2 -2s-68 2 -107 2c-36 0 -104 -2 -104 -2
-l-2 2v23c0 5 3 7.5 8 8l19 2c34.4 3.6 43 14 43 43v314h-69c-4 0 -5 1 -5 6v13c0 8 5 20 23 20h51c0 122 26 195 95 236c21 12 44 19 71 19c80 0 123 -34 136 -59c34 54 95 78 131 78c68.6 0 95 -24.5 101.2 -31.3z" />
-    <glyph glyph-name="f_f_j" unicode="ffj" horiz-adv-x="794" 
-d="M368 567l-3 -2c-50 0 -39 57 -74 79c-16 10 -24 12 -35 12c-15 0 -57 -13 -78 -93c-6 -19 -11 -55 -11 -123v-11h191v43c1 20 1 59 10 95zM718 109c0 -161 -26 -261 -73 -299c-37 -31 -71 -31 -91 -31c-18 0 -52 14 -52 44c0 18 19 30 30 30c26 0 36 -12 44 -22
-c6 -9 12 -16 23 -16c44 0 44 152 44 260v263c0 40 -3 52 -29 52h-181v-315c0 -29 13.2 -40.1 43 -42l32 -2c4 -0.200001 8 -3 8 -8v-23l-2 -2s-81 2 -120 2c-36 0 -104 -2 -104 -2l-2 2v23c0 5 3 7.5 8 8l19 2c32.4 3.4 43 13 43 42v315h-191v-315
-c0 -29 9.60001 -38.5 43 -42l19 -2c4 -0.4 8 -3 8 -8v-23l-2 -2s-68 2 -107 2c-36 0 -104 -2 -104 -2l-2 2v23c0 5 3 7.5 8 8l19 2c34.4 3.6 43 13 43 42v315h-69c-4 0 -5 1 -5 6v13c0 8 5 20 23 20h51c0 122 26 196 95 236c21 12 44 19 71 19c80 0 123 -34 136 -59
-c27 35 85 75 151 75c37 0 64 -10 89 -27c37 -24 71 -63 71 -100c0 -21 -20 -39 -40 -39c-32 0 -48 24 -60 79c-8 42 -39 54 -72 54s-100 -24 -100 -178v-60h189c35 0 67 13 80 13h16v-333z" />
-    <glyph glyph-name="f_f_k" unicode="ffk" horiz-adv-x="1018" 
-d="M368 567l-3 -2c-50 0 -39 54 -74 76c-16 10 -24 12 -35 12c-15 0 -57 -10 -78 -90c-6 -19 -11 -55 -11 -123v-11h191v43c1 20 1 59 10 95zM697 210.9v-134.9c0 -29 11.6 -39.7 43 -43l19 -2c5 -0.5 9 -3 9 -8v-23l-2 -2s-69 2 -108 2c-35 0 -103 -2 -103 -2l-2 2v23
-c0 5 3 7.5 8 8l19 2c33.4 3.5 43 14 43 43v499v11c-26 2 -35 23 -45 43s-32 34 -56 34c-22 0 -68 -9 -82 -82c-6 -34 -7 -76 -7 -96v-56h110c5 0 8 -2 8 -6v-20c0 -9 -14 -13 -24 -13h-94v-314c0 -29 9.60001 -39.5 43 -43l19 -2c4 -0.4 8 -3 8 -8v-23l-2 -2s-68 2 -107 2
-c-36 0 -104 -2 -104 -2l-2 2v23c0 5 3 7.5 8 8l19 2c34.4 3.6 43 14 43 43v314h-191v-314c0 -29 7.60001 -39.3 43 -43l19 -2c4 -0.4 8 -3 8 -8v-23l-2 -2s-68 2 -107 2c-36 0 -104 -2 -104 -2l-2 2v23c0 5 3 7.5 8 8l19 2c36.4 3.8 43 14 43 43v314h-69c-4 0 -5 1 -5 6v13
-c0 8 5 20 23 20h51c0 122 26 192 95 233c21 12 44 19 71 19c80 0 123 -34 136 -58c27 55 89 75 146 75c32 0 62 -8 82 -20c19 4 33 8 53 17h22v-458.4c44.1 21.4 77.5 51.7 131 110.4c15 16 20 29 20 39c0 8 -5 16 -29 16h-4c-5 0 -8 4 -8 8v19l3 2s47 -2 83 -2
-c39 0 93 2 93 2l4 -2v-19c0 -5 -7 -8 -11 -8h-7c-27 0 -72 -22 -96 -48l-76 -84c-3 -3 -5 -7 -5 -11s2 -9 5 -13l118 -169c19 -27 49 -46 75 -46h3c6 0 12 -3 12 -8v-22l-2 -3s-50 2 -89 2c-36 0 -62 -2 -62 -2l-3 4v21c0 12 -3 25 -23 54l-73 99c-14 19 -26 36 -49 36
-c-3.20001 0 -6.5 -0.399994 -10 -1.10001z" />
-    <glyph glyph-name="f_f_t" unicode="fft" horiz-adv-x="859" 
-d="M368 564c-1 -1 -4 -2 -7 -2c-25 0 -34 19 -43 40c-2.89999 7.20001 -18.2 46 -62 46c-15 0 -57 -8 -78 -88c-6 -19 -9 -51 -9 -119v-12h187v48c0 17 2 55 13 86zM90 122v268h-67c-4 0 -5 1 -5 6v13c0 8 5 20 23 20h49c0 122 28 193 97 233c21 12 44 19 71 19
-c78.6 0 121.5 -32.8 135.3 -56.7c31.2 51.4 77.8 73.7 117.7 73.7c41 0 66 -12 86 -30c15 -13 26 -29 26 -46s-9 -38 -35 -38c-27 0 -41 14 -46 41c-4 20 -14 41 -38 41c-53 0 -69 -72 -69 -192v-45l197 0.100006c0 82.9 0.0999756 92.1 -2 114.9c-0.599976 7 8 9 14 12.7
-l58 26.3c9 0 13 -3 13 -10c0 0 -4 -40 -4 -105v-39h120c5 0 8 -2 8 -6v-20c0 -9 -14 -13 -24 -13h-104v-253c0 -62 6 -92 33 -92c26 0 56 8 82 28c10 -1 16 -6.7 18 -17c-39 -44 -89 -66 -135 -66s-77 28 -77 99v301h-197v-268c0 -83 11 -87 79 -91c6 -6 6 -27 0 -33
-c-43 1 -72 2 -118 2c-37 0 -53 -1 -95 -2c-6 6 -6 27 0 33c44 4 55 8 55 91v268h-187v-268c0 -83 13 -87 59 -91c6 -6 6 -27 0 -33c-43 1 -60 2 -98 2c-41 0 -63 -1 -105 -2c-6 6 -6 27 0 33c54 4 65 8 65 91z" />
-    <glyph glyph-name="f_h" unicode="fh" horiz-adv-x="790" 
-d="M436 356c66 67 136 83 175 83c72 0 97 -52 97 -155v-208c0 -29 8.59998 -39.4 43 -43l19 -2c4 -0.4 8 -3 8 -8v-23l-2 -2s-68 2 -107 2c-36 0 -104 -2 -104 -2l-2 2v23c0 5 3 7.5 8 8l19 2c35.4 3.7 43 14 43 43v200c0 81 -20 116 -67 116c-28 0 -71 -17 -130 -73v-243
-c0 -29 10.6 -39.6 43 -43l19 -2c4 -0.4 8 -3 8 -8v-23l-2 -2s-68 2 -108 2c-35 0 -103 -2 -103 -2l-2 2v23c0 5 3 7.5 8 8l19 2c33.4 3.5 43 14 43 43v500c0 4 0 8 -1 12c-12 4 -22 14 -28 27c-13 33 -32 49 -62 49c-33 0 -103 -21 -103 -175v-60h110c5 0 8 -2 8 -6v-20
-c0 -9 -14 -13 -23 -13h-95v-314c0 -29 7.7 -39.1 43 -43l18 -2c4 -0.4 8 -3 8 -8v-23l-2 -2s-67 2 -106 2c-36 0 -104 -2 -104 -2l-2 2v23c0 5 3 7.5 8 8l19 2c34.4 3.6 43 14 43 43v314h-69c-4 0 -5 1 -5 6v13c0 8 5 20 23 20h51v43c0 156 113 226 197 226
-c35 0 61 -8 83 -23c14 5 28 11 42 20h22v-339z" />
-    <glyph glyph-name="f_j" unicode="fj" horiz-adv-x="529" 
-d="M452 106c0 -162 -26 -258 -73 -296c-37 -31 -71 -31 -91 -31c-18 0 -52 14 -52 44c0 18 19 30 30 30c26 0 36 -12 44 -22c6 -9 12 -16 23 -16c44 0 44 152 44 260v264c0 40 -3 51 -29 51h-181v-314c0 -29 5.3 -40.7 43 -43l33 -2c4 -0.200001 8 -3 8 -8v-23l-2 -2
-s-82 2 -121 2c-36 0 -104 -2 -104 -2l-2 2v23c0 5 3 7.5 8 8l19 2c30.5 3.2 43 14 43 43v314h-69c-4 0 -5 1 -5 6v13c0 8 5 20 23 20h51v18c0 197 104 251 188 251c38 0 64 -10 89 -27c37 -25 70 -64 70 -101c0 -20 -20 -38 -40 -38c-31 0 -48 24 -59 78
-c-9 43 -40 55 -72 55c-33 0 -101 -22 -101 -176v-60h189c35 0 67 15 81 15h15v-338z" />
-    <glyph glyph-name="f_k" unicode="fk" horiz-adv-x="761" 
-d="M436 210v-134c0 -29 10.6 -39.6 43 -43l19 -2c4 -0.4 8 -3 8 -8v-23l-2 -2s-68 2 -108 2c-35 0 -103 -2 -103 -2l-2 2v23c0 5 3 7.5 8 8l19 2c37.4 3.9 43 14 43 43v500c0 4 0 8 -1 12c-12 4 -22 14 -28 27c-13 33 -32 49 -62 49c-33 0 -103 -24 -103 -178v-57h110
-c5 0 8 -2 8 -6v-20c0 -9 -14 -13 -23 -13h-95v-314c0 -29 5.7 -38.9 43 -43l18 -2c4 -0.4 8 -3 8 -8v-23l-2 -2s-67 2 -106 2c-36 0 -104 -2 -104 -2l-2 2v23c0 5 3 7.5 8 8l19 2c32.4 3.4 43 14 43 43v314h-69c-4 0 -5 1 -5 6v13c0 8 5 20 23 20h51v39
-c0 157 113 230 197 230c35 0 61 -8 83 -23c14 5 25 13 42 20h22v-460c45 22 78 52 134 112c15 16 20 29 20 39c0 8 -6 16 -29 16h-4c-5 0 -9 4 -9 8v19l3 2s48 -2 83 -2c39 0 94 2 94 2l3 -2v-19c0 -5 -6 -8 -10 -8h-8c-26 0 -71 -22 -95 -48l-77 -84c-2 -3 -4 -6 -4 -10
-c0 -5 2 -10 5 -14l118 -169c18 -27 49 -46 74 -46h3c7 0 13 -3 13 -8v-23l-2 -2c-26 2 -54 2 -89 2c-23 0 -47 -1 -62 -2l-3 2v23c0 12 -3 25 -23 54l-73 99c-14 19 -26 36 -49 36c-4 0 -9 -1 -13 -2z" />
-    <glyph glyph-name="f_t" unicode="ft" horiz-adv-x="596" 
-d="M175 390v-268c0 -83 11 -87 79 -91c6 -6 6 -27 0 -33c-40 1 -83 2 -118 2s-71 -1 -105 -2c-6 6 -6 27 0 33c54 4 65 8 65 91v268h-69c-4 0 -5 1 -5 6v13c0 8 5 20 23 20h51v40c0 88 8 141 38 181c24 32 70 48 99 48c38 0 68 -9 88 -24s29 -32 29 -48
-c0 -21 -14 -36 -33 -36c-20 0 -31.8 10.6 -39 28c-12 29 -26 46 -54 46c-15.5 0 -37 -14 -45 -38c-7.5 -22.5 -4 -73 -4 -140v-57l194 0.100006c0 82.9 0.100006 92.1 -2 114.9c-0.600006 7 8 9 14 12.7l58 26.3c9 0 13 -3 13 -10c0 0 -4 -40 -4 -105v-39h120c5 0 8 -2 8 -6
-v-20c0 -9 -14 -13 -24 -13h-104v-253c0 -62 6 -92 33 -92c26 0 56 8 82 28c10 -1 16 -6.7 18 -17c-39 -44 -89 -66 -135 -66s-77 28 -77 99v301h-194z" />
-    <glyph glyph-name="Q_u" unicode="Qu" horiz-adv-x="1251" 
-d="M572 -122c90 -35 141 -49 217 -49c50 0 130 22 196 59l17 -18c-63 -59 -164 -96 -268 -96c-84 0 -156 15 -231 46c-118 48 -176 67 -245 67c-9.3 0 -30 -5.4 -49.2 -20.3c-11 -12.6 -21.2 -25.9 -30.8 -39.7l-40 20c29 40 69 80 116 114c16.1 11.8 33.4 22.6 51.2 31.9
-c-149.6 19.6 -268.2 137.7 -268.2 317.1c0 193.9 113.3 348 307 348c179 0 322 -122 322 -329c0 -84 -22 -156.3 -61.8 -213c-45.7 -65.1 -114.6 -109.1 -200.3 -122c-34.2 -9.3 -79.3 -30.4 -120.9 -60c-3.29999 -2.3 -6.60001 -4.7 -9.79999 -7.1
-c9.69998 1.3 19.9 2.1 30.8 2.1c30 0 140 -1 268 -51zM331 622c-99 0 -198 -85 -198 -295c0 -192 115 -301 237 -301c114 0 200 105 200 284c0 202 -107 312 -239 312zM938 -10c-99 0 -129 67 -129 136v192c0 65 -14 76 -62 80c-6 6 -6 27 0 33c34 -1 70 -2 102 -2
-c15 0 30 1 35 2c5 0 8 -3 8 -6c0 0 -4 -73 -4 -103v-182c0 -89 50 -103 80 -103c25 0 63 16 100 48c14 12 16 20 16 39v193c0 66 -13 78 -62 81c-6 6 -6 27 0 33c34 -1 70 -2 102 -2c15 0 30 1 35 2c5 0 8 -3 8 -6c0 0 -4 -73 -4 -103v-192c0 -49 9 -68 73 -73
-c6 -6 6 -21 0 -27c-61 -7 -96 -22 -118 -40c-6.5 -2.5 -11 -3 -19 0c0 0 -8.5 33.5 -11 59c-0.699951 7 -10 5 -15 1c-49 -40 -96 -60 -135 -60z" />
-    <glyph glyph-name="T_h" unicode="Th" horiz-adv-x="1048" 
-d="M350 122c0 -83 17 -88 97 -91c6 -6 6 -27 0 -33c-50 1 -84.8 2 -139 2c-54.6 0 -91 -1 -140 -2c-6 6 -6 27 0 33c80 3 97 8 97 91v385c0 61 -10 99 -47 99h-49c-66 0 -112 -26 -132 -106c-12 0 -24 1 -34 5c11 48 21 100 25 145c0 1 2 3 4 3c38 -3 156 -8 233 -8h86
-c51.9 0 135.3 2 196.7 4.5c58.4 2.40002 98 29.6 120.3 38.5c9 0 13 -3 13 -10c0 0 -3.79999 -40 -4 -105l-0.799988 -215c-0.100037 -14 6.39996 -3.79999 9.79999 0c61 68 120.9 81 170 81c35 0 66.2 -12 83 -34c23.3 -30.5 27 -79 27 -134v-149c0 -82 11 -86 67 -91
-c5 -6 5 -27 0 -33c-43 1 -65 2 -106 2c-40 0 -60 -1 -102 -2c-5 6 -5 27 0 33c52 5 62 9 62 91v152c0 30 -2 57.2 -12 77c-11.6 22.9 -32.6 36 -53 36c-39.4 0 -90 -21.7 -128 -59c-8 -8.70001 -17 -21 -17 -42.1v-163.9c0 -83 9 -87 59.8 -91c6 -6 6 -27 0 -33
-c-42.1 1 -59.8 2 -98.8 2c-43 0 -68.6 -1 -109.8 -2c-6 6 -6 27 0 33c58 4 69.8 8 69.8 91v421c0 76 -105 63 -180 63h-22c-36 0 -46 -38 -46 -102v-382z" />
-    <glyph glyph-name="longs_s" unicode="&#x17f;s" horiz-adv-x="589" 
-d="M93 477c10 171 94 221 173 221c88 0 147 -56 147 -103c0 -21 -12 -34 -31 -34c-32 0 -49 37 -60 69c-9 24 -35 35 -68 35s-87 -25 -87 -179v-414c0 -29 5.39999 -40 43 -43l25 -2c4 -0.299999 8 -3 8 -8v-19l-2 -2s-74 2 -113 2c-36 0 -104 -2 -104 -2l-2 2v19
-c0 5 3 7.5 8 8l19 2c32.4 3.4 43 14 43 43v307c0 12 -1 16 -15 16h-44c-4 0 -5 1 -5 5v9c0 8 5 20 23 20c31 0 41 21 42 48zM281 140l27 1c3 -25 15 -72 36 -96c10 -11 27 -29 64 -29c33 0 78 31 78 77c0 43 -19 71 -99 105c-73 32 -106 54 -106 129c0 63 55 115 134 115
-c49 0 82 -9 113 -25c6 -32 9 -66 11 -102l-27 -1c-21 82 -76 98 -97 98c-38 0 -72 -21 -72 -70c0 -40 14 -59 68 -79c81 -30 142 -67 142 -147c0 -95 -97 -128 -142 -128c-35 0 -55 4 -80 11c-7 1 -13 2 -19 2s-14 -1 -24 -3c0 42 -3 93 -7 142z" />
-    <glyph glyph-name="longs_h" unicode="&#x17f;h" horiz-adv-x="780" 
-d="M362 675c13 3 39 12 55 23c8 0 12 -3 12 -10c0 0 -3 -35 -3 -100v-229c67 67 125 83 164 83c73 0 108 -55 108 -158v-212c0 -29 10.6 -39.6 43 -43l19 -2c5 -0.5 9 -3 9 -8v-19l-2 -2s-69 2 -108 2c-35 0 -103 -2 -103 -2l-2 2v19c0 5 3 7.5 8 8l19 2
-c34.4 3.6 43 14 43 43v223c0 81 -22 100 -78 100c-29 0 -72 -26 -120 -73v-250c0 -29 12.4 -40.3 43 -43l23 -2c5 -0.4 8 -3 8 -8v-19l-1 -2s-73 2 -112 2c-36 0 -94 -2 -94 -2l-1 2v19c0 5 2.10001 6.9 7 8l9 2c32 7.1 43 14 43 43v504v12c-13 4 -22 14 -29 27
-c-13 33 -32 49 -62 49c-32 0 -93 -24 -93 -178v-414c0 -29 5.7 -38.9 43 -43l18 -2c4 -0.4 8 -3 8 -8v-19l-2 -2s-67 2 -106 2c-36 0 -104 -2 -104 -2l-2 2v19c0 5 3 7.5 8 8l19 2c34.4 3.6 43 14 43 43v307c0 12 -1 16 -15 16h-44c-4 0 -5 1 -5 5v9c0 8 5 20 23 20
-c31 0 41 22 41 49c4 150 105 220 187 220c35 0 61 -7 83 -23z" />
-    <glyph glyph-name="t_t" unicode="tt" horiz-adv-x="614" 
-d="M90 390h-59c-4 0 -5 1 -5 6v13c0 8 4 20 18 20l46 0.100006c0 82.9 0.0999985 82.1 -2 104.9c-0.599998 7 8 9 14 12.7l58 26.3c9 0 13 -3 13 -10c0 0 -4 -40 -4 -105v-29c105.5 0 168.8 -0.100006 211 0.100006c0 82.9 0.100006 92.1 -2 114.9c-0.600006 7 8 9 14 12.7
-l58 26.3c9 0 13 -3 13 -10c0 0 -4 -40 -4 -105v-39h120c5 0 8 -2 8 -6v-20c0 -9 -14 -13 -24 -13h-104v-253c0 -62 6 -92 33 -92c26 0 56 8 82 28c10 -1 16 -6.7 18 -17c-39 -44 -89 -66 -135 -66s-77 28 -77 99v301h-211v-253c0 -62 6 -92 33 -92c28 0 56 15 71 28
-c9 -1 13.3 -5.4 16 -15c-26 -39 -72 -68 -122 -68c-47 0 -77 28 -77 99v301z" />
-    <glyph glyph-name="longs_i" unicode="&#x17f;i" horiz-adv-x="535" 
-d="M93 477c10 171 104 221 183 221c38 0 60 -10 85 -27c37 -25 70 -64 70 -101c0 -20 -20 -38 -39 -38c-32 0 -49 24 -60 78c-9 43 -36 55 -68 55c-33 0 -97 -25 -97 -179v-410c0 -29 9.39999 -40.3 43 -43l25 -2c4 -0.299999 8 -3 8 -8v-23l-2 -2s-74 2 -113 2
-c-36 0 -104 -2 -104 -2l-2 2v23c0 5 3 7.5 8 8l19 2c38.4 4 43 14 43 43v303c0 12 -1 16 -15 16h-44c-4 0 -5 1 -5 5v9c0 8 5 20 23 20c31 0 41 21 42 48zM452 122c0 -83 11 -87 72 -91c6 -6 6 -27 0 -33c-33 1 -71 2 -111 2s-79 -1 -112 -2c-6 6 -6 27 0 33
-c61 5 72 8 72 91v195c0 57 -10.5 62.9 -65 68c-2 6 -4 22 -2 28c69 9 108.5 18 137 29c8 0 13 -3 13 -7c0 0 -4 -64 -4 -113.7v-199.3z" />
-    <glyph glyph-name="longs_longs" unicode="&#x17f;&#x17f;" horiz-adv-x="559" 
-d="M385 623c8 23 49 75 116 75c41 0 63 -12 83 -30c15 -13 26 -29 26 -46s-9 -38 -35 -38c-27 0 -41 14 -46 41c-4 20 -10 39 -34 39c-54 0 -72 -70 -72 -190v-398c0 -29 11.2 -41.1 43 -43l33 -2c4 -0.200001 8 -3 8 -8v-23l-2 -2s-82 2 -121 2c-35 0 -103 -2 -103 -2l-2 2
-v23c0 5 3 7.5 8 8l19 2c33.4 3.5 43 14 43 43v303c0 12 -1 16 -16 16h-43c-5 0 -6 1 -6 5v9c0 8 6 20 23 20c31 0 42 21 42 48c0 22 2 56 10 87c-2 -1 -4 -2 -6 -2c-26 0 -39 19 -44 40c-5 20 -20 51 -57 51c-34 0 -85 -35 -85 -224v-353c0 -29 11.9 -38.6 43 -43l14 -2
-c4.89999 -0.700001 8 -3 8 -8v-23l-2 -2s-63 2 -102 2c-36 0 -104 -2 -104 -2l-2 2v23c0 5 3 7.5 8 8l19 2c30.5 3.2 43 14 43 43v303c0 12 -1 16 -15 16h-44c-4 0 -5 1 -5 5v9c0 8 5 20 23 20c31 0 41 21 43 48c6 93 31 148 90 185c21 13 43 19 69 19c61 0 102 -23 132 -58
-z" />
-    <glyph glyph-name="longs_longs_i" unicode="&#x17f;&#x17f;i" horiz-adv-x="791" 
-d="M532 698c38 0 60 -10 85 -27c37 -25 71 -64 71 -101c0 -20 -21 -38 -40 -38c-32 0 -48 24 -60 78c-8 43 -35 55 -68 55s-97 -25 -97 -179v-414c0 -29 11.2 -41.1 43 -43l33 -2c4 -0.200001 8 -3 8 -8v-19l-2 -2s-82 2 -121 2c-35 0 -103 -2 -103 -2l-2 2v19
-c0 5 3 7.5 8 8l19 2c33.4 3.5 43 14 43 43v307c0 12 -1 16 -16 16h-43c-5 0 -6 1 -6 5v9c0 8 6 20 23 20c31 0 42 21 42 48c0 22 2 56 10 87c-2 -1 -4 -2 -6 -2c-26 0 -39 19 -44 40c-5 20 -20 51 -57 51c-34 0 -85 -35 -85 -224v-357c0 -29 10 -38.3 43 -43l14 -2
-c4.89999 -0.700001 8 -3 8 -8v-19l-2 -2s-63 2 -102 2c-36 0 -104 -2 -104 -2l-2 2v19c0 5 3 7.5 8 8l19 2c36.4 3.8 43 14 43 43v307c0 12 -1 16 -15 16h-44c-4 0 -5 1 -5 5v9c0 8 5 20 23 20c31 0 41 21 43 48c6 93 31 148 90 185c21 13 43 19 69 19c61 0 102 -23 132 -58
-c38 53 80 75 147 75zM708 122c0 -83 11 -87 72 -91c6 -6 6 -27 0 -33c-33 1 -71 2 -111 2s-79 -1 -112 -2c-6 6 -6 27 0 33c61 5 72 8 72 91v195c0 57 -10.5 62.9 -65 68c-2 6 -4 22 -2 28c69 9 108.5 18 137 29c8 0 13 -3 13 -7c0 0 -4 -64 -4 -113.7v-199.3z" />
-    <glyph glyph-name="longs_l" unicode="&#x17f;l" horiz-adv-x="517" 
-d="M167 486v-414c0 -29 8.2 -39.1 43 -43l18 -2c4 -0.4 8 -3 8 -8v-19l-2 -2s-67 4 -106 4c-36 0 -104 -4 -104 -4l-2 2v19c0 5 3 7.5 8 8l19 2c34.7 3.7 43 14 43 43v307c0 12 -1 16 -15 16h-44c-4 0 -5 1 -5 5v9c0 8 5 20 23 20c31 0 41 22 41 49c4 150 105 220 187 220
-c35 0 61 -8 83 -23c12.7 3 39 12 55 23c7.70001 0 12 -3 12 -10c0 0 -3 -35.3 -3 -100.3v-515.7c0 -29 11.4 -40.3 43 -43l23 -2c5 -0.4 8 -3 8 -8v-19l-1 -2s-73 2 -112 2c-36 0 -94 -2 -94 -2l-1 2v19c0 5 2 7.4 7 8l9 1c33.3 3.7 43 15 43 44v504v12c-13 4 -22 14 -29 27
-c-13 33 -32 49 -62 49c-32 0 -93 -24 -93 -178z" />
-    <glyph glyph-name="f_f.short" unicode="f&#xe0e0;" horiz-adv-x="595" 
-d="M381 564c-2 -1 -6 -2 -9 -2c-24 0 -35 20 -44 40c-6 14 -13 30 -28 39c-17 10 -25 12 -37 12c-16 0 -60 -13 -82 -93c-6 -19 -12 -54 -12 -122v-9h202v40c0 20.3 1 59 10 95zM450 122c0 -83 11 -87 79 -91c6 -6 6 -27 0 -33c-43 1 -86 2 -118 2c-34.3 0 -66 -1 -95 -2
-c-6 6 -6 27 0 33c44 4 55 8 55 91v268h-202v-268c0 -83 13 -87 59 -91c6 -6 6 -27 0 -33c-32 1 -65.7 2 -98 2c-36.3 0 -72 -1 -105 -2c-6 6 -6 27 0 33c54 4 65 8 65 91v268h-67c-4 0 -5 1 -5 6v13c0 8 5 20 24 20h48c0 122 27 193 100 233c22 12 47 19 75 19
-c80 0 125 -29 140 -51c4 7 9 14 14 20c25 32 63 48 94 48c40 0 72 -9 93 -24s31 -32 31 -48c0 -21 -15 -36 -35 -36c-21 0 -33 11 -41 28c-13 29 -27 46 -57 46c-16 0 -35 -14 -43 -38c-8 -23 -11 -73 -11 -140v-57h116c5 0 8 -2 8 -6v-20c0 -9 -14 -13 -25 -13h-99v-268z
-" />
-    <glyph glyph-name="Q_u.sc" unicode="Q&#xe065;" horiz-adv-x="1289" 
-d="M572 -122c90 -35 141 -49 217 -49c50 0 130 22 196 59l17 -18c-63 -59 -164 -96 -268 -96c-84 0 -156 15 -231 46c-118 48 -176 67 -245 67c-9.3 0 -30 -5.4 -49.2 -20.3c-11 -12.6 -21.2 -25.9 -30.8 -39.7l-40 20c29 40 69 80 116 114c16.1 11.8 33.4 22.6 51.2 31.9
-c-149.6 19.6 -268.2 137.7 -268.2 317.1c0 193.9 113.3 348 307 348c179 0 322 -122 322 -329c0 -84 -22 -156.3 -61.8 -213c-45.7 -65.1 -114.6 -109.1 -200.3 -122c-34.2 -9.3 -79.3 -30.4 -120.9 -60c-3.29999 -2.3 -6.60001 -4.7 -9.79999 -7.1
-c9.69998 1.3 19.9 2.1 30.8 2.1c30 0 140 -1 268 -51zM1140 338c0 83 -11 87 -72 91c-6 6 -6 27 0 33c30 -1 65 -2 95 -2s66 1 96 2c6 -6 6 -27 0 -33c-61 -5 -72 -8 -72 -91v-114c0 -146 -41 -234 -196 -234c-109.5 0 -182 41 -182 191v157c0 83 -11 87 -72 91
-c-6 6 -6 27 0 33c36 -1 75.4 -2 111 -2c32.5 0 73 1 112 2c6 -6 6 -27 0 -33c-61 -5 -72 -8 -72 -91v-136c0 -93 21 -171 120 -171c132 0 132 94 132 180v127zM331 622c-99 0 -198 -85 -198 -295c0 -192 115 -301 237 -301c114 0 200 105 200 284c0 202 -107 312 -239 312z
-" />
-    <glyph glyph-name="q.sc_u.sc" unicode="&#xe061;&#xe065;" horiz-adv-x="1101" 
-d="M956 338c0 83 -11 87 -72 91c-3 3 -4.5 9.70001 -4.5 16.5s1.5 13.5 4.5 16.5c30 -1 65 -2 95 -2s66 1 96 2c3 -3 4.5 -9.70001 4.5 -16.5s-1.5 -13.5 -4.5 -16.5c-61 -5 -72 -8 -72 -91v-114c0 -146 -68 -234 -223 -234c-85 0 -155 41 -155 191v157c0 83 -11 87 -72 91
-c-3 3 -4.5 9.70001 -4.5 16.5s1.5 13.5 4.5 16.5c43 -1 68 -2 111 -2c44 0 70 1 112 2c3 -3 4.5 -9.70001 4.5 -16.5s-1.5 -13.5 -4.5 -16.5c-61 -5 -72 -8 -72 -91v-136c0 -93 13 -179 120 -179c132 0 132 102 132 188v127zM212 -86c-12 0 -43 -10 -59 -47l-31 15
-c25.2 35.9 75.4 78.9 130.5 108.8c-124.3 9.6 -216.5 102.5 -216.5 231.2c0 147 107 248 246 248c130 0 244 -93 244 -235c0 -111.8 -65 -212.5 -187.5 -238.5c-26.5 -8.2 -70.6 -23.3 -107.6 -48.1c1.3 0.199997 4.10001 0.299999 8 0.299999c14.7 0 44.4 -1.6 60.1 -5.7
-c152.9 -40 142.8 -68.7 247.8 -68.7c90.3 0 212.4 47.5 250.2 73.7l12.5 -9.5c-37.6 -39.5 -176.9 -97.5 -301.8 -97.5c-136.8 0 -214.5 73 -295.7 73zM273 437c-75 0 -150 -68 -150 -203c0 -123 69 -211 166 -211c89 0 150 75 150 198c0 134 -77 216 -166 216z" />
-    <glyph glyph-name="exclam" unicode="!" horiz-adv-x="288" 
-d="M144 658c24 0 53 -19 53 -73c0 -65 -14 -107 -24 -193c-13 -108 -13 -168 -15 -182c-1 -11 -4 -20 -14 -20s-13 7 -14 13c-2 21 -8 111 -16 189c-9 88 -23 123 -23 193c0 54 29 73 53 73zM91 43c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" />
-    <glyph glyph-name="quotedbl" unicode="&#x22;" horiz-adv-x="336" 
-d="M215 427c0 0 -26 159 -26 168c0 22 21 50 51 50c26 0 35 -17 35 -33s-33 -181 -33 -181zM89 426c0 0 -26 159 -26 168c0 22 21 50 51 50c26 0 35 -17 35 -33s-33 -181 -33 -181z" />
-    <glyph glyph-name="numbersign" unicode="#" horiz-adv-x="465" 
-d="M279 245l18 115h-113l-19 -115h114zM335 360l-19 -115h95l-7 -53h-94l-30 -178h-38l27 178h-112l-29 -178h-37l28 178h-93l8 53h94l18 115h-93l8 53h93l29 179h38l-30 -179h114l28 179h38l-29 -179h96l-8 -53h-95z" />
-    <glyph glyph-name="dollar" unicode="$" horiz-adv-x="465" 
-d="M207.1 366.7l11.6 211.3c-54.4 -0.799988 -100.7 -50.4 -100.7 -102c0 -53.7 43.9 -87 89.1 -109.3zM238.3 267.6l-13.4 -243.6c72.8 0.700001 114.1 40.7 114.1 115c0 78.4 -50.5 108.2 -100.7 128.6zM371 585c10 -49 14 -75 17 -120c-8 -7 -20 -6 -31 -6
-c-16.3 52.2 -39.1 102.3 -101.8 115.6l-12.3 -223.7c18.3 -7.29999 34.8 -13 46.1 -17.9c67 -29 128 -73 128 -162c0 -59 -34 -117 -87 -150c-29.9 -18.7 -67.8 -28.7 -106.9 -29.9l-4.60001 -84.3c-7.3 -4.2 -26.9 -5.10001 -36.9 -5.10001l4.89999 90.2
-c-61.3 4 -86.8 20.1 -138.5 20.1c-11 46 -15 69 -19 141c9 5 19 7 30 3c18.1 -80 62.1 -120.1 129.4 -129.7l14 255.1c-5.7 2.20001 -11.2 4.39999 -16.4 6.60001c-72 31 -135 76 -135 163c0 96.3 78.6 155.8 169.4 158.9l4.40001 79.6c9.2 3.5 24.2 5 37 5l-4.69998 -85.2
-c62.3 -3.39996 66.4 -18.1 113.9 -24.3z" />
-    <glyph glyph-name="percent" unicode="%" horiz-adv-x="637" 
-d="M433 83c0 -52 25 -64 44 -64c55 0 88 89 88 145c0 52 -28 61 -42 61c-49 0 -90 -84 -90 -142zM378 98c0 82 60 158 134 158c40 0 86 -18 86 -91c0 -67 -44 -177 -127 -177c-61 0 -93 57 -93 110zM364 521c42 0 119 12 150 54l32 -16l-410 -571l-34 15l359 500
-c-38 -15 -77 -19 -107 -19c-23 0 -61 10 -80 21c2 -7 3 -16 3 -25c0 -64 -44 -177 -128 -177c-62 0 -92 58 -92 109c0 88.1 61 159 133 159c28 0 57 -13 67 -25c54 -25 89 -25 107 -25zM111 398c0 -52 26 -64 44 -64c55 0 89 87 89 145c0 50 -25 61 -43 61
-c-49 0 -90 -84 -90 -142z" />
-    <glyph glyph-name="parenleft" unicode="(" horiz-adv-x="298" 
-d="M44 252c0 186 93 353 212 455c11.4 -0.799988 17.6 -7.70001 21 -18c-32 -36 -150 -174 -150 -437s117 -401 150 -439c-3 -8 -11 -15 -21 -17c-208 180 -212 411 -212 456z" />
-    <glyph glyph-name="parenright" unicode=")" horiz-adv-x="298" 
-d="M254 252c0 -186 -93 -353 -212 -455c-11.4 0.800003 -17.6 7.7 -21 18c32 36 150 174 150 437s-117 401 -150 439c3 8 11 15 21 17c208 -180 212 -411 212 -456z" />
-    <glyph glyph-name="asterisk" unicode="*" horiz-adv-x="369" 
-d="M168 547c-13 3 -27 4 -42 4c-49 0 -81 7 -81 37c0 14 9 30 33 30c34 0 52 -33 96 -51c-4 39 -23 66 -23 92c0 21 12 39 30 39s33 -11 33 -35c0 -27 -17 -67 -19 -97c46 20 62 52 95 52c27 0 34 -20 34 -30c0 -30 -35 -37 -69 -37c-19 0 -37 -1 -55 -4
-c34 -37 83 -47 83 -87c0 -18 -15 -29 -29 -29c-39 0 -46 65 -71 104c-25 -45 -32 -104 -70 -104c-17 0 -29 13 -29 28c0 43 51 51 84 88z" />
-    <glyph glyph-name="plus" unicode="+" horiz-adv-x="550" 
-d="M250 435c0 13 23 27 33 27c8 0 17 -4 17 -14v-172h176c10 0 14 -9 14 -17c0 -10 -14 -33 -27 -33h-163v-160c0 -12 -19 -25 -34 -25c-8 0 -16 6 -16 15v170h-175c-9 0 -15 8 -15 16c0 15 13 34 25 34h165v159z" />
-    <glyph glyph-name="slash" unicode="/" horiz-adv-x="323" 
-d="M293 646l-237 -705h-41l237 705h41z" />
-    <glyph glyph-name="one" unicode="1" horiz-adv-x="465" 
-d="M288 122c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-50 1 -74.4 2 -122 2c-54.2 0 -90 -1 -139 -2c-6 6 -6 27 0 33c70 3 97 8 97 91v326c0 34 -3.5 58 -20 58c-19 0 -41.5 -6 -87 -25c-9 6.10001 -13.4 15.6 -15 27c88 41 140.7 65.7 196 100c3.5 0 6 -0.200012 6 -5
-c-1.70001 -13 -3 -74 -3 -134v-347z" />
-    <glyph glyph-name="two" unicode="2" horiz-adv-x="465" 
-d="M61 468c0 60 69 142 180 142c81 0 169 -44 169 -152c0 -76 -43 -120 -100 -175l-101 -97c-5 -5 -74 -73 -74 -121h178c36 0 53 25 70 96c10 2 23 0 29 -5c-1 -30 -11 -105 -24 -158c0 0 -46 2 -78 2h-175c-32 0 -83 -2 -83 -2c0 59 16 107 114 207l74 73
-c59 60 82 112 82 176c0 96 -51 121 -87 121c-73 0 -99 -36 -99 -61c0 -8 6 -17 8 -24s4 -13 4 -21c0 -22.1 -30 -40 -47 -40c-21 0 -40 18 -40 39z" />
-    <glyph glyph-name="three" unicode="3" horiz-adv-x="465" 
-d="M215 575c-26 0 -95 -12 -95 -76c0 -19 -4 -52 -39 -52c-24 0 -34 20 -34 34c0 33 42 129 189 129c52.3 0 87.2 -16.9 109 -39c24.3 -24.6 31.3 -49.1 31.3 -79.1c0 -52.7 -23 -94.3 -105.3 -132.9l1 -2c59 -10 141 -49 141 -158c0 -132 -106 -209 -225 -209
-c-60 0 -144 27 -144 67c0 16 21 35 42 35c20 0 33 -12 43 -26c12 -18 21 -41 72 -41c35 0 124 27 124 160c0 113 -74 129 -131 129c-13 0 -31 0 -48 -2l-5 32c99.1 14.1 157.1 90.5 157.1 140.7c0 64.3 -39.9 90.3 -83.1 90.3z" />
-    <glyph glyph-name="four" unicode="4" horiz-adv-x="465" 
-d="M271 507c-69 -94.2 -139.7 -205.8 -191 -288h191v288zM430 219c11 0 15 -6 15 -16c0 -12 -15 -31 -29 -31h-69v-92c0 -47 21 -45 70 -49c6 -6 6 -27 0 -33c-32 1 -69.6 2 -109 2c-46 0 -86 -1 -118 -2c-6 6 -6 27 0 33c43 3 81 3 81 49v92h-204c-30 0 -36 27 -39 42
-c91.5 143 208 307.5 271 385c3.70001 4.5 9 11 16 11h32l2 -2c-1.70001 -7.79999 -2 -47 -2 -97v-292h83z" />
-    <glyph glyph-name="five" unicode="5" horiz-adv-x="465" 
-d="M319 189c0 109 -51 152 -116 152c-36 0 -74 -4 -127 -24l34 288c35 -3 71 -5 108 -5c53 0 107 5 164 11l7 -4l-16 -68c-41 -4 -75 -6 -105 -6c-48 0 -80 5 -117 9l-20 -167c18 7 55 16 98 16c112 0 179 -87 179 -184c0 -126 -88 -218 -212 -218c-57 0 -142 34 -142 75
-c0 20 19 37 38 37c21 0 38 -15 51 -32c15 -20 28 -45 66 -45c60 0 110 70 110 165z" />
-    <glyph glyph-name="six" unicode="6" horiz-adv-x="465" 
-d="M135.2 307c-5.89999 -28.8 -8.2 -55.5 -8.2 -78c0 -171 57 -205 120 -205c49 0 91 50 91 160c0 50 -22 146 -120 146c-17.4 0 -50 -1.39999 -82.8 -23zM144.3 343.3c29.8 13.7 68.7 21.7 94.7 21.7c136 0 182 -77 182 -163s-54 -213 -185 -213c-77 0 -192 40 -192 243
-c0 79 31 170 93 242c56 65 118 107 219 137c8 -5 12 -14 12 -26c-133 -49.8 -196.6 -150.8 -223.7 -241.7z" />
-    <glyph glyph-name="seven" unicode="7" horiz-adv-x="465" 
-d="M170 535c-32 0 -65 -7 -87 -87c-11 -1.29999 -21.1 -0.100006 -32 3c8 52 19 112 20 160c0 3 1 3 4 3c18 -4 16 -14 50 -14h206c38 0 60 6 77 11l16 -12c-112 -273 -167 -439 -224 -609l-68 -3l-8 7c68 152 147 347 225 541h-179z" />
-    <glyph glyph-name="nine" unicode="9" horiz-adv-x="465" 
-d="M335.8 292c5.90002 28.8 8.20001 55.5 8.20001 78c0 171 -57 205 -120 205c-49 0 -91 -50 -91 -160c0 -50 22 -146 120 -146c17.4 0 50 1.39999 82.8 23zM326.7 255.7c-29.8 -13.7 -68.7 -21.7 -94.7 -21.7c-136 0 -182 77 -182 163s54 213 185 213
-c77 0 192 -40 192 -243c0 -79 -31 -170 -93 -242c-56 -65 -118 -107 -219 -137c-8 5 -12 14 -12 26c133 49.8 196.6 150.8 223.7 241.7z" />
-    <glyph glyph-name="colon" unicode=":" horiz-adv-x="236" 
-d="M70 355c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53zM70 72c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" />
-    <glyph glyph-name="less" unicode="&#x3c;" horiz-adv-x="550" 
-d="M138 239l317 -116c13 -14 14 -44 0 -50l-390 142c-9.3 14.7 -9.3 30.7 0 48l390 141c14 -6 13 -36 0 -50z" />
-    <glyph glyph-name="equal" unicode="=" horiz-adv-x="550" 
-d="M464 309h-389c-9 0 -15 8 -15 16c0 15 13 34 25 34h392c10 0 14 -9 14 -17c0 -10 -14 -33 -27 -33zM464 143h-389c-9 0 -15 8 -15 16c0 15 13 34 25 34h392c10 0 14 -9 14 -17c0 -10 -14 -33 -27 -33z" />
-    <glyph glyph-name="greater" unicode="&#x3e;" horiz-adv-x="550" 
-d="M412 236l-317 116c-13 14 -14 44 0 50l390 -142c9.29999 -14.7 9.29999 -30.7 0 -48l-390 -141c-14 6 -13 36 0 50z" />
-    <glyph glyph-name="question" unicode="?" horiz-adv-x="435" 
-d="M114 572c0 -15 2 -21 6 -26s6 -11 6 -24c0 -23 -20 -35 -39 -35c-16 0 -41 8 -41 43c0 38 21 66 51 90c29 25 71 39 124 39c102 0 168 -60 168 -151c0 -79 -62 -123 -109 -157c-23 -17 -43 -33 -52 -50c-13 -25 -14 -49 -14 -73v-44c0 -7 -9 -10 -17 -10s-16 3 -16 10v46
-c0 43 5 102 70 161c40 37 55 66 55 113c0 65 -38 122 -95 122s-97 -24 -97 -54zM144 43c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" />
-    <glyph glyph-name="at" unicode="@" horiz-adv-x="895" 
-d="M569 316c0 38 -29 63 -65 63c-17 0 -60 -9 -90 -40c-51 -51 -68 -115 -68 -177c0 -48 15 -92 78 -92c35 0 84 57 115 130c13 31 30 82 30 116zM583 74c0 -10 9 -12 11 -12c102 0 165 47 165 213c0 206 -175 305 -300 305c-152 0 -320 -102 -320 -339
-c0 -150 76 -366 334 -366c85 0 147 23 201 66l13 -18c-60 -46 -120 -81 -233 -81c-239 0 -395 168 -395 381c0 215 185 388 410 388c215 0 370 -142 370 -329c0 -114 -70 -255 -288 -255c-29 0 -36 25 -36 41c0 15 7 38 15 63l-2 1c-44 -74 -98 -103 -133 -103
-c-100 0 -122 84 -122 124c0 143 127 257 233 257c33 0 67 -17 77 -43l5 24l53 13l15 -5l-60 -258c-6 -27 -13 -60.5 -13 -67z" />
-    <glyph glyph-name="A" unicode="A" horiz-adv-x="695" 
-d="M263 283h177l-94 272h-6l-102.2 -258.7c-3.8 -10.3 3.2 -13.3 25.2 -13.3zM155 79c-15.6 -41.1 31.4 -45.4 69 -48c6 -6 6 -27 0 -33c-37 1 -87 2 -128 2c-30.3 0 -63 -1 -89 -2c-6 6 -6 27 0 33c43.5 3 74 9 100 71l227 536c13 0 40 11 55 20l206 -572
-c17.4 -48.2 51.2 -51.5 90 -55c6 -6 6 -27 0 -33c-35 1 -73 2 -114 2c-39 0 -94 -1 -131 -2c-6 6 -6 27 0 33c47.6 3.4 85.8 6.5 74 41l-58 169h-211c-24 0 -30 -4 -35 -17z" />
-    <glyph glyph-name="B" unicode="B" horiz-adv-x="588" 
-d="M191 550v-184h74c83 0 142 30 142 115c0 102 -73 132 -129 132c-87 0 -87 -10 -87 -63zM191 332v-214c0 -61 13 -87 83 -87c152 0 180 61 180 134c0 90 -57 167 -194 167h-69zM148 645c36 0 90 2 125 2c186 0 215 -87 215 -154c0 -54.3 -44.9 -105.6 -95 -131v-2
-c87 -25 154 -80 154 -176c0 -86 -53 -186 -252 -186c-84 0 -110.3 2 -146 2c-37.1 0 -91 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c39 -1 93.3 -2 129 -2z" />
-    <glyph glyph-name="C" unicode="C" horiz-adv-x="646" 
-d="M357 -10c-215 0 -320 146.2 -320 320c0 104.3 39.6 202.2 106 263c59 54 130 85 215 85c123 0 168 -40 219 -45c10 -55 17 -103 22 -155c-11.3 -6 -21 -9 -33 -5c-26 86 -81 168 -219 168c-52 0 -110 -28 -159.6 -89c-36.5 -44.9 -59.4 -116.7 -59.4 -203
-c0 -146 93.4 -298 228 -298c93 0 161 31 232 109c11 0 18 -6 23 -15c-68 -89 -157 -135 -254 -135z" />
-    <glyph glyph-name="D" unicode="D" horiz-adv-x="701" 
-d="M191 84c0 -32 11 -52 109 -52c141 0 262 50 262 252c0 154 -71 329 -287 329c-49 0 -84 -14 -84 -49v-480zM148 645c39 0 94 2 165 2c192 0 345 -153 345 -339c0 -246 -186 -310 -327 -310c-103 0 -145 2 -182 2c-37.7 0 -91 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91
-v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c40 -1 93.3 -2 129 -2z" />
-    <glyph glyph-name="E" unicode="E" horiz-adv-x="557" 
-d="M281 361c85 0 88 13 91 68c6 6 27 6 33 0c-1 -24 -2 -58 -2 -86c0 -34.3 1 -62 2 -88c-6 -6 -27 -6 -33 0c-3 45 -6 68 -91 68h-91v-221c0 -47 14 -63 56 -63h116c76 0 111 59 131 131c13.1 3.2 24.6 0.899994 35 -5c-8 -51 -23 -117 -37 -167c0 0 -80 2 -128 2h-215
-c-33 0 -93 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c40 -1 98.5 -2 129 -2h255c24 0 32 1 49 4c3 0 4 -1 4 -3c2 -8 17 -104 22 -145c-9.79999 -4.70001 -20.6 -6.79999 -33 -5c-22 69 -38 109 -113 109h-75
-c-54 0 -66 -20 -66 -64v-180h91z" />
-    <glyph glyph-name="F" unicode="F" horiz-adv-x="485" 
-d="M283 323h-93v-201c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-35 1 -84 2 -129 2s-95 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c40 -1 97 -2 129 -2h255.3c24.7 0 29.5 0.599976 47 4c2.40002 0 3.60001 -0.700012 4 -3
-c1.40002 -7.59998 16.5 -104 21.7 -145c-8 -3 -19 -5 -31 -5c-22 69 -47 109 -153 109h-45c-44 0 -56 -10 -56 -64v-180h93c85 0 88 13 91 68c6 6 27 6 33 0c-1 -26 -2 -52.5 -2 -86c0 -34.3 1 -63 2 -88c-6 -6 -27 -6 -33 0c-3 45 -6 68 -91 68z" />
-    <glyph glyph-name="G" unicode="G" horiz-adv-x="685" 
-d="M377 658c111 0 148 -35 208 -45c16 -72 20.5 -112 23 -154c-11.3 -4.70001 -21.7 -6.70001 -33 -6c-26 86 -67 169 -212 169c-116.5 0 -230 -120 -230 -295c0 -132 84 -301 242 -301c54 0 121 6 155 38v153c0 40.1 -27.1 43.8 -82 48c-6 6 -6 30 0 36
-c44 -1 90.5 -2 124 -2c40 0 65 1 89 2c6 -6 6 -30 0 -36c-29 -3 -46 -12.8 -46 -48v-116c0 -11 5 -19 16 -28c-68 -58 -161 -83 -279 -83c-191 0 -315 137.2 -315 317c0 220 173 351 340 351z" />
-    <glyph glyph-name="grave" unicode="`" horiz-adv-x="392" 
-d="M178 699l70 -126c5 -10 6 -17 6 -24c0 -5 -7 -11 -15 -11c-6 0 -13 5 -29 20l-114 109l2 11c8 6 31 23 65 23c5 0 11 -1 15 -2z" />
-    <glyph glyph-name="ograve" unicode="&#xf2;" horiz-adv-x="504" 
-d="M224 671l70 -126c5 -10 6 -17 6 -24c0 -5 -7 -11 -15 -11c-6 0 -13 5 -29 20l-114 109l2 11c8 6 31 23 65 23c5 0 11 -1 15 -2zM41 205c0 63.2 19 121.4 55.3 164c36.6 43 90.9 70 156.7 70c153 0 210 -121 210 -225c0 -61.3 -20.3 -124.2 -65.1 -168
-c-34.1 -33.3 -82.5 -56 -146.9 -56c-142 0 -210 113 -210 215zM238 404c-90 0 -111 -89 -111 -176c0 -77 34 -203 138 -203c47 0 112 31 112 157c0 144 -53 222 -139 222z" />
-    <glyph glyph-name="oacute" unicode="&#xf3;" horiz-adv-x="504" 
-d="M270 671c3 1 9 2 14 2c6.39999 0 32 -1 55 -23l3 -11l-115 -109c-15 -15 -23 -19 -30 -19s-14 6 -14 13c0 11.2 3.3 15.2 11.4 28zM41 205c0 63.2 19 121.4 55.3 164c36.6 43 90.9 70 156.7 70c153 0 210 -121 210 -225c0 -61.3 -20.3 -124.2 -65.1 -168
-c-34.1 -33.3 -82.5 -56 -146.9 -56c-142 0 -210 113 -210 215zM238 404c-90 0 -111 -89 -111 -176c0 -77 34 -203 138 -203c47 0 112 31 112 157c0 144 -53 222 -139 222z" />
-    <glyph glyph-name="ocircumflex" unicode="&#xf4;" horiz-adv-x="504" 
-d="M268 660c29 -47 73 -100 109 -140c-5 -7 -13.6 -15.1 -23 -17c-38 24 -73 52 -103 83c-32 -32 -65 -61 -104 -83c-9 2 -16 8 -22 17c36 40 82 94 111 140c10.7 2.29999 21.3 3 32 0zM41 205c0 63.2 19 121.4 55.3 164c36.6 43 90.9 70 156.7 70c153 0 210 -121 210 -225
-c0 -61.3 -20.3 -124.2 -65.1 -168c-34.1 -33.3 -82.5 -56 -146.9 -56c-142 0 -210 113 -210 215zM238 404c-90 0 -111 -89 -111 -176c0 -77 34 -203 138 -203c47 0 112 31 112 157c0 144 -53 222 -139 222z" />
-    <glyph glyph-name="otilde" unicode="&#xf5;" horiz-adv-x="504" 
-d="M304 573c22 0 33 10 47 52c11 1 21 -2 27 -6c-12 -60 -41 -99 -87 -99c-22 0 -43 18 -64 32c-18 11 -37 19 -54 19c-26 0 -36 -15 -46 -48c-11 -2 -21 -1 -27 5c14 59 37 98 80 98c30 0 52 -20 72 -34c16 -12 33 -19 52 -19zM41 205c0 63.2 19 121.4 55.3 164
-c36.6 43 90.9 70 156.7 70c153 0 210 -121 210 -225c0 -61.3 -20.3 -124.2 -65.1 -168c-34.1 -33.3 -82.5 -56 -146.9 -56c-142 0 -210 113 -210 215zM238 404c-90 0 -111 -89 -111 -176c0 -77 34 -203 138 -203c47 0 112 31 112 157c0 144 -53 222 -139 222z" />
-    <glyph glyph-name="odieresis" unicode="&#xf6;" horiz-adv-x="504" 
-d="M121 575c0 26 21 48 47 48s47 -22 47 -48s-21 -47 -47 -47s-47 21 -47 47zM290 575c0 26 21 48 47 48s47 -22 47 -48s-21 -47 -47 -47s-47 21 -47 47zM41 205c0 63.2 19 121.4 55.3 164c36.6 43 90.9 70 156.7 70c153 0 210 -121 210 -225
-c0 -61.3 -20.3 -124.2 -65.1 -168c-34.1 -33.3 -82.5 -56 -146.9 -56c-142 0 -210 113 -210 215zM238 404c-90 0 -111 -89 -111 -176c0 -77 34 -203 138 -203c47 0 112 31 112 157c0 144 -53 222 -139 222z" />
-    <glyph glyph-name="divide" unicode="&#xf7;" horiz-adv-x="550" 
-d="M225.8 387c0 24.3 20.1 44.4 44.4 44.4c24.3 0 44.4 -20.1 44.4 -44.4s-20.1 -44.4 -44.4 -44.4c-24.3 0 -44.4 20.1 -44.4 44.4zM225.8 119c0 24.3 20.1 44.4 44.4 44.4c24.3 0 44.4 -20.1 44.4 -44.4s-20.1 -44.4 -44.4 -44.4c-24.3 0 -44.4 20.1 -44.4 44.4zM463 226
-h-388c-9 0 -15 8 -15 16c0 15 13 34 25 34h391c10 0 14 -9 14 -17c0 -10 -14 -33 -27 -33z" />
-    <glyph glyph-name="ugrave" unicode="&#xf9;" horiz-adv-x="531" 
-d="M219 671l70 -126c5 -10 6 -17 6 -24c0 -5 -7 -11 -15 -11c-6 0 -13 5 -29 20l-114 109l2 11c8 6 31 23 65 23c5 0 11 -1 15 -2zM217 -10c-99 0 -129 67 -129 136v192c0 65 -14 76 -62 80c-6 6 -6 27 0 33c34 -1 70 -2 102 -2c15 0 30 1 35 2c5 0 8 -3 8 -6
-c0 0 -4 -73 -4 -103v-182c0 -89 50 -103 80 -103c25 0 63 16 100 48c14 12 16 20 16 39v193c0 66 -13 78 -62 81c-6 6 -6 27 0 33c34 -1 70 -2 102 -2c15 0 30 1 35 2c5 0 8 -3 8 -6c0 0 -4 -73 -4 -103v-192c0 -49 9 -68 73 -73c6 -6 6 -21 0 -27c-61 -7 -96 -22 -118 -40
-c-6.5 -2.5 -11 -3 -19 0c0 0 -8.5 33.5 -11 59c-0.700012 7 -10 5 -15 1c-49 -40 -96 -60 -135 -60z" />
-    <glyph glyph-name="uacute" unicode="&#xfa;" horiz-adv-x="531" 
-d="M297 671c3 1 9 2 14 2c6.39999 0 32 -1 55 -23l3 -11l-115 -109c-15 -15 -23 -19 -30 -19s-14 6 -14 13c0 11.2 3.3 15.2 11.4 28zM217 -10c-99 0 -129 67 -129 136v192c0 65 -14 76 -62 80c-6 6 -6 27 0 33c34 -1 70 -2 102 -2c15 0 30 1 35 2c5 0 8 -3 8 -6
-c0 0 -4 -73 -4 -103v-182c0 -89 50 -103 80 -103c25 0 63 16 100 48c14 12 16 20 16 39v193c0 66 -13 78 -62 81c-6 6 -6 27 0 33c34 -1 70 -2 102 -2c15 0 30 1 35 2c5 0 8 -3 8 -6c0 0 -4 -73 -4 -103v-192c0 -49 9 -68 73 -73c6 -6 6 -21 0 -27c-61 -7 -96 -22 -118 -40
-c-6.5 -2.5 -11 -3 -19 0c0 0 -8.5 33.5 -11 59c-0.700012 7 -10 5 -15 1c-49 -40 -96 -60 -135 -60z" />
-    <glyph glyph-name="ucircumflex" unicode="&#xfb;" horiz-adv-x="531" 
-d="M263 660c29 -47 73 -100 109 -140c-5 -7 -13.6 -15.1 -23 -17c-38 24 -73 52 -103 83c-32 -32 -65 -61 -104 -83c-9 2 -16 8 -22 17c36 40 82 94 111 140c10.7 2.29999 21.3 3 32 0zM217 -10c-99 0 -129 67 -129 136v192c0 65 -14 76 -62 80c-6 6 -6 27 0 33
-c34 -1 70 -2 102 -2c15 0 30 1 35 2c5 0 8 -3 8 -6c0 0 -4 -73 -4 -103v-182c0 -89 50 -103 80 -103c25 0 63 16 100 48c14 12 16 20 16 39v193c0 66 -13 78 -62 81c-6 6 -6 27 0 33c34 -1 70 -2 102 -2c15 0 30 1 35 2c5 0 8 -3 8 -6c0 0 -4 -73 -4 -103v-192
-c0 -49 9 -68 73 -73c6 -6 6 -21 0 -27c-61 -7 -96 -22 -118 -40c-6.5 -2.5 -11 -3 -19 0c0 0 -8.5 33.5 -11 59c-0.700012 7 -10 5 -15 1c-49 -40 -96 -60 -135 -60z" />
-    <glyph glyph-name="ebreve" unicode="&#x115;" horiz-adv-x="447" 
-d="M120 648c11 -53 54 -90 108 -90c52 0 98 32 108 90l27 -12c-12 -86 -76 -135 -135 -135c-70 0 -121 50 -135 135zM124 282l181 3c11 0.200012 15 5 15 14c0 84 -45 105 -83 105c-24 0 -94 -9 -113 -122zM386 93c12 -1 18 -6 21 -16c-40 -52 -94 -87 -170 -87
-c-72 0 -119 24 -153 64c-33 38 -47 92 -47 148c0 152 113 235 200 235c139 0 169 -90 169 -174c0 -11 -7 -17 -19 -17l-266 2c0 -58 12 -104 32 -137c31 -51 73 -72 109 -72c58 0 87 16 124 54z" />
-    <glyph glyph-name="Edotaccent" unicode="&#x116;" horiz-adv-x="557" 
-d="M218 753c0 28 24 52 52 52s52 -24 52 -52s-24 -52 -52 -52s-52 24 -52 52zM281 361c85 0 88 13 91 68c6 6 27 6 33 0c-1 -24 -2 -58 -2 -86c0 -34.3 1 -62 2 -88c-6 -6 -27 -6 -33 0c-3 45 -6 68 -91 68h-91v-221c0 -47 14 -63 56 -63h116c76 0 111 59 131 131
-c13.1 3.2 24.6 1 35 -5c-8 -51 -23 -117 -37 -167c0 0 -80 2 -128 2h-215c-33 0 -93 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c40 -1 98.5 -2 129 -2h255c24 0 32 1 49 4c3 0 4 -1 4 -3c2 -8 17 -104 22 -145
-c-9.79999 -4.70001 -20.6 -6.79999 -33 -5c-22 69 -38 109 -113 109h-75c-54 0 -66 -20 -66 -64v-180h91z" />
-    <glyph glyph-name="edotaccent" unicode="&#x117;" horiz-adv-x="447" 
-d="M180 599c0 24 28 48 52 48c27 0 48 -28 48 -52c0 -21.1 -24 -48 -52 -48c-24 0 -48 26 -48 52zM124 282l181 3c11 0.200012 15 5 15 14c0 84 -45 105 -83 105c-24 0 -94 -9 -113 -122zM386 93c12 -1 18 -6 21 -16c-40 -52 -94 -87 -170 -87c-72 0 -119 24 -153 64
-c-33 38 -47 92 -47 148c0 152 113 235 200 235c139 0 169 -90 169 -174c0 -11 -7 -17 -19 -17l-266 2c0 -58 12 -104 32 -137c31 -51 73 -72 109 -72c58 0 87 16 124 54z" />
-    <glyph glyph-name="Eogonek" unicode="&#x118;" horiz-adv-x="557" 
-d="M498 -135c-29 -45 -69 -65 -110 -65c-50 0 -88 20 -88 74c0 41.4 35.6 98.8 95.9 125.8c-11.7 0.1 -23 0.2 -32.9 0.2h-215c-33 0 -93 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c40 -1 98.5 -2 129 -2h255c24 0 32 1 49 4
-c3 0 4 -1 4 -3c2 -8 17 -104 22 -145c-9.79999 -4.70001 -20.6 -6.79999 -33 -5c-22 69 -38 109 -113 109h-75c-54 0 -66 -20 -66 -64v-180h91c85 0 88 13 91 68c6 6 27 6 33 0c-1 -24 -2 -58 -2 -86c0 -34.3 1 -62 2 -88c-6 -6 -27 -6 -33 0c-3 45 -6 68 -91 68h-91v-221
-c0 -47 14 -63 56 -63h116c76 0 111 59 131 131c13.1 3.2 24.6 1 35 -5c-8 -51 -23 -117 -37 -167c0 0 -3.39999 0.1 -9.20001 0.2l0.200012 -0.2c-71 0 -120 -67 -120 -113c0 -26 13 -47 50 -47c29 0 45 16 67 38c9 0 15 -4 19 -11z" />
-    <glyph glyph-name="eogonek" unicode="&#x119;" horiz-adv-x="447" 
-d="M373 -135c-29 -45 -69 -65 -110 -65c-50 0 -88 20 -88 74c0 41 34.4 79.9 84.2 117c-7.20001 -0.7 -14.6 -1 -22.2 -1c-72 0 -119 24 -153 64c-33 38 -47 92 -47 148c0 152 113 235 200 235c139 0 169 -90 169 -174c0 -11 -7 -17 -19 -17l-266 2c0 -58 12 -104 32 -137
-c31 -51 73 -72 109 -72c58 0 87 16 124 54c12 -1 18 -6 21 -16c-21.5 -28 -47.1 -51 -77.9 -66.3c-63.1 -52.5 -92.1 -82.3 -92.1 -125.7c0 -26 13 -47 50 -47c29 0 45 16 67 38c9 0 15 -4 19 -11zM124 282l181 3c11 0.200012 15 5 15 14c0 84 -45 105 -83 105
-c-24 0 -94 -9 -113 -122z" />
-    <glyph glyph-name="Ecaron" unicode="&#x11a;" horiz-adv-x="557" 
-d="M268 697c-30 37 -65 67 -101 95l16 20c39 -17 73 -36 106 -61c37 26 69 45 107 61l15 -20c-38 -29 -70 -61 -100 -95h-43zM281 361c85 0 88 13 91 68c6 6 27 6 33 0c-1 -24 -2 -58 -2 -86c0 -34.3 1 -62 2 -88c-6 -6 -27 -6 -33 0c-3 45 -6 68 -91 68h-91v-221
-c0 -47 14 -63 56 -63h116c76 0 111 59 131 131c13.1 3.2 24.6 1 35 -5c-8 -51 -23 -117 -37 -167c0 0 -80 2 -128 2h-215c-33 0 -93 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c40 -1 98.5 -2 129 -2h255c24 0 32 1 49 4
-c3 0 4 -1 4 -3c2 -8 17 -104 22 -145c-9.79999 -4.70001 -20.6 -6.79999 -33 -5c-22 69 -38 109 -113 109h-75c-54 0 -66 -20 -66 -64v-180h91z" />
-    <glyph glyph-name="ecaron" unicode="&#x11b;" horiz-adv-x="447" 
-d="M199 501c-29 47 -66 92 -101 130l20 13c39 -29 72 -54 106 -90c37 38 71 63 108 90l19 -13c-35 -39 -73 -84 -102 -130h-50zM124 282l181 3c11 0.200012 15 5 15 14c0 84 -45 105 -83 105c-24 0 -94 -9 -113 -122zM386 93c12 -1 18 -6 21 -16c-40 -52 -94 -87 -170 -87
-c-72 0 -119 24 -153 64c-33 38 -47 92 -47 148c0 152 113 235 200 235c139 0 169 -90 169 -174c0 -11 -7 -17 -19 -17l-266 2c0 -58 12 -104 32 -137c31 -51 73 -72 109 -72c58 0 87 16 124 54z" />
-    <glyph glyph-name="Gcircumflex" unicode="&#x11c;" horiz-adv-x="685" 
-d="M383 808c30 -36 67 -70 103 -97c-2.79999 -9.09998 -6.89999 -17.2 -16 -21c-39 18 -73 36 -106 61c-37 -27 -69 -44 -107 -61c-9 6 -12 12 -14 21c37 28 70 63 101 97c14 8.40002 23.6 7.70001 39 0zM377 658c111 0 148 -35 208 -45c16 -72 20.5 -112 23 -154
-c-11.3 -4.70001 -21.7 -6.70001 -33 -6c-26 86 -67 169 -212 169c-116.5 0 -230 -120 -230 -295c0 -132 84 -301 242 -301c54 0 121 6 155 38v153c0 40.1 -27.1 43.8 -82 48c-6 6 -6 30 0 36c44 -1 90.5 -2 124 -2c40 0 65 1 89 2c6 -6 6 -30 0 -36
-c-29 -3 -46 -12.8 -46 -48v-116c0 -11 5 -19 16 -28c-68 -58 -161 -83 -279 -83c-191 0 -315 137.2 -315 317c0 220 173 351 340 351z" />
-    <glyph glyph-name="gcircumflex" unicode="&#x11d;" horiz-adv-x="500" 
-d="M246 659c29 -47 73 -100 109 -140c-5 -7 -13.6 -15.1 -23 -17c-38 24 -73 52 -103 83c-32 -32 -65 -61 -104 -83c-9 2 -16 8 -22 17c36 40 82 94 111 140c10.7 2.29999 21.3 3 32 0zM319 279c0 83 -34 129 -97 129c-55 0 -80 -36 -80 -106c0 -64 9 -135 93 -135
-c37 0 84 19 84 112zM132 -10c-29 -35 -31 -60 -31 -94c0 -68 84 -97 120 -97c90 0 196 38 196 110c0 26 -12 40 -51 62c-29 16 -71 17 -121 17c-14 0 -42 -3 -73 -3c-13 0 -29 2 -40 5zM444 387c-11 0 -24 10 -28 18c-6 9 -13 12 -20 12c-13 0 -33 -14 -40 -24
-c29 -30 43 -57 43 -104c0 -98 -81 -153 -169 -153c-39 0 -67 7 -91 21c-12 -17 -18 -38 -18 -58c0 -43 35 -57 64 -57c5 0 15 1 30 2c24 3 49 5 67 5c37 0 107 -1 146 -33c29 -24 44 -49 44 -81c0 -108 -146 -173 -281 -173c-77 0 -159 27 -159 114c0 43 28 89 82 121
-c-26 13 -46 41 -46 77c0 34 16 77 44 101c-28 27 -52 58 -52 112c0 92 82 152 171 152c59 0 92 -20 104 -28c26 34 74 51 100 51c27 0 46 -16 46 -37c0 -20 -18 -38 -37 -38z" />
-    <glyph glyph-name="Gbreve" unicode="&#x11e;" horiz-adv-x="685" 
-d="M488 806c-6 -71 -70 -113 -136 -113c-73 0 -131 43 -136 113h28c8 -39 55 -61 108 -61c49 0 101 22 108 61h28zM377 658c111 0 148 -35 208 -45c16 -72 20.5 -112 23 -154c-11.3 -4.70001 -21.7 -6.70001 -33 -6c-26 86 -67 169 -212 169c-116.5 0 -230 -120 -230 -295
-c0 -132 84 -301 242 -301c54 0 121 6 155 38v153c0 40.1 -27.1 43.8 -82 48c-6 6 -6 30 0 36c44 -1 90.5 -2 124 -2c40 0 65 1 89 2c6 -6 6 -30 0 -36c-29 -3 -46 -12.8 -46 -48v-116c0 -11 5 -19 16 -28c-68 -58 -161 -83 -279 -83c-191 0 -315 137.2 -315 317
-c0 220 173 351 340 351z" />
-    <glyph glyph-name="gbreve" unicode="&#x11f;" horiz-adv-x="500" 
-d="M112 644c11 -53 54 -90 108 -90c52 0 98 32 108 90l27 -12c-12 -86 -76 -135 -135 -135c-70 0 -121 50 -135 135zM319 279c0 83 -34 129 -97 129c-55 0 -80 -36 -80 -106c0 -64 9 -135 93 -135c37 0 84 19 84 112zM132 -10c-29 -35 -31 -60 -31 -94c0 -68 84 -97 120 -97
-c90 0 196 38 196 110c0 26 -12 40 -51 62c-29 16 -71 17 -121 17c-14 0 -42 -3 -73 -3c-13 0 -29 2 -40 5zM444 387c-11 0 -24 10 -28 18c-6 9 -13 12 -20 12c-13 0 -33 -14 -40 -24c29 -30 43 -57 43 -104c0 -98 -81 -153 -169 -153c-39 0 -67 7 -91 21
-c-12 -17 -18 -38 -18 -58c0 -43 35 -57 64 -57c5 0 15 1 30 2c24 3 49 5 67 5c37 0 107 -1 146 -33c29 -24 44 -49 44 -81c0 -108 -146 -173 -281 -173c-77 0 -159 27 -159 114c0 43 28 89 82 121c-26 13 -46 41 -46 77c0 34 16 77 44 101c-28 27 -52 58 -52 112
-c0 92 82 152 171 152c59 0 92 -20 104 -28c26 34 74 51 100 51c27 0 46 -16 46 -37c0 -20 -18 -38 -37 -38z" />
-    <glyph glyph-name="Gdotaccent" unicode="&#x120;" horiz-adv-x="685" 
-d="M304 753c0 28 24 52 52 52s52 -24 52 -52s-24 -52 -52 -52s-52 24 -52 52zM377 658c111 0 148 -35 208 -45c16 -72 20.5 -112 23 -154c-11.3 -4.70001 -21.7 -6.70001 -33 -6c-26 86 -67 169 -212 169c-116.5 0 -230 -120 -230 -295c0 -132 84 -301 242 -301
-c54 0 121 6 155 38v153c0 40.1 -27.1 43.8 -82 48c-6 6 -6 30 0 36c44 -1 90.5 -2 124 -2c40 0 65 1 89 2c6 -6 6 -30 0 -36c-29 -3 -46 -12.8 -46 -48v-116c0 -11 5 -19 16 -28c-68 -58 -161 -83 -279 -83c-191 0 -315 137.2 -315 317c0 220 173 351 340 351z" />
-    <glyph glyph-name="gdotaccent" unicode="&#x121;" horiz-adv-x="500" 
-d="M180 599c0 24 28 48 52 48c27 0 48 -28 48 -52c0 -21.1 -24 -48 -52 -48c-24 0 -48 26 -48 52zM319 279c0 83 -34 129 -97 129c-55 0 -80 -36 -80 -106c0 -64 9 -135 93 -135c37 0 84 19 84 112zM132 -10c-29 -35 -31 -60 -31 -94c0 -68 84 -97 120 -97
-c90 0 196 38 196 110c0 26 -12 40 -51 62c-29 16 -71 17 -121 17c-14 0 -42 -3 -73 -3c-13 0 -29 2 -40 5zM444 387c-11 0 -24 10 -28 18c-6 9 -13 12 -20 12c-13 0 -33 -14 -40 -24c29 -30 43 -57 43 -104c0 -98 -81 -153 -169 -153c-39 0 -67 7 -91 21
-c-12 -17 -18 -38 -18 -58c0 -43 35 -57 64 -57c5 0 15 1 30 2c24 3 49 5 67 5c37 0 107 -1 146 -33c29 -24 44 -49 44 -81c0 -108 -146 -173 -281 -173c-77 0 -159 27 -159 114c0 43 28 89 82 121c-26 13 -46 41 -46 77c0 34 16 77 44 101c-28 27 -52 58 -52 112
-c0 92 82 152 171 152c59 0 92 -20 104 -28c26 34 74 51 100 51c27 0 46 -16 46 -37c0 -20 -18 -38 -37 -38z" />
-    <glyph glyph-name="Gcommaaccent" unicode="&#x122;" horiz-adv-x="685" 
-d="M375 -41c38 0 62 -34 62 -86c0 -60 -49 -90 -106 -99c-6 6 -8 15 -8 24c49 11 75 35 75 53c0 20 -13 24 -31 26c-17 3 -42 12 -42 39c0 24 21 43 50 43zM377 658c111 0 148 -35 208 -45c16 -72 20.5 -112 23 -154c-11.3 -4.70001 -21.7 -6.70001 -33 -6
-c-26 86 -67 169 -212 169c-116.5 0 -230 -120 -230 -295c0 -132 84 -301 242 -301c54 0 121 6 155 38v153c0 40.1 -27.1 43.8 -82 48c-6 6 -6 30 0 36c44 -1 90.5 -2 124 -2c40 0 65 1 89 2c6 -6 6 -30 0 -36c-29 -3 -46 -12.8 -46 -48v-116c0 -11 5 -19 16 -28
-c-68 -58 -161 -83 -279 -83c-191 0 -315 137.2 -315 317c0 220 173 351 340 351z" />
-    <glyph glyph-name="gcommaaccent" unicode="&#x123;" horiz-adv-x="500" 
-d="M228 511c-39 0 -62 37 -62 73c0 24 7 46 23 66c16.9 21.1 45 38 83 43c4 -4 5 -13 5 -20c-57 -12 -77 -44 -77 -67c0 -19.6 4.8 -13 29 -13c40 0 50 -24 50 -41c0 -16 -16 -41 -51 -41zM319 279c0 83 -34 129 -97 129c-55 0 -80 -36 -80 -106c0 -64 9 -135 93 -135
-c37 0 84 19 84 112zM132 -10c-29 -35 -31 -60 -31 -94c0 -68 84 -97 120 -97c90 0 196 38 196 110c0 26 -12 40 -51 62c-29 16 -71 17 -121 17c-14 0 -42 -3 -73 -3c-13 0 -29 2 -40 5zM444 387c-11 0 -24 10 -28 18c-6 9 -13 12 -20 12c-13 0 -33 -14 -40 -24
-c29 -30 43 -57 43 -104c0 -98 -81 -153 -169 -153c-39 0 -67 7 -91 21c-12 -17 -18 -38 -18 -58c0 -43 35 -57 64 -57c5 0 15 1 30 2c24 3 49 5 67 5c37 0 107 -1 146 -33c29 -24 44 -49 44 -81c0 -108 -146 -173 -281 -173c-77 0 -159 27 -159 114c0 43 28 89 82 121
-c-26 13 -46 41 -46 77c0 34 16 77 44 101c-28 27 -52 58 -52 112c0 92 82 152 171 152c59 0 92 -20 104 -28c26 34 74 51 100 51c27 0 46 -16 46 -37c0 -20 -18 -38 -37 -38z" />
-    <glyph glyph-name="Hcircumflex" unicode="&#x124;" horiz-adv-x="730" 
-d="M618 122c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-44 1 -91.7 2 -129 2c-37.1 0 -85 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v199h-342v-199c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-44 1 -92.7 2 -129 2c-37.7 0 -86 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91
-v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c38 -1 79 -2 129 -2c51 0 92 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-160h342v160c0 83 -17 88 -87 91c-6 6 -6 27 0 33c44 -1 91.7 -2 129 -2c38 0 89 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-401zM386 806
-c30 -36 67 -70 103 -97c-2.79999 -9.09998 -6.89999 -17.2 -16 -21c-39 18 -73 36 -106 61c-37 -27 -69 -44 -107 -61c-9 6 -12 12 -14 21c37 28 70 63 101 97c14 8.40002 23.6 7.70001 39 0z" />
-    <glyph glyph-name="hcircumflex" unicode="&#x125;" horiz-adv-x="538" 
-d="M339.3 663.9c26.1 -49.3 65.7 -105 98.1 -147c-4.5 -7.30002 -14.3 -15.8 -22.7 -17.8c-34.2 25.2 -63.7 52.6 -90.7 85.1c-28.8 -33.6 -56.5 -62 -91.6 -85.1c-8.09999 2.10001 -16.4 8.39999 -21.8 17.8c32.4 42 73.8 98.7 99.9 147
-c9.60001 2.39996 19.2 3.19995 28.8 0zM167 285.9v-163.9c0 -83 9 -87 59.8 -91c6 -6 6 -27 0 -33c-28 1 -60.8 2 -98.8 2c-40 0 -76.8 -1 -109.8 -2c-6 6 -6 27 0 33c58 4 69.8 8 69.8 91v437c0 84 -12 79 -64 82c-6 6 -8 22 -6 30c40 3 115 17 140 27c9 0 13 -3 13 -10
-c0 0 -4 -40 -4 -105l-0.800003 -225c0 -14 6.40001 -3.79999 9.8 0c61 68 120.9 81 170 81c35 0 66.2 -12 83 -34c23.3 -30.5 27 -79 27 -134v-149c0 -82 11 -86 67 -91c5 -6 5 -27 0 -33c-33 1 -66 2 -106 2s-74 -1 -102 -2c-5 6 -5 27 0 33c52 5 62 9 62 91v152
-c0 30 -2 57.2 -12 77c-11.6 22.9 -32.6 36 -53 36c-39.4 0 -90 -21.7 -128 -59c-8 -8.70001 -17 -21 -17 -42.1z" />
-    <glyph glyph-name="Hbar" unicode="&#x126;" horiz-adv-x="730" 
-d="M618 122c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-44 1 -91.7 2 -129 2c-37.1 0 -85 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v199h-342v-199c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-44 1 -92.7 2 -129 2c-37.7 0 -86 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91
-v390h-65v34h64.4c-3.4 61 -23.5 65.3 -86.4 68c-6 6 -6 27 0 33c38 -1 79 -2 129 -2c51 0 92 1 130 2c6 -6 6 -27 0 -33c-62.9 -2.70001 -83 -7 -86.4 -68h340.8c-3.40002 61 -23.5 65.3 -86.4 68c-6 6 -6 27 0 33c44 -1 91.7 -2 129 -2c38 0 89 1 130 2c6 -6 6 -27 0 -33
-c-62.9 -2.70001 -83 -7 -86.4 -68h57.4v-34h-58v-390zM533 512h-342v-149h342v149z" />
-    <glyph glyph-name="hbar" unicode="&#x127;" horiz-adv-x="538" 
-d="M167 285.9v-163.9c0 -83 9 -87 59.8 -91c6 -6 6 -27 0 -33c-28 1 -60.8 2 -98.8 2c-40 0 -76.8 -1 -109.8 -2c-6 6 -6 27 0 33c58 4 69.8 8 69.8 91v408h-62v39h61.9c-1 73.6 -14.1 69.1 -63.9 72c-6 6 -8 22 -6 30c40 3 115 17 140 27c9 0 13 -3 13 -10
-c0 0 -4 -40 -4 -105v-14h174v-39h-174.2l-0.600006 -172c0 -14 6.40001 -3.79999 9.8 0c61 68 120.9 81 170 81c35 0 66.2 -12 83 -34c23.3 -30.5 27 -79 27 -134v-149c0 -82 11 -86 67 -91c5 -6 5 -27 0 -33c-33 1 -66 2 -106 2s-74 -1 -102 -2c-5 6 -5 27 0 33
-c52 5 62 9 62 91v152c0 30 -2 57.2 -12 77c-11.6 22.9 -32.6 36 -53 36c-39.4 0 -90 -21.7 -128 -59c-8 -8.70001 -17 -21 -17 -42.1z" />
-    <glyph glyph-name="Itilde" unicode="&#x128;" horiz-adv-x="297" 
-d="M213 744c22 0 33 10 47 52c11 1 21 -2 27 -6c-12 -60 -41 -99 -87 -99c-22 0 -43 18 -64 32c-18 11 -37 19 -54 19c-26 0 -36 -15 -46 -48c-11 -2 -21 -1 -27 5c14 59 37 98 80 98c30 0 52 -20 72 -34c16 -12 33 -19 52 -19zM191 122c0 -83 17 -88 87 -91
-c6 -6 6 -27 0 -33c-45 1 -93.4 2 -129 2c-36.3 0 -85 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c47 -1 95.5 -2 129 -2c38.5 0 86 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-401z" />
-    <glyph glyph-name="itilde" unicode="&#x129;" horiz-adv-x="271" 
-d="M184.1 573c19.8 0 29.7 10 42.3 52c9.90001 1 18.9 -2 24.3 -6c-10.8 -60 -36.9 -99 -78.3 -99c-19.8 0 -38.7 18 -57.6 32c-16.2 11 -33.3 19 -48.6 19c-23.4 0 -32.4 -15 -41.4 -48c-9.9 -2 -18.9 -1 -24.3 5c12.6 59 33.3 98 72 98c27 0 46.8 -20 64.8 -34
-c14.4 -12 29.7 -19 46.8 -19zM181 122c0 -83 11 -87 72 -91c6 -6 6 -27 0 -33c-33 1 -71 2 -111 2s-79 -1 -112 -2c-6 6 -6 27 0 33c61 5 72 8 72 91v195c0 57 -10.5 62.9 -65 68c-2 6 -4 22 -2 28c69 9 108.5 18 137 29c8 0 13 -3 13 -7c0 0 -4 -64 -4 -113.7v-199.3z" />
-    <glyph glyph-name="Imacron" unicode="&#x12a;" horiz-adv-x="297" 
-d="M255 745h-224c-9 0 -13 11 -13 18c0 12 11 32 22 32h225c10 0 14 -11 14 -17c0 -12 -11 -33 -24 -33zM191 122c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-45 1 -93.4 2 -129 2c-36.3 0 -85 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91
-c-6 6 -6 27 0 33c47 -1 95.5 -2 129 -2c38.5 0 86 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-401z" />
-    <glyph glyph-name="imacron" unicode="&#x12b;" horiz-adv-x="271" 
-d="M219.9 518h-201.6c-8.1 0 -11.7 11 -11.7 18c0 12 9.9 32 19.8 32h202.5c9 0 12.6 -11 12.6 -17c0 -12 -9.89999 -33 -21.6 -33zM181 122c0 -83 11 -87 72 -91c6 -6 6 -27 0 -33c-33 1 -71 2 -111 2s-79 -1 -112 -2c-6 6 -6 27 0 33c61 5 72 8 72 91v195
-c0 57 -10.5 62.9 -65 68c-2 6 -4 22 -2 28c69 9 108.5 18 137 29c8 0 13 -3 13 -7c0 0 -4 -64 -4 -113.7v-199.3z" />
-    <glyph glyph-name="Ibreve" unicode="&#x12c;" horiz-adv-x="297" 
-d="M285 805c-6 -71 -70 -113 -136 -113c-73 0 -131 43 -136 113h28c8 -39 55 -61 108 -61c49 0 101 22 108 61h28zM191 122c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-45 1 -93.4 2 -129 2c-36.3 0 -85 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91
-c-6 6 -6 27 0 33c47 -1 95.5 -2 129 -2c38.5 0 86 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-401z" />
-    <glyph glyph-name="ibreve" unicode="&#x12d;" horiz-adv-x="271" 
-d="M28.2 650c9.9 -53 48.6 -90 97.2 -90c46.8 0 88.2 32 97.2 90l24.3 -12c-10.8 -86 -68.4 -135 -121.5 -135c-63 0 -108.9 50 -121.5 135zM181 122c0 -83 11 -87 72 -91c6 -6 6 -27 0 -33c-33 1 -71 2 -111 2s-79 -1 -112 -2c-6 6 -6 27 0 33c61 5 72 8 72 91v195
-c0 57 -10.5 62.9 -65 68c-2 6 -4 22 -2 28c69 9 108.5 18 137 29c8 0 13 -3 13 -7c0 0 -4 -64 -4 -113.7v-199.3z" />
-    <glyph glyph-name="Iogonek" unicode="&#x12e;" horiz-adv-x="297" 
-d="M271 -135c-29 -45 -69 -65 -110 -65c-50 0 -88 20 -88 74c0 41.5 35.8 99 96.2 125.9c-7.09999 0.1 -13.9 0.1 -20.2 0.1c-36.3 0 -85 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c47 -1 95.5 -2 129 -2c38.5 0 86 1 130 2
-c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-401c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-7.70001 0.2 -15.5 0.3 -23.4 0.5l0.399994 -0.5c-71 0 -120 -67 -120 -113c0 -26 13 -47 50 -47c29 0 45 16 67 38c9 0 15 -4 19 -11z" />
-    <glyph glyph-name="iogonek" unicode="&#x12f;" horiz-adv-x="271" 
-d="M259 -135c-29 -45 -69 -65 -110 -65c-50 0 -88 20 -88 74c0 41.5 35.8 99.1 96.3 126h-15.3c-40 0 -79 -1 -112 -2c-6 6 -6 27 0 33c61 5 72 8 72 91v195c0 57 -10.5 62.9 -65 68c-2 6 -4 22 -2 28c69 9 108.5 18 137 29c8 0 13 -3 13 -7c0 0 -4 -64 -4 -113.7v-199.3
-c0 -83 11 -87 72 -91c6 -6 6 -27 0 -33c-3.39999 0.1 -6.8 0.2 -10.3 0.3l0.300003 -0.3c-71 0 -120 -67 -120 -113c0 -26 13 -47 50 -47c29 0 45 16 67 38c9 0 15 -4 19 -11zM90 599c0 24 28 48 52 48c27 0 48 -28 48 -52c0 -21.1 -24 -48 -52 -48c-24 0 -48 26 -48 52z
-" />
-    <glyph glyph-name="Idotaccent" unicode="&#x130;" horiz-adv-x="297" 
-d="M97 753c0 28 24 52 52 52s52 -24 52 -52s-24 -52 -52 -52s-52 24 -52 52zM191 122c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-45 1 -93.4 2 -129 2c-36.3 0 -85 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c47 -1 95.5 -2 129 -2
-c38.5 0 86 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-401z" />
-    <glyph glyph-name="afii10057" unicode="&#x408;" horiz-adv-x="384" 
-d="M295 523v-298c0 -100 -31.9 -166.3 -80 -201c-32.4 -23.3 -65.3 -31.3 -92.4 -31.3c-25.7 0 -112.6 11.8 -112.6 61.3c0 22 24 36 38 36c31 0 46.3 -13.8 52 -27c4.9 -11.4 14 -30 28 -30c33 0 82 9 82 170v320c0 83 -17 88 -97 91c-6 6 -6 27 0 33c50 -1 101 -2 139 -2
-s82 1 120 2c6 -6 6 -27 0 -33c-60 -3 -77 -8 -77 -91z" />
-    <glyph glyph-name="afii10061" unicode="&#x40c;" horiz-adv-x="606" 
-d="M427 820c28.6 -13.3 49.3 -30.7 62 -52l-144 -58c-21 -9 -33 -12 -42 -12s-15 7 -15 15c0 7 2 12 15 21zM191 122c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-45 1 -93.4 2 -129 2c-36.3 0 -85 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91
-c-6 6 -6 27 0 33c47 -1 95.5 -2 129 -2c38.5 0 86 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-157c36 0 79 1 103 15c59 32 73 96 82 152c10 62 40 118 119 118c53 0 71 -29 71 -52c0 -29 -23 -40 -44 -40c-13 0 -27 5 -37 15c-11 11 -19 16 -32 16
-c-30 0 -35.8 -32.9 -40 -62c-9 -62 -32 -148 -108 -176v-5c69 0 107 -43 134 -113c58.6 -152.1 94.2 -200.1 160 -203c5.79999 -9.8 5.5 -22.8 0 -33l-79 1c-78 1 -115 82 -158 192c-39 100 -57 133 -171 133v-202z" />
-    <glyph glyph-name="uni040D" unicode="&#x40d;" horiz-adv-x="710" 
-d="M299 818l121 -84c11 -8 15 -14 15 -21c0 -8 -7 -15 -15 -15s-22 3 -43 12l-154 63c18.3 17.7 41.8 33.4 76 45zM598 122c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-45 1 -93.4 2 -129 2c-36.3 0 -85 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v356
-c-7.5 -2.5 -12.6 -7 -17.5 -13l-273.1 -340c-11.7 -14.9 -21.7 -23 -28.6 -46.7c7.09999 -41.3 29.4 -45 84.2 -47.3c6 -6 6 -27 0 -33c-45 1 -93.4 2 -129 2c-36.3 0 -85 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33
-c47 -1 95.5 -2 129 -2c38.5 0 86 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-356c4.60001 0.300003 10.4 3.7 17.7 11l274.8 342c11.3 14.2 20.6 32.3 26.4 48.5c-7.39999 39.6 -29.9 43.2 -83.9 45.5c-6 6 -6 27 0 33c47 -1 95.5 -2 129 -2c38.5 0 86 1 130 2
-c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-401z" />
-    <glyph glyph-name="afii10062" unicode="&#x40e;" horiz-adv-x="590" 
-d="M312 728c33 0 56 17 56 34c0 5 -1 11 -1 13c0 15 10 30 33 30c27 0 37 -14 37 -33c0 -52 -59 -75 -125 -75s-125 23 -125 75c0 19 10 33 37 33c23 0 33 -15 33 -30c0 -2 -1 -8 -1 -13c0 -17 23 -34 56 -34zM104.5 523c-32.5 71 -42.5 86 -99.5 91c-6 6 -7 27 -1 33
-c34 -1 72 -2 104 -2c35.2 0 84 1 121 2c6 -6 6 -27 0 -33c-68 -7 -67 -23 -40.6 -80l138.6 -305h2l109 299c20 56 23 81 -51 86c-6 6 -6 27 0 33c37 -1 86 -2 109 -2s58 1 88 2c6 -6 6 -27 0 -33c-66 -8 -82 -45 -100.3 -93l-141.7 -360c-43 -109 -98 -183 -188 -183
-c-42 0 -90 23 -90 55c0 28 19 48 49 48c14 0 36 -7 46 -19c7 -9 22 -22 36 -22c32 0 57 21 88 96z" />
-    <glyph glyph-name="afii10020" unicode="&#x413;" horiz-adv-x="497" 
-d="M147 645h205s81 1 120 2c5.5 -33.8 10.9 -72.7 15 -157c-9.70001 -4.29999 -19.3 -5.20001 -29 -4c-21 69 -37 119 -112 119h-120c-24 0 -36 -10 -36 -34v-449c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-40 1 -91.2 2 -129 2s-91 -1 -130 -2c-6 6 -6 27 0 33
-c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c50 -1 129 -2 129 -2z" />
-    <glyph glyph-name="afii10021" unicode="&#x414;" horiz-adv-x="659" 
-d="M112 47c25.5 26.7 44 98 76 254c22 114 34 207 34 270c0 29 -13.2 37.8 -73 43c-4.5 8.70001 -5.5 24 0 33c0 0 72 -2 102 -2h261c30 0 111 2 111 2c5.70001 -10 6 -22 0 -33c-66.7 -5 -74 -6.20001 -74 -59v-477c0 -37 22.5 -48 40 -51c21.7 -3.7 28.8 -7.1 30 -19
-c5 -48.6 6.5 -98.1 7 -148c-7.70001 -5.3 -19 -6.7 -27 -2c-12 56 -48 142 -128 142h-290c-83 0 -109 -89 -120 -141c-9.8 -2.5 -20 -1.7 -27 2c0.599998 50.3 3 100.7 7 151c1 12 11 18.5 21 19c19.5 1 39.5 5 50 16zM427 605h-123c-27 0 -37 -14 -39 -39
-c-8 -101 -24 -205 -36 -273c-22 -117 -47 -216 -47 -237c0 -12 13 -17 27 -17h219c24 0 36 3 36 40v487c0 31 -6 39 -37 39z" />
-    <glyph glyph-name="afii10024" unicode="&#x416;" horiz-adv-x="889" 
-d="M487 122c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-45 1 -93.4 2 -129 2c-36.3 0 -85 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v201.8c-102.4 -2.5 -120.5 -36.7 -158 -132.8c-43 -110 -80 -191 -158 -192l-79 -1c-5.5 10.2 -5.8 23.2 0 33
-c65.8 2.9 101.4 50.9 160 203c27 70 65 113 134 113v5c-76 28 -99 114 -108 176c-4.2 29.1 -10 62 -40 62c-13 0 -21 -5 -32 -16c-10 -10 -24 -15 -37 -15c-21 0 -44 11 -44 40c0 23 18 52 71 52c79 0 109 -56 119 -118c9 -56 23 -120 82 -152
-c21.2 -12.3 57.1 -14.5 90 -14.9v156.9c0 83 -17 88 -87 91c-6 6 -6 27 0 33c47 -1 95.5 -2 129 -2c38.5 0 86 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-156.9c32.9 0.399994 68.8 2.60001 90 14.9c59 32 73 96 82 152c10 62 40 118 119 118c53 0 71 -29 71 -52
-c0 -29 -23 -40 -44 -40c-13 0 -27 5 -37 15c-11 11 -19 16 -32 16c-30 0 -35.8 -32.9 -40 -62c-9 -62 -32 -148 -108 -176v-5c69 0 107 -43 134 -113c58.6 -152.1 94.2 -200.1 160 -203c5.79999 -9.8 5.5 -22.8 0 -33l-79 1c-78 1 -115 82 -158 192
-c-37.5 96.1 -55.6 130.3 -158 132.8v-201.8z" />
-    <glyph glyph-name="afii10025" unicode="&#x417;" horiz-adv-x="558" 
-d="M44 115c0 24 13 40 33 40c28 0 43 -26 56 -52c25 -47 66 -77 144 -77c99 0 148 64 148 155c0 73 -44.5 147 -158 147c-33 0 -42 -6 -69 -6c-12 0 -29 5 -29 25s17 24 29 24c27 0 43 -6 70 -6c89.5 0 133 69 133 138c0 70 -29 121 -115 121c-114 0 -161 -73 -187 -161
-c-11.7 -2.29999 -22 -1.29999 -31 3c5.6 52.9 12.6 105.8 24 160c72 10.5 127 32 202 32c139 0 195 -66 195 -148c0 -84 -61 -133 -131 -153v-5c98.5 -7.79999 160 -82 160 -167c0 -131 -113 -195 -240 -195c-100 0 -158 22 -188 49c-27 24 -46 43 -46 76z" />
-    <glyph glyph-name="afii10026" unicode="&#x418;" horiz-adv-x="710" 
-d="M598 122c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-45 1 -93.4 2 -129 2c-36.3 0 -85 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v356c-7.5 -2.5 -12.6 -7 -17.5 -13l-273.1 -340c-11.7 -14.9 -21.7 -23 -28.6 -46.7c7.09999 -41.3 29.4 -45 84.2 -47.3c6 -6 6 -27 0 -33
-c-45 1 -93.4 2 -129 2c-36.3 0 -85 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c47 -1 95.5 -2 129 -2c38.5 0 86 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-356c4.60001 0.300003 10.4 3.7 17.7 11l274.8 342
-c11.3 14.2 20.6 32.3 26.4 48.5c-7.39999 39.6 -29.9 43.2 -83.9 45.5c-6 6 -6 27 0 33c47 -1 95.5 -2 129 -2c38.5 0 86 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-401z" />
-    <glyph glyph-name="afii10027" unicode="&#x419;" horiz-adv-x="710" 
-d="M351 728c33 0 56 17 56 34c0 5 -1 11 -1 13c0 15 10 30 33 30c27 0 37 -14 37 -33c0 -52 -59 -75 -125 -75s-125 23 -125 75c0 19 10 33 37 33c23 0 33 -15 33 -30c0 -2 -1 -8 -1 -13c0 -17 23 -34 56 -34zM598 122c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33
-c-45 1 -93.4 2 -129 2c-36.3 0 -85 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v356c-7.5 -2.5 -12.6 -7 -17.5 -13l-273.1 -340c-11.7 -14.9 -21.7 -23 -28.6 -46.7c7.09999 -41.3 29.4 -45 84.2 -47.3c6 -6 6 -27 0 -33c-45 1 -93.4 2 -129 2c-36.3 0 -85 -1 -130 -2
-c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c47 -1 95.5 -2 129 -2c38.5 0 86 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-356c4.60001 0.300003 10.4 3.7 17.7 11l274.8 342c11.3 14.2 20.6 32.3 26.4 48.5
-c-7.39999 39.6 -29.9 43.2 -83.9 45.5c-6 6 -6 27 0 33c47 -1 95.5 -2 129 -2c38.5 0 86 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-401z" />
-    <glyph glyph-name="afii10033" unicode="&#x41f;" horiz-adv-x="667" 
-d="M521 645c27 0 79 1 129 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-401c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-38 1 -91.3 2 -130 2c-36.4 0 -91 -1 -129 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v409c0 62 -22 74 -46 74h-197c-24 0 -46 -12 -46 -74v-409
-c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-40 1 -91 2 -129 2c-39.7 0 -91 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c50 -1 106 -2 129 -2h375z" />
-    <glyph glyph-name="afii10034" unicode="&#x420;" horiz-adv-x="541" 
-d="M189 554v-233c11 -3 51 -5 76 -5c97 0 149 44 149 152c0 127 -69 150 -138 150c-72 0 -87 -35 -87 -64zM104 523c0 83 -17 88 -87 91c-6 6 -6 27 0 33c40 -1 92.3 -2 129 -2c40 0 98.7 7 137 7c185 0 224 -107 224 -166c0 -85 -55 -204 -237 -204c-35 0 -59 3 -81 10
-v-170c0 -83 24 -87 102 -91c6 -6 6 -27 0 -33c-50 1 -108.6 2 -144 2c-35.7 0 -85 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401z" />
-    <glyph glyph-name="afii10035" unicode="&#x421;" horiz-adv-x="646" 
-d="M357 -10c-215 0 -320 146.2 -320 320c0 104.3 39.6 202.2 106 263c59 54 130 85 215 85c123 0 168 -40 219 -45c10 -55 17 -103 22 -155c-11.3 -6 -21 -9 -33 -5c-26 86 -81 168 -219 168c-52 0 -110 -28 -159.6 -89c-36.5 -44.9 -59.4 -116.7 -59.4 -203
-c0 -146 93.4 -298 228 -298c93 0 161 31 232 109c11 0 18 -6 23 -15c-68 -89 -157 -135 -254 -135z" />
-    <glyph glyph-name="afii10036" unicode="&#x422;" horiz-adv-x="597" 
-d="M350 122c0 -83 17 -88 97 -91c6 -6 6 -27 0 -33c-50 1 -100.6 2 -139 2c-40.1 0 -91 -1 -140 -2c-6 6 -6 27 0 33c80 3 97 8 97 91v385c0 61 -10 99 -47 99h-49c-66 0 -112 -26 -132 -106c-12 0 -24 1 -34 5c11 48 21 100 25 145c0 1 2 3 4 3c38 -3 156 -8 233 -8h86
-c79 0 190 5 224 8c1 0 3 -2 3 -3c1 -45 6 -96 13 -142c-9 -4 -23 -5 -34 -5c-17 77 -64 103 -139 103h-22c-36 0 -46 -38 -46 -102v-382z" />
-    <glyph glyph-name="afii10037" unicode="&#x423;" horiz-adv-x="590" 
-d="M104.5 523c-32.5 71 -42.5 86 -99.5 91c-6 6 -7 27 -1 33c34 -1 72 -2 104 -2c35.2 0 84 1 121 2c6 -6 6 -27 0 -33c-68 -7 -67 -23 -40.6 -80l138.6 -305h2l109 299c20 56 23 81 -51 86c-6 6 -6 27 0 33c37 -1 86 -2 109 -2s58 1 88 2c6 -6 6 -27 0 -33
-c-66 -8 -82 -45 -100.3 -93l-141.7 -360c-43 -109 -98 -183 -188 -183c-42 0 -90 23 -90 55c0 28 19 48 49 48c14 0 36 -7 46 -19c7 -9 22 -22 36 -22c32 0 57 21 88 96z" />
-    <glyph glyph-name="afii10039" unicode="&#x425;" horiz-adv-x="660" 
-d="M538 102c42.4 -58.3 59 -68 101 -71c6 -6 7 -27 1 -33c-30 1 -63 2 -102 2c-40 0 -77 -1 -114 -2c-6 6 -6 27 0 33c56 3 51.8 13.9 23.5 54.2l-123.5 175.8c-5.60001 8 -10 11 -14 11c-3 0 -9.29999 -6 -15 -14l-132 -185c-24.2 -34 -5.3 -39 39 -42c6 -6 6 -27 0 -33
-c-40 1 -82 2 -105 2s-60 -1 -90 -2c-6 6 -6 27 0 33c44.7 4.3 76.7 16.1 111 62l148 198c5.89999 7.89999 10 17 10 23c0 10 -5.79999 18.3 -14 30l-142.3 203c-41.2 58.7 -59.7 64 -101.7 67c-6 6 -7 27 -1 33c30 -1 63 -2 102 -2c40 0 77 1 114 2c6 -6 6 -27 0 -33
-c-56 -3 -51.7 -14.2 -23.5 -54.2l110.5 -163.8c4.79999 -7 9 -11 12 -11c4 0 10 3.5 16 12l123 175c23.5 33.4 5.29999 39 -39 42c-6 6 -6 27 0 33c40 -1 82 -2 105 -2s60 1 90 2c6 -6 6 -27 0 -33c-44.7 -4.29999 -76.3 -17.1 -111 -62l-137 -177
-c-9.10001 -11.8 -10 -21 -10 -30c0 -10 6.20001 -19.6 16 -33z" />
-    <glyph glyph-name="afii10040" unicode="&#x426;" horiz-adv-x="674" 
-d="M558 523v-401c0 -83 24 -88 48 -91c24.8 -3.1 29 -11 30 -20c4 -48 6 -101 6 -152c-9 -7.10001 -24 -8 -33 -1c-14 71 -62 142 -139 142h-326c-20 0 -81 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c40 -1 94.5 -2 129 -2
-c36 0 91 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-434c0 -31 18 -50 47 -50h203c32 -0.299999 37 5 37 83v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c40 -1 93 -2 129 -2c39 0 91 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91z" />
-    <glyph glyph-name="afii10041" unicode="&#x427;" horiz-adv-x="650" 
-d="M102 523c0 83 -17 88 -87 91c-6 6 -6 27 0 33c40 -1 93 -2 129 -2c36.3 0 91 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-106c0 -82 40 -109 112 -109c28.5 0 91 3.89999 154 45v170c0 83 -17 88 -87 91c-6 6 -6 27 0 33c38 -1 93.3 -2 129 -2c36.7 0 92 1 130 2
-c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-401c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-39 1 -92.9 2 -129 2c-35.7 0 -91 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v192.9c-71.9 -49.4 -138.8 -64.9 -196 -64.9c-114 0 -155 79 -155 178v95z" />
-    <glyph glyph-name="afii10042" unicode="&#x428;" horiz-adv-x="969" 
-d="M820 0h-671c-34 0 -91 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c40 -1 93.7 -2 129 -2c37.7 0 91 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-401c0 -82 17 -85 59 -85h139c37 0 51 3 51 85v401c0 83 -17 88 -87 91
-c-6 6 -6 27 0 33c40 -1 93.3 -2 129 -2c37 0 91 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-401c0 -82 17 -85 55 -85h129c56 0 69 3 69 85v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c39 -1 93.7 -2 130 -2c36 0 89 1 129 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91
-v-401c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-39 1 -92.5 2 -130 2z" />
-    <glyph glyph-name="afii10043" unicode="&#x429;" horiz-adv-x="974" 
-d="M863 523v-401c0 -83 24 -88 48 -91c24.8 -3.1 29 -11 30 -20c4 -48 6 -101 6 -152c-9 -7.10001 -24 -8 -33 -1c-14 71 -62 142 -139 142h-626c-33.5 0 -91 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0.199997 83 -17 88 -87 91c-6 6 -6 27 0 33
-c40 -1 93.7 -2 129 -2c37.7 0 91 1 130 2c6 -6 6 -27 0 -33c-70 -3 -86.8 -8 -87 -91v-401c0 -82 17 -85 59 -85h139c37 0 51 3 51 85v401c0.200012 83 -17 88 -87 91c-6 6 -6 27 0 33c40 -1 93.3 -2 129 -2c37 0 91 1 130 2c6 -6 6 -27 0 -33c-70 -3 -86.8 -8 -87 -91v-401
-c0 -82 17 -85 55 -85h129c56 0 69 3 69 85v401c0.200012 83 -17 88 -87 91c-6 6 -6 27 0 33c39 -1 93.7 -2 130 -2c36 0 89 1 129 2c6 -6 6 -27 0 -33c-70 -3 -86.8 -8 -87 -91z" />
-    <glyph glyph-name="afii10044" unicode="&#x42a;" horiz-adv-x="723" 
-d="M427 31c132 0 163 79 163 162c0 104.7 -51.7 152.9 -180.3 152.9c-18.3 0 -38.2 -1 -59.7 -2.89999v-245c0 -33 9 -67 77 -67zM265 523c0 75 -12 82 -59 82h-42c-66 0 -100 -93 -108 -136c-14 -3 -22.3 -0.5 -30 5c4 56 9 110 16 173c35 -1 72.7 -2 121.7 -2h143.3
-c50 0 91 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-140c29.7 2.5 57.1 3.79999 82.3 3.79999c183.3 0 250.7 -66.7 250.7 -193.8c0 -125.5 -86.5 -195 -258 -195c-36 0 -88 2 -117 2c-37.7 0 -91 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401z" />
-    <glyph glyph-name="afii10045" unicode="&#x42b;" horiz-adv-x="798" 
-d="M693 123c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-45 1 -93.4 2 -129 2c-36.3 0 -85 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c47 -1 95.5 -2 129 -2c38.5 0 86 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-401zM267 31
-c132 0 163 79 163 162c0 104.7 -51.7 152.9 -180.3 152.9c-18.3 0 -38.2 -1 -59.7 -2.89999v-245c0 -33 9 -67 77 -67zM105 122v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c40 -1 93.7 -2 129 -2c38.3 0 91 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-140
-c29.7 2.5 57.1 3.79999 82.3 3.79999c183.3 0 250.7 -66.7 250.7 -193.8c0 -125.5 -86.5 -195 -258 -195c-36 0 -88 2 -117 2c-37.7 0 -91 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91z" />
-    <glyph glyph-name="afii10046" unicode="&#x42c;" horiz-adv-x="559" 
-d="M267 31c132 0 163 79 163 162c0 104.7 -51.7 152.9 -180.3 152.9c-18.3 0 -38.2 -1 -59.7 -2.89999v-245c0 -33 9 -67 77 -67zM105 122v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c40 -1 93.7 -2 129 -2c38.3 0 91 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-140
-c29.7 2.5 57.1 3.79999 82.3 3.79999c183.3 0 250.7 -66.7 250.7 -193.8c0 -125.5 -86.5 -195 -258 -195c-36 0 -88 2 -117 2c-37.7 0 -91 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91z" />
-    <glyph glyph-name="afii10047" unicode="&#x42d;" horiz-adv-x="622" 
-d="M271 -10c-97 0 -225 60 -225 134c0 20 9 39 34 39c29 0 44 -27 57 -64c14 -40 54 -74 130 -74c148 0 220 118 230 276c-33 15 -62 22 -100 22c-58 0 -87 -32 -154 -32c-59 0 -122 29 -122 54c0 8 5 12 9 12c8 0 24 -16 62 -16c59 0 102 38 165 38c13 0 79 -12 140 -46
-l1 1c0 213 -115 287 -194 287c-138 0 -195 -81 -221 -167l-30 4c10 52 18 101 22 155c57 3 97 45 224 45c166 0 286 -124 286 -333c0 -185 -99 -335 -314 -335z" />
-    <glyph glyph-name="afii10048" unicode="&#x42e;" horiz-adv-x="905" 
-d="M562 619c-84 0 -184 -82 -184 -292c0 -192 106 -299 214 -299c103 0 181 103 181 282c0 208 -86 309 -211 309zM191 122c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-45 1 -93.4 2 -129 2c-36.3 0 -85 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91
-c-6 6 -6 27 0 33c47 -1 95.5 -2 129 -2c38.5 0 86 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-179h95c13 179 131 314 287 314c168 0 293 -131 293 -329c0 -200 -114 -339 -292 -339c-158 0 -287 121 -289 315h-94v-183z" />
-    <glyph glyph-name="afii10049" unicode="&#x42f;" horiz-adv-x="580" 
-d="M169 502c0 -106 62 -140 145 -140h78v213c0 33 -4 36 -91 36c-56 0 -132 -16 -132 -109zM393 323c-107 1 -127 -28 -169 -134c-43 -108.5 -80 -189 -151 -190l-66 -1l-1 2v19c0 5 3 8 7 8l9 1c32 4 75.6 58.4 127 192c25 65 58 90 85 106v3c-68 10 -157 60 -157 162
-c0 69 45 155 231 155c35 0 94 -1 128 -1c50.3 0 79 1 129 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-401c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-49 1 -79.3 2 -130 2c-56.2 0 -94 -1 -144 -2c-6 6 -6 27 0 33c78 4 102 8 102 91v201z" />
-    <glyph glyph-name="afii10089" unicode="&#x447;" horiz-adv-x="539" 
-d="M162 307v-17c0 -78 3 -112 68 -112c52 0 88 27 122 57v72c0 83 -11 87 -62 91c-6 6 -6 27 0 33c23 -1 63 -2 102 -2c44 0 78 1 112 2c6 -6 6 -27 0 -33c-61 -5 -72 -8 -72 -91v-185c0 -83 11 -87 72 -91c6 -6 6 -27 0 -33c-32 1 -69 2 -112 2c-44 0 -79 -1 -112 -2
-c-6 6 -6 27 0 33c61 5 72 8 72 91v77c-41 -30 -91 -66 -154 -66c-93 0 -114 37 -114 131v43c0 83 -11 87 -72 91c-6 6 -6 27 0 33c33 -1 67 -2 110 -2c40 0 78 1 102 2c6 -6 6 -27 0 -33c-51 -5 -62 -8 -62 -91z" />
-    <glyph glyph-name="afii10090" unicode="&#x448;" horiz-adv-x="849" 
-d="M746 122c0 -82 13 -87 68 -91c6 -6 6 -27 0 -33c-30 1 -68 2 -108 2h-559c-40 0 -78 -1 -108 -2c-6 6 -6 27 0 33c55 4 68 9 68 91v185c0 82 -9 87 -64 91c-5 6 -5 27 0 33c28 -1 63 -2 103 -2s77 1 102 2c5 -6 5 -27 0 -33c-52 -4 -62 -9 -62 -91v-217
-c0 -40 6 -51 43 -51h114c37 0 42 13 42 50v218c1 82 -9 87 -59 91c-5 6 -5 27 0 33c25 -1 58 -2 98 -2s77 1 102 2c5 -6 5 -27 0 -33c-54 -4 -61 -9 -62 -91v-217c0 -42 13 -51 43 -51h118c39 0 42 20 42 51v217c0 82 -10 86 -61 91c-6 6 -6 27 0 33c30 -1 60 -2 100 -2
-s78 1 108 2c6 -6 6 -27 0 -33c-55 -4 -68 -9 -68 -91v-185z" />
-    <glyph glyph-name="afii10091" unicode="&#x449;" horiz-adv-x="849" 
-d="M669 0h-522c-40 0 -78 -1 -108 -2c-6 6 -6 27 0 33c55 4 68 9 68 91v185c0 82 -9 87 -64 91c-5 6 -5 27 0 33c28 -1 63 -2 103 -2s77 1 102 2c5 -6 5 -27 0 -33c-52 -4 -62 -9 -62 -91v-217c0 -40 6 -51 43 -51h114c37 0 42 13 42 50v218c1 82 -9 87 -59 91
-c-5 6 -5 27 0 33c25 -1 58 -2 98 -2s77 1 102 2c5 -6 5 -27 0 -33c-54 -4 -61 -9 -62 -91v-217c0 -42 13 -51 43 -51h118c39 0 42 20 42 51v217c0 82 -10 86 -61 91c-6 6 -6 27 0 33c30 -1 60 -2 100 -2s78 1 108 2c6 -6 6 -27 0 -33c-55 -4 -68 -9 -68 -91v-185
-c0 -80 16.3 -86 39 -91c13.8 -3 29 -8 30 -26l6 -133c-8.29999 -2.60001 -16.9 -3.3 -26 -1c-13 49 -42 129 -126 129z" />
-    <glyph glyph-name="afii10092" unicode="&#x44a;" horiz-adv-x="565" 
-d="M455 126c0 53 -23 98 -98 98h-71v-148c0 -35 17 -45 66 -45c53 0 103 13 103 95zM207 307c0 73 -19 85 -42 85c-77 0 -91 -35 -109 -117c-11.2 -0.600006 -21.3 1.5 -29 5c7 46 12 93 13 151c0 0 125.7 -2 206 -2c43.7 0 78 1 112 2c6 -6 6 -27 0 -33
-c-61 -5 -72 -8 -72 -92v-49h72c101 0 183 -27 183 -121c0 -107 -67 -138 -190 -138c-40.6 0 -63.4 2 -104 2c-43.7 0 -79 -1 -112 -2c-6 6 -6 27 0 33c61 5 72 8 72 91v185z" />
-    <glyph glyph-name="afii10093" unicode="&#x44b;" horiz-adv-x="724" 
-d="M617 307v-185c0 -83 11 -87 72 -91c6 -6 6 -27 0 -33c-32 1 -68 2 -111 2c-44 0 -79 -1 -112 -2c-6 6 -6 27 0 33c61 5 72 8 72 91v185c0 83 -11 87 -72 91c-6 6 -6 27 0 33c33 -1 68 -2 111 -2c44 0 78 1 112 2c6 -6 6 -27 0 -33c-61 -5 -72 -8 -72 -91zM355 126
-c0 53 -23 98 -98 98h-71v-148c0 -35 17 -45 66 -45c53 0 103 13 103 95zM186 306v-49h72c101 0 183 -27 183 -121c0 -107 -67 -138 -190 -138c-40.6 0 -63.4 2 -104 2c-43.7 0 -79 -1 -112 -2c-6 6 -6 27 0 33c61 5 72 8 72 91v185c0 83 -11 87 -72 91c-6 6 -6 27 0 33
-c33 -1 67.7 -2 111 -2c43.7 0 78 1 112 2c6 -6 6 -27 0 -33c-61 -5 -72 -8 -72 -92z" />
-    <glyph glyph-name="afii10094" unicode="&#x44c;" horiz-adv-x="465" 
-d="M355 126c0 53 -23 98 -98 98h-71v-148c0 -35 17 -45 66 -45c53 0 103 13 103 95zM186 306v-49h72c101 0 183 -27 183 -121c0 -107 -67 -138 -190 -138c-40.6 0 -63.4 2 -104 2c-43.7 0 -79 -1 -112 -2c-6 6 -6 27 0 33c61 5 72 8 72 91v185c0 83 -11 87 -72 91
-c-6 6 -6 27 0 33c33 -1 67.7 -2 111 -2c43.7 0 78 1 112 2c6 -6 6 -27 0 -33c-61 -5 -72 -8 -72 -92z" />
-    <glyph glyph-name="afii10095" unicode="&#x44d;" horiz-adv-x="454" 
-d="M47 82c0 16 14 29 33 29c18 0 32 -5 47 -37c13 -27 37 -49 79 -49c89 0 126 57 126 176c-13 5 -26 9 -40 9c-19.2 0 -33.6 -4 -48.5 -10.3c-15.8 -6.59999 -33.1 -11.7 -57.5 -11.7c-45 0 -94 18 -94 32c0 4 2 14 8 14c7 0 20 -6 34 -6c17.7 0 33.9 5.60001 50.2 13.1
-c18.2 8.29999 37.3 14.9 60.8 14.9c31 0 59 -12 86 -28l3 2c0 92 -41.5 174 -125 174c-78 0 -111 -44 -129 -108c-10.2 -1.60001 -17.7 -0.700012 -26 4c1.7 40.7 3.7 81.7 9 120c52 4 104 19 154 19c145.5 0 201 -97 201 -218c0 -161 -96 -231 -200 -231
-c-96 0 -171 39 -171 92z" />
-    <glyph glyph-name="afii10096" unicode="&#x44e;" horiz-adv-x="731" 
-d="M186 237h104c11 119 79 202 200 202c152 0 201 -118 201 -222c0 -100 -55 -227 -202 -227c-135 0 -198 107 -200 208h-103v-76c0 -83 11 -87 72 -91c6 -6 6 -27 0 -33c-32 1 -68 2 -111 2c-44 0 -79 -1 -112 -2c-6 6 -6 27 0 33c61 5 72 8 72 91v185c0 83 -11 87 -72 91
-c-6 6 -6 27 0 33c33 -1 68 -2 111 -2c44 0 78 1 112 2c6 -6 6 -27 0 -33c-61 -5 -72 -8 -72 -91v-70zM480 404c-78 0 -105 -91 -105 -178c0 -77 33 -201 132 -201c43 0 98 28 98 160c0 146 -43 219 -125 219z" />
-    <glyph glyph-name="afii10097" unicode="&#x44f;" horiz-adv-x="481" 
-d="M142 321c0 -50 23 -96 83 -96h70v117c0 38.3 -16 56 -57 56c-81 0 -96 -30 -96 -77zM114 0c0 0 -78 -1 -98 -2c-6 6 -6 27 0 33c39 2 56.3 8 69 42c4.8 12.8 14 34.7 25 58c17.2 36.5 33.7 58 71.7 68.8c1.60001 0.699997 1.5 4.39999 -1.39999 4.59999
-c-74.7 2.20001 -124.3 35.9 -124.3 100.6c0 54 15 126 190 126c24.7 0 53.7 -2 88 -2c43.7 0 78 1 112 2c6 -6 6 -27 0 -33c-61 -5 -72 -8 -72 -91v-185c0 -83 11 -87 72 -91c6 -6 6 -27 0 -33c-32 1 -67.7 2 -111 2c-43.7 0 -79 -1 -112 -2c-6 6 -6 27 0 33
-c61 5 72 8 72 91v69h-26c-50.4 0 -79.5 -49.5 -105.5 -128c-12 -36.4 -21.8 -62.2 -49.5 -63z" />
-    <glyph glyph-name="uni04AE" unicode="&#x4ae;" horiz-adv-x="575" 
-d="M337 122c0 -83 17 -88 97 -91c6 -6 6 -27 0 -33c-50 1 -100.3 2 -139 2c-38.6 0 -91 -1 -140 -2c-6 6 -6 27 0 33c80 3 97 8 97 91v127c0 37 -3.5 47.5 -21 77l-131.3 221c-34.5 58.1 -51.7 64 -93.7 67c-6 6 -7 27 -1 33c30 -1 63 -2 102 -2c40 0 78 1 114 2
-c6 -6 6 -27 0 -33c-56 -3 -60 -12.6 -35.8 -55.2l116 -204.8c9 -15.9 13.8 -17.2 21.8 -2l110.8 209c21.4 40.4 5.5 50 -38.8 53c-6 6 -6 27 0 33c32 -1 68 -2 91 -2s55 1 83 2c6 -6 6 -27 0 -33c-44.7 -4.29999 -67 -13.3 -95 -64l-119.5 -216
-c-16.4 -29.6 -17.5 -46.5 -17.5 -76.3v-135.7z" />
-    <glyph glyph-name="uni04C0" unicode="&#x4c0;" horiz-adv-x="297" 
-d="M191 122c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-45 1 -93.4 2 -129 2c-36.3 0 -85 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c47 -1 95.5 -2 129 -2c38.5 0 86 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-401z" />
-    <glyph glyph-name="uni04D0" unicode="&#x4d0;" horiz-adv-x="695" 
-d="M359 729c33 0 56 17 56 34c0 5 -1 11 -1 13c0 15 10 30 33 30c27 0 37 -14 37 -33c0 -52 -59 -75 -125 -75s-125 23 -125 75c0 19 10 33 37 33c23 0 33 -15 33 -30c0 -2 -1 -8 -1 -13c0 -17 23 -34 56 -34zM263 283h177l-94 272h-6l-102.2 -258.7
-c-3.8 -10.3 3.2 -13.3 25.2 -13.3zM155 79c-15.6 -41.1 31.4 -45.4 69 -48c6 -6 6 -27 0 -33c-37 1 -87 2 -128 2c-30.3 0 -63 -1 -89 -2c-6 6 -6 27 0 33c43.5 3 74 9 100 71l227 536c13 0 40 11 55 20l206 -572c17.4 -48.2 51.2 -51.5 90 -55c6 -6 6 -27 0 -33
-c-35 1 -73 2 -114 2c-39 0 -94 -1 -131 -2c-6 6 -6 27 0 33c47.6 3.4 85.8 6.5 74 41l-58 169h-211c-24 0 -30 -4 -35 -17z" />
-    <glyph glyph-name="uni04D1" unicode="&#x4d1;" horiz-adv-x="457" 
-d="M330 590c0 -55 -58 -87 -122 -87c-65 0 -120 33 -120 87c0 18 16 33 39 33c22 0 34 -14 34 -30c0 -3 0 -5 -1 -8s-1 -6 -1 -8c0 -22 20 -43 50 -43c29 0 50 20 50 42c0 3 0 6 -1 9c-1 2 -1 4 -1 7c0 17 17 31 35 31c24 0 38 -14 38 -33zM293 233l-79 -21
-c-74 -19 -95 -65 -95 -110c0 -31 22 -71 72 -71c28 0 62 23 88 44c8 6 14 13 14 26v132zM293 48h-2l-20 -16c-44 -34 -74.2 -42 -109 -42c-70 0 -126 26 -126 108c0 68 69 121 165 145l86 21c3 1 6 5 6 12c0 113 -47 130 -81 130c-38 0 -80 -11 -80 -42c0 -11 1 -17 2 -20
-c2 -4 3 -11 3 -18c0 -13 -18 -34 -47 -34c-23 0 -35 12 -35 36c0 57 83 111 165 111c73 0 151 -27 151 -169v-147c0 -46 1 -85 30 -85c12.7 0 29.5 9.8 37 16c11.3 -6.3 15.3 -14.7 17 -27c-20.7 -20 -56.7 -37 -95 -37c-50.4 0 -61 27 -67 58z" />
-    <glyph glyph-name="uni04D2" unicode="&#x4d2;" horiz-adv-x="695" 
-d="M227 758c0 26 21 48 47 48s47 -22 47 -48s-21 -47 -47 -47s-47 21 -47 47zM396 758c0 26 21 48 47 48s47 -22 47 -48s-21 -47 -47 -47s-47 21 -47 47zM263 283h177l-94 272h-6l-102.2 -258.7c-3.8 -10.3 3.2 -13.3 25.2 -13.3zM155 79c-15.6 -41.1 31.4 -45.4 69 -48
-c6 -6 6 -27 0 -33c-37 1 -87 2 -128 2c-30.3 0 -63 -1 -89 -2c-6 6 -6 27 0 33c43.5 3 74 9 100 71l227 536c13 0 40 11 55 20l206 -572c17.4 -48.2 51.2 -51.5 90 -55c6 -6 6 -27 0 -33c-35 1 -73 2 -114 2c-39 0 -94 -1 -131 -2c-6 6 -6 27 0 33c47.6 3.4 85.8 6.5 74 41
-l-58 169h-211c-24 0 -30 -4 -35 -17z" />
-    <glyph glyph-name="uni04D3" unicode="&#x4d3;" horiz-adv-x="457" 
-d="M83 575c0 26 21 48 47 48s47 -22 47 -48s-21 -47 -47 -47s-47 21 -47 47zM252 575c0 26 21 48 47 48s47 -22 47 -48s-21 -47 -47 -47s-47 21 -47 47zM293 233l-79 -21c-74 -19 -95 -65 -95 -110c0 -31 22 -71 72 -71c28 0 62 23 88 44c8 6 14 13 14 26v132zM293 48h-2
-l-20 -16c-44 -34 -74.2 -42 -109 -42c-70 0 -126 26 -126 108c0 68 69 121 165 145l86 21c3 1 6 5 6 12c0 113 -47 130 -81 130c-38 0 -80 -11 -80 -42c0 -11 1 -17 2 -20c2 -4 3 -11 3 -18c0 -13 -18 -34 -47 -34c-23 0 -35 12 -35 36c0 57 83 111 165 111
-c73 0 151 -27 151 -169v-147c0 -46 1 -85 30 -85c12.7 0 29.5 9.8 37 16c11.3 -6.3 15.3 -14.7 17 -27c-20.7 -20 -56.7 -37 -95 -37c-50.4 0 -61 27 -67 58z" />
-    <glyph glyph-name="uni04D4" unicode="&#x4d4;" horiz-adv-x="865" 
-d="M271 305h158v270c0 12 -1 21 -5 23zM429 122v144h-178l-97 -187c-20.3 -39.1 32.4 -45.4 70 -48c6 -6 6 -27 0 -33c-37 1 -87 2 -128 2c-39 0 -52 -1 -89 -2c-6 6 -6 27 0 33c43.5 3 72.3 11.7 104 71l243 455c16.2 30.7 10 54 -60 57c-6 6 -6 27 0 33
-c50 -1 115 -2 115 -2h140h176c24 0 32 1 49 4c3 0 4 -1 4 -3c2 -8 17 -104 22 -145c-9.79999 -4.70001 -20.6 -6.79999 -33 -5c-22 69 -38 109 -113 109h-105c-24 0 -36 -20 -36 -44v-200h91c85 0 88 13 91 68c6 6 27 6 33 0c-1 -30 -2 -52.5 -2 -86c0 -34.3 1 -53 2 -88
-c-6 -6 -27 -6 -33 0c-3 45 -6 68 -91 68h-91v-241c0 -27 14 -43 36 -43h136c76 0 111 59 131 131c13.1 3.2 24.6 1 35 -5c-8 -51 -23 -117 -37 -167c0 0 -80 2 -128 2h-214s-81 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91z" />
-    <glyph glyph-name="uni04D5" unicode="&#x4d5;" horiz-adv-x="687" 
-d="M265 384c-14.7 15.3 -44 22 -65 22c-39 0 -77 -14 -77 -43c0 -10 1 -17 3 -20c2 -4 3 -11 3 -18c0 -16 -14 -33 -39 -33c-31 0 -40 25 -40 45c0 58 78 102 160 102c24 0 101 -3 138 -70c33 45 85 70 142 70c114 0 158 -66 158 -100c0 -81 -46 -118 -277 -121
-c0 -90 59 -179 134 -179c54 0 89 25 119 60c8.70001 -0.800003 16.7 -10.7 20 -16c-29 -54 -87 -93 -153 -93c-91 0 -129.7 45.1 -151 69c-8 9 -12.1 5.1 -24 -7c-46 -47 -96.9 -62 -134 -62c-36 0 -72.1 5.5 -94 18c-34.5 19.6 -49 52.4 -49 94c0 40 27 82 63 103.2
-c43.1 25.4 109.2 38.7 196 44.8c-1 79 -10 110 -33 134zM298 215c-69.3 -5.5 -119.3 -22.4 -150 -45.1c-24.7 -18.2 -37 -40.2 -37 -62.9c0 -43 27 -75 83 -75c32 0 84 41 99 81c4 19 5 52 5 102zM372 253c153 2 200 22 200 83c0 32 -35 70 -83 70c-68 0 -109 -68 -117 -153
-z" />
-    <glyph glyph-name="uni04D6" unicode="&#x4d6;" horiz-adv-x="557" 
-d="M274 729c33 0 56 17 56 34c0 5 -1 11 -1 13c0 15 10 30 33 30c27 0 37 -14 37 -33c0 -52 -59 -75 -125 -75s-125 23 -125 75c0 19 10 33 37 33c23 0 33 -15 33 -30c0 -2 -1 -8 -1 -13c0 -17 23 -34 56 -34zM281 361c85 0 88 13 91 68c6 6 27 6 33 0c-1 -24 -2 -58 -2 -86
-c0 -34.3 1 -62 2 -88c-6 -6 -27 -6 -33 0c-3 45 -6 68 -91 68h-91v-221c0 -47 14 -63 56 -63h116c76 0 111 59 131 131c13.1 3.2 24.6 1 35 -5c-8 -51 -23 -117 -37 -167c0 0 -80 2 -128 2h-215c-33 0 -93 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401
-c0 83 -17 88 -87 91c-6 6 -6 27 0 33c40 -1 98.5 -2 129 -2h255c24 0 32 1 49 4c3 0 4 -1 4 -3c2 -8 17 -104 22 -145c-9.79999 -4.70001 -20.6 -6.79999 -33 -5c-22 69 -38 109 -113 109h-75c-54 0 -66 -20 -66 -64v-180h91z" />
-    <glyph glyph-name="uni04D7" unicode="&#x4d7;" horiz-adv-x="447" 
-d="M345 590c0 -55 -58 -87 -122 -87c-65 0 -120 33 -120 87c0 18 16 33 39 33c22 0 34 -14 34 -30c0 -3 0 -5 -1 -8s-1 -6 -1 -8c0 -22 20 -43 50 -43c29 0 50 20 50 42c0 3 0 6 -1 9c-1 2 -1 4 -1 7c0 17 17 31 35 31c24 0 38 -14 38 -33zM124 282l181 3
-c11 0.200012 15 5 15 14c0 84 -45 105 -83 105c-24 0 -94 -9 -113 -122zM386 93c12 -1 18 -6 21 -16c-40 -52 -94 -87 -170 -87c-72 0 -119 24 -153 64c-33 38 -47 92 -47 148c0 152 113 235 200 235c139 0 169 -90 169 -174c0 -11 -7 -17 -19 -17l-266 2
-c0 -58 12 -104 32 -137c31 -51 73 -72 109 -72c58 0 87 16 124 54z" />
-    <glyph glyph-name="uni04D8" unicode="&#x4d8;" horiz-adv-x="644" 
-d="M97 523l-23 24c79 74 126 111 236 111c215 0 301 -173 301 -332c0 -195 -102 -338 -295 -338c-192 0 -263 130 -274 272h478c1 11 1 23 1 37c0 186 -92 327 -227 327c-93 0 -144 -49 -197 -101zM122 216c31 -130 103 -194 201 -194c106 0 170 94 188 194h-389z" />
-    <glyph glyph-name="afii10846" unicode="&#x4d9;" horiz-adv-x="447" 
-d="M304 146l-181 -3c-11 -0.199997 -15 -5 -15 -14c0 -84 45 -105 83 -105c24 0 94 9 113 122zM42 335c-12 1 -18 6 -21 16c40 52 94 87 170 87c72 0 119 -24 153 -64c33 -38 47 -92 47 -148c0 -152 -113 -235 -200 -235c-139 0 -169 90 -169 174c0 11 7 17 19 17l266 -2
-c0 58 -12 104 -32 137c-31 51 -73 72 -109 72c-58 0 -87 -16 -124 -54z" />
-    <glyph glyph-name="uni04DA" unicode="&#x4da;" horiz-adv-x="644" 
-d="M372 759c0 26 22 48 48 48s48 -22 48 -48s-22 -48 -48 -48s-48 22 -48 48zM183 759c0 26 22 48 48 48s48 -22 48 -48s-22 -48 -48 -48s-48 22 -48 48zM97 523l-23 24c79 74 126 111 236 111c215 0 301 -173 301 -332c0 -195 -102 -338 -295 -338
-c-192 0 -263 130 -274 272h478c1 11 1 23 1 37c0 186 -92 327 -227 327c-93 0 -144 -49 -197 -101zM122 216c31 -130 103 -194 201 -194c106 0 170 94 188 194h-389z" />
-    <glyph glyph-name="uni04DB" unicode="&#x4db;" horiz-adv-x="447" 
-d="M83 573c0 26 21 48 47 48s47 -22 47 -48s-21 -47 -47 -47s-47 21 -47 47zM252 573c0 26 21 48 47 48s47 -22 47 -48s-21 -47 -47 -47s-47 21 -47 47zM304 146l-181 -3c-11 -0.199997 -15 -5 -15 -14c0 -84 45 -105 83 -105c24 0 94 9 113 122zM42 335c-12 1 -18 6 -21 16
-c40 52 94 87 170 87c72 0 119 -24 153 -64c33 -38 47 -92 47 -148c0 -152 -113 -235 -200 -235c-139 0 -169 90 -169 174c0 11 7 17 19 17l266 -2c0 58 -12 104 -32 137c-31 51 -73 72 -109 72c-58 0 -87 -16 -124 -54z" />
-    <glyph glyph-name="uni04E0" unicode="&#x4e0;" horiz-adv-x="608" 
-d="M167 645h355c21 0 28 -6 28 -14c0 -10 -6 -26 -15 -41l-168 -302c134 -27 197 -126 197 -237c0 -139 -132 -262 -292 -262c-80 0 -230 35 -230 101c0 23 10 50 44 50c27 0 55 -14 68 -35c32 -49 82 -79 137 -79c87 0 184 121 184 216c0 159 -115 213 -184 213
-c-16 0 -27 0 -41 -3l196 353h-249c-74 -1 -103 -84 -107 -128l-26 2l21 188c23 -5 58 -22 82 -22z" />
-    <glyph glyph-name="uni04E1" unicode="&#x4e1;" horiz-adv-x="416" 
-d="M127 107l168 288h-145c-30 0 -64 -21 -84 -94l-26 3c8 49 14 93 15 138h25c2 -6 11 -13 26 -13h203c29 0 65 6 67 6c7 0 13 -2 13 -6s-6 -15 -22 -42l-151 -250c96 0 177 -53 177 -159c0 -119 -85 -213 -208 -213c-85 0 -143 61 -143 93c0 18 10 36 32 36
-c23 0 36 -10 44 -34c8 -22 35 -60 75 -60c50 0 119 54 119 162c0 101 -31 141 -109 141c-11 0 -41 -7 -59 -11z" />
-    <glyph glyph-name="uni04E6" unicode="&#x4e6;" horiz-adv-x="702" 
-d="M393 759c0 26 22 48 48 48s48 -22 48 -48s-22 -48 -48 -48s-48 22 -48 48zM204 759c0 26 22 48 48 48s48 -22 48 -48s-22 -48 -48 -48s-48 22 -48 48zM331 622c-99 0 -198 -85 -198 -295c0 -192 115 -301 237 -301c114 0 200 105 200 284c0 202 -107 312 -239 312z
-M666 329c0 -84 -22 -156.3 -61.8 -213c-54.9 -78.3 -143.4 -126 -254.2 -126c-170 0 -313 123 -313 320c0 193.9 113.3 348 307 348c179 0 322 -122 322 -329z" />
-    <glyph glyph-name="uni04E7" unicode="&#x4e7;" horiz-adv-x="504" 
-d="M121 575c0 26 21 48 47 48s47 -22 47 -48s-21 -47 -47 -47s-47 21 -47 47zM290 575c0 26 21 48 47 48s47 -22 47 -48s-21 -47 -47 -47s-47 21 -47 47zM41 205c0 63.2 19 121.4 55.3 164c36.6 43 90.9 70 156.7 70c153 0 210 -121 210 -225
-c0 -61.3 -20.3 -124.2 -65.1 -168c-34.1 -33.3 -82.5 -56 -146.9 -56c-142 0 -210 113 -210 215zM238 404c-90 0 -111 -89 -111 -176c0 -77 34 -203 138 -203c47 0 112 31 112 157c0 144 -53 222 -139 222z" />
-    <glyph glyph-name="uni04E8" unicode="&#x4e8;" horiz-adv-x="702" 
-d="M331 622c-99 0 -198 -85 -198 -295v-0.200012c39.3 29.6 98.7 43.2 135 43.2c98 0 128 -47 191 -47c31.2 0 76.5 12.1 108.9 34.7c-15.6 171.6 -115.7 264.3 -236.9 264.3zM666 329c0 -84 -22 -156.3 -61.8 -213c-54.9 -78.3 -143.4 -126 -254.2 -126
-c-170 0 -313 123 -313 320c0 193.9 113.3 348 307 348c179 0 322 -122 322 -329zM570 315.3c-41.8 -38 -91.4 -49.3 -129 -49.3c-92 0 -116 46 -191 46c-28.7 0 -80.3 -4.79999 -115.1 -26.6c15.3 -166 122.2 -259.4 235.1 -259.4c114 0 200 105 200 284v5.29999z" />
-    <glyph glyph-name="uni04E9" unicode="&#x4e9;" horiz-adv-x="504" 
-d="M41 205c0 63.2 19 121.4 55.3 164c36.6 43 90.9 70 156.7 70c153 0 210 -121 210 -225c0 -61.3 -20.3 -124.2 -65.1 -168c-34.1 -33.3 -82.5 -56 -146.9 -56c-142 0 -210 113 -210 215zM238 404c-90 0 -111 -89 -111 -176v-1.89999c21.4 11.8 64.8 22.9 96 22.9
-c45 0 67 -20 105 -20c16.3 0 32.5 4.39999 45.9 9.5c-12.4 107.8 -61.9 165.5 -135.9 165.5zM376.3 210.2c-22.8 -13.6 -59.2 -31.2 -92.3 -31.2c-43 0 -77 28 -112 28c-9.7 0 -31.9 -4.60001 -43.7 -6.3c7.09999 -76.2 44.3 -175.7 136.7 -175.7c47 0 112 31 112 157
-c0 9.7 -0.200012 19.1 -0.700012 28.2z" />
-    <glyph glyph-name="uni04EA" unicode="&#x4ea;" horiz-adv-x="702" 
-d="M390 761c0 26 22 48 48 48s48 -22 48 -48s-22 -48 -48 -48s-48 22 -48 48zM201 761c0 26 22 48 48 48s48 -22 48 -48s-22 -48 -48 -48s-48 22 -48 48zM331 622c-99 0 -198 -85 -198 -295v-0.200012c39.3 29.6 98.7 43.2 135 43.2c98 0 128 -47 191 -47
-c31.2 0 76.5 12.1 108.9 34.7c-15.6 171.6 -115.7 264.3 -236.9 264.3zM666 329c0 -84 -22 -156.3 -61.8 -213c-54.9 -78.3 -143.4 -126 -254.2 -126c-170 0 -313 123 -313 320c0 193.9 113.3 348 307 348c179 0 322 -122 322 -329zM570 315.3
-c-41.8 -38 -91.4 -49.3 -129 -49.3c-92 0 -116 46 -191 46c-28.7 0 -80.3 -4.79999 -115.1 -26.6c15.3 -166 122.2 -259.4 235.1 -259.4c114 0 200 105 200 284v5.29999z" />
-    <glyph glyph-name="uni04EB" unicode="&#x4eb;" horiz-adv-x="504" 
-d="M41 205c0 63.2 19 121.4 55.3 164c36.6 43 90.9 70 156.7 70c153 0 210 -121 210 -225c0 -61.3 -20.3 -124.2 -65.1 -168c-34.1 -33.3 -82.5 -56 -146.9 -56c-142 0 -210 113 -210 215zM238 404c-90 0 -111 -89 -111 -176v-1.89999c21.4 11.8 64.8 22.9 96 22.9
-c45 0 67 -20 105 -20c16.3 0 32.5 4.39999 45.9 9.5c-12.4 107.8 -61.9 165.5 -135.9 165.5zM116 573c0 26 21 48 47 48s47 -22 47 -48s-21 -47 -47 -47s-47 21 -47 47zM285 573c0 26 21 48 47 48s47 -22 47 -48s-21 -47 -47 -47s-47 21 -47 47zM376.3 210.2
-c-22.8 -13.6 -59.2 -31.2 -92.3 -31.2c-43 0 -77 28 -112 28c-9.7 0 -31.9 -4.60001 -43.7 -6.3c7.09999 -76.2 44.3 -175.7 136.7 -175.7c47 0 112 31 112 157c0 9.7 -0.200012 19.1 -0.700012 28.2z" />
-    <glyph glyph-name="uni04EF" unicode="&#x4ef;" horiz-adv-x="515" 
-d="M204 -160c-36 -64 -76 -72 -97 -72c-27 0 -47 16 -47 37c0 13 15 43 44 43c11 0 15 -3 29 -3c25 0 39 9 50 29c15 31 27.1 58.6 39 92c10 28 -5.3 73.9 -14 94l-113.1 263c-26.2 61 -39.2 70 -78.9 75c-6 6 -6 27 0 33c20 -1 47 -2 81 -2c36 0 76 1 113 2
-c6 -6 6 -27 0 -33c-56 -4.29999 -50.8 -22.8 -32.8 -65l88.7 -208c8.5 -19.8 16.9 -17.1 23.9 -1l99.2 229c16 36 -16.4 42 -48 45c-6 6 -6 27 0 33c30 -1 61 -2 91 -2c28 0 51 1 71 2c6 -6 6 -27 0 -33c-47 -5.70001 -61.3 -21.7 -81 -64c-52.2 -112.4 -97 -215 -177 -408
-c-12.3 -29.6 -25.4 -58.2 -41 -86zM375 518h-224c-9 0 -13 11 -13 18c0 12 11 32 22 32h225c10 0 14 -11 14 -17c0 -12 -11 -33 -24 -33z" />
-    <glyph glyph-name="uni04F1" unicode="&#x4f1;" horiz-adv-x="515" 
-d="M204 -160c-36 -64 -76 -72 -97 -72c-27 0 -47 16 -47 37c0 13 15 43 44 43c11 0 15 -3 29 -3c25 0 39 9 50 29c15 31 27.1 58.6 39 92c10 28 -5.3 73.9 -14 94l-113.1 263c-26.2 61 -39.2 70 -78.9 75c-6 6 -6 27 0 33c20 -1 47 -2 81 -2c36 0 76 1 113 2
-c6 -6 6 -27 0 -33c-56 -4.29999 -50.8 -22.8 -32.8 -65l88.7 -208c8.5 -19.8 16.9 -17.1 23.9 -1l99.2 229c16 36 -16.4 42 -48 45c-6 6 -6 27 0 33c30 -1 61 -2 91 -2c28 0 51 1 71 2c6 -6 6 -27 0 -33c-47 -5.70001 -61.3 -21.7 -81 -64c-52.2 -112.4 -97 -215 -177 -408
-c-12.3 -29.6 -25.4 -58.2 -41 -86zM149 573c0 26 21 48 47 48s47 -22 47 -48s-21 -47 -47 -47s-47 21 -47 47zM318 573c0 26 21 48 47 48s47 -22 47 -48s-21 -47 -47 -47s-47 21 -47 47z" />
-    <glyph glyph-name="uni04F3" unicode="&#x4f3;" horiz-adv-x="515" 
-d="M204 -160c-36 -64 -76 -72 -97 -72c-27 0 -47 16 -47 37c0 13 15 43 44 43c11 0 15 -3 29 -3c25 0 39 9 50 29c15 31 27.1 58.6 39 92c10 28 -5.3 73.9 -14 94l-113.1 263c-26.2 61 -39.2 70 -78.9 75c-6 6 -6 27 0 33c20 -1 47 -2 81 -2c36 0 76 1 113 2
-c6 -6 6 -27 0 -33c-56 -4.29999 -50.8 -22.8 -32.8 -65l88.7 -208c8.5 -19.8 16.9 -17.1 23.9 -1l99.2 229c16 36 -16.4 42 -48 45c-6 6 -6 27 0 33c30 -1 61 -2 91 -2c28 0 51 1 71 2c6 -6 6 -27 0 -33c-47 -5.70001 -61.3 -21.7 -81 -64c-52.2 -112.4 -97 -215 -177 -408
-c-12.3 -29.6 -25.4 -58.2 -41 -86zM462 615c0 -6 -1 -13 -7 -19l-114 -110c-2 -2 -4 -2 -6 -2c-5 0 -14 5 -14 13c0 1 0 3 1 4l78 139c5 9 12 12 24 12c21 0 38 -18.4 38 -37zM330 621c0 -5 -1 -11 -5 -16l-102 -121c-2 -2 -5 -3 -8 -3c-6 0 -14 5 -14 13c0 1 0 2 1 3
-l64 146c6 13 22 14 26 14c20.9 0 38 -15.5 38 -36z" />
-    <glyph glyph-name="uni1E00" unicode="&#x1e00;" horiz-adv-x="695" 
-d="M336 -79c-31 0 -48 -23 -48 -53c0 -28 17 -53 48 -53s48 25 48 53c0 31 -18 53 -48 53zM248 -132c0 46 42 85 88 85s88 -38 88 -85c0 -45 -40 -85 -88 -85c-46 0 -88 39 -88 85zM263 283h177l-94 272h-6l-102.2 -258.7c-3.8 -10.3 3.2 -13.3 25.2 -13.3zM155 79
-c-15.6 -41.1 31.4 -45.4 69 -48c6 -6 6 -27 0 -33c-37 1 -87 2 -128 2c-30.3 0 -63 -1 -89 -2c-6 6 -6 27 0 33c43.5 3 74 9 100 71l227 536c13 0 40 11 55 20l206 -572c17.4 -48.2 51.2 -51.5 90 -55c6 -6 6 -27 0 -33c-35 1 -73 2 -114 2c-39 0 -94 -1 -131 -2
-c-6 6 -6 27 0 33c47.6 3.4 85.8 6.5 74 41l-58 169h-211c-24 0 -30 -4 -35 -17z" />
-    <glyph glyph-name="uni1E01" unicode="&#x1e01;" horiz-adv-x="457" 
-d="M224 -80c-31 0 -48 -23 -48 -53c0 -28 17 -53 48 -53s48 25 48 53c0 31 -18 53 -48 53zM136 -133c0 46 42 85 88 85s88 -38 88 -85c0 -45 -40 -85 -88 -85c-46 0 -88 39 -88 85zM293 233l-79 -21c-74 -19 -95 -65 -95 -110c0 -31 22 -71 72 -71c28 0 62 23 88 44
-c8 6 14 13 14 26v132zM293 48h-2l-20 -16c-44 -34 -74.2 -42 -109 -42c-70 0 -126 26 -126 108c0 68 69 121 165 145l86 21c3 1 6 5 6 12c0 113 -47 130 -81 130c-38 0 -80 -11 -80 -42c0 -11 1 -17 2 -20c2 -4 3 -11 3 -18c0 -13 -18 -34 -47 -34c-23 0 -35 12 -35 36
-c0 57 83 111 165 111c73 0 151 -27 151 -169v-147c0 -46 1 -85 30 -85c12.7 0 29.5 9.8 37 16c11.3 -6.3 15.3 -14.7 17 -27c-20.7 -20 -56.7 -37 -95 -37c-50.4 0 -61 27 -67 58z" />
-    <glyph glyph-name="uni1E02" unicode="&#x1e02;" horiz-adv-x="588" 
-d="M224 754c0 28 24 52 52 52s52 -24 52 -52s-24 -52 -52 -52s-52 24 -52 52zM191 550v-184h74c83 0 142 30 142 115c0 102 -73 132 -129 132c-87 0 -87 -10 -87 -63zM191 332v-214c0 -61 13 -87 83 -87c152 0 180 61 180 134c0 90 -57 167 -194 167h-69zM148 645
-c36 0 90 2 125 2c186 0 215 -87 215 -154c0 -54.3 -44.9 -105.6 -95 -131v-2c87 -25 154 -80 154 -176c0 -86 -53 -186 -252 -186c-84 0 -110.3 2 -146 2c-37.1 0 -91 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33
-c39 -1 93.3 -2 129 -2z" />
-    <glyph glyph-name="uni1E03" unicode="&#x1e03;" horiz-adv-x="493" 
-d="M218 599c0 24 28 48 52 48c27 0 48 -28 48 -52c0 -21.1 -24 -48 -52 -48c-24 0 -48 26 -48 52zM174 363c-12.9 -11.4 -17 -21 -17 -42v-250c20 -25 41 -47 72 -47c95 0 141 86 141 200c0 97 -50 171 -111 171c-29 0 -59 -9 -85 -32zM167 394c31 28 69.1 45 112 45
-c87 0 177 -75 177 -197c0 -159 -119 -252 -221 -252c-35.3 0 -65.1 5.5 -88 24.8c-11 9.2 -17 9.2 -27.3 -2.8c-7.7 -8.9 -17.6 -18.2 -23.7 -24c-12 0 -17 4 -22 12c3 14 4 32 4 71v488c0 84 -12 79 -64 82c-6 6 -8 22 -6 30c40 3 115 17 140 27c9 0 13 -3 13 -10
-c0 0 -4 -40 -4 -105v-184c0 -9 3.7 -10.7 10 -5z" />
-    <glyph glyph-name="uni1E04" unicode="&#x1e04;" horiz-adv-x="588" 
-d="M220 -156c0 24 28 48 52 48c27 0 48 -28 48 -52c0 -21.1 -24 -48 -52 -48c-24 0 -48 26 -48 52zM191 550v-184h74c83 0 142 30 142 115c0 102 -73 132 -129 132c-87 0 -87 -10 -87 -63zM191 332v-214c0 -61 13 -87 83 -87c152 0 180 61 180 134c0 90 -57 167 -194 167
-h-69zM148 645c36 0 90 2 125 2c186 0 215 -87 215 -154c0 -54.3 -44.9 -105.6 -95 -131v-2c87 -25 154 -80 154 -176c0 -86 -53 -186 -252 -186c-84 0 -110.3 2 -146 2c-37.1 0 -91 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33
-c39 -1 93.3 -2 129 -2z" />
-    <glyph glyph-name="uni1E05" unicode="&#x1e05;" horiz-adv-x="493" 
-d="M175 -156c0 24 28 48 52 48c27 0 48 -28 48 -52c0 -21.1 -24 -48 -52 -48c-24 0 -48 26 -48 52zM174 363c-12.9 -11.4 -17 -21 -17 -42v-250c20 -25 41 -47 72 -47c95 0 141 86 141 200c0 97 -50 171 -111 171c-29 0 -59 -9 -85 -32zM167 394c31 28 69.1 45 112 45
-c87 0 177 -75 177 -197c0 -159 -119 -252 -221 -252c-35.3 0 -65.1 5.5 -88 24.8c-11 9.2 -17 9.2 -27.3 -2.8c-7.7 -8.9 -17.6 -18.2 -23.7 -24c-12 0 -17 4 -22 12c3 14 4 32 4 71v488c0 84 -12 79 -64 82c-6 6 -8 22 -6 30c40 3 115 17 140 27c9 0 13 -3 13 -10
-c0 0 -4 -40 -4 -105v-184c0 -9 3.7 -10.7 10 -5z" />
-    <glyph glyph-name="uni1E06" unicode="&#x1e06;" horiz-adv-x="588" 
-d="M373 -131h-205c-8 0 -12 8 -12 15c0 12 10 29 22 29h205c9 0 13 -7 13 -14c0 -12 -10 -30 -23 -30zM191 550v-184h74c83 0 142 30 142 115c0 102 -73 132 -129 132c-87 0 -87 -10 -87 -63zM191 332v-214c0 -61 13 -87 83 -87c152 0 180 61 180 134c0 90 -57 167 -194 167
-h-69zM148 645c36 0 90 2 125 2c186 0 215 -87 215 -154c0 -54.3 -44.9 -105.6 -95 -131v-2c87 -25 154 -80 154 -176c0 -86 -53 -186 -252 -186c-84 0 -110.3 2 -146 2c-37.1 0 -91 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33
-c39 -1 93.3 -2 129 -2z" />
-    <glyph glyph-name="uni1E07" unicode="&#x1e07;" horiz-adv-x="493" 
-d="M343 -131h-205c-8 0 -12 8 -12 15c0 12 10 29 22 29h205c9 0 13 -7 13 -14c0 -12 -10 -30 -23 -30zM174 363c-12.9 -11.4 -17 -21 -17 -42v-250c20 -25 41 -47 72 -47c95 0 141 86 141 200c0 97 -50 171 -111 171c-29 0 -59 -9 -85 -32zM167 394c31 28 69.1 45 112 45
-c87 0 177 -75 177 -197c0 -159 -119 -252 -221 -252c-35.3 0 -65.1 5.5 -88 24.8c-11 9.2 -17 9.2 -27.3 -2.8c-7.7 -8.9 -17.6 -18.2 -23.7 -24c-12 0 -17 4 -22 12c3 14 4 32 4 71v488c0 84 -12 79 -64 82c-6 6 -8 22 -6 30c40 3 115 17 140 27c9 0 13 -3 13 -10
-c0 0 -4 -40 -4 -105v-184c0 -9 3.7 -10.7 10 -5z" />
-    <glyph glyph-name="uni1E08" unicode="&#x1e08;" horiz-adv-x="646" 
-d="M408 819c28.6 -13.3 49.3 -30.7 62 -52l-144 -58c-21 -9 -33 -12 -42 -12s-15 7 -15 15c0 7 2 12 15 21zM367 -96c-19 0 -29 -1 -45 -6l-6 6l35.8 86c-211.5 2.3 -314.8 147.6 -314.8 320c0 104.3 39.6 202.2 106 263c59 54 130 85 215 85c123 0 168 -40 219 -45
-c10 -55 17 -103 22 -155c-11.3 -6 -21 -9 -33 -5c-26 86 -81 168 -219 168c-52 0 -110 -28 -159.6 -89c-36.5 -44.9 -59.4 -116.7 -59.4 -203c0 -146 93.4 -298 228 -298c93 0 161 31 232 109c11 0 18 -6 23 -15c-61 -79.8 -138.8 -125 -224.2 -133.5l-21.8 -58.5
-c8 2 17 3 26 3c40 0 71 -24 71 -62c0 -43 -46 -74 -107 -74c-32 0 -49 6 -74 17c0 12 3 19 10 26c27 -10 38 -14 58 -14c30 0 51 14 51 40c0 21 -10 35 -33 35z" />
-    <glyph glyph-name="uni1E09" unicode="&#x1e09;" horiz-adv-x="428" 
-d="M286 671c3 1 9 2 14 2c6.39999 0 32 -1 55 -23l3 -11l-115 -109c-15 -15 -23 -19 -30 -19s-14 6 -14 13c0 11.2 3.3 15.2 11.4 28zM228 -96c-19 0 -29 -1 -45 -6l-6 6l36.2 86.9c-112.5 9.7 -176.2 95.7 -176.2 217.1c0 142 106 231 205 231c96 0 153 -40 153 -95
-c0 -31 -28 -44 -49 -44s-35 9 -38 36c-4 35 -12 70 -71 70c-66 0 -114 -66 -114 -176c0 -117 61 -191 134 -191c43 0 86 22 120 66c9 -1 17 -5 21 -14c-46.5 -76.3 -95.6 -98.1 -150.6 -100.7l-21.4 -57.3c8 2 17 3 26 3c40 0 71 -24 71 -62c0 -43 -46 -74 -107 -74
-c-32 0 -49 6 -74 17c0 12 3 19 10 26c27 -10 38 -14 58 -14c30 0 51 14 51 40c0 21 -10 35 -33 35z" />
-    <glyph glyph-name="uni1E0A" unicode="&#x1e0a;" horiz-adv-x="701" 
-d="M244 754c0 28 24 52 52 52s52 -24 52 -52s-24 -52 -52 -52s-52 24 -52 52zM191 84c0 -32 11 -52 109 -52c141 0 262 50 262 252c0 154 -71 329 -287 329c-49 0 -84 -14 -84 -49v-480zM148 645c39 0 94 2 165 2c192 0 345 -153 345 -339c0 -246 -186 -310 -327 -310
-c-103 0 -145 2 -182 2c-37.7 0 -91 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c40 -1 93.3 -2 129 -2z" />
-    <glyph glyph-name="uni1E0B" unicode="&#x1e0b;" horiz-adv-x="506" 
-d="M128 599c0 24 28 48 52 48c27 0 48 -28 48 -52c0 -21.1 -24 -48 -52 -48c-24 0 -48 26 -48 52zM345 124v190c0 31 -3 38 -17 54c-20 23 -45 36 -81 36c-20 0 -62 -3 -93 -50c-15 -21 -29 -61 -29 -133c0 -125 56 -184 110 -184c25 0 57 16 94 48c14.1 12.2 16 20 16 39z
-M334 50.3c-49 -40.3 -86 -60.3 -125 -60.3c-108 0 -170 90 -170 213c0 74 26 133 69 176c40 38 84 60 150 60c33 0 74 -17 78 -17c7 0 9 2 9 9v128c0 84 -12 79 -64 82c-6 6 -8 22 -6 30c40 3 115 17 140 27c9 0 13 -3 13 -10c0 0 -4 -40 -4 -105v-453c0 -49 9 -68 73 -73
-c6 -6 6 -21 0 -27c-61 -7 -96 -22 -118 -40c-6 -2.5 -11 -3 -19 0c0 0 -8.5 34.5 -11 59c-0.700012 7 -10.2 5.2 -15 1.3z" />
-    <glyph glyph-name="uni1E0C" unicode="&#x1e0c;" horiz-adv-x="701" 
-d="M240 -156c0 24 28 48 52 48c27 0 48 -28 48 -52c0 -21.1 -24 -48 -52 -48c-24 0 -48 26 -48 52zM191 84c0 -32 11 -52 109 -52c141 0 262 50 262 252c0 154 -71 329 -287 329c-49 0 -84 -14 -84 -49v-480zM148 645c39 0 94 2 165 2c192 0 345 -153 345 -339
-c0 -246 -186 -310 -327 -310c-103 0 -145 2 -182 2c-37.7 0 -91 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c40 -1 93.3 -2 129 -2z" />
-    <glyph glyph-name="uni1E0D" unicode="&#x1e0d;" horiz-adv-x="506" 
-d="M185 -156c0 24 28 48 52 48c27 0 48 -28 48 -52c0 -21.1 -24 -48 -52 -48c-24 0 -48 26 -48 52zM345 124v190c0 31 -3 38 -17 54c-20 23 -45 36 -81 36c-20 0 -62 -3 -93 -50c-15 -21 -29 -61 -29 -133c0 -125 56 -184 110 -184c25 0 57 16 94 48c14.1 12.2 16 20 16 39z
-M334 50.3c-49 -40.3 -86 -60.3 -125 -60.3c-108 0 -170 90 -170 213c0 74 26 133 69 176c40 38 84 60 150 60c33 0 74 -17 78 -17c7 0 9 2 9 9v128c0 84 -12 79 -64 82c-6 6 -8 22 -6 30c40 3 115 17 140 27c9 0 13 -3 13 -10c0 0 -4 -40 -4 -105v-453c0 -49 9 -68 73 -73
-c6 -6 6 -21 0 -27c-61 -7 -96 -22 -118 -40c-6 -2.5 -11 -3 -19 0c0 0 -8.5 34.5 -11 59c-0.700012 7 -10.2 5.2 -15 1.3z" />
-    <glyph glyph-name="uni1E0E" unicode="&#x1e0e;" horiz-adv-x="701" 
-d="M380 -131h-205c-8 0 -12 8 -12 15c0 12 10 29 22 29h205c9 0 13 -7 13 -14c0 -12 -10 -30 -23 -30zM191 84c0 -32 11 -52 109 -52c141 0 262 50 262 252c0 154 -71 329 -287 329c-49 0 -84 -14 -84 -49v-480zM148 645c39 0 94 2 165 2c192 0 345 -153 345 -339
-c0 -246 -186 -310 -327 -310c-103 0 -145 2 -182 2c-37.7 0 -91 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c40 -1 93.3 -2 129 -2z" />
-    <glyph glyph-name="uni1E0F" unicode="&#x1e0f;" horiz-adv-x="506" 
-d="M331 -131h-205c-8 0 -12 8 -12 15c0 12 10 29 22 29h205c9 0 13 -7 13 -14c0 -12 -10 -30 -23 -30zM345 124v190c0 31 -3 38 -17 54c-20 23 -45 36 -81 36c-20 0 -62 -3 -93 -50c-15 -21 -29 -61 -29 -133c0 -125 56 -184 110 -184c25 0 57 16 94 48
-c14.1 12.2 16 20 16 39zM334 50.3c-49 -40.3 -86 -60.3 -125 -60.3c-108 0 -170 90 -170 213c0 74 26 133 69 176c40 38 84 60 150 60c33 0 74 -17 78 -17c7 0 9 2 9 9v128c0 84 -12 79 -64 82c-6 6 -8 22 -6 30c40 3 115 17 140 27c9 0 13 -3 13 -10c0 0 -4 -40 -4 -105
-v-453c0 -49 9 -68 73 -73c6 -6 6 -21 0 -27c-61 -7 -96 -22 -118 -40c-6 -2.5 -11 -3 -19 0c0 0 -8.5 34.5 -11 59c-0.700012 7 -10.2 5.2 -15 1.3z" />
-    <glyph glyph-name="uni1E10" unicode="&#x1e10;" horiz-adv-x="701" 
-d="M320 -41c38 0 62 -34 62 -86c0 -60 -49 -90 -106 -99c-6 6 -8 15 -8 24c49 11 75 35 75 53c0 20 -13 24 -31 26c-17 3 -42 12 -42 39c0 24 21 43 50 43zM191 84c0 -32 11 -52 109 -52c141 0 262 50 262 252c0 154 -71 329 -287 329c-49 0 -84 -14 -84 -49v-480zM148 645
-c39 0 94 2 165 2c192 0 345 -153 345 -339c0 -246 -186 -310 -327 -310c-103 0 -145 2 -182 2c-37.7 0 -91 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c40 -1 93.3 -2 129 -2z" />
-    <glyph glyph-name="uni1E11" unicode="&#x1e11;" horiz-adv-x="506" 
-d="M230 -41c38 0 62 -34 62 -86c0 -60 -49 -90 -106 -99c-6 6 -8 15 -8 24c49 11 75 35 75 53c0 20 -13 24 -31 26c-17 3 -42 12 -42 39c0 24 21 43 50 43zM345 124v190c0 31 -3 38 -17 54c-20 23 -45 36 -81 36c-20 0 -62 -3 -93 -50c-15 -21 -29 -61 -29 -133
-c0 -125 56 -184 110 -184c25 0 57 16 94 48c14.1 12.2 16 20 16 39zM334 50.3c-49 -40.3 -86 -60.3 -125 -60.3c-108 0 -170 90 -170 213c0 74 26 133 69 176c40 38 84 60 150 60c33 0 74 -17 78 -17c7 0 9 2 9 9v128c0 84 -12 79 -64 82c-6 6 -8 22 -6 30
-c40 3 115 17 140 27c9 0 13 -3 13 -10c0 0 -4 -40 -4 -105v-453c0 -49 9 -68 73 -73c6 -6 6 -21 0 -27c-61 -7 -96 -22 -118 -40c-6 -2.5 -11 -3 -19 0c0 0 -8.5 34.5 -11 59c-0.700012 7 -10.2 5.2 -15 1.3z" />
-    <glyph glyph-name="uni1E12" unicode="&#x1e12;" horiz-adv-x="701" 
-d="M283 -43c29 -47 73 -100 109 -140c-5 -7 -13.6 -15.1 -23 -17c-38 24 -73 52 -103 83c-32 -32 -65 -61 -104 -83c-9 2 -16 8 -22 17c36 40 82 94 111 140c10.7 2.3 21.3 3 32 0zM191 84c0 -32 11 -52 109 -52c141 0 262 50 262 252c0 154 -71 329 -287 329
-c-49 0 -84 -14 -84 -49v-480zM148 645c39 0 94 2 165 2c192 0 345 -153 345 -339c0 -246 -186 -310 -327 -310c-103 0 -145 2 -182 2c-37.7 0 -91 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c40 -1 93.3 -2 129 -2z" />
-    <glyph glyph-name="uni1E13" unicode="&#x1e13;" horiz-adv-x="506" 
-d="M232 -43c29 -47 73 -100 109 -140c-5 -7 -13.6 -15.1 -23 -17c-38 24 -73 52 -103 83c-32 -32 -65 -61 -104 -83c-9 2 -16 8 -22 17c36 40 82 94 111 140c10.7 2.3 21.3 3 32 0zM345 124v190c0 31 -3 38 -17 54c-20 23 -45 36 -81 36c-20 0 -62 -3 -93 -50
-c-15 -21 -29 -61 -29 -133c0 -125 56 -184 110 -184c25 0 57 16 94 48c14.1 12.2 16 20 16 39zM334 50.3c-49 -40.3 -86 -60.3 -125 -60.3c-108 0 -170 90 -170 213c0 74 26 133 69 176c40 38 84 60 150 60c33 0 74 -17 78 -17c7 0 9 2 9 9v128c0 84 -12 79 -64 82
-c-6 6 -8 22 -6 30c40 3 115 17 140 27c9 0 13 -3 13 -10c0 0 -4 -40 -4 -105v-453c0 -49 9 -68 73 -73c6 -6 6 -21 0 -27c-61 -7 -96 -22 -118 -40c-6 -2.5 -11 -3 -19 0c0 0 -8.5 34.5 -11 59c-0.700012 7 -10.2 5.2 -15 1.3z" />
-    <glyph glyph-name="uni1E14" unicode="&#x1e14;" horiz-adv-x="557" 
-d="M410 713h-224c-9 0 -13 11 -13 18c0 12 11 32 22 32h225c10 0 14 -11 14 -17c0 -12 -11 -33 -24 -33zM281 361c85 0 88 13 91 68c6 6 27 6 33 0c-1 -24 -2 -58 -2 -86c0 -34.3 1 -62 2 -88c-6 -6 -27 -6 -33 0c-3 45 -6 68 -91 68h-91v-221c0 -47 14 -63 56 -63h116
-c76 0 111 59 131 131c13.1 3.2 24.6 1 35 -5c-8 -51 -23 -117 -37 -167c0 0 -80 2 -128 2h-215c-33 0 -93 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c40 -1 98.5 -2 129 -2h255c24 0 32 1 49 4c3 0 4 -1 4 -3
-c2 -8 17 -104 22 -145c-9.79999 -4.70001 -20.6 -6.79999 -33 -5c-22 69 -38 109 -113 109h-75c-54 0 -66 -20 -66 -64v-180h91zM20.9 831.1l93.2 -73.9c8.5 -7 11.5 -12.3 11.5 -18.5c0 -7 -5.3 -13.2 -11.5 -13.2c-6.2 0 -16.9 2.59998 -33.1 10.5l-118.6 55.5
-c14.1 15.6 32.2 29.4 58.5 39.6z" />
-    <glyph glyph-name="uni1E15" unicode="&#x1e15;" horiz-adv-x="447" 
-d="M212.2 765.2l56 -113.4c4 -9 4.79999 -15.3 4.79999 -21.6c0 -4.5 -5.60001 -9.90002 -12 -9.90002c-4.79999 0 -10.4 4.5 -23.2 18l-91.2 98.1l1.59999 9.89996c6.40001 5.40002 24.8 20.7 52 20.7c4 0 8.8 -0.900024 12 -1.79999zM337 518h-224c-9 0 -13 11 -13 18
-c0 12 11 32 22 32h225c10 0 14 -11 14 -17c0 -12 -11 -33 -24 -33zM124 282l181 3c11 0.200012 15 5 15 14c0 84 -45 105 -83 105c-24 0 -94 -9 -113 -122zM386 93c12 -1 18 -6 21 -16c-40 -52 -94 -87 -170 -87c-72 0 -119 24 -153 64c-33 38 -47 92 -47 148
-c0 152 113 235 200 235c139 0 169 -90 169 -174c0 -11 -7 -17 -19 -17l-266 2c0 -58 12 -104 32 -137c31 -51 73 -72 109 -72c58 0 87 16 124 54z" />
-    <glyph glyph-name="uni1E16" unicode="&#x1e16;" horiz-adv-x="557" 
-d="M353 713h-224c-9 0 -13 11 -13 18c0 12 11 32 22 32h225c10 0 14 -11 14 -17c0 -12 -11 -33 -24 -33zM281 361c85 0 88 13 91 68c6 6 27 6 33 0c-1 -24 -2 -58 -2 -86c0 -34.3 1 -62 2 -88c-6 -6 -27 -6 -33 0c-3 45 -6 68 -91 68h-91v-221c0 -47 14 -63 56 -63h116
-c76 0 111 59 131 131c13.1 3.2 24.6 1 35 -5c-8 -51 -23 -117 -37 -167c0 0 -80 2 -128 2h-215c-33 0 -93 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c40 -1 98.5 -2 129 -2h255c24 0 32 1 49 4c3 0 4 -1 4 -3
-c2 -8 17 -104 22 -145c-9.79999 -4.70001 -20.6 -6.79999 -33 -5c-22 69 -38 109 -113 109h-75c-54 0 -66 -20 -66 -64v-180h91zM535.1 831.9c22.1 -11.7 38 -27 47.8 -45.8l-110.9 -51.1c-16.2 -7.90002 -25.5 -10.5 -32.4 -10.5s-11.5 6.20001 -11.5 13.2
-c0 6.20001 1.5 10.6 11.5 18.5z" />
-    <glyph glyph-name="uni1E17" unicode="&#x1e17;" horiz-adv-x="447" 
-d="M264.4 759.2c2.39999 0.899963 7.20001 1.79999 11.2 1.79999c5.10001 0 25.6 -0.900024 44 -20.7l2.39999 -9.89996l-92 -98.1c-12 -13.5 -18.4 -17.1 -24 -17.1s-11.2 5.39996 -11.2 11.7c0 10.1 2.7 13.7 9.2 25.2zM337 518h-224c-9 0 -13 11 -13 18c0 12 11 32 22 32
-h225c10 0 14 -11 14 -17c0 -12 -11 -33 -24 -33zM124 282l181 3c11 0.200012 15 5 15 14c0 84 -45 105 -83 105c-24 0 -94 -9 -113 -122zM386 93c12 -1 18 -6 21 -16c-40 -52 -94 -87 -170 -87c-72 0 -119 24 -153 64c-33 38 -47 92 -47 148c0 152 113 235 200 235
-c139 0 169 -90 169 -174c0 -11 -7 -17 -19 -17l-266 2c0 -58 12 -104 32 -137c31 -51 73 -72 109 -72c58 0 87 16 124 54z" />
-    <glyph glyph-name="uni1E18" unicode="&#x1e18;" horiz-adv-x="557" 
-d="M291 -43c29 -47 73 -100 109 -140c-5 -7 -13.6 -15.1 -23 -17c-38 24 -73 52 -103 83c-32 -32 -65 -61 -104 -83c-9 2 -16 8 -22 17c36 40 82 94 111 140c10.7 2.3 21.3 3 32 0zM281 361c85 0 88 13 91 68c6 6 27 6 33 0c-1 -24 -2 -58 -2 -86c0 -34.3 1 -62 2 -88
-c-6 -6 -27 -6 -33 0c-3 45 -6 68 -91 68h-91v-221c0 -47 14 -63 56 -63h116c76 0 111 59 131 131c13.1 3.2 24.6 1 35 -5c-8 -51 -23 -117 -37 -167c0 0 -80 2 -128 2h-215c-33 0 -93 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33
-c40 -1 98.5 -2 129 -2h255c24 0 32 1 49 4c3 0 4 -1 4 -3c2 -8 17 -104 22 -145c-9.79999 -4.70001 -20.6 -6.79999 -33 -5c-22 69 -38 109 -113 109h-75c-54 0 -66 -20 -66 -64v-180h91z" />
-    <glyph glyph-name="uni1E19" unicode="&#x1e19;" horiz-adv-x="447" 
-d="M238 -43c29 -47 73 -100 109 -140c-5 -7 -13.6 -15.1 -23 -17c-38 24 -73 52 -103 83c-32 -32 -65 -61 -104 -83c-9 2 -16 8 -22 17c36 40 82 94 111 140c10.7 2.3 21.3 3 32 0zM124 282l181 3c11 0.200012 15 5 15 14c0 84 -45 105 -83 105c-24 0 -94 -9 -113 -122z
-M386 93c12 -1 18 -6 21 -16c-40 -52 -94 -87 -170 -87c-72 0 -119 24 -153 64c-33 38 -47 92 -47 148c0 152 113 235 200 235c139 0 169 -90 169 -174c0 -11 -7 -17 -19 -17l-266 2c0 -58 12 -104 32 -137c31 -51 73 -72 109 -72c58 0 87 16 124 54z" />
-    <glyph glyph-name="uni1E1A" unicode="&#x1e1a;" horiz-adv-x="557" 
-d="M336 -117c22 0 33 10 47 52c11 1 21 -2 27 -6c-12 -60 -41 -99 -87 -99c-22 0 -43 18 -64 32c-18 11 -37 19 -54 19c-26 0 -36 -15 -46 -48c-11 -2 -21 -1 -27 5c14 59 37 98 80 98c30 0 52 -20 72 -34c16 -12 33 -19 52 -19zM281 361c85 0 88 13 91 68c6 6 27 6 33 0
-c-1 -24 -2 -58 -2 -86c0 -34.3 1 -62 2 -88c-6 -6 -27 -6 -33 0c-3 45 -6 68 -91 68h-91v-221c0 -47 14 -63 56 -63h116c76 0 111 59 131 131c13.1 3.2 24.6 1 35 -5c-8 -51 -23 -117 -37 -167c0 0 -80 2 -128 2h-215c-33 0 -93 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91
-v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c40 -1 98.5 -2 129 -2h255c24 0 32 1 49 4c3 0 4 -1 4 -3c2 -8 17 -104 22 -145c-9.79999 -4.70001 -20.6 -6.79999 -33 -5c-22 69 -38 109 -113 109h-75c-54 0 -66 -20 -66 -64v-180h91z" />
-    <glyph glyph-name="uni1E1B" unicode="&#x1e1b;" horiz-adv-x="447" 
-d="M288 -115c22 0 33 10 47 52c11 1 21 -2 27 -6c-12 -60 -41 -99 -87 -99c-22 0 -43 18 -64 32c-18 11 -37 19 -54 19c-26 0 -36 -15 -46 -48c-11 -2 -21 -1 -27 5c14 59 37 98 80 98c30 0 52 -20 72 -34c16 -12 33 -19 52 -19zM124 282l181 3c11 0.200012 15 5 15 14
-c0 84 -45 105 -83 105c-24 0 -94 -9 -113 -122zM386 93c12 -1 18 -6 21 -16c-40 -52 -94 -87 -170 -87c-72 0 -119 24 -153 64c-33 38 -47 92 -47 148c0 152 113 235 200 235c139 0 169 -90 169 -174c0 -11 -7 -17 -19 -17l-266 2c0 -58 12 -104 32 -137
-c31 -51 73 -72 109 -72c58 0 87 16 124 54z" />
-    <glyph glyph-name="uni1E1C" unicode="&#x1e1c;" horiz-adv-x="557" 
-d="M436 805c-6 -71 -70 -113 -136 -113c-73 0 -131 43 -136 113h28c8 -39 55 -61 108 -61c49 0 101 22 108 61h28zM256 -96c-19 0 -29 -1 -45 -6l-6 6l40 96h-97c-33 0 -93 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33
-c40 -1 98.5 -2 129 -2h255c24 0 32 1 49 4c3 0 4 -1 4 -3c2 -8 17 -104 22 -145c-9.79999 -4.70001 -20.6 -6.79999 -33 -5c-22 69 -38 109 -113 109h-75c-54 0 -66 -20 -66 -64v-180h91c85 0 88 13 91 68c6 6 27 6 33 0c-1 -24 -2 -58 -2 -86c0 -34.3 1 -62 2 -88
-c-6 -6 -27 -6 -33 0c-3 45 -6 68 -91 68h-91v-221c0 -47 14 -63 56 -63h116c76 0 111 59 131 131c13.1 3.2 24.6 1 35 -5c-8 -51 -23 -117 -37 -167c0 0 -80 2 -128 2h-84l-25 -67c8 2 17 3 26 3c40 0 71 -24 71 -62c0 -43 -46 -74 -107 -74c-32 0 -49 6 -74 17
-c0 12 3 19 10 26c27 -10 38 -14 58 -14c30 0 51 14 51 40c0 21 -10 35 -33 35z" />
-    <glyph glyph-name="uni1E1D" unicode="&#x1e1d;" horiz-adv-x="447" 
-d="M112 648c11 -53 54 -90 108 -90c52 0 98 32 108 90l27 -12c-12 -86 -76 -135 -135 -135c-70 0 -121 50 -135 135zM229 -96c-19 0 -29 -1 -45 -6l-6 6l36.2 86.9c-59.3 4.6 -99.9 27.5 -130.2 63.1c-33 38 -47 92 -47 148c0 152 113 235 200 235c139 0 169 -90 169 -174
-c0 -11 -7 -17 -19 -17l-266 2c0 -58 12 -104 32 -137c31 -51 73 -72 109 -72c58 0 87 16 124 54c12 -1 18 -6 21 -16c-38 -49.4 -88.5 -83.4 -158.6 -86.7l-21.4 -57.3c8 2 17 3 26 3c40 0 71 -24 71 -62c0 -43 -46 -74 -107 -74c-32 0 -49 6 -74 17c0 12 3 19 10 26
-c27 -10 38 -14 58 -14c30 0 51 14 51 40c0 21 -10 35 -33 35zM124 282l181 3c11 0.200012 15 5 15 14c0 84 -45 105 -83 105c-24 0 -94 -9 -113 -122z" />
-    <glyph glyph-name="uni1E1E" unicode="&#x1e1e;" horiz-adv-x="485" 
-d="M202 754c0 28 24 52 52 52s52 -24 52 -52s-24 -52 -52 -52s-52 24 -52 52zM283 323h-93v-201c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-35 1 -84 2 -129 2s-95 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c40 -1 97 -2 129 -2
-h255.3c24.7 0 29.5 0.599976 47 4c2.40002 0 3.60001 -0.700012 4 -3c1.40002 -7.59998 16.5 -104 21.7 -145c-8 -3 -19 -5 -31 -5c-22 69 -47 109 -153 109h-45c-44 0 -56 -10 -56 -64v-180h93c85 0 88 13 91 68c6 6 27 6 33 0c-1 -26 -2 -52.5 -2 -86c0 -34.3 1 -63 2 -88
-c-6 -6 -27 -6 -33 0c-3 45 -6 68 -91 68z" />
-    <glyph glyph-name="uni1E1F" unicode="&#x1e1f;" horiz-adv-x="310" 
-d="M204 807c0 24 28 48 52 48c27 0 48 -28 48 -52c0 -21.1 -24 -48 -52 -48c-24 0 -48 26 -48 52zM175 122c0 -83 6 -87 84 -91c6 -6 6 -27 0 -33c-35 1 -83 2 -123 2s-75 -1 -110 -2c-6 6 -6 27 0 33c54 4 70 8 70 91v268h-69c-4 0 -5 1 -5 6v13c0 8 5 20 23 20h51v40
-c0 156 93 229 177 229c38 0 64 -3 90 -21c21 -16 32 -34 32 -51c0 -20 -24 -41 -41 -41c-21 0 -32 14 -40 32c-14 35 -30 47 -60 47c-33 0 -79 -24 -79 -178v-57h108c5 0 8 -2 8 -6v-20c0 -9 -14 -13 -23 -13h-93v-268z" />
-    <glyph glyph-name="uni1E20" unicode="&#x1e20;" horiz-adv-x="685" 
-d="M473 745h-224c-9 0 -13 11 -13 18c0 12 11 32 22 32h225c10 0 14 -11 14 -17c0 -12 -11 -33 -24 -33zM377 658c111 0 148 -35 208 -45c16 -72 20.5 -112 23 -154c-11.3 -4.70001 -21.7 -6.70001 -33 -6c-26 86 -67 169 -212 169c-116.5 0 -230 -120 -230 -295
-c0 -132 84 -301 242 -301c54 0 121 6 155 38v153c0 40.1 -27.1 43.8 -82 48c-6 6 -6 30 0 36c44 -1 90.5 -2 124 -2c40 0 65 1 89 2c6 -6 6 -30 0 -36c-29 -3 -46 -12.8 -46 -48v-116c0 -11 5 -19 16 -28c-68 -58 -161 -83 -279 -83c-191 0 -315 137.2 -315 317
-c0 220 173 351 340 351z" />
-    <glyph glyph-name="uni1E21" unicode="&#x1e21;" horiz-adv-x="500" 
-d="M348 518h-224c-9 0 -13 11 -13 18c0 12 11 32 22 32h225c10 0 14 -11 14 -17c0 -12 -11 -33 -24 -33zM319 279c0 83 -34 129 -97 129c-55 0 -80 -36 -80 -106c0 -64 9 -135 93 -135c37 0 84 19 84 112zM132 -10c-29 -35 -31 -60 -31 -94c0 -68 84 -97 120 -97
-c90 0 196 38 196 110c0 26 -12 40 -51 62c-29 16 -71 17 -121 17c-14 0 -42 -3 -73 -3c-13 0 -29 2 -40 5zM444 387c-11 0 -24 10 -28 18c-6 9 -13 12 -20 12c-13 0 -33 -14 -40 -24c29 -30 43 -57 43 -104c0 -98 -81 -153 -169 -153c-39 0 -67 7 -91 21
-c-12 -17 -18 -38 -18 -58c0 -43 35 -57 64 -57c5 0 15 1 30 2c24 3 49 5 67 5c37 0 107 -1 146 -33c29 -24 44 -49 44 -81c0 -108 -146 -173 -281 -173c-77 0 -159 27 -159 114c0 43 28 89 82 121c-26 13 -46 41 -46 77c0 34 16 77 44 101c-28 27 -52 58 -52 112
-c0 92 82 152 171 152c59 0 92 -20 104 -28c26 34 74 51 100 51c27 0 46 -16 46 -37c0 -20 -18 -38 -37 -38z" />
-    <glyph glyph-name="uni1E22" unicode="&#x1e22;" horiz-adv-x="730" 
-d="M324 753c0 28 24 52 52 52s52 -24 52 -52s-24 -52 -52 -52s-52 24 -52 52zM618 122c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-44 1 -91.7 2 -129 2c-37.1 0 -85 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v199h-342v-199c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33
-c-44 1 -92.7 2 -129 2c-37.7 0 -86 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c38 -1 79 -2 129 -2c51 0 92 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-160h342v160c0 83 -17 88 -87 91c-6 6 -6 27 0 33
-c44 -1 91.7 -2 129 -2c38 0 89 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-401z" />
-    <glyph glyph-name="uni1E23" unicode="&#x1e23;" horiz-adv-x="538" 
-d="M238 599c0 24 28 48 52 48c27 0 48 -28 48 -52c0 -21.1 -24 -48 -52 -48c-24 0 -48 26 -48 52zM167 285.9v-163.9c0 -83 9 -87 59.8 -91c6 -6 6 -27 0 -33c-28 1 -60.8 2 -98.8 2c-40 0 -76.8 -1 -109.8 -2c-6 6 -6 27 0 33c58 4 69.8 8 69.8 91v437c0 84 -12 79 -64 82
-c-6 6 -8 22 -6 30c40 3 115 17 140 27c9 0 13 -3 13 -10c0 0 -4 -40 -4 -105l-0.800003 -225c0 -14 6.40001 -3.79999 9.8 0c61 68 120.9 81 170 81c35 0 66.2 -12 83 -34c23.3 -30.5 27 -79 27 -134v-149c0 -82 11 -86 67 -91c5 -6 5 -27 0 -33c-33 1 -66 2 -106 2
-s-74 -1 -102 -2c-5 6 -5 27 0 33c52 5 62 9 62 91v152c0 30 -2 57.2 -12 77c-11.6 22.9 -32.6 36 -53 36c-39.4 0 -90 -21.7 -128 -59c-8 -8.70001 -17 -21 -17 -42.1z" />
-    <glyph glyph-name="uni1E24" unicode="&#x1e24;" horiz-adv-x="730" 
-d="M618 122c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-44 1 -91.7 2 -129 2c-37.1 0 -85 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v199h-342v-199c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-44 1 -92.7 2 -129 2c-37.7 0 -86 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91
-v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c38 -1 79 -2 129 -2c51 0 92 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-160h342v160c0 83 -17 88 -87 91c-6 6 -6 27 0 33c44 -1 91.7 -2 129 -2c38 0 89 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-401zM324 -156
-c0 24 28 48 52 48c27 0 48 -28 48 -52c0 -21.1 -24 -48 -52 -48c-24 0 -48 26 -48 52z" />
-    <glyph glyph-name="uni1E25" unicode="&#x1e25;" horiz-adv-x="538" 
-d="M210 -157c0 24 28 48 52 48c27 0 48 -28 48 -52c0 -21.1 -24 -48 -52 -48c-24 0 -48 26 -48 52zM167 285.9v-163.9c0 -83 9 -87 59.8 -91c6 -6 6 -27 0 -33c-28 1 -60.8 2 -98.8 2c-40 0 -76.8 -1 -109.8 -2c-6 6 -6 27 0 33c58 4 69.8 8 69.8 91v437c0 84 -12 79 -64 82
-c-6 6 -8 22 -6 30c40 3 115 17 140 27c9 0 13 -3 13 -10c0 0 -4 -40 -4 -105l-0.800003 -225c0 -14 6.40001 -3.79999 9.8 0c61 68 120.9 81 170 81c35 0 66.2 -12 83 -34c23.3 -30.5 27 -79 27 -134v-149c0 -82 11 -86 67 -91c5 -6 5 -27 0 -33c-33 1 -66 2 -106 2
-s-74 -1 -102 -2c-5 6 -5 27 0 33c52 5 62 9 62 91v152c0 30 -2 57.2 -12 77c-11.6 22.9 -32.6 36 -53 36c-39.4 0 -90 -21.7 -128 -59c-8 -8.70001 -17 -21 -17 -42.1z" />
-    <glyph glyph-name="uni1E26" unicode="&#x1e26;" horiz-adv-x="730" 
-d="M618 122c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-44 1 -91.7 2 -129 2c-37.1 0 -85 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v199h-342v-199c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-44 1 -92.7 2 -129 2c-37.7 0 -86 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91
-v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c38 -1 79 -2 129 -2c51 0 92 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-160h342v160c0 83 -17 88 -87 91c-6 6 -6 27 0 33c44 -1 91.7 -2 129 -2c38 0 89 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-401zM409 757
-c0 26 22 48 48 48s48 -22 48 -48s-22 -48 -48 -48s-48 22 -48 48zM220 757c0 26 22 48 48 48s48 -22 48 -48s-22 -48 -48 -48s-48 22 -48 48z" />
-    <glyph glyph-name="uni1E27" unicode="&#x1e27;" horiz-adv-x="538" 
-d="M345 572c0 25 20 46 45 46s46 -21 46 -46s-21 -45 -46 -45s-45 20 -45 45zM208 572c0 25 20 46 45 46s45 -21 45 -46s-20 -45 -45 -45s-45 20 -45 45zM167 285.9v-163.9c0 -83 9 -87 59.8 -91c6 -6 6 -27 0 -33c-28 1 -60.8 2 -98.8 2c-40 0 -76.8 -1 -109.8 -2
-c-6 6 -6 27 0 33c58 4 69.8 8 69.8 91v437c0 84 -12 79 -64 82c-6 6 -8 22 -6 30c40 3 115 17 140 27c9 0 13 -3 13 -10c0 0 -4 -40 -4 -105l-0.800003 -225c0 -14 6.40001 -3.79999 9.8 0c61 68 120.9 81 170 81c35 0 66.2 -12 83 -34c23.3 -30.5 27 -79 27 -134v-149
-c0 -82 11 -86 67 -91c5 -6 5 -27 0 -33c-33 1 -66 2 -106 2s-74 -1 -102 -2c-5 6 -5 27 0 33c52 5 62 9 62 91v152c0 30 -2 57.2 -12 77c-11.6 22.9 -32.6 36 -53 36c-39.4 0 -90 -21.7 -128 -59c-8 -8.70001 -17 -21 -17 -42.1z" />
-    <glyph glyph-name="uni1E28" unicode="&#x1e28;" horiz-adv-x="730" 
-d="M618 122c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-44 1 -91.7 2 -129 2c-37.1 0 -85 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v199h-342v-199c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-37.2 0.8 -77.8 1.7 -111.4 1.9l-24.6 -65.9c8 2 17 3 26 3c40 0 71 -24 71 -62
-c0 -43 -46 -74 -107 -74c-32 0 -49 6 -74 17c0 12 3 19 10 26c27 -10 38 -14 58 -14c30 0 51 14 51 40c0 21 -10 35 -33 35c-19 0 -29 -1 -45 -6l-6 6l39.6 94.9c-34.7 -0.2 -75.8 -1 -113.6 -1.9c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33
-c38 -1 79 -2 129 -2c51 0 92 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-160h342v160c0 83 -17 88 -87 91c-6 6 -6 27 0 33c44 -1 91.7 -2 129 -2c38 0 89 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-401z" />
-    <glyph glyph-name="uni1E29" unicode="&#x1e29;" horiz-adv-x="538" 
-d="M117 -96c-19 0 -29 -1 -45 -6l-6 6l40 95.9c-31.5 -0.3 -61 -1.1 -87.8 -1.9c-6 6 -6 27 0 33c58 4 69.8 8 69.8 91v437c0 84 -12 79 -64 82c-6 6 -8 22 -6 30c40 3 115 17 140 27c9 0 13 -3 13 -10c0 0 -4 -40 -4 -105l-0.800003 -225c0 -14 6.40001 -3.79999 9.8 0
-c61 68 120.9 81 170 81c35 0 66.2 -12 83 -34c23.3 -30.5 27 -79 27 -134v-149c0 -82 11 -86 67 -91c5 -6 5 -27 0 -33c-33 1 -66 2 -106 2s-74 -1 -102 -2c-5 6 -5 27 0 33c52 5 62 9 62 91v152c0 30 -2 57.2 -12 77c-11.6 22.9 -32.6 36 -53 36
-c-39.4 0 -90 -21.7 -128 -59c-8 -8.70001 -17 -21 -17 -42.1v-163.9c0 -83 9 -87 59.8 -91c6 -6 6 -27 0 -33c-25 0.9 -53.9 1.8 -86.8 2l-25 -67c8 2 17 3 26 3c40 0 71 -24 71 -62c0 -43 -46 -74 -107 -74c-32 0 -49 6 -74 17c0 12 3 19 10 26c27 -10 38 -14 58 -14
-c30 0 51 14 51 40c0 21 -10 35 -33 35z" />
-    <glyph glyph-name="uni1E2A" unicode="&#x1e2a;" horiz-adv-x="730" 
-d="M618 122c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-44 1 -91.7 2 -129 2c-37.1 0 -85 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v199h-342v-199c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-44 1 -92.7 2 -129 2c-37.7 0 -86 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91
-v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c38 -1 79 -2 129 -2c51 0 92 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-160h342v160c0 83 -17 88 -87 91c-6 6 -6 27 0 33c44 -1 91.7 -2 129 -2c38 0 89 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-401zM256 -52
-c11 -53 54 -90 108 -90c52 0 98 32 108 90l27 -12c-12 -86 -76 -135 -135 -135c-70 0 -121 50 -135 135z" />
-    <glyph glyph-name="uni1E2B" unicode="&#x1e2b;" horiz-adv-x="538" 
-d="M171 -62c11 -53 54 -90 108 -90c52 0 98 32 108 90l27 -12c-12 -86 -76 -135 -135 -135c-70 0 -121 50 -135 135zM167 285.9v-163.9c0 -83 9 -87 59.8 -91c6 -6 6 -27 0 -33c-28 1 -60.8 2 -98.8 2c-40 0 -76.8 -1 -109.8 -2c-6 6 -6 27 0 33c58 4 69.8 8 69.8 91v437
-c0 84 -12 79 -64 82c-6 6 -8 22 -6 30c40 3 115 17 140 27c9 0 13 -3 13 -10c0 0 -4 -40 -4 -105l-0.800003 -225c0 -14 6.40001 -3.79999 9.8 0c61 68 120.9 81 170 81c35 0 66.2 -12 83 -34c23.3 -30.5 27 -79 27 -134v-149c0 -82 11 -86 67 -91c5 -6 5 -27 0 -33
-c-33 1 -66 2 -106 2s-74 -1 -102 -2c-5 6 -5 27 0 33c52 5 62 9 62 91v152c0 30 -2 57.2 -12 77c-11.6 22.9 -32.6 36 -53 36c-39.4 0 -90 -21.7 -128 -59c-8 -8.70001 -17 -21 -17 -42.1z" />
-    <glyph glyph-name="uni1E2C" unicode="&#x1e2c;" horiz-adv-x="297" 
-d="M216 -117c22 0 33 10 47 52c11 1 21 -2 27 -6c-12 -60 -41 -99 -87 -99c-22 0 -43 18 -64 32c-18 11 -37 19 -54 19c-26 0 -36 -15 -46 -48c-11 -2 -21 -1 -27 5c14 59 37 98 80 98c30 0 52 -20 72 -34c16 -12 33 -19 52 -19zM191 122c0 -83 17 -88 87 -91
-c6 -6 6 -27 0 -33c-45 1 -93.4 2 -129 2c-36.3 0 -85 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c47 -1 95.5 -2 129 -2c38.5 0 86 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-401z" />
-    <glyph glyph-name="uni1E2D" unicode="&#x1e2d;" horiz-adv-x="271" 
-d="M202 -117c22 0 33 10 47 52c11 1 21 -2 27 -6c-12 -60 -41 -99 -87 -99c-22 0 -43 18 -64 32c-18 11 -37 19 -54 19c-26 0 -36 -15 -46 -48c-11 -2 -21 -1 -27 5c14 59 37 98 80 98c30 0 52 -20 72 -34c16 -12 33 -19 52 -19zM90 599c0 24 28 48 52 48
-c27 0 48 -28 48 -52c0 -21.1 -24 -48 -52 -48c-24 0 -48 26 -48 52zM181 122c0 -83 11 -87 72 -91c6 -6 6 -27 0 -33c-33 1 -71 2 -111 2s-79 -1 -112 -2c-6 6 -6 27 0 33c61 5 72 8 72 91v195c0 57 -10.5 62.9 -65 68c-2 6 -4 22 -2 28c69 9 108.5 18 137 29
-c8 0 13 -3 13 -7c0 0 -4 -64 -4 -113.7v-199.3z" />
-    <glyph glyph-name="uni1E2E" unicode="&#x1e2e;" horiz-adv-x="297" 
-d="M225.1 889.9c22.1 -11.7 38 -27 47.8 -45.8l-110.9 -51.1c-16.2 -7.90002 -25.5 -10.5 -32.4 -10.5c-6.90001 0 -11.5 6.20001 -11.5 13.2c0 6.20001 1.5 10.6 11.5 18.5zM195 757c0 26 22 48 48 48s48 -22 48 -48s-22 -48 -48 -48s-48 22 -48 48zM6 757
-c0 26 22 48 48 48s48 -22 48 -48s-22 -48 -48 -48s-48 22 -48 48zM191 122c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-45 1 -93.4 2 -129 2c-36.3 0 -85 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c47 -1 95.5 -2 129 -2
-c38.5 0 86 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-401z" />
-    <glyph glyph-name="uni1E2F" unicode="&#x1e2f;" horiz-adv-x="271" 
-d="M177 740c2.3 0.900024 6.8 1.79999 10.7 1.79999c4.90001 0 24.7 -0.799988 42.4 -20.2l2.29999 -9.69995l-88.6 -95.9c-11.5 -13.2 -17.6 -16.8 -23 -16.8c-5.4 0 -10.8 5.29999 -10.8 11.5c0 9.89996 2.5 13.3 8.8 24.6zM-4 575c0 26 21 48 47 48s47 -22 47 -48
-s-21 -47 -47 -47s-47 21 -47 47zM165 575c0 26 21 48 47 48s47 -22 47 -48s-21 -47 -47 -47s-47 21 -47 47zM181 122c0 -83 11 -87 72 -91c6 -6 6 -27 0 -33c-33 1 -71 2 -111 2s-79 -1 -112 -2c-6 6 -6 27 0 33c61 5 72 8 72 91v195c0 57 -10.5 62.9 -65 68
-c-2 6 -4 22 -2 28c69 9 108.5 18 137 29c8 0 13 -3 13 -7c0 0 -4 -64 -4 -113.7v-199.3z" />
-    <glyph glyph-name="uni1E30" unicode="&#x1e30;" horiz-adv-x="637" 
-d="M409 819c28.6 -13.3 49.3 -30.7 62 -52l-144 -58c-21 -9 -33 -12 -42 -12s-15 7 -15 15c0 7 2 12 15 21zM191 122c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-45 1 -91 2 -129 2c-39 0 -85 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91
-c-6 6 -6 27 0 33c45 -1 90.5 -2 129 -2c36.5 0 84 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-175.7c35.1 2.90002 57.7 16 79 38.7l165 176c42.1 44.9 8.10001 48.6 -28 52c-6 6 -6 27 0 33c37 -1 76 -2 113 -2c32.2 0 64 1 95 2c6 -6 6 -27 0 -33
-c-40 -3 -80 -7 -126 -56l-147 -151c-34 -35 -35 -42 -35 -49c0 -8 5.29999 -15.9 13 -25l219 -260c30.6 -36.3 59.1 -39.4 88 -42c6 -6 6 -27 0 -33c-33 1 -67 2 -101 2c-21.1 0 -34 -1 -54 -2c-4 0 -4.60001 3 -5 6c-2 16 -15.7 43.4 -36 69l-157 198
-c-20.3 25.6 -49.2 36.9 -83 37.9v-186.9z" />
-    <glyph glyph-name="uni1E31" unicode="&#x1e31;" horiz-adv-x="512" 
-d="M347 671c3 1 9 2 14 2c6.39999 0 32 -1 55 -23l3 -11l-115 -109c-15 -15 -23 -19 -30 -19s-14 6 -14 13c0 11.2 3.29999 15.2 11.4 28zM86 122v437c0 84 -12 79 -64 82c-6 6 -8 22 -6 30c40 3 115 17 140 27c9 0 13 -3 13 -10c0 0 -4 -40 -4 -105v-348.8
-c18.9 2.60001 45.8 14.4 68 30.8c25.7 19 57 53 80 82c9.29999 11.7 33 47 -23 51c-6 6 -6 27 0 33c23 -1 60 -2 98 -2c36 0 64 1 87 2c6 -6 6 -27 0 -33c-40 -4 -75 -12 -105 -44l-88 -91c-4 -4 -4 -6 -4 -10c0 -5 3.39999 -9.5 7 -14l132 -166c26.7 -33.6 52 -38 86 -42
-c6 -6 6 -27 0 -33c-20 1 -51 2 -82 2c-20 0 -42 -1 -62 -2c-3 0 -3.70001 2 -4 5c-1.29999 11.7 -12.6 30.5 -42 70l-73 98c-11.9 16 -21 25 -32 32.5c-9.7 3.39999 -23.8 4.89999 -43 5.39999v-86.9c0 -83 11 -87 52 -91c6 -6 6 -27 0 -33c-23 1 -56 2 -91 2
-c-40 0 -74 -1 -107 -2c-6 6 -6 27 0 33c56 4 67 8 67 91z" />
-    <glyph glyph-name="uni1E32" unicode="&#x1e32;" horiz-adv-x="637" 
-d="M276 -156c0 24 28 48 52 48c27 0 48 -28 48 -52c0 -21.1 -24 -48 -52 -48c-24 0 -48 26 -48 52zM191 122c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-45 1 -91 2 -129 2c-39 0 -85 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33
-c45 -1 90.5 -2 129 -2c36.5 0 84 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-175.7c35.1 2.90002 57.7 16 79 38.7l165 176c42.1 44.9 8.10001 48.6 -28 52c-6 6 -6 27 0 33c37 -1 76 -2 113 -2c32.2 0 64 1 95 2c6 -6 6 -27 0 -33c-40 -3 -80 -7 -126 -56l-147 -151
-c-34 -35 -35 -42 -35 -49c0 -8 5.29999 -15.9 13 -25l219 -260c30.6 -36.3 59.1 -39.4 88 -42c6 -6 6 -27 0 -33c-33 1 -67 2 -101 2c-21.1 0 -34 -1 -54 -2c-4 0 -4.60001 3 -5 6c-2 16 -15.7 43.4 -36 69l-157 198c-20.3 25.6 -49.2 36.9 -83 37.9v-186.9z" />
-    <glyph glyph-name="uni1E33" unicode="&#x1e33;" horiz-adv-x="512" 
-d="M202 -156c0 24 28 48 52 48c27 0 48 -28 48 -52c0 -21.1 -24 -48 -52 -48c-24 0 -48 26 -48 52zM86 122v437c0 84 -12 79 -64 82c-6 6 -8 22 -6 30c40 3 115 17 140 27c9 0 13 -3 13 -10c0 0 -4 -40 -4 -105v-348.8c18.9 2.60001 45.8 14.4 68 30.8c25.7 19 57 53 80 82
-c9.29999 11.7 33 47 -23 51c-6 6 -6 27 0 33c23 -1 60 -2 98 -2c36 0 64 1 87 2c6 -6 6 -27 0 -33c-40 -4 -75 -12 -105 -44l-88 -91c-4 -4 -4 -6 -4 -10c0 -5 3.39999 -9.5 7 -14l132 -166c26.7 -33.6 52 -38 86 -42c6 -6 6 -27 0 -33c-20 1 -51 2 -82 2
-c-20 0 -42 -1 -62 -2c-3 0 -3.70001 2 -4 5c-1.29999 11.7 -12.6 30.5 -42 70l-73 98c-11.9 16 -21 25 -32 32.5c-9.7 3.39999 -23.8 4.89999 -43 5.39999v-86.9c0 -83 11 -87 52 -91c6 -6 6 -27 0 -33c-23 1 -56 2 -91 2c-40 0 -74 -1 -107 -2c-6 6 -6 27 0 33
-c56 4 67 8 67 91z" />
-    <glyph glyph-name="uni1E34" unicode="&#x1e34;" horiz-adv-x="637" 
-d="M436 -131h-205c-8 0 -12 8 -12 15c0 12 10 29 22 29h205c9 0 13 -7 13 -14c0 -12 -10 -30 -23 -30zM191 122c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-45 1 -91 2 -129 2c-39 0 -85 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33
-c45 -1 90.5 -2 129 -2c36.5 0 84 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-175.7c35.1 2.90002 57.7 16 79 38.7l165 176c42.1 44.9 8.10001 48.6 -28 52c-6 6 -6 27 0 33c37 -1 76 -2 113 -2c32.2 0 64 1 95 2c6 -6 6 -27 0 -33c-40 -3 -80 -7 -126 -56l-147 -151
-c-34 -35 -35 -42 -35 -49c0 -8 5.29999 -15.9 13 -25l219 -260c30.6 -36.3 59.1 -39.4 88 -42c6 -6 6 -27 0 -33c-33 1 -67 2 -101 2c-21.1 0 -34 -1 -54 -2c-4 0 -4.60001 3 -5 6c-2 16 -15.7 43.4 -36 69l-157 198c-20.3 25.6 -49.2 36.9 -83 37.9v-186.9z" />
-    <glyph glyph-name="uni1E35" unicode="&#x1e35;" horiz-adv-x="512" 
-d="M360 -131h-205c-8 0 -12 8 -12 15c0 12 10 29 22 29h205c9 0 13 -7 13 -14c0 -12 -10 -30 -23 -30zM86 122v437c0 84 -12 79 -64 82c-6 6 -8 22 -6 30c40 3 115 17 140 27c9 0 13 -3 13 -10c0 0 -4 -40 -4 -105v-348.8c18.9 2.60001 45.8 14.4 68 30.8
-c25.7 19 57 53 80 82c9.29999 11.7 33 47 -23 51c-6 6 -6 27 0 33c23 -1 60 -2 98 -2c36 0 64 1 87 2c6 -6 6 -27 0 -33c-40 -4 -75 -12 -105 -44l-88 -91c-4 -4 -4 -6 -4 -10c0 -5 3.39999 -9.5 7 -14l132 -166c26.7 -33.6 52 -38 86 -42c6 -6 6 -27 0 -33
-c-20 1 -51 2 -82 2c-20 0 -42 -1 -62 -2c-3 0 -3.70001 2 -4 5c-1.29999 11.7 -12.6 30.5 -42 70l-73 98c-11.9 16 -21 25 -32 32.5c-9.7 3.39999 -23.8 4.89999 -43 5.39999v-86.9c0 -83 11 -87 52 -91c6 -6 6 -27 0 -33c-23 1 -56 2 -91 2c-40 0 -74 -1 -107 -2
-c-6 6 -6 27 0 33c56 4 67 8 67 91z" />
-    <glyph glyph-name="uni1E36" unicode="&#x1e36;" horiz-adv-x="528" 
-d="M227 -156c0 24 28 48 52 48c27 0 48 -28 48 -52c0 -21.1 -24 -48 -52 -48c-24 0 -48 26 -48 52zM149 0c-33.7 0 -91 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c46 -1 92.9 -2 129 -2c38.1 0 85 1 130 2c6 -6 6 -27 0 -33
-c-70 -3 -87 -8 -87 -91v-414c0 -51 18 -70 57 -70h63c106 0 143 59 163 131c12.4 1.8 23.2 -0.300003 33 -5c-6 -52 -16 -117 -26 -167c0 0 -92 2 -119.3 2h-212.7z" />
-    <glyph glyph-name="uni1E37" unicode="&#x1e37;" horiz-adv-x="264" 
-d="M95 122v437c0 75 -6 78 -64 82c-6 6 -8 22 -6 30c40 3 115 17 140 27c9 0 13 -3 13 -10c0 0 -4 -40 -4 -105v-461c0 -83 11 -88 72 -91c6 -6 6 -27 0 -33c-33 1 -71 2 -111 2s-77 -1 -112 -2c-6 6 -6 27 0 33c61 3 72 8 72 91zM82 -156c0 24 28 48 52 48
-c27 0 48 -28 48 -52c0 -21.1 -24 -48 -52 -48c-24 0 -48 26 -48 52z" />
-    <glyph glyph-name="uni1E38" unicode="&#x1e38;" horiz-adv-x="528" 
-d="M257 713h-224c-9 0 -13 11 -13 18c0 12 11 32 22 32h225c10 0 14 -11 14 -17c0 -12 -11 -33 -24 -33zM227 -156c0 24 28 48 52 48c27 0 48 -28 48 -52c0 -21.1 -24 -48 -52 -48c-24 0 -48 26 -48 52zM149 0c-33.7 0 -91 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401
-c0 83 -17 88 -87 91c-6 6 -6 27 0 33c46 -1 92.9 -2 129 -2c38.1 0 85 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-414c0 -51 18 -70 57 -70h63c106 0 143 59 163 131c12.4 1.8 23.2 -0.300003 33 -5c-6 -52 -16 -117 -26 -167c0 0 -92 2 -119.3 2h-212.7z" />
-    <glyph glyph-name="uni1E39" unicode="&#x1e39;" horiz-adv-x="264" 
-d="M95 122v437c0 75 -6 78 -64 82c-6 6 -8 22 -6 30c40 3 115 17 140 27c9 0 13 -3 13 -10c0 0 -4 -40 -4 -105v-461c0 -83 11 -88 72 -91c6 -6 6 -27 0 -33c-33 1 -71 2 -111 2s-77 -1 -112 -2c-6 6 -6 27 0 33c61 3 72 8 72 91zM82 -156c0 24 28 48 52 48
-c27 0 48 -28 48 -52c0 -21.1 -24 -48 -52 -48c-24 0 -48 26 -48 52zM231 736h-224c-9 0 -13 11 -13 18c0 12 11 32 22 32h225c10 0 14 -11 14 -17c0 -12 -11 -33 -24 -33z" />
-    <glyph glyph-name="uni1E3A" unicode="&#x1e3a;" horiz-adv-x="528" 
-d="M368 -131h-205c-8 0 -12 8 -12 15c0 12 10 29 22 29h205c9 0 13 -7 13 -14c0 -12 -10 -30 -23 -30zM149 0c-33.7 0 -91 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c46 -1 92.9 -2 129 -2c38.1 0 85 1 130 2c6 -6 6 -27 0 -33
-c-70 -3 -87 -8 -87 -91v-414c0 -51 18 -70 57 -70h63c106 0 143 59 163 131c12.4 1.8 23.2 -0.300003 33 -5c-6 -52 -16 -117 -26 -167c0 0 -92 2 -119.3 2h-212.7z" />
-    <glyph glyph-name="uni1E3B" unicode="&#x1e3b;" horiz-adv-x="264" 
-d="M95 122v437c0 75 -6 78 -64 82c-6 6 -8 22 -6 30c40 3 115 17 140 27c9 0 13 -3 13 -10c0 0 -4 -40 -4 -105v-461c0 -83 11 -88 72 -91c6 -6 6 -27 0 -33c-33 1 -71 2 -111 2s-77 -1 -112 -2c-6 6 -6 27 0 33c61 3 72 8 72 91zM227 -131h-205c-8 0 -12 8 -12 15
-c0 12 10 29 22 29h205c9 0 13 -7 13 -14c0 -12 -10 -30 -23 -30z" />
-    <glyph glyph-name="uni1E3C" unicode="&#x1e3c;" horiz-adv-x="528" 
-d="M298 -43c29 -47 73 -100 109 -140c-5 -7 -13.6 -15.1 -23 -17c-38 24 -73 52 -103 83c-32 -32 -65 -61 -104 -83c-9 2 -16 8 -22 17c36 40 82 94 111 140c10.7 2.3 21.3 3 32 0zM149 0c-33.7 0 -91 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91
-c-6 6 -6 27 0 33c46 -1 92.9 -2 129 -2c38.1 0 85 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-414c0 -51 18 -70 57 -70h63c106 0 143 59 163 131c12.4 1.8 23.2 -0.300003 33 -5c-6 -52 -16 -117 -26 -167c0 0 -92 2 -119.3 2h-212.7z" />
-    <glyph glyph-name="uni1E3D" unicode="&#x1e3d;" horiz-adv-x="264" 
-d="M95 122v437c0 75 -6 78 -64 82c-6 6 -8 22 -6 30c40 3 115 17 140 27c9 0 13 -3 13 -10c0 0 -4 -40 -4 -105v-461c0 -83 11 -88 72 -91c6 -6 6 -27 0 -33c-33 1 -71 2 -111 2s-77 -1 -112 -2c-6 6 -6 27 0 33c61 3 72 8 72 91zM149 -43c29 -47 73 -100 109 -140
-c-5 -7 -13.6 -15.1 -23 -17c-38 24 -73 52 -103 83c-32 -32 -65 -61 -104 -83c-9 2 -16 8 -22 17c36 40 82 94 111 140c10.7 2.3 21.3 3 32 0z" />
-    <glyph glyph-name="uni1E3E" unicode="&#x1e3e;" horiz-adv-x="839" 
-d="M464 819c28.6 -13.3 49.3 -30.7 62 -52l-144 -58c-21 -9 -33 -12 -42 -12s-15 7 -15 15c0 7 2 12 15 21zM662.7 116l-25.7 418h-2l-225 -529c-4 -8 -8 -15 -14 -15s-12.2 7.9 -15 15l-207 519h-2l-38 -401c-5.39999 -56.3 0 -87 66 -92c6 -6 6 -27 0 -33
-c-30 1 -70 2 -94 2s-56 -1 -86 -2c-6 6 -6 27 0 33c57 5 69 30.1 74.9 90l40.1 412c7 75 1 77 -68 81c-6 6 -6 27 0 33l145 -2l205 -508c3.10001 -7.60001 6 -13 8 -13s5 4 9 14l212 507l131 2c6 -6 6 -27 0 -33c-68 -4 -73 -18 -68.7 -72l29.8 -421
-c5.80005 -82.8 8.90002 -87 76.9 -90c6 -6 6 -27 0 -33c-33.2 1 -79 2 -109 2s-70 -1 -107 -2c-6 6 -6 27 0 33c65 3 68.7 4 63.7 85z" />
-    <glyph glyph-name="uni1E3F" unicode="&#x1e3f;" horiz-adv-x="790" 
-d="M405 671c3 1 9 2 14 2c6.39999 0 32 -1 55 -23l3 -11l-115 -109c-15 -15 -23 -19 -30 -19s-14 6 -14 13c0 11.2 3.29999 15.2 11.4 28zM170 358c0.5 -12 7.39999 -5.10001 12 0c41.7 46.6 94 81 152 81c52 0 90.5 -32.4 100 -73.4c2 -8.60001 8 -3.60001 11 -0.399994
-c52.1 55 113.8 73.8 165 73.8c88 0 103 -70 103 -159v-158c0 -82 9 -87 64 -91c5 -6 5 -27 0 -33c-28 1 -63 2 -103 2s-77 -1 -102 -2c-5 6 -5 27 0 33c52 4 62 9 62 91v176c0 67 -22 89 -60 89c-39 0 -84 -13 -132 -66c1 -12 1 -26 1 -40v-159c0 -82 9 -87 59 -91
-c5 -6 5 -27 0 -33c-25 1 -58 2 -98 2s-77 -1 -102 -2c-5 6 -5 27 0 33c54 4 62 9 62 91v174c0 67 -28 91 -66 91c-30.9 0 -68.4 -20.3 -108 -59c-8 -8.70001 -17 -21 -17 -42v-164c0 -82 11 -86 61.8 -91c6 -6 6 -27 0 -33c-30 1 -60.8 2 -100.8 2s-78 -1 -108 -2
-c-6 6 -6 27 0 33c55 4 68 9 68 91v195c0 58 -11 63 -65 68c-2 6 -4 22 -2 28c69 9 95 18 123 29c8 0 9.89999 -3.39999 12 -8c4.7 -10.3 6.7 -46.3 8 -76z" />
-    <glyph glyph-name="uni1E40" unicode="&#x1e40;" horiz-adv-x="839" 
-d="M371 754c0 28 24 52 52 52s52 -24 52 -52s-24 -52 -52 -52s-52 24 -52 52zM662.7 116l-25.7 418h-2l-225 -529c-4 -8 -8 -15 -14 -15s-12.2 7.9 -15 15l-207 519h-2l-38 -401c-5.39999 -56.3 0 -87 66 -92c6 -6 6 -27 0 -33c-30 1 -70 2 -94 2s-56 -1 -86 -2
-c-6 6 -6 27 0 33c57 5 69 30.1 74.9 90l40.1 412c7 75 1 77 -68 81c-6 6 -6 27 0 33l145 -2l205 -508c3.10001 -7.60001 6 -13 8 -13s5 4 9 14l212 507l131 2c6 -6 6 -27 0 -33c-68 -4 -73 -18 -68.7 -72l29.8 -421c5.80005 -82.8 8.90002 -87 76.9 -90c6 -6 6 -27 0 -33
-c-33.2 1 -79 2 -109 2s-70 -1 -107 -2c-6 6 -6 27 0 33c65 3 68.7 4 63.7 85z" />
-    <glyph glyph-name="uni1E41" unicode="&#x1e41;" horiz-adv-x="790" 
-d="M342 599c0 24 28 48 52 48c27 0 48 -28 48 -52c0 -21.1 -24 -48 -52 -48c-24 0 -48 26 -48 52zM170 358c0.5 -12 7.39999 -5.10001 12 0c41.7 46.6 94 81 152 81c52 0 90.5 -32.4 100 -73.4c2 -8.60001 8 -3.60001 11 -0.399994c52.1 55 113.8 73.8 165 73.8
-c88 0 103 -70 103 -159v-158c0 -82 9 -87 64 -91c5 -6 5 -27 0 -33c-28 1 -63 2 -103 2s-77 -1 -102 -2c-5 6 -5 27 0 33c52 4 62 9 62 91v176c0 67 -22 89 -60 89c-39 0 -84 -13 -132 -66c1 -12 1 -26 1 -40v-159c0 -82 9 -87 59 -91c5 -6 5 -27 0 -33c-25 1 -58 2 -98 2
-s-77 -1 -102 -2c-5 6 -5 27 0 33c54 4 62 9 62 91v174c0 67 -28 91 -66 91c-30.9 0 -68.4 -20.3 -108 -59c-8 -8.70001 -17 -21 -17 -42v-164c0 -82 11 -86 61.8 -91c6 -6 6 -27 0 -33c-30 1 -60.8 2 -100.8 2s-78 -1 -108 -2c-6 6 -6 27 0 33c55 4 68 9 68 91v195
-c0 58 -11 63 -65 68c-2 6 -4 22 -2 28c69 9 95 18 123 29c8 0 9.89999 -3.39999 12 -8c4.7 -10.3 6.7 -46.3 8 -76z" />
-    <glyph glyph-name="uni1E42" unicode="&#x1e42;" horiz-adv-x="839" 
-d="M346 -156c0 24 28 48 52 48c27 0 48 -28 48 -52c0 -21.1 -24 -48 -52 -48c-24 0 -48 26 -48 52zM662.7 116l-25.7 418h-2l-225 -529c-4 -8 -8 -15 -14 -15s-12.2 7.9 -15 15l-207 519h-2l-38 -401c-5.39999 -56.3 0 -87 66 -92c6 -6 6 -27 0 -33c-30 1 -70 2 -94 2
-s-56 -1 -86 -2c-6 6 -6 27 0 33c57 5 69 30.1 74.9 90l40.1 412c7 75 1 77 -68 81c-6 6 -6 27 0 33l145 -2l205 -508c3.10001 -7.60001 6 -13 8 -13s5 4 9 14l212 507l131 2c6 -6 6 -27 0 -33c-68 -4 -73 -18 -68.7 -72l29.8 -421c5.80005 -82.8 8.90002 -87 76.9 -90
-c6 -6 6 -27 0 -33c-33.2 1 -79 2 -109 2s-70 -1 -107 -2c-6 6 -6 27 0 33c65 3 68.7 4 63.7 85z" />
-    <glyph glyph-name="uni1E43" unicode="&#x1e43;" horiz-adv-x="790" 
-d="M350 -156c0 24 28 48 52 48c27 0 48 -28 48 -52c0 -21.1 -24 -48 -52 -48c-24 0 -48 26 -48 52zM170 358c0.5 -12 7.39999 -5.10001 12 0c41.7 46.6 94 81 152 81c52 0 90.5 -32.4 100 -73.4c2 -8.60001 8 -3.60001 11 -0.399994c52.1 55 113.8 73.8 165 73.8
-c88 0 103 -70 103 -159v-158c0 -82 9 -87 64 -91c5 -6 5 -27 0 -33c-28 1 -63 2 -103 2s-77 -1 -102 -2c-5 6 -5 27 0 33c52 4 62 9 62 91v176c0 67 -22 89 -60 89c-39 0 -84 -13 -132 -66c1 -12 1 -26 1 -40v-159c0 -82 9 -87 59 -91c5 -6 5 -27 0 -33c-25 1 -58 2 -98 2
-s-77 -1 -102 -2c-5 6 -5 27 0 33c54 4 62 9 62 91v174c0 67 -28 91 -66 91c-30.9 0 -68.4 -20.3 -108 -59c-8 -8.70001 -17 -21 -17 -42v-164c0 -82 11 -86 61.8 -91c6 -6 6 -27 0 -33c-30 1 -60.8 2 -100.8 2s-78 -1 -108 -2c-6 6 -6 27 0 33c55 4 68 9 68 91v195
-c0 58 -11 63 -65 68c-2 6 -4 22 -2 28c69 9 95 18 123 29c8 0 9.89999 -3.39999 12 -8c4.7 -10.3 6.7 -46.3 8 -76z" />
-    <glyph glyph-name="uni1E44" unicode="&#x1e44;" horiz-adv-x="699" 
-d="M304 754c0 28 24 52 52 52s52 -24 52 -52s-24 -52 -52 -52s-52 24 -52 52zM556 512c0 91 -17 95 -87 102c-6 6 -6 27 0 33c44 -1 89.7 -2 111 -2c23.7 0 71 1 112 2c6 -6 6 -27 0 -33c-70 -7 -87 -13 -87 -102v-491c0 -19 -9 -31 -23 -31c-16 0 -29 9 -40 24l-349 441
-c-17 22 -28 33 -34 33c-8 0 -8 -15 -8 -49v-306c0 -91 17 -95 87 -102c6 -6 6 -27 0 -33c-42 1 -87.9 2 -111 2c-23.6 0 -69 -1 -112 -2c-6 6 -6 27 0 33c70 7 87 13 87 102v417c-6 26 -36 61 -79 64c-6 6 -6 27 0 33l135 -2l343 -435c29 -37 44 -55 48 -55c7 0 7 11 7 30
-v327z" />
-    <glyph glyph-name="uni1E45" unicode="&#x1e45;" horiz-adv-x="542" 
-d="M238 599c0 24 28 48 52 48c27 0 48 -28 48 -52c0 -21.1 -24 -48 -52 -48c-24 0 -48 26 -48 52zM184 358c59.3 68 115 81 164 81c35 0 66 -12 83 -34c23 -31 27 -79 27 -134v-149c0 -82 11 -86 67 -91c5 -6 5 -27 0 -33c-30 1 -66 2 -106 2s-72 -1 -102 -2
-c-5 6 -5 27 0 33c52 5 62 9 62 91v152c0 30 -2 57 -12 77c-12 23 -33 36 -53 36c-39 0 -84 -22 -122 -59c-8 -9 -17 -21 -17 -42v-164c0 -82 10 -86 61 -91c6 -6 6 -27 0 -33c-30 1 -60 2 -100 2s-80 -1 -110 -2c-6 6 -6 27 0 33c60 5 70 9 70 91v195c0 58 -11 63 -65 68
-c-2 6 -4 22 -2 28c69 9 95 18 123 29c8 0 9.89999 -3.39999 12 -8c4.7 -10.3 7 -49 8 -76c0.300003 -9.39999 5.89999 -7 12 0z" />
-    <glyph glyph-name="uni1E46" unicode="&#x1e46;" horiz-adv-x="699" 
-d="M300 -156c0 24 28 48 52 48c27 0 48 -28 48 -52c0 -21.1 -24 -48 -52 -48c-24 0 -48 26 -48 52zM556 512c0 91 -17 95 -87 102c-6 6 -6 27 0 33c44 -1 89.7 -2 111 -2c23.7 0 71 1 112 2c6 -6 6 -27 0 -33c-70 -7 -87 -13 -87 -102v-491c0 -19 -9 -31 -23 -31
-c-16 0 -29 9 -40 24l-349 441c-17 22 -28 33 -34 33c-8 0 -8 -15 -8 -49v-306c0 -91 17 -95 87 -102c6 -6 6 -27 0 -33c-42 1 -87.9 2 -111 2c-23.6 0 -69 -1 -112 -2c-6 6 -6 27 0 33c70 7 87 13 87 102v417c-6 26 -36 61 -79 64c-6 6 -6 27 0 33l135 -2l343 -435
-c29 -37 44 -55 48 -55c7 0 7 11 7 30v327z" />
-    <glyph glyph-name="uni1E47" unicode="&#x1e47;" horiz-adv-x="542" 
-d="M215 -156c0 24 28 48 52 48c27 0 48 -28 48 -52c0 -21.1 -24 -48 -52 -48c-24 0 -48 26 -48 52zM184 358c59.3 68 115 81 164 81c35 0 66 -12 83 -34c23 -31 27 -79 27 -134v-149c0 -82 11 -86 67 -91c5 -6 5 -27 0 -33c-30 1 -66 2 -106 2s-72 -1 -102 -2
-c-5 6 -5 27 0 33c52 5 62 9 62 91v152c0 30 -2 57 -12 77c-12 23 -33 36 -53 36c-39 0 -84 -22 -122 -59c-8 -9 -17 -21 -17 -42v-164c0 -82 10 -86 61 -91c6 -6 6 -27 0 -33c-30 1 -60 2 -100 2s-80 -1 -110 -2c-6 6 -6 27 0 33c60 5 70 9 70 91v195c0 58 -11 63 -65 68
-c-2 6 -4 22 -2 28c69 9 95 18 123 29c8 0 9.89999 -3.39999 12 -8c4.7 -10.3 7 -49 8 -76c0.300003 -9.39999 5.89999 -7 12 0z" />
-    <glyph glyph-name="uni1E48" unicode="&#x1e48;" horiz-adv-x="699" 
-d="M453 -131h-205c-8 0 -12 8 -12 15c0 12 10 29 22 29h205c9 0 13 -7 13 -14c0 -12 -10 -30 -23 -30zM556 512c0 91 -17 95 -87 102c-6 6 -6 27 0 33c44 -1 89.7 -2 111 -2c23.7 0 71 1 112 2c6 -6 6 -27 0 -33c-70 -7 -87 -13 -87 -102v-491c0 -19 -9 -31 -23 -31
-c-16 0 -29 9 -40 24l-349 441c-17 22 -28 33 -34 33c-8 0 -8 -15 -8 -49v-306c0 -91 17 -95 87 -102c6 -6 6 -27 0 -33c-42 1 -87.9 2 -111 2c-23.6 0 -69 -1 -112 -2c-6 6 -6 27 0 33c70 7 87 13 87 102v417c-6 26 -36 61 -79 64c-6 6 -6 27 0 33l135 -2l343 -435
-c29 -37 44 -55 48 -55c7 0 7 11 7 30v327z" />
-    <glyph glyph-name="uni1E49" unicode="&#x1e49;" horiz-adv-x="542" 
-d="M359 -131h-205c-8 0 -12 8 -12 15c0 12 10 29 22 29h205c9 0 13 -7 13 -14c0 -12 -10 -30 -23 -30zM184 358c59.3 68 115 81 164 81c35 0 66 -12 83 -34c23 -31 27 -79 27 -134v-149c0 -82 11 -86 67 -91c5 -6 5 -27 0 -33c-30 1 -66 2 -106 2s-72 -1 -102 -2
-c-5 6 -5 27 0 33c52 5 62 9 62 91v152c0 30 -2 57 -12 77c-12 23 -33 36 -53 36c-39 0 -84 -22 -122 -59c-8 -9 -17 -21 -17 -42v-164c0 -82 10 -86 61 -91c6 -6 6 -27 0 -33c-30 1 -60 2 -100 2s-80 -1 -110 -2c-6 6 -6 27 0 33c60 5 70 9 70 91v195c0 58 -11 63 -65 68
-c-2 6 -4 22 -2 28c69 9 95 18 123 29c8 0 9.89999 -3.39999 12 -8c4.7 -10.3 7 -49 8 -76c0.300003 -9.39999 5.89999 -7 12 0z" />
-    <glyph glyph-name="uni1E4A" unicode="&#x1e4a;" horiz-adv-x="699" 
-d="M367 -43c29 -47 73 -100 109 -140c-5 -7 -13.6 -15.1 -23 -17c-38 24 -73 52 -103 83c-32 -32 -65 -61 -104 -83c-9 2 -16 8 -22 17c36 40 82 94 111 140c10.7 2.3 21.3 3 32 0zM556 512c0 91 -17 95 -87 102c-6 6 -6 27 0 33c44 -1 89.7 -2 111 -2c23.7 0 71 1 112 2
-c6 -6 6 -27 0 -33c-70 -7 -87 -13 -87 -102v-491c0 -19 -9 -31 -23 -31c-16 0 -29 9 -40 24l-349 441c-17 22 -28 33 -34 33c-8 0 -8 -15 -8 -49v-306c0 -91 17 -95 87 -102c6 -6 6 -27 0 -33c-42 1 -87.9 2 -111 2c-23.6 0 -69 -1 -112 -2c-6 6 -6 27 0 33
-c70 7 87 13 87 102v417c-6 26 -36 61 -79 64c-6 6 -6 27 0 33l135 -2l343 -435c29 -37 44 -55 48 -55c7 0 7 11 7 30v327z" />
-    <glyph glyph-name="uni1E4B" unicode="&#x1e4b;" horiz-adv-x="542" 
-d="M285 -43c29 -47 73 -100 109 -140c-5 -7 -13.6 -15.1 -23 -17c-38 24 -73 52 -103 83c-32 -32 -65 -61 -104 -83c-9 2 -16 8 -22 17c36 40 82 94 111 140c10.7 2.3 21.3 3 32 0zM184 358c59.3 68 115 81 164 81c35 0 66 -12 83 -34c23 -31 27 -79 27 -134v-149
-c0 -82 11 -86 67 -91c5 -6 5 -27 0 -33c-30 1 -66 2 -106 2s-72 -1 -102 -2c-5 6 -5 27 0 33c52 5 62 9 62 91v152c0 30 -2 57 -12 77c-12 23 -33 36 -53 36c-39 0 -84 -22 -122 -59c-8 -9 -17 -21 -17 -42v-164c0 -82 10 -86 61 -91c6 -6 6 -27 0 -33c-30 1 -60 2 -100 2
-s-80 -1 -110 -2c-6 6 -6 27 0 33c60 5 70 9 70 91v195c0 58 -11 63 -65 68c-2 6 -4 22 -2 28c69 9 95 18 123 29c8 0 9.89999 -3.39999 12 -8c4.7 -10.3 7 -49 8 -76c0.300003 -9.39999 5.89999 -7 12 0z" />
-    <glyph glyph-name="uni1E4C" unicode="&#x1e4c;" horiz-adv-x="702" 
-d="M400.7 748.1c18.7 0 28 11 39.9 57.2c9.39999 1.10004 17.8 -2.20001 22.9 -6.59998c-10.2 -66 -34.8 -108.9 -73.9 -108.9c-18.7 0 -36.6 19.8 -54.4 35.2c-15.3 12.1 -31.4 20.9 -45.9 20.9c-22.1 0 -30.6 -16.5 -39.1 -52.8c-9.39999 -2.19995 -17.9 -1.09998 -23 5.5
-c11.9 64.9 31.5 107.8 68 107.8c25.5 0 44.3 -22 61.3 -37.4c13.6 -13.2 28 -20.9 44.2 -20.9zM331 622c-99 0 -198 -85 -198 -295c0 -192 115 -301 237 -301c114 0 200 105 200 284c0 202 -107 312 -239 312zM666 329c0 -84 -22 -156.3 -61.8 -213
-c-54.9 -78.3 -143.4 -126 -254.2 -126c-170 0 -313 123 -313 320c0 193.9 113.3 348 307 348c179 0 322 -122 322 -329zM608.1 804.9c22.1 -11.7 38 -27 47.8 -45.8l-110.9 -51.1c-16.2 -7.90002 -25.5 -10.5 -32.4 -10.5c-6.89996 0 -11.5 6.20001 -11.5 13.2
-c0 6.20001 1.5 10.6 11.5 18.5z" />
-    <glyph glyph-name="uni1E4D" unicode="&#x1e4d;" horiz-adv-x="504" 
-d="M304 551c22 0 33 10 47 52c11 1 21 -2 27 -6c-12 -60 -41 -99 -87 -99c-22 0 -43 18 -64 32c-18 11 -37 19 -54 19c-26 0 -36 -15 -46 -48c-11 -2 -21 -1 -27 5c14 59 37 98 80 98c30 0 52 -20 72 -34c16 -12 33 -19 52 -19zM41 205c0 63.2 19 121.4 55.3 164
-c36.6 43 90.9 70 156.7 70c153 0 210 -121 210 -225c0 -61.3 -20.3 -124.2 -65.1 -168c-34.1 -33.3 -82.5 -56 -146.9 -56c-142 0 -210 113 -210 215zM238 404c-90 0 -111 -89 -111 -176c0 -77 34 -203 138 -203c47 0 112 31 112 157c0 144 -53 222 -139 222zM341 750
-c2.29999 0.900024 6.79999 1.79999 10.7 1.79999c4.89999 0 24.7 -0.799988 42.4 -20.2l2.29999 -9.69995l-88.6 -95.9c-11.5 -13.2 -17.6 -16.8 -23 -16.8c-5.39999 0 -10.8 5.29999 -10.8 11.5c0 9.89996 2.5 13.3 8.79999 24.6z" />
-    <glyph glyph-name="uni1E4E" unicode="&#x1e4e;" horiz-adv-x="702" 
-d="M511 752c0 25 21 46 46 46s46 -21 46 -46s-21 -46 -46 -46s-46 21 -46 46zM101 752c0 25 21 46 46 46s46 -21 46 -46s-21 -46 -46 -46s-46 21 -46 46zM400.7 748.1c18.7 0 28 11 39.9 57.2c9.39999 1.10004 17.8 -2.20001 22.9 -6.59998
-c-10.2 -66 -34.8 -108.9 -73.9 -108.9c-18.7 0 -36.6 19.8 -54.4 35.2c-15.3 12.1 -31.4 20.9 -45.9 20.9c-22.1 0 -30.6 -16.5 -39.1 -52.8c-9.39999 -2.19995 -17.9 -1.09998 -23 5.5c11.9 64.9 31.5 107.8 68 107.8c25.5 0 44.3 -22 61.3 -37.4
-c13.6 -13.2 28 -20.9 44.2 -20.9zM331 622c-99 0 -198 -85 -198 -295c0 -192 115 -301 237 -301c114 0 200 105 200 284c0 202 -107 312 -239 312zM666 329c0 -84 -22 -156.3 -61.8 -213c-54.9 -78.3 -143.4 -126 -254.2 -126c-170 0 -313 123 -313 320
-c0 193.9 113.3 348 307 348c179 0 322 -122 322 -329z" />
-    <glyph glyph-name="uni1E4F" unicode="&#x1e4f;" horiz-adv-x="504" 
-d="M304 551c22 0 33 10 47 52c11 1 21 -2 27 -6c-12 -60 -41 -99 -87 -99c-22 0 -43 18 -64 32c-18 11 -37 19 -54 19c-26 0 -36 -15 -46 -48c-11 -2 -21 -1 -27 5c14 59 37 98 80 98c30 0 52 -20 72 -34c16 -12 33 -19 52 -19zM41 205c0 63.2 19 121.4 55.3 164
-c36.6 43 90.9 70 156.7 70c153 0 210 -121 210 -225c0 -61.3 -20.3 -124.2 -65.1 -168c-34.1 -33.3 -82.5 -56 -146.9 -56c-142 0 -210 113 -210 215zM238 404c-90 0 -111 -89 -111 -176c0 -77 34 -203 138 -203c47 0 112 31 112 157c0 144 -53 222 -139 222zM110 682
-c0 26 21 48 47 48s47 -22 47 -48s-21 -47 -47 -47s-47 21 -47 47zM279 682c0 26 21 48 47 48s47 -22 47 -48s-21 -47 -47 -47s-47 21 -47 47z" />
-    <glyph glyph-name="uni1E50" unicode="&#x1e50;" horiz-adv-x="702" 
-d="M442.3 745h-190.3c-7.7 0 -11.1 11 -11.1 18c0 12 9.40001 32 18.7 32h191.2c8.5 0 11.9 -11 11.9 -17c0 -12 -9.30002 -33 -20.4 -33zM331 622c-99 0 -198 -85 -198 -295c0 -192 115 -301 237 -301c114 0 200 105 200 284c0 202 -107 312 -239 312zM666 329
-c0 -84 -22 -156.3 -61.8 -213c-54.9 -78.3 -143.4 -126 -254.2 -126c-170 0 -313 123 -313 320c0 193.9 113.3 348 307 348c179 0 322 -122 322 -329zM95.9 805.1l93.2 -73.9c8.5 -7 11.5 -12.3 11.5 -18.5c0 -7 -5.3 -13.2 -11.5 -13.2
-c-6.20001 0 -16.9 2.59998 -33.1 10.5l-118.6 55.5c14.1 15.6 32.2 29.4 58.5 39.6z" />
-    <glyph glyph-name="uni1E51" unicode="&#x1e51;" horiz-adv-x="504" 
-d="M213.9 758l53.9 -110.8c3.80002 -8.79999 4.60001 -15 4.60001 -21.2c0 -4.40002 -5.39999 -9.59998 -11.6 -9.59998c-4.59998 0 -9.99998 4.39996 -22.3 17.6l-87.8 95.9l1.60001 9.69995c6.2 5.30005 23.8 20.2 50 20.2c3.8 0 8.5 -0.899963 11.6 -1.79999zM360 518
-h-224c-9 0 -13 11 -13 18c0 12 11 32 22 32h225c10 0 14 -11 14 -17c0 -12 -11 -33 -24 -33zM41 205c0 63.2 19 121.4 55.3 164c36.6 43 90.9 70 156.7 70c153 0 210 -121 210 -225c0 -61.3 -20.3 -124.2 -65.1 -168c-34.1 -33.3 -82.5 -56 -146.9 -56
-c-142 0 -210 113 -210 215zM238 404c-90 0 -111 -89 -111 -176c0 -77 34 -203 138 -203c47 0 112 31 112 157c0 144 -53 222 -139 222z" />
-    <glyph glyph-name="uni1E52" unicode="&#x1e52;" horiz-adv-x="702" 
-d="M420.3 745h-190.3c-7.7 0 -11.1 11 -11.1 18c0 12 9.40001 32 18.7 32h191.2c8.5 0 11.9 -11 11.9 -17c0 -12 -9.30002 -33 -20.4 -33zM331 622c-99 0 -198 -85 -198 -295c0 -192 115 -301 237 -301c114 0 200 105 200 284c0 202 -107 312 -239 312zM666 329
-c0 -84 -22 -156.3 -61.8 -213c-54.9 -78.3 -143.4 -126 -254.2 -126c-170 0 -313 123 -313 320c0 193.9 113.3 348 307 348c179 0 322 -122 322 -329zM603.1 804.9c22.1 -11.7 38 -27 47.8 -45.8l-110.9 -51.1c-16.2 -7.90002 -25.5 -10.5 -32.4 -10.5
-s-11.5 6.20001 -11.5 13.2c0 6.20001 1.5 10.6 11.5 18.5z" />
-    <glyph glyph-name="uni1E53" unicode="&#x1e53;" horiz-adv-x="504" 
-d="M273 767c2.29999 0.900024 6.79999 1.79999 10.7 1.79999c4.89999 0 24.7 -0.799988 42.4 -20.2l2.29999 -9.69995l-88.6 -95.9c-11.5 -13.2 -17.6 -16.8 -23 -16.8c-5.40001 0 -10.8 5.29999 -10.8 11.5c0 9.89996 2.5 13.3 8.8 24.6zM360 518h-224c-9 0 -13 11 -13 18
-c0 12 11 32 22 32h225c10 0 14 -11 14 -17c0 -12 -11 -33 -24 -33zM41 205c0 63.2 19 121.4 55.3 164c36.6 43 90.9 70 156.7 70c153 0 210 -121 210 -225c0 -61.3 -20.3 -124.2 -65.1 -168c-34.1 -33.3 -82.5 -56 -146.9 -56c-142 0 -210 113 -210 215zM238 404
-c-90 0 -111 -89 -111 -176c0 -77 34 -203 138 -203c47 0 112 31 112 157c0 144 -53 222 -139 222z" />
-    <glyph glyph-name="uni1E54" unicode="&#x1e54;" horiz-adv-x="541" 
-d="M344 819c28.6 -13.3 49.3 -30.7 62 -52l-144 -58c-21 -9 -33 -12 -42 -12s-15 7 -15 15c0 7 2 12 15 21zM189 554v-233c11 -3 51 -5 76 -5c97 0 149 44 149 152c0 127 -69 150 -138 150c-72 0 -87 -35 -87 -64zM104 523c0 83 -17 88 -87 91c-6 6 -6 27 0 33
-c40 -1 92.3 -2 129 -2c40 0 98.7 7 137 7c185 0 224 -107 224 -166c0 -85 -55 -204 -237 -204c-35 0 -59 3 -81 10v-170c0 -83 24 -87 102 -91c6 -6 6 -27 0 -33c-50 1 -108.6 2 -144 2c-35.7 0 -85 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401z" />
-    <glyph glyph-name="uni1E55" unicode="&#x1e55;" horiz-adv-x="519" 
-d="M313 671c3 1 9 2 14 2c6.39999 0 32 -1 55 -23l3 -11l-115 -109c-15 -15 -23 -19 -30 -19s-14 6 -14 13c0 11.2 3.3 15.2 11.4 28zM175 331c-11.6 -14.3 -16 -23 -16 -44v-182c0 -36.1 3.89999 -41.9 24 -59.9c18 -16.1 53 -21.1 71 -21.1c112 0 141 102 141 184
-c0 113 -55 185 -119 185c-29.2 0 -75 -30 -101 -62zM156 368c0.5 -9.60001 5.39999 -10.3 11 -4c39.5 44.5 90.5 75 137 75c102 0 177 -98 177 -204c0 -81 -27 -143 -74 -189c-41 -39 -91 -56 -147 -56c-31.6 0 -62.5 5.6 -87 15.5c-10.2 4.2 -14 5.5 -14 -7.5v-108
-c0 -83 11 -87 82 -91c6 -6 6 -27 0 -33c-33 1 -81 2 -121 2s-77 -1 -112 -2c-6 6 -6 27 0 33c61 3 72 8 72 91v427c0 58 -11 63 -65 68c-2 6 -4 22 -2 28c69 9 95 18 123 29c8 0 9.89999 -3.39999 12 -8c4.7 -10.3 6.5 -36 8 -66z" />
-    <glyph glyph-name="uni1E56" unicode="&#x1e56;" horiz-adv-x="541" 
-d="M234 754c0 28 24 52 52 52s52 -24 52 -52s-24 -52 -52 -52s-52 24 -52 52zM189 554v-233c11 -3 51 -5 76 -5c97 0 149 44 149 152c0 127 -69 150 -138 150c-72 0 -87 -35 -87 -64zM104 523c0 83 -17 88 -87 91c-6 6 -6 27 0 33c40 -1 92.3 -2 129 -2c40 0 98.7 7 137 7
-c185 0 224 -107 224 -166c0 -85 -55 -204 -237 -204c-35 0 -59 3 -81 10v-170c0 -83 24 -87 102 -91c6 -6 6 -27 0 -33c-50 1 -108.6 2 -144 2c-35.7 0 -85 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401z" />
-    <glyph glyph-name="uni1E57" unicode="&#x1e57;" horiz-adv-x="519" 
-d="M218 599c0 24 28 48 52 48c27 0 48 -28 48 -52c0 -21.1 -24 -48 -52 -48c-24 0 -48 26 -48 52zM175 331c-11.6 -14.3 -16 -23 -16 -44v-182c0 -36.1 3.89999 -41.9 24 -59.9c18 -16.1 53 -21.1 71 -21.1c112 0 141 102 141 184c0 113 -55 185 -119 185
-c-29.2 0 -75 -30 -101 -62zM156 368c0.5 -9.60001 5.39999 -10.3 11 -4c39.5 44.5 90.5 75 137 75c102 0 177 -98 177 -204c0 -81 -27 -143 -74 -189c-41 -39 -91 -56 -147 -56c-31.6 0 -62.5 5.6 -87 15.5c-10.2 4.2 -14 5.5 -14 -7.5v-108c0 -83 11 -87 82 -91
-c6 -6 6 -27 0 -33c-33 1 -81 2 -121 2s-77 -1 -112 -2c-6 6 -6 27 0 33c61 3 72 8 72 91v427c0 58 -11 63 -65 68c-2 6 -4 22 -2 28c69 9 95 18 123 29c8 0 9.89999 -3.39999 12 -8c4.7 -10.3 6.5 -36 8 -66z" />
-    <glyph glyph-name="uni1E58" unicode="&#x1e58;" horiz-adv-x="587" 
-d="M224 754c0 28 24 52 52 52s52 -24 52 -52s-24 -52 -52 -52s-52 24 -52 52zM272 618c-71 0 -83 -35 -83 -64v-229h48c97 0 168 28 168 153c0 118 -72 140 -133 140zM189 122c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-44 1 -91.4 2 -129 2c-38.5 0 -85 -1 -130 -2
-c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c47 -1 94 -2 129 -2c36 0 78 7 125 7c63 0 125 -3 173 -48c36 -34 53 -75 53 -125c0 -105 -90 -157 -133 -171l126 -210c26 -43.4 51 -77 96 -77c4 -8 4.5 -17.1 1 -24c-10 -5 -27 -7 -42 -7
-c-60 0 -103.3 42.4 -132 89l-107 174c-14.3 23.3 -33 38 -117 38v-169z" />
-    <glyph glyph-name="uni1E59" unicode="&#x1e59;" horiz-adv-x="372" 
-d="M157 599c0 24 28 48 52 48c27 0 48 -28 48 -52c0 -21.1 -24 -48 -52 -48c-24 0 -48 26 -48 52zM176 358c0.199997 -5 5 -13 11 -2c23 39 64 83 111 83c42 0 60 -28.9 60 -48c0 -25 -23 -50 -47 -50c-17.4 0 -28.6 13.3 -36.2 23.3c-7.79999 10.3 -16.8 12.7 -25.8 12.7
-c-12 0 -35 -33 -46 -49c-12 -18 -24 -41 -24 -67v-139c0 -83 12 -86 82 -91c6 -6 6 -27 0 -33c-35 1 -81 2 -121 2s-79 -1 -114 -2c-6 6 -6 27 0 33c62 4 74 8 74 91v195c0 58 -11 63 -65 68c-2 6 -4 22 -2 28c69 9 95 18 123 29c8 0 9.89999 -3.39999 12 -8
-c4.7 -10.3 6.3 -36 8 -76z" />
-    <glyph glyph-name="uni1E5A" unicode="&#x1e5a;" horiz-adv-x="587" 
-d="M243 -156c0 24 28 48 52 48c27 0 48 -28 48 -52c0 -21.1 -24 -48 -52 -48c-24 0 -48 26 -48 52zM272 618c-71 0 -83 -35 -83 -64v-229h48c97 0 168 28 168 153c0 118 -72 140 -133 140zM189 122c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-44 1 -91.4 2 -129 2
-c-38.5 0 -85 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c47 -1 94 -2 129 -2c36 0 78 7 125 7c63 0 125 -3 173 -48c36 -34 53 -75 53 -125c0 -105 -90 -157 -133 -171l126 -210c26 -43.4 51 -77 96 -77c4 -8 4.5 -17.1 1 -24
-c-10 -5 -27 -7 -42 -7c-60 0 -103.3 42.4 -132 89l-107 174c-14.3 23.3 -33 38 -117 38v-169z" />
-    <glyph glyph-name="uni1E5B" unicode="&#x1e5b;" horiz-adv-x="372" 
-d="M76 -156c0 24 28 48 52 48c27 0 48 -28 48 -52c0 -21.1 -24 -48 -52 -48c-24 0 -48 26 -48 52zM176 358c0.199997 -5 5 -13 11 -2c23 39 64 83 111 83c42 0 60 -28.9 60 -48c0 -25 -23 -50 -47 -50c-17.4 0 -28.6 13.3 -36.2 23.3c-7.79999 10.3 -16.8 12.7 -25.8 12.7
-c-12 0 -35 -33 -46 -49c-12 -18 -24 -41 -24 -67v-139c0 -83 12 -86 82 -91c6 -6 6 -27 0 -33c-35 1 -81 2 -121 2s-79 -1 -114 -2c-6 6 -6 27 0 33c62 4 74 8 74 91v195c0 58 -11 63 -65 68c-2 6 -4 22 -2 28c69 9 95 18 123 29c8 0 9.89999 -3.39999 12 -8
-c4.7 -10.3 6.3 -36 8 -76z" />
-    <glyph glyph-name="uni1E5C" unicode="&#x1e5c;" horiz-adv-x="587" 
-d="M377 713h-224c-9 0 -13 11 -13 18c0 12 11 32 22 32h225c10 0 14 -11 14 -17c0 -12 -11 -33 -24 -33zM243 -156c0 24 28 48 52 48c27 0 48 -28 48 -52c0 -21.1 -24 -48 -52 -48c-24 0 -48 26 -48 52zM272 618c-71 0 -83 -35 -83 -64v-229h48c97 0 168 28 168 153
-c0 118 -72 140 -133 140zM189 122c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-44 1 -91.4 2 -129 2c-38.5 0 -85 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c47 -1 94 -2 129 -2c36 0 78 7 125 7c63 0 125 -3 173 -48
-c36 -34 53 -75 53 -125c0 -105 -90 -157 -133 -171l126 -210c26 -43.4 51 -77 96 -77c4 -8 4.5 -17.1 1 -24c-10 -5 -27 -7 -42 -7c-60 0 -103.3 42.4 -132 89l-107 174c-14.3 23.3 -33 38 -117 38v-169z" />
-    <glyph glyph-name="uni1E5D" unicode="&#x1e5d;" horiz-adv-x="372" 
-d="M297 521h-224c-9 0 -13 11 -13 18c0 12 11 32 22 32h225c10 0 14 -11 14 -17c0 -12 -11 -33 -24 -33zM76 -156c0 24 28 48 52 48c27 0 48 -28 48 -52c0 -21.1 -24 -48 -52 -48c-24 0 -48 26 -48 52zM176 358c0.199997 -5 5 -13 11 -2c23 39 64 83 111 83
-c42 0 60 -28.9 60 -48c0 -25 -23 -50 -47 -50c-17.4 0 -28.6 13.3 -36.2 23.3c-7.79999 10.3 -16.8 12.7 -25.8 12.7c-12 0 -35 -33 -46 -49c-12 -18 -24 -41 -24 -67v-139c0 -83 12 -86 82 -91c6 -6 6 -27 0 -33c-35 1 -81 2 -121 2s-79 -1 -114 -2c-6 6 -6 27 0 33
-c62 4 74 8 74 91v195c0 58 -11 63 -65 68c-2 6 -4 22 -2 28c69 9 95 18 123 29c8 0 9.89999 -3.39999 12 -8c4.7 -10.3 6.3 -36 8 -76z" />
-    <glyph glyph-name="uni1E5E" unicode="&#x1e5e;" horiz-adv-x="587" 
-d="M413 -131h-205c-8 0 -12 8 -12 15c0 12 10 29 22 29h205c9 0 13 -7 13 -14c0 -12 -10 -30 -23 -30zM272 618c-71 0 -83 -35 -83 -64v-229h48c97 0 168 28 168 153c0 118 -72 140 -133 140zM189 122c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-44 1 -91.4 2 -129 2
-c-38.5 0 -85 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c47 -1 94 -2 129 -2c36 0 78 7 125 7c63 0 125 -3 173 -48c36 -34 53 -75 53 -125c0 -105 -90 -157 -133 -171l126 -210c26 -43.4 51 -77 96 -77c4 -8 4.5 -17.1 1 -24
-c-10 -5 -27 -7 -42 -7c-60 0 -103.3 42.4 -132 89l-107 174c-14.3 23.3 -33 38 -117 38v-169z" />
-    <glyph glyph-name="uni1E5F" unicode="&#x1e5f;" horiz-adv-x="372" 
-d="M254 -131h-205c-8 0 -12 8 -12 15c0 12 10 29 22 29h205c9 0 13 -7 13 -14c0 -12 -10 -30 -23 -30zM176 358c0.199997 -5 5 -13 11 -2c23 39 64 83 111 83c42 0 60 -28.9 60 -48c0 -25 -23 -50 -47 -50c-17.4 0 -28.6 13.3 -36.2 23.3
-c-7.79999 10.3 -16.8 12.7 -25.8 12.7c-12 0 -35 -33 -46 -49c-12 -18 -24 -41 -24 -67v-139c0 -83 12 -86 82 -91c6 -6 6 -27 0 -33c-35 1 -81 2 -121 2s-79 -1 -114 -2c-6 6 -6 27 0 33c62 4 74 8 74 91v195c0 58 -11 63 -65 68c-2 6 -4 22 -2 28c69 9 95 18 123 29
-c8 0 9.89999 -3.39999 12 -8c4.7 -10.3 6.3 -36 8 -76z" />
-    <glyph glyph-name="uni1E60" unicode="&#x1e60;" horiz-adv-x="485" 
-d="M174 754c0 28 24 52 52 52s52 -24 52 -52s-24 -52 -52 -52s-52 24 -52 52zM394.7 631c10.3 -53 14.3 -81 17.8 -129c-9 -7 -22 -7.79999 -32.5 -6c-20 66 -51 128 -148.1 128c-58.9 0 -109.5 -56 -109.5 -112c0 -84.1 99.9 -121.9 159.1 -144.1
-c82.4 -30.9 162.5 -77.5 162.5 -183.9c0 -63.6 -36.5 -125.2 -94 -161.2c-34.8 -21.7 -77.8 -32.8 -123.3 -32.8c-88.7 0 -116.7 23 -179.7 23c-12 49 -16 75 -20 152c9.6 5.10001 20.2 7 32.5 3c22 -99.5 82 -142 175.5 -142c79.8 0 125 42 125 123
-c0 97.8 -73.7 125.9 -134.5 149c-88 33.5 -174.5 81.6 -174.5 187c0 106 89 173 190.3 173c97.7 0 95.6 -19 153.4 -27z" />
-    <glyph glyph-name="uni1E61" unicode="&#x1e61;" horiz-adv-x="390" 
-d="M159 599c0 24 28 48 52 48c27 0 48 -28 48 -52c0 -21.1 -24 -48 -52 -48c-24 0 -48 26 -48 52zM48 138c6 6 25 7 31 1c6 -25 17 -69 39 -92c10.3 -10.7 32 -24 71 -24c37 0 85 21 85 70c0 43 -19 64 -102 98c-77 32 -110 63 -110 136c0 64 67 112 141 112
-c52 0 100 -14 131 -19c-1 -33 -3 -70 -6 -106c-6 -6 -26 -7 -32 -1c-13 85 -71 93 -93 93c-34 0 -70 -23 -70 -64c0 -55 39.8 -70.5 100 -92.8c68 -25.2 117 -64.9 117 -133.2c0 -99 -103 -126 -159 -126c-37 0 -64 4 -91 11c-7 2 -13 2 -20 2c-5 0 -15 -1 -25 -3
-c0 42 -3 89 -7 138z" />
-    <glyph glyph-name="uni1E62" unicode="&#x1e62;" horiz-adv-x="485" 
-d="M178 -156c0 24 28 48 52 48c27 0 48 -28 48 -52c0 -21.1 -24 -48 -52 -48c-24 0 -48 26 -48 52zM394.7 631c10.3 -53 14.3 -81 17.8 -129c-9 -7 -22 -7.79999 -32.5 -6c-20 66 -51 128 -148.1 128c-58.9 0 -109.5 -56 -109.5 -112c0 -84.1 99.9 -121.9 159.1 -144.1
-c82.4 -30.9 162.5 -77.5 162.5 -183.9c0 -63.6 -36.5 -125.2 -94 -161.2c-34.8 -21.7 -77.8 -32.8 -123.3 -32.8c-88.7 0 -116.7 23 -179.7 23c-12 49 -16 75 -20 152c9.6 5.10001 20.2 7 32.5 3c22 -99.5 82 -142 175.5 -142c79.8 0 125 42 125 123
-c0 97.8 -73.7 125.9 -134.5 149c-88 33.5 -174.5 81.6 -174.5 187c0 106 89 173 190.3 173c97.7 0 95.6 -19 153.4 -27z" />
-    <glyph glyph-name="uni1E63" unicode="&#x1e63;" horiz-adv-x="390" 
-d="M48 138c6 6 25 7 31 1c6 -25 17 -69 39 -92c10.3 -10.7 32 -24 71 -24c37 0 85 21 85 70c0 43 -19 64 -102 98c-77 32 -110 63 -110 136c0 64 67 112 141 112c52 0 100 -14 131 -19c-1 -33 -3 -70 -6 -106c-6 -6 -26 -7 -32 -1c-13 85 -71 93 -93 93
-c-34 0 -70 -23 -70 -64c0 -55 39.8 -70.5 100 -92.8c68 -25.2 117 -64.9 117 -133.2c0 -99 -103 -126 -159 -126c-37 0 -64 4 -91 11c-7 2 -13 2 -20 2c-5 0 -15 -1 -25 -3c0 42 -3 89 -7 138zM140 -156c0 24 28 48 52 48c27 0 48 -28 48 -52c0 -21.1 -24 -48 -52 -48
-c-24 0 -48 26 -48 52z" />
-    <glyph glyph-name="uni1E64" unicode="&#x1e64;" horiz-adv-x="485" 
-d="M70 743c0 24 28 48 52 48c27 0 48 -28 48 -52c0 -21.1 -24 -48 -52 -48c-24 0 -48 26 -48 52zM333 819c28.6 -13.3 49.3 -30.7 62 -52l-144 -58c-21 -9 -33 -12 -42 -12s-15 7 -15 15c0 7 2 12 15 21zM394.7 631c10.3 -53 14.3 -81 17.8 -129
-c-9 -7 -22 -7.79999 -32.5 -6c-20 66 -51 128 -148.1 128c-58.9 0 -109.5 -56 -109.5 -112c0 -84.1 99.9 -121.9 159.1 -144.1c82.4 -30.9 162.5 -77.5 162.5 -183.9c0 -63.6 -36.5 -125.2 -94 -161.2c-34.8 -21.7 -77.8 -32.8 -123.3 -32.8c-88.7 0 -116.7 23 -179.7 23
-c-12 49 -16 75 -20 152c9.6 5.10001 20.2 7 32.5 3c22 -99.5 82 -142 175.5 -142c79.8 0 125 42 125 123c0 97.8 -73.7 125.9 -134.5 149c-88 33.5 -174.5 81.6 -174.5 187c0 106 89 173 190.3 173c97.7 0 95.6 -19 153.4 -27z" />
-    <glyph glyph-name="uni1E65" unicode="&#x1e65;" horiz-adv-x="390" 
-d="M48 138c6 6 25 7 31 1c6 -25 17 -69 39 -92c10.3 -10.7 32 -24 71 -24c37 0 85 21 85 70c0 43 -19 64 -102 98c-77 32 -110 63 -110 136c0 64 67 112 141 112c52 0 100 -14 131 -19c-1 -33 -3 -70 -6 -106c-6 -6 -26 -7 -32 -1c-13 85 -71 93 -93 93
-c-34 0 -70 -23 -70 -64c0 -55 39.8 -70.5 100 -92.8c68 -25.2 117 -64.9 117 -133.2c0 -99 -103 -126 -159 -126c-37 0 -64 4 -91 11c-7 2 -13 2 -20 2c-5 0 -15 -1 -25 -3c0 42 -3 89 -7 138zM240 671c3 1 9 2 14 2c6.39999 0 32 -1 55 -23l3 -11l-115 -109
-c-15 -15 -23 -19 -30 -19s-14 6 -14 13c0 11.2 3.3 15.2 11.4 28zM52.4 593.1c0 21.6 25.2 43.2 46.8 43.2c24.3 0 43.2 -25.2 43.2 -46.8c0 -19 -21.6 -43.2 -46.8 -43.2c-21.6 0 -43.2 23.4 -43.2 46.8z" />
-    <glyph glyph-name="uni1E66" unicode="&#x1e66;" horiz-adv-x="485" 
-d="M188 842c0 28 24 52 52 52s52 -24 52 -52s-24 -52 -52 -52s-52 24 -52 52zM215 697c-30 37 -65 67 -101 95l16 20c39 -17 73 -36 106 -61c37 26 69 45 107 61l15 -20c-38 -29 -70 -61 -100 -95h-43zM394.7 631c10.3 -53 14.3 -81 17.8 -129c-9 -7 -22 -7.79999 -32.5 -6
-c-20 66 -51 128 -148.1 128c-58.9 0 -109.5 -56 -109.5 -112c0 -84.1 99.9 -121.9 159.1 -144.1c82.4 -30.9 162.5 -77.5 162.5 -183.9c0 -63.6 -36.5 -125.2 -94 -161.2c-34.8 -21.7 -77.8 -32.8 -123.3 -32.8c-88.7 0 -116.7 23 -179.7 23c-12 49 -16 75 -20 152
-c9.6 5.10001 20.2 7 32.5 3c22 -99.5 82 -142 175.5 -142c79.8 0 125 42 125 123c0 97.8 -73.7 125.9 -134.5 149c-88 33.5 -174.5 81.6 -174.5 187c0 106 89 173 190.3 173c97.7 0 95.6 -19 153.4 -27z" />
-    <glyph glyph-name="uni1E67" unicode="&#x1e67;" horiz-adv-x="390" 
-d="M48 138c6 6 25 7 31 1c6 -25 17 -69 39 -92c10.3 -10.7 32 -24 71 -24c37 0 85 21 85 70c0 43 -19 64 -102 98c-77 32 -110 63 -110 136c0 64 67 112 141 112c52 0 100 -14 131 -19c-1 -33 -3 -70 -6 -106c-6 -6 -26 -7 -32 -1c-13 85 -71 93 -93 93
-c-34 0 -70 -23 -70 -64c0 -55 39.8 -70.5 100 -92.8c68 -25.2 117 -64.9 117 -133.2c0 -99 -103 -126 -159 -126c-37 0 -64 4 -91 11c-7 2 -13 2 -20 2c-5 0 -15 -1 -25 -3c0 42 -3 89 -7 138zM169 502c-29 47 -66 92 -101 130l20 13c39 -29 72 -54 106 -90
-c37 38 71 63 108 90l19 -13c-35 -39 -73 -84 -102 -130h-50zM150.4 648.1c0 21.6 25.2 43.2 46.8 43.2c24.3 0 43.2 -25.2 43.2 -46.8c0 -19 -21.6 -43.2 -46.8 -43.2c-21.6 0 -43.2 23.4 -43.2 46.8z" />
-    <glyph glyph-name="uni1E68" unicode="&#x1e68;" horiz-adv-x="485" 
-d="M184 754c0 28 24 52 52 52s52 -24 52 -52s-24 -52 -52 -52s-52 24 -52 52zM178 -156c0 24 28 48 52 48c27 0 48 -28 48 -52c0 -21.1 -24 -48 -52 -48c-24 0 -48 26 -48 52zM394.7 631c10.3 -53 14.3 -81 17.8 -129c-9 -7 -22 -7.79999 -32.5 -6
-c-20 66 -51 128 -148.1 128c-58.9 0 -109.5 -56 -109.5 -112c0 -84.1 99.9 -121.9 159.1 -144.1c82.4 -30.9 162.5 -77.5 162.5 -183.9c0 -63.6 -36.5 -125.2 -94 -161.2c-34.8 -21.7 -77.8 -32.8 -123.3 -32.8c-88.7 0 -116.7 23 -179.7 23c-12 49 -16 75 -20 152
-c9.6 5.10001 20.2 7 32.5 3c22 -99.5 82 -142 175.5 -142c79.8 0 125 42 125 123c0 97.8 -73.7 125.9 -134.5 149c-88 33.5 -174.5 81.6 -174.5 187c0 106 89 173 190.3 173c97.7 0 95.6 -19 153.4 -27z" />
-    <glyph glyph-name="uni1E69" unicode="&#x1e69;" horiz-adv-x="390" 
-d="M138 599c0 24 28 48 52 48c27 0 48 -28 48 -52c0 -21.1 -24 -48 -52 -48c-24 0 -48 26 -48 52zM48 138c6 6 25 7 31 1c6 -25 17 -69 39 -92c10.3 -10.7 32 -24 71 -24c37 0 85 21 85 70c0 43 -19 64 -102 98c-77 32 -110 63 -110 136c0 64 67 112 141 112
-c52 0 100 -14 131 -19c-1 -33 -3 -70 -6 -106c-6 -6 -26 -7 -32 -1c-13 85 -71 93 -93 93c-34 0 -70 -23 -70 -64c0 -55 39.8 -70.5 100 -92.8c68 -25.2 117 -64.9 117 -133.2c0 -99 -103 -126 -159 -126c-37 0 -64 4 -91 11c-7 2 -13 2 -20 2c-5 0 -15 -1 -25 -3
-c0 42 -3 89 -7 138zM140 -156c0 24 28 48 52 48c27 0 48 -28 48 -52c0 -21.1 -24 -48 -52 -48c-24 0 -48 26 -48 52z" />
-    <glyph glyph-name="uni1E6A" unicode="&#x1e6a;" horiz-adv-x="597" 
-d="M255 754c0 28 24 52 52 52s52 -24 52 -52s-24 -52 -52 -52s-52 24 -52 52zM350 122c0 -83 17 -88 97 -91c6 -6 6 -27 0 -33c-50 1 -100.6 2 -139 2c-40.1 0 -91 -1 -140 -2c-6 6 -6 27 0 33c80 3 97 8 97 91v385c0 61 -10 99 -47 99h-49c-66 0 -112 -26 -132 -106
-c-12 0 -24 1 -34 5c11 48 21 100 25 145c0 1 2 3 4 3c38 -3 156 -8 233 -8h86c79 0 190 5 224 8c1 0 3 -2 3 -3c1 -45 6 -96 13 -142c-9 -4 -23 -5 -34 -5c-17 77 -64 103 -139 103h-22c-36 0 -46 -38 -46 -102v-382z" />
-    <glyph glyph-name="uni1E6B" unicode="&#x1e6b;" horiz-adv-x="316" 
-d="M84 730c0 24 28 48 52 48c27 0 48 -28 48 -52c0 -21.1 -24 -48 -52 -48c-24 0 -48 26 -48 52zM43 429l46 0.100006c0 110.9 -3 104.3 -3 115.9c0 6.90002 10 10.3 22 13.7c12.5 3.5 22.7 7.79999 34 14.1c9.3 5.10004 17.8 9 22.3 9c4.7 0 7.7 -2.39996 7.7 -8.79999
-c0 0 -4 -40 -4 -105v-39h120c5 0 8 -2 8 -6v-20c0 -9 -14 -13 -24 -13h-104v-253c0 -62 6 -92 33 -92c26 0 56 8 82 28c10 -1 16 -6.7 18 -17c-39 -44 -89 -66 -135 -66s-77 28 -77 99v301h-59c-4 0 -5 1 -5 6v13c0 8 4 20 18 20z" />
-    <glyph glyph-name="uni1E6C" unicode="&#x1e6c;" horiz-adv-x="597" 
-d="M250 -156c0 24 28 48 52 48c27 0 48 -28 48 -52c0 -21.1 -24 -48 -52 -48c-24 0 -48 26 -48 52zM350 122c0 -83 17 -88 97 -91c6 -6 6 -27 0 -33c-50 1 -100.6 2 -139 2c-40.1 0 -91 -1 -140 -2c-6 6 -6 27 0 33c80 3 97 8 97 91v385c0 61 -10 99 -47 99h-49
-c-66 0 -112 -26 -132 -106c-12 0 -24 1 -34 5c11 48 21 100 25 145c0 1 2 3 4 3c38 -3 156 -8 233 -8h86c79 0 190 5 224 8c1 0 3 -2 3 -3c1 -45 6 -96 13 -142c-9 -4 -23 -5 -34 -5c-17 77 -64 103 -139 103h-22c-36 0 -46 -38 -46 -102v-382z" />
-    <glyph glyph-name="uni1E6D" unicode="&#x1e6d;" horiz-adv-x="316" 
-d="M132 -156c0 24 28 48 52 48c27 0 48 -28 48 -52c0 -21.1 -24 -48 -52 -48c-24 0 -48 26 -48 52zM43 429l46 0.100006c0 110.9 -3 104.3 -3 115.9c0 6.90002 10 10.3 22 13.7c12.5 3.5 22.7 7.79999 34 14.1c9.3 5.10004 17.8 9 22.3 9c4.7 0 7.7 -2.39996 7.7 -8.79999
-c0 0 -4 -40 -4 -105v-39h120c5 0 8 -2 8 -6v-20c0 -9 -14 -13 -24 -13h-104v-253c0 -62 6 -92 33 -92c26 0 56 8 82 28c10 -1 16 -6.7 18 -17c-39 -44 -89 -66 -135 -66s-77 28 -77 99v301h-59c-4 0 -5 1 -5 6v13c0 8 4 20 18 20z" />
-    <glyph glyph-name="uni1E6E" unicode="&#x1e6e;" horiz-adv-x="597" 
-d="M397 -131h-205c-8 0 -12 8 -12 15c0 12 10 29 22 29h205c9 0 13 -7 13 -14c0 -12 -10 -30 -23 -30zM350 122c0 -83 17 -88 97 -91c6 -6 6 -27 0 -33c-50 1 -100.6 2 -139 2c-40.1 0 -91 -1 -140 -2c-6 6 -6 27 0 33c80 3 97 8 97 91v385c0 61 -10 99 -47 99h-49
-c-66 0 -112 -26 -132 -106c-12 0 -24 1 -34 5c11 48 21 100 25 145c0 1 2 3 4 3c38 -3 156 -8 233 -8h86c79 0 190 5 224 8c1 0 3 -2 3 -3c1 -45 6 -96 13 -142c-9 -4 -23 -5 -34 -5c-17 77 -64 103 -139 103h-22c-36 0 -46 -38 -46 -102v-382z" />
-    <glyph glyph-name="uni1E6F" unicode="&#x1e6f;" horiz-adv-x="316" 
-d="M261 -131h-205c-8 0 -12 8 -12 15c0 12 10 29 22 29h205c9 0 13 -7 13 -14c0 -12 -10 -30 -23 -30zM43 429l46 0.100006c0 110.9 -3 104.3 -3 115.9c0 6.90002 10 10.3 22 13.7c12.5 3.5 22.7 7.79999 34 14.1c9.3 5.10004 17.8 9 22.3 9
-c4.7 0 7.7 -2.39996 7.7 -8.79999c0 0 -4 -40 -4 -105v-39h120c5 0 8 -2 8 -6v-20c0 -9 -14 -13 -24 -13h-104v-253c0 -62 6 -92 33 -92c26 0 56 8 82 28c10 -1 16 -6.7 18 -17c-39 -44 -89 -66 -135 -66s-77 28 -77 99v301h-59c-4 0 -5 1 -5 6v13c0 8 4 20 18 20z" />
-    <glyph glyph-name="uni1E70" unicode="&#x1e70;" horiz-adv-x="597" 
-d="M323 -44c29 -47 73 -100 109 -140c-5 -7 -13.6 -15.1 -23 -17c-38 24 -73 52 -103 83c-32 -32 -65 -61 -104 -83c-9 2 -16 8 -22 17c36 40 82 94 111 140c10.7 2.3 21.3 3 32 0zM350 122c0 -83 17 -88 97 -91c6 -6 6 -27 0 -33c-50 1 -100.6 2 -139 2
-c-40.1 0 -91 -1 -140 -2c-6 6 -6 27 0 33c80 3 97 8 97 91v385c0 61 -10 99 -47 99h-49c-66 0 -112 -26 -132 -106c-12 0 -24 1 -34 5c11 48 21 100 25 145c0 1 2 3 4 3c38 -3 156 -8 233 -8h86c79 0 190 5 224 8c1 0 3 -2 3 -3c1 -45 6 -96 13 -142c-9 -4 -23 -5 -34 -5
-c-17 77 -64 103 -139 103h-22c-36 0 -46 -38 -46 -102v-382z" />
-    <glyph glyph-name="uni1E71" unicode="&#x1e71;" horiz-adv-x="316" 
-d="M189 -43c29 -47 73 -100 109 -140c-5 -7 -13.6 -15.1 -23 -17c-38 24 -73 52 -103 83c-32 -32 -65 -61 -104 -83c-9 2 -16 8 -22 17c36 40 82 94 111 140c10.7 2.3 21.3 3 32 0zM43 429l46 0.100006c0 110.9 -3 104.3 -3 115.9c0 6.90002 10 10.3 22 13.7
-c12.5 3.5 22.7 7.79999 34 14.1c9.3 5.10004 17.8 9 22.3 9c4.7 0 7.7 -2.39996 7.7 -8.79999c0 0 -4 -40 -4 -105v-39h120c5 0 8 -2 8 -6v-20c0 -9 -14 -13 -24 -13h-104v-253c0 -62 6 -92 33 -92c26 0 56 8 82 28c10 -1 16 -6.7 18 -17c-39 -44 -89 -66 -135 -66
-s-77 28 -77 99v301h-59c-4 0 -5 1 -5 6v13c0 8 4 20 18 20z" />
-    <glyph glyph-name="uni1E72" unicode="&#x1e72;" horiz-adv-x="661" 
-d="M201 -113c0 26 21 48 47 48s47 -22 47 -48s-21 -47 -47 -47s-47 21 -47 47zM370 -113c0 26 21 48 47 48s47 -22 47 -48s-21 -47 -47 -47s-47 21 -47 47zM172 523v-257c0 -65 2 -141 51 -188c30.1 -28.9 71 -47 119 -47c169 0 184 134 184 246v246c0 81 -17 84 -92 91
-c-6 6 -6 27 0 33c46 -1 94.5 -2 116 -2c23.2 0 64 1 102 2c6 -6 6 -27 0 -33c-60 -7 -77 -10.7 -77 -91v-228c0 -178 -49 -305 -254 -305c-102.5 0 -234 39 -234 243v290c0 83 -17 88 -77 91c-6 6 -6 27 0 33c39 -1 80 -2 119 -2c39.4 0 88 1 135 2c6 -6 6 -27 0 -33
-c-77 -3 -92 -8 -92 -91z" />
-    <glyph glyph-name="uni1E73" unicode="&#x1e73;" horiz-adv-x="531" 
-d="M112 -113c0 26 21 48 47 48s47 -22 47 -48s-21 -47 -47 -47s-47 21 -47 47zM281 -113c0 26 21 48 47 48s47 -22 47 -48s-21 -47 -47 -47s-47 21 -47 47zM217 -10c-99 0 -129 67 -129 136v192c0 65 -14 76 -62 80c-6 6 -6 27 0 33c34 -1 70 -2 102 -2c15 0 30 1 35 2
-c5 0 8 -3 8 -6c0 0 -4 -73 -4 -103v-182c0 -89 50 -103 80 -103c25 0 63 16 100 48c14 12 16 20 16 39v193c0 66 -13 78 -62 81c-6 6 -6 27 0 33c34 -1 70 -2 102 -2c15 0 30 1 35 2c5 0 8 -3 8 -6c0 0 -4 -73 -4 -103v-192c0 -49 9 -68 73 -73c6 -6 6 -21 0 -27
-c-61 -7 -96 -22 -118 -40c-6.5 -2.5 -11 -3 -19 0c0 0 -8.5 33.5 -11 59c-0.700012 7 -10 5 -15 1c-49 -40 -96 -60 -135 -60z" />
-    <glyph glyph-name="uni1E74" unicode="&#x1e74;" horiz-adv-x="661" 
-d="M402 -117c22 0 33 10 47 52c11 1 21 -2 27 -6c-12 -60 -41 -99 -87 -99c-22 0 -43 18 -64 32c-18 11 -37 19 -54 19c-26 0 -36 -15 -46 -48c-11 -2 -21 -1 -27 5c14 59 37 98 80 98c30 0 52 -20 72 -34c16 -12 33 -19 52 -19zM172 523v-257c0 -65 2 -141 51 -188
-c30.1 -28.9 71 -47 119 -47c169 0 184 134 184 246v246c0 81 -17 84 -92 91c-6 6 -6 27 0 33c46 -1 94.5 -2 116 -2c23.2 0 64 1 102 2c6 -6 6 -27 0 -33c-60 -7 -77 -10.7 -77 -91v-228c0 -178 -49 -305 -254 -305c-102.5 0 -234 39 -234 243v290c0 83 -17 88 -77 91
-c-6 6 -6 27 0 33c39 -1 80 -2 119 -2c39.4 0 88 1 135 2c6 -6 6 -27 0 -33c-77 -3 -92 -8 -92 -91z" />
-    <glyph glyph-name="uni1E75" unicode="&#x1e75;" horiz-adv-x="531" 
-d="M312 -117c22 0 33 10 47 52c11 1 21 -2 27 -6c-12 -60 -41 -99 -87 -99c-22 0 -43 18 -64 32c-18 11 -37 19 -54 19c-26 0 -36 -15 -46 -48c-11 -2 -21 -1 -27 5c14 59 37 98 80 98c30 0 52 -20 72 -34c16 -12 33 -19 52 -19zM217 -10c-99 0 -129 67 -129 136v192
-c0 65 -14 76 -62 80c-6 6 -6 27 0 33c34 -1 70 -2 102 -2c15 0 30 1 35 2c5 0 8 -3 8 -6c0 0 -4 -73 -4 -103v-182c0 -89 50 -103 80 -103c25 0 63 16 100 48c14 12 16 20 16 39v193c0 66 -13 78 -62 81c-6 6 -6 27 0 33c34 -1 70 -2 102 -2c15 0 30 1 35 2c5 0 8 -3 8 -6
-c0 0 -4 -73 -4 -103v-192c0 -49 9 -68 73 -73c6 -6 6 -21 0 -27c-61 -7 -96 -22 -118 -40c-6.5 -2.5 -11 -3 -19 0c0 0 -8.5 33.5 -11 59c-0.700012 7 -10 5 -15 1c-49 -40 -96 -60 -135 -60z" />
-    <glyph glyph-name="uni1E76" unicode="&#x1e76;" horiz-adv-x="661" 
-d="M350 -44c29 -47 73 -100 109 -140c-5 -7 -13.6 -15.1 -23 -17c-38 24 -73 52 -103 83c-32 -32 -65 -61 -104 -83c-9 2 -16 8 -22 17c36 40 82 94 111 140c10.7 2.3 21.3 3 32 0zM172 523v-257c0 -65 2 -141 51 -188c30.1 -28.9 71 -47 119 -47c169 0 184 134 184 246v246
-c0 81 -17 84 -92 91c-6 6 -6 27 0 33c46 -1 94.5 -2 116 -2c23.2 0 64 1 102 2c6 -6 6 -27 0 -33c-60 -7 -77 -10.7 -77 -91v-228c0 -178 -49 -305 -254 -305c-102.5 0 -234 39 -234 243v290c0 83 -17 88 -77 91c-6 6 -6 27 0 33c39 -1 80 -2 119 -2c39.4 0 88 1 135 2
-c6 -6 6 -27 0 -33c-77 -3 -92 -8 -92 -91z" />
-    <glyph glyph-name="uni1E77" unicode="&#x1e77;" horiz-adv-x="531" 
-d="M258 -43c29 -47 73 -100 109 -140c-5 -7 -13.6 -15.1 -23 -17c-38 24 -73 52 -103 83c-32 -32 -65 -61 -104 -83c-9 2 -16 8 -22 17c36 40 82 94 111 140c10.7 2.3 21.3 3 32 0zM217 -10c-99 0 -129 67 -129 136v192c0 65 -14 76 -62 80c-6 6 -6 27 0 33
-c34 -1 70 -2 102 -2c15 0 30 1 35 2c5 0 8 -3 8 -6c0 0 -4 -73 -4 -103v-182c0 -89 50 -103 80 -103c25 0 63 16 100 48c14 12 16 20 16 39v193c0 66 -13 78 -62 81c-6 6 -6 27 0 33c34 -1 70 -2 102 -2c15 0 30 1 35 2c5 0 8 -3 8 -6c0 0 -4 -73 -4 -103v-192
-c0 -49 9 -68 73 -73c6 -6 6 -21 0 -27c-61 -7 -96 -22 -118 -40c-6.5 -2.5 -11 -3 -19 0c0 0 -8.5 33.5 -11 59c-0.700012 7 -10 5 -15 1c-49 -40 -96 -60 -135 -60z" />
-    <glyph glyph-name="uni1E78" unicode="&#x1e78;" horiz-adv-x="661" 
-d="M405.6 745.1c18.7 0 28 11 39.9 57.2c9.39999 1.10004 17.9 -2.20001 23 -6.59998c-10.2 -66 -34.9 -108.9 -74 -108.9c-18.7 0 -36.5 19.8 -54.3 35.2c-15.3 12.1 -31.5 20.9 -46 20.9c-22.1 0 -30.5 -16.5 -39 -52.8c-9.39999 -2.19995 -17.9 -1.09998 -23 5.5
-c11.9 64.9 31.5 107.8 68 107.8c25.5 0 44.2 -22 61.2 -37.4c13.6 -13.2 28.1 -20.9 44.2 -20.9zM172 523v-257c0 -65 2 -141 51 -188c30.1 -28.9 71 -47 119 -47c169 0 184 134 184 246v246c0 81 -17 84 -92 91c-6 6 -6 27 0 33c46 -1 94.5 -2 116 -2c23.2 0 64 1 102 2
-c6 -6 6 -27 0 -33c-60 -7 -77 -10.7 -77 -91v-228c0 -178 -49 -305 -254 -305c-102.5 0 -234 39 -234 243v290c0 83 -17 88 -77 91c-6 6 -6 27 0 33c39 -1 80 -2 119 -2c39.4 0 88 1 135 2c6 -6 6 -27 0 -33c-77 -3 -92 -8 -92 -91zM594.1 831.9
-c22.1 -11.7 38 -27 47.8 -45.8l-110.9 -51.1c-16.2 -7.90002 -25.5 -10.5 -32.4 -10.5s-11.5 6.20001 -11.5 13.2c0 6.20001 1.5 10.6 11.5 18.5z" />
-    <glyph glyph-name="uni1E79" unicode="&#x1e79;" horiz-adv-x="531" 
-d="M312 778c2.29999 0.900024 6.79999 1.79999 10.7 1.79999c4.89999 0 24.7 -0.799988 42.4 -20.2l2.29999 -9.69995l-88.6 -95.9c-11.5 -13.2 -17.6 -16.8 -23 -16.8s-10.8 5.29999 -10.8 11.5c0 9.89996 2.5 13.3 8.8 24.6zM324 573c22 0 33 10 47 52c11 1 21 -2 27 -6
-c-12 -60 -41 -99 -87 -99c-22 0 -43 18 -64 32c-18 11 -37 19 -54 19c-26 0 -36 -15 -46 -48c-11 -2 -21 -1 -27 5c14 59 37 98 80 98c30 0 52 -20 72 -34c16 -12 33 -19 52 -19zM217 -10c-99 0 -129 67 -129 136v192c0 65 -14 76 -62 80c-6 6 -6 27 0 33
-c34 -1 70 -2 102 -2c15 0 30 1 35 2c5 0 8 -3 8 -6c0 0 -4 -73 -4 -103v-182c0 -89 50 -103 80 -103c25 0 63 16 100 48c14 12 16 20 16 39v193c0 66 -13 78 -62 81c-6 6 -6 27 0 33c34 -1 70 -2 102 -2c15 0 30 1 35 2c5 0 8 -3 8 -6c0 0 -4 -73 -4 -103v-192
-c0 -49 9 -68 73 -73c6 -6 6 -21 0 -27c-61 -7 -96 -22 -118 -40c-6.5 -2.5 -11 -3 -19 0c0 0 -8.5 33.5 -11 59c-0.700012 7 -10 5 -15 1c-49 -40 -96 -60 -135 -60z" />
-    <glyph glyph-name="space" unicode=" " horiz-adv-x="250" 
- />
-    <glyph glyph-name="ampersand" unicode="&#x26;" horiz-adv-x="705" 
-d="M250 338c-103 -57 -125 -111 -125 -182c0 -98 54 -133 117 -133c71 0 107 36 156 103c-57 75 -137 191 -148 212zM421 94c-46 -63 -101 -104 -186 -104c-107 0 -192 44 -192 166c0 79 53 146 185 220c-37 64 -51 103 -51 141c0 59 54 130 154 130c70 0 128 -45 128 -108
-c0 -55 -66 -120 -149 -168l4 -8c18 -31 76 -114 122 -176c36.1 53.3 60.3 96.1 77.4 128c37.6 70 22.7 75.3 -31.4 78c-6 6 -6 27 0 33c20 -1 61 -2 95 -2s64 1 84 2c6 -6 6 -27 0 -33c-61.2 -3.79999 -68 -9 -114 -91c-26.9 -48 -49.4 -88 -89 -145l36 -50
-c31 -43 61 -63 77 -63c33 0 56 15 76 54c11 0 15.8 -4.6 21 -10c-23 -70 -68 -98 -103 -98c-31 0 -68 2 -115 67zM289 409c64 42 101 94 101 130c0 45 -23 75 -64 75c-26 0 -75 -29 -75 -95c0 -23 12 -61 38 -110z" />
-    <glyph glyph-name="quotesingle" unicode="'" horiz-adv-x="190" 
-d="M79 426c0 0 -26 159 -26 168c0 22 21 50 51 50c26 0 35 -17 35 -33s-33 -181 -33 -181z" />
-    <glyph glyph-name="comma" unicode="," horiz-adv-x="220" 
-d="M104 95c40 0 66 -39 66 -99c0 -70 -58 -118 -118 -129c-7 7 -9 14 -9 24c52 13 88 59 88 80c0 23 -17 29 -36 31c-18 3 -44 12.5 -44 44c0 28 22 49 53 49z" />
-    <glyph glyph-name="hyphen" unicode="-" horiz-adv-x="338" 
-d="M271 223h-216c-9 0 -15 9 -15 19c0 18 13 41 25 41h219c10 0 14 -10 14 -20c0 -12 -14 -40 -27 -40z" />
-    <glyph glyph-name="period" unicode="." horiz-adv-x="220" 
-d="M57 43c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" />
-    <glyph glyph-name="zero" unicode="0" horiz-adv-x="465" 
-d="M232 575c-45 0 -106 -46 -106 -292c0 -87 10 -258 103 -258c18 0 67 9 89 91c14 51 17 114 17 206c0 134 -27 210 -58 236c-12 11 -28 17 -45 17zM228 -10c-38.7 0 -73 13.6 -101.4 42c-54.7 54.5 -87.6 155.4 -87.6 262c0 198 94 316 193 316c54 0 95.8 -30.3 122 -65
-c44 -58 68 -143 68 -242c0 -235 -117 -313 -194 -313z" />
-    <glyph glyph-name="I" unicode="I" horiz-adv-x="297" 
-d="M191 122c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-45 1 -93.4 2 -129 2c-36.3 0 -85 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c47 -1 95.5 -2 129 -2c38.5 0 86 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-401z" />
-    <glyph glyph-name="J" unicode="J" horiz-adv-x="322" 
-d="M226 523v-420c0 -143 -58.3 -194.7 -102 -232c-41 -35 -72 -43 -117 -43c-22 0 -75 18 -75 54c0 22 30 43 44 43c24.9 0 33.7 -12.8 39.7 -25.5c7 -14.7 21.2 -26.5 40.3 -26.5c33 0 85 28 85 208v442c0 83 -17 88 -97 91c-6 6 -6 27 0 33c50 -1 102.7 -2 139 -2
-c38.7 0 82 1 120 2c6 -6 6 -27 0 -33c-60 -3 -77 -8 -77 -91z" />
-    <glyph glyph-name="K" unicode="K" horiz-adv-x="637" 
-d="M191 122c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-45 1 -91 2 -129 2c-39 0 -85 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c45 -1 90.5 -2 129 -2c36.5 0 84 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-175.7
-c35.1 2.90002 57.7 16 79 38.7l165 176c42.1 44.9 8.10001 48.6 -28 52c-6 6 -6 27 0 33c37 -1 76 -2 113 -2c32.2 0 64 1 95 2c6 -6 6 -27 0 -33c-40 -3 -80 -7 -126 -56l-147 -151c-34 -35 -35 -42 -35 -49c0 -8 5.29999 -15.9 13 -25l219 -260
-c30.6 -36.3 59.1 -39.4 88 -42c6 -6 6 -27 0 -33c-33 1 -67 2 -101 2c-21.1 0 -34 -1 -54 -2c-4 0 -4.60001 3 -5 6c-2 16 -15.7 43.4 -36 69l-157 198c-20.3 25.6 -49.2 36.9 -83 37.9v-186.9z" />
-    <glyph glyph-name="L" unicode="L" horiz-adv-x="528" 
-d="M149 0c-33.7 0 -91 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c46 -1 92.9 -2 129 -2c38.1 0 85 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-414c0 -51 18 -70 57 -70h63c106 0 143 59 163 131
-c12.4 1.8 23.2 -0.300003 33 -5c-6 -52 -16 -117 -26 -167c0 0 -92 2 -119.3 2h-212.7z" />
-    <glyph glyph-name="M" unicode="M" horiz-adv-x="839" 
-d="M662.7 116l-25.7 418h-2l-225 -529c-4 -8 -8 -15 -14 -15s-12.2 7.9 -15 15l-207 519h-2l-38 -401c-5.39999 -56.3 0 -87 66 -92c6 -6 6 -27 0 -33c-30 1 -70 2 -94 2s-56 -1 -86 -2c-6 6 -6 27 0 33c57 5 69 30.1 74.9 90l40.1 412c7 75 1 77 -68 81c-6 6 -6 27 0 33
-l145 -2l205 -508c3.10001 -7.60001 6 -13 8 -13s5 4 9 14l212 507l131 2c6 -6 6 -27 0 -33c-68 -4 -73 -18 -68.7 -72l29.8 -421c5.80005 -82.8 8.90002 -87 76.9 -90c6 -6 6 -27 0 -33c-33.2 1 -79 2 -109 2s-70 -1 -107 -2c-6 6 -6 27 0 33c65 3 68.7 4 63.7 85z" />
-    <glyph glyph-name="N" unicode="N" horiz-adv-x="699" 
-d="M556 512c0 91 -17 95 -87 102c-6 6 -6 27 0 33c44 -1 89.7 -2 111 -2c23.7 0 71 1 112 2c6 -6 6 -27 0 -33c-70 -7 -87 -13 -87 -102v-491c0 -19 -9 -31 -23 -31c-16 0 -29 9 -40 24l-349 441c-17 22 -28 33 -34 33c-8 0 -8 -15 -8 -49v-306c0 -91 17 -95 87 -102
-c6 -6 6 -27 0 -33c-42 1 -87.9 2 -111 2c-23.6 0 -69 -1 -112 -2c-6 6 -6 27 0 33c70 7 87 13 87 102v417c-6 26 -36 61 -79 64c-6 6 -6 27 0 33l135 -2l343 -435c29 -37 44 -55 48 -55c7 0 7 11 7 30v327z" />
-    <glyph glyph-name="O" unicode="O" horiz-adv-x="702" 
-d="M331 622c-99 0 -198 -85 -198 -295c0 -192 115 -301 237 -301c114 0 200 105 200 284c0 202 -107 312 -239 312zM666 329c0 -84 -22 -156.3 -61.8 -213c-54.9 -78.3 -143.4 -126 -254.2 -126c-170 0 -313 123 -313 320c0 193.9 113.3 348 307 348
-c179 0 322 -122 322 -329z" />
-    <glyph glyph-name="P" unicode="P" horiz-adv-x="541" 
-d="M189 554v-233c11 -3 51 -5 76 -5c97 0 149 44 149 152c0 127 -69 150 -138 150c-72 0 -87 -35 -87 -64zM104 523c0 83 -17 88 -87 91c-6 6 -6 27 0 33c40 -1 92.3 -2 129 -2c40 0 98.7 7 137 7c185 0 224 -107 224 -166c0 -85 -55 -204 -237 -204c-35 0 -59 3 -81 10
-v-170c0 -83 24 -87 102 -91c6 -6 6 -27 0 -33c-50 1 -108.6 2 -144 2c-35.7 0 -85 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401z" />
-    <glyph glyph-name="Q" unicode="Q" horiz-adv-x="702" 
-d="M331 622c-99 0 -198 -85 -198 -295c0 -192 115 -301 237 -301c114 0 200 105 200 284c0 202 -107 312 -239 312zM666 329c0 -84 -22 -156.3 -61.8 -213c-44.7 -63.7 -111.7 -107.2 -194.9 -121.2c-32.6 -9.2 -81.6 -30 -131.2 -66.3c7.19998 1 13.9 1.5 19.9 1.5
-c57.8 0 107.9 -21.7 154.5 -44.1c42.5 -20.4 82.7 -37.9 124.5 -37.9c29 0 65 10 87 37l17 -12c-39 -56 -81 -82 -144 -82c-70.6 0 -121.4 27 -168 53.6c-38.9 22.2 -75.5 41.4 -118 41.4c-7.60001 0 -21.2 -3.3 -35.3 -12.7c-13.2 -14.1 -25.9 -29.5 -37.7 -46.3l-39 20
-c4.8 8.3 10.8 16 17.6 23.1c35.9 43.1 91.6 90.4 152.5 122.3c-151.4 18.1 -272.1 136.6 -272.1 317.6c0 193.9 113.3 348 307 348c179 0 322 -122 322 -329z" />
-    <glyph glyph-name="R" unicode="R" horiz-adv-x="587" 
-d="M272 618c-71 0 -83 -35 -83 -64v-229h48c97 0 168 28 168 153c0 118 -72 140 -133 140zM189 122c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-44 1 -91.4 2 -129 2c-38.5 0 -85 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33
-c47 -1 94 -2 129 -2c36 0 78 7 125 7c63 0 125 -3 173 -48c36 -34 53 -75 53 -125c0 -105 -90 -157 -133 -171l126 -210c26 -43.4 51 -77 96 -77c4 -8 4.5 -17.1 1 -24c-10 -5 -27 -7 -42 -7c-60 0 -103.3 42.4 -132 89l-107 174c-14.3 23.3 -33 38 -117 38v-169z" />
-    <glyph glyph-name="S" unicode="S" horiz-adv-x="485" 
-d="M394.6 631c10.4 -53 14.4 -81 17.9 -129c-9 -7 -22 -7.79999 -32.5 -6c-20 66 -51 128 -148.1 128c-58.9 0 -109.5 -56 -109.5 -112c0 -84.1 99.9 -121.9 159.1 -144.1c82.4 -30.9 162.5 -77.5 162.5 -183.9c0 -63.6 -36.5 -125.2 -94 -161.2
-c-34.8 -21.7 -77.9 -32.8 -123.4 -32.8c-88.7 0 -116.6 23 -179.6 23c-12 49 -16 75 -20 152c9.6 5.10001 20.2 7 32.5 3c22 -99.5 82.1 -142 175.5 -142c79.8 0 125 42 125 123c0 97.8 -73.7 125.9 -134.5 149c-88 33.5 -174.5 81.6 -174.5 187c0 106 89 173 190.4 173
-c97.6 0 95.4 -19 153.2 -27z" />
-    <glyph glyph-name="T" unicode="T" horiz-adv-x="597" 
-d="M350 122c0 -83 17 -88 97 -91c6 -6 6 -27 0 -33c-50 1 -100.6 2 -139 2c-40.1 0 -91 -1 -140 -2c-6 6 -6 27 0 33c80 3 97 8 97 91v385c0 61 -10 99 -47 99h-49c-66 0 -112 -26 -132 -106c-12 0 -24 1 -34 5c11 48 21 100 25 145c0 1 2 3 4 3c38 -3 156 -8 233 -8h86
-c79 0 190 5 224 8c1 0 3 -2 3 -3c1 -45 6 -96 13 -142c-9 -4 -23 -5 -34 -5c-17 77 -64 103 -139 103h-22c-36 0 -46 -38 -46 -102v-382z" />
-    <glyph glyph-name="U" unicode="U" horiz-adv-x="661" 
-d="M172 523v-257c0 -65 2 -141 51 -188c30.1 -28.9 71 -47 119 -47c169 0 184 134 184 246v246c0 81 -17 84 -92 91c-6 6 -6 27 0 33c46 -1 94.5 -2 116 -2c23.2 0 64 1 102 2c6 -6 6 -27 0 -33c-60 -7 -77 -10.7 -77 -91v-228c0 -178 -49 -305 -254 -305
-c-102.5 0 -234 39 -234 243v290c0 83 -17 88 -77 91c-6 6 -6 27 0 33c39 -1 80 -2 119 -2c39.4 0 88 1 135 2c6 -6 6 -27 0 -33c-77 -3 -92 -8 -92 -91z" />
-    <glyph glyph-name="V" unicode="V" horiz-adv-x="652" 
-d="M448 614c-6 6 -6 27 0 33c41 -1 86 -2 109 -2s58 1 88 2c6 -6 6 -27 0 -33c-63 -7 -79.1 -45.7 -98.3 -93l-206.7 -510c-5.79999 -14.3 -13 -23 -24 -23c-10 0 -17 7.4 -23 23l-197.5 512c-26.6 69 -34.5 86 -89.5 91c-6 6 -7 27 -1 33c33 -1 67.7 -2 104 -2
-c36 0 81 1 121 2c6 -6 6 -27 0 -33c-68 -7 -73.8 -20.5 -50.6 -80l159.1 -407h4.60001l157.9 401c21.4 54.4 21 81 -53 86z" />
-    <glyph glyph-name="W" unicode="W" horiz-adv-x="951" 
-d="M810 565c15.3 42.6 -25 46 -66 49c-6 6 -6 27 0 33c40 -1 84 -2 110 -2s58 1 87 2c6 -6 6 -27 0 -33c-55 -3 -73.1 -26.3 -86 -61l-201 -539c-5 -15 -12 -26 -23 -26c-12 0 -17.1 10 -23 27l-115 332c-5.89999 17.1 -10 28 -14 28c-5 0 -8.10001 -5 -17 -25l-149 -335
-c-7.39999 -16.6 -13 -27 -26 -27c-11.5 0 -16.6 11.1 -22 27l-188 541c-18.6 53.5 -26 55 -71 58c-6 6 -6 27 0 33c29 -1 58.3 -2 93 -2c39 0 83 1 116 2c6 -6 6 -27 0 -33c-35 -2 -61.6 -6.90002 -50 -42l146.2 -442.3l4.29999 -1l129.5 293.3c7.5 16.9 9 24.7 9 35
-c0 9 -3.10001 19 -7 31l-23 66c-9 25.7 -31 57 -84 60c-6 6 -6 27 0 33c32 -1 67 -2 100 -2c40 0 84 1 125 2c6 -6 6 -27 0 -33c-34 -3 -69.5 -6.20001 -52 -60l137.5 -422l3.20001 -1.3z" />
-    <glyph glyph-name="X" unicode="X" horiz-adv-x="660" 
-d="M538 102c42.4 -58.3 59 -68 101 -71c6 -6 7 -27 1 -33c-30 1 -63 2 -102 2c-40 0 -77 -1 -114 -2c-6 6 -6 27 0 33c56 3 51.8 13.9 23.5 54.2l-123.5 175.8c-5.60001 8 -10 11 -14 11c-3 0 -9.29999 -6 -15 -14l-132 -185c-24.2 -34 -5.3 -39 39 -42c6 -6 6 -27 0 -33
-c-40 1 -82 2 -105 2s-60 -1 -90 -2c-6 6 -6 27 0 33c44.7 4.3 76.7 16.1 111 62l148 198c5.89999 7.89999 10 17 10 23c0 10 -5.79999 18.3 -14 30l-142.3 203c-41.2 58.7 -59.7 64 -101.7 67c-6 6 -7 27 -1 33c30 -1 63 -2 102 -2c40 0 77 1 114 2c6 -6 6 -27 0 -33
-c-56 -3 -51.7 -14.2 -23.5 -54.2l110.5 -163.8c4.79999 -7 9 -11 12 -11c4 0 10 3.5 16 12l123 175c23.5 33.4 5.29999 39 -39 42c-6 6 -6 27 0 33c40 -1 82 -2 105 -2s60 1 90 2c6 -6 6 -27 0 -33c-44.7 -4.29999 -76.3 -17.1 -111 -62l-137 -177
-c-9.10001 -11.8 -10 -21 -10 -30c0 -10 6.20001 -19.6 16 -33z" />
-    <glyph glyph-name="Y" unicode="Y" horiz-adv-x="575" 
-d="M337 122c0 -83 17 -88 97 -91c6 -6 6 -27 0 -33c-50 1 -100.3 2 -139 2c-38.6 0 -91 -1 -140 -2c-6 6 -6 27 0 33c80 3 97 8 97 91v127c0 37 -3.5 47.5 -21 77l-131.3 221c-34.5 58.1 -51.7 64 -93.7 67c-6 6 -7 27 -1 33c30 -1 63 -2 102 -2c40 0 78 1 114 2
-c6 -6 6 -27 0 -33c-56 -3 -60 -12.6 -35.8 -55.2l116 -204.8c9 -15.9 13.8 -17.2 21.8 -2l110.8 209c21.4 40.4 5.5 50 -38.8 53c-6 6 -6 27 0 33c32 -1 68 -2 91 -2s55 1 83 2c6 -6 6 -27 0 -33c-44.7 -4.29999 -67 -13.3 -95 -64l-119.5 -216
-c-16.4 -29.6 -17.5 -46.5 -17.5 -76.3v-135.7z" />
-    <glyph glyph-name="Z" unicode="Z" horiz-adv-x="604" 
-d="M551 -2c0 0 -99.7 2 -126.7 2h-364.3c-14 0 -19 5 -19 15c0 7 2 15 8 23c102 152 292 418 389 541c5 7 8 13 8 18c0 6 -4.10001 9.09998 -10 9l-211 -4c-75 -1.40002 -113 -37 -134 -106c-11 0 -20 2 -30 5c8 41 18 98 22 152c37 -3 134 -8 181 -8h221c30 0 61 2 73 2
-c8 0 13 -4 13 -11c0 -11 -2.90002 -17.8 -24 -45c-118 -152 -302 -413 -375 -519c-5 -9 -8 -15 -8 -20c0 -9 8 -14.4 25 -14l193 4c109 2 134 57 165 128c13 0 24 -3 31 -5c-12 -52 -22 -111 -27 -167z" />
-    <glyph glyph-name="bracketleft" unicode="[" horiz-adv-x="356" 
-d="M108 -193v896h212c6 -6 6 -24 0 -30c-137 -10 -145 -25 -145 -112v-611c0 -87 7 -102 145 -113c6 -6 6 -24 0 -30h-212z" />
-    <glyph glyph-name="backslash" unicode="\" horiz-adv-x="287" 
-d="M55 698l230 -746h-44l-230 746h44z" />
-    <glyph glyph-name="bracketright" unicode="]" horiz-adv-x="356" 
-d="M248 704v-896h-212c-6 6 -6 24 0 30c137 10 145 25 145 112v611c0 87 -7 102 -145 113c-6 6 -6 24 0 30h212z" />
-    <glyph glyph-name="uni02C4" unicode="&#x2c4;" horiz-adv-x="518" 
-d="M259 593l-102 -247h-45l127 304h42l126 -304h-45z" />
-    <glyph glyph-name="underscore" unicode="_" horiz-adv-x="486" 
-d="M476 -110c8 -8 8 -36 0 -44h-466c-8 8 -8 36 0 44h466z" />
-    <glyph glyph-name="a" unicode="a" horiz-adv-x="457" 
-d="M293 233l-79 -21c-74 -19 -95 -65 -95 -110c0 -31 22 -71 72 -71c28 0 62 23 88 44c8 6 14 13 14 26v132zM293 48h-2l-20 -16c-44 -34 -74.2 -42 -109 -42c-70 0 -126 26 -126 108c0 68 69 121 165 145l86 21c3 1 6 5 6 12c0 113 -47 130 -81 130c-38 0 -80 -11 -80 -42
-c0 -11 1 -17 2 -20c2 -4 3 -11 3 -18c0 -13 -18 -34 -47 -34c-23 0 -35 12 -35 36c0 57 83 111 165 111c73 0 151 -27 151 -169v-147c0 -46 1 -85 30 -85c12.7 0 29.5 9.8 37 16c11.3 -6.3 15.3 -14.7 17 -27c-20.7 -20 -56.7 -37 -95 -37c-50.4 0 -61 27 -67 58z" />
-    <glyph glyph-name="b" unicode="b" horiz-adv-x="493" 
-d="M174 363c-12.9 -11.4 -17 -21 -17 -42v-250c20 -25 41 -47 72 -47c95 0 141 86 141 200c0 97 -50 171 -111 171c-29 0 -59 -9 -85 -32zM167 394c31 28 69.1 45 112 45c87 0 177 -75 177 -197c0 -159 -119 -252 -221 -252c-35.3 0 -65.1 5.5 -88 24.8
-c-11 9.2 -17 9.2 -27.3 -2.8c-7.7 -8.9 -17.6 -18.2 -23.7 -24c-12 0 -17 4 -22 12c3 14 4 32 4 71v488c0 84 -12 79 -64 82c-6 6 -8 22 -6 30c40 3 115 17 140 27c9 0 13 -3 13 -10c0 0 -4 -40 -4 -105v-184c0 -9 3.7 -10.7 10 -5z" />
-    <glyph glyph-name="c" unicode="c" horiz-adv-x="428" 
-d="M398 91c-50 -82 -103 -101 -163 -101c-126 0 -198 89 -198 218c0 142 106 231 205 231c96 0 153 -40 153 -95c0 -31 -28 -44 -49 -44s-35 9 -38 36c-4 35 -12 70 -71 70c-66 0 -114 -66 -114 -176c0 -117 61 -191 134 -191c43 0 86 22 120 66c9 -1 17 -5 21 -14z" />
-    <glyph glyph-name="d" unicode="d" horiz-adv-x="506" 
-d="M345 124v190c0 31 -3 38 -17 54c-20 23 -45 36 -81 36c-20 0 -62 -3 -93 -50c-15 -21 -29 -61 -29 -133c0 -125 56 -184 110 -184c25 0 57 16 94 48c14.1 12.2 16 20 16 39zM334 50.3c-49 -40.3 -86 -60.3 -125 -60.3c-108 0 -170 90 -170 213c0 74 26 133 69 176
-c40 38 84 60 150 60c33 0 74 -17 78 -17c7 0 9 2 9 9v128c0 84 -12 79 -64 82c-6 6 -8 22 -6 30c40 3 115 17 140 27c9 0 13 -3 13 -10c0 0 -4 -40 -4 -105v-453c0 -49 9 -68 73 -73c6 -6 6 -21 0 -27c-61 -7 -96 -22 -118 -40c-6 -2.5 -11 -3 -19 0c0 0 -8.5 34.5 -11 59
-c-0.700012 7 -10.2 5.2 -15 1.3z" />
-    <glyph glyph-name="e" unicode="e" horiz-adv-x="447" 
-d="M124 282l181 3c11 0.200012 15 5 15 14c0 84 -45 105 -83 105c-24 0 -94 -9 -113 -122zM386 93c12 -1 18 -6 21 -16c-40 -52 -94 -87 -170 -87c-72 0 -119 24 -153 64c-33 38 -47 92 -47 148c0 152 113 235 200 235c139 0 169 -90 169 -174c0 -11 -7 -17 -19 -17l-266 2
-c0 -58 12 -104 32 -137c31 -51 73 -72 109 -72c58 0 87 16 124 54z" />
-    <glyph glyph-name="f" unicode="f" horiz-adv-x="310" 
-d="M175 122c0 -83 6 -87 84 -91c6 -6 6 -27 0 -33c-35 1 -83 2 -123 2s-75 -1 -110 -2c-6 6 -6 27 0 33c54 4 70 8 70 91v268h-69c-4 0 -5 1 -5 6v13c0 8 5 20 23 20h51v40c0 156 93 229 177 229c38 0 64 -3 90 -21c21 -16 32 -34 32 -51c0 -20 -24 -41 -41 -41
-c-21 0 -32 14 -40 32c-14 35 -30 47 -60 47c-33 0 -79 -24 -79 -178v-57h108c5 0 8 -2 8 -6v-20c0 -9 -14 -13 -23 -13h-93v-268z" />
-    <glyph glyph-name="g" unicode="g" horiz-adv-x="500" 
-d="M319 279c0 83 -34 129 -97 129c-55 0 -80 -36 -80 -106c0 -64 9 -135 93 -135c37 0 84 19 84 112zM132 -10c-29 -35 -31 -60 -31 -94c0 -68 84 -97 120 -97c90 0 196 38 196 110c0 26 -12 40 -51 62c-29 16 -71 17 -121 17c-14 0 -42 -3 -73 -3c-13 0 -29 2 -40 5z
-M444 387c-11 0 -24 10 -28 18c-6 9 -13 12 -20 12c-13 0 -33 -14 -40 -24c29 -30 43 -57 43 -104c0 -98 -81 -153 -169 -153c-39 0 -67 7 -91 21c-12 -17 -18 -38 -18 -58c0 -43 35 -57 64 -57c5 0 15 1 30 2c24 3 49 5 67 5c37 0 107 -1 146 -33c29 -24 44 -49 44 -81
-c0 -108 -146 -173 -281 -173c-77 0 -159 27 -159 114c0 43 28 89 82 121c-26 13 -46 41 -46 77c0 34 16 77 44 101c-28 27 -52 58 -52 112c0 92 82 152 171 152c59 0 92 -20 104 -28c26 34 74 51 100 51c27 0 46 -16 46 -37c0 -20 -18 -38 -37 -38z" />
-    <glyph glyph-name="h" unicode="h" horiz-adv-x="538" 
-d="M167 285.9v-163.9c0 -83 9 -87 59.8 -91c6 -6 6 -27 0 -33c-28 1 -60.8 2 -98.8 2c-40 0 -76.8 -1 -109.8 -2c-6 6 -6 27 0 33c58 4 69.8 8 69.8 91v437c0 84 -12 79 -64 82c-6 6 -8 22 -6 30c40 3 115 17 140 27c9 0 13 -3 13 -10c0 0 -4 -40 -4 -105l-0.800003 -225
-c0 -14 6.40001 -3.79999 9.8 0c61 68 120.9 81 170 81c35 0 66.2 -12 83 -34c23.3 -30.5 27 -79 27 -134v-149c0 -82 11 -86 67 -91c5 -6 5 -27 0 -33c-33 1 -66 2 -106 2s-74 -1 -102 -2c-5 6 -5 27 0 33c52 5 62 9 62 91v152c0 30 -2 57.2 -12 77
-c-11.6 22.9 -32.6 36 -53 36c-39.4 0 -90 -21.7 -128 -59c-8 -8.70001 -17 -21 -17 -42.1z" />
-    <glyph glyph-name="i" unicode="i" horiz-adv-x="271" 
-d="M90 599c0 24 28 48 52 48c27 0 48 -28 48 -52c0 -21.1 -24 -48 -52 -48c-24 0 -48 26 -48 52zM181 122c0 -83 11 -87 72 -91c6 -6 6 -27 0 -33c-33 1 -71 2 -111 2s-79 -1 -112 -2c-6 6 -6 27 0 33c61 5 72 8 72 91v195c0 57 -10.5 62.9 -65 68c-2 6 -4 22 -2 28
-c69 9 108.5 18 137 29c8 0 13 -3 13 -7c0 0 -4 -64 -4 -113.7v-199.3z" />
-    <glyph glyph-name="j" unicode="j" horiz-adv-x="272" 
-d="M99 599c0 24 28 48 52 48c27 0 48 -28 48 -52c0 -21.1 -24 -48 -52 -48c-24 0 -48 26 -48 52zM113 317c0 57 -11 63 -65 68c-2 6 -4 22 -2 28c69 9 109 18 137 29c8 0 13 -3 13 -7c0 0 -4 -64 -4 -114v-211c0 -189 -28 -261 -75 -299c-37 -31 -89 -34 -110 -34
-c-19 0 -55 14 -55 43c0 18 21 38 32 38c22 0 34 -16 44 -26c7 -7 20 -11 31 -11c50 0 54 123 54 255v241z" />
-    <glyph glyph-name="k" unicode="k" horiz-adv-x="512" 
-d="M86 122v437c0 84 -12 79 -64 82c-6 6 -8 22 -6 30c40 3 115 17 140 27c9 0 13 -3 13 -10c0 0 -4 -40 -4 -105v-348.8c18.9 2.60001 45.8 14.4 68 30.8c25.7 19 57 53 80 82c9.29999 11.7 33 47 -23 51c-6 6 -6 27 0 33c23 -1 60 -2 98 -2c36 0 64 1 87 2
-c6 -6 6 -27 0 -33c-40 -4 -75 -12 -105 -44l-88 -91c-4 -4 -4 -6 -4 -10c0 -5 3.39999 -9.5 7 -14l132 -166c26.7 -33.6 52 -38 86 -42c6 -6 6 -27 0 -33c-20 1 -51 2 -82 2c-20 0 -42 -1 -62 -2c-3 0 -3.70001 2 -4 5c-1.29999 11.7 -12.6 30.5 -42 70l-73 98
-c-11.9 16 -21 25 -32 32.5c-9.7 3.39999 -23.8 4.89999 -43 5.39999v-86.9c0 -83 11 -87 52 -91c6 -6 6 -27 0 -33c-23 1 -56 2 -91 2c-40 0 -74 -1 -107 -2c-6 6 -6 27 0 33c56 4 67 8 67 91z" />
-    <glyph glyph-name="l.superior" unicode="&#x2e1;" horiz-adv-x="161" 
-d="M55 440v211c0 52 -8 48 -40 50c-4 4 -4 16 -3 21c25 2 70 11 86 17c6 0 8 -2 8 -6c0 0 -2 -26 -2 -66v-227c0 -51 7 -53 40 -55c4 -4 4 -18 0 -22c-22 1 -39 1 -64 1s-44 0 -65 -1c-4 4 -4 16 0 20c33 2 40 6 40 57z" />
-    <glyph glyph-name="m" unicode="m" horiz-adv-x="790" 
-d="M170 358c0.5 -12 7.39999 -5.10001 12 0c41.7 46.6 94 81 152 81c52 0 90.5 -32.4 100 -73.4c2 -8.60001 8 -3.60001 11 -0.399994c52.1 55 113.8 73.8 165 73.8c88 0 103 -70 103 -159v-158c0 -82 9 -87 64 -91c5 -6 5 -27 0 -33c-28 1 -63 2 -103 2s-77 -1 -102 -2
-c-5 6 -5 27 0 33c52 4 62 9 62 91v176c0 67 -22 89 -60 89c-39 0 -84 -13 -132 -66c1 -12 1 -26 1 -40v-159c0 -82 9 -87 59 -91c5 -6 5 -27 0 -33c-25 1 -58 2 -98 2s-77 -1 -102 -2c-5 6 -5 27 0 33c54 4 62 9 62 91v174c0 67 -28 91 -66 91c-30.9 0 -68.4 -20.3 -108 -59
-c-8 -8.70001 -17 -21 -17 -42v-164c0 -82 11 -86 61.8 -91c6 -6 6 -27 0 -33c-30 1 -60.8 2 -100.8 2s-78 -1 -108 -2c-6 6 -6 27 0 33c55 4 68 9 68 91v195c0 58 -11 63 -65 68c-2 6 -4 22 -2 28c69 9 95 18 123 29c8 0 9.89999 -3.39999 12 -8c4.7 -10.3 6.7 -46.3 8 -76z
-" />
-    <glyph glyph-name="n" unicode="n" horiz-adv-x="542" 
-d="M184 358c59.3 68 115 81 164 81c35 0 66 -12 83 -34c23 -31 27 -79 27 -134v-149c0 -82 11 -86 67 -91c5 -6 5 -27 0 -33c-30 1 -66 2 -106 2s-72 -1 -102 -2c-5 6 -5 27 0 33c52 5 62 9 62 91v152c0 30 -2 57 -12 77c-12 23 -33 36 -53 36c-39 0 -84 -22 -122 -59
-c-8 -9 -17 -21 -17 -42v-164c0 -82 10 -86 61 -91c6 -6 6 -27 0 -33c-30 1 -60 2 -100 2s-80 -1 -110 -2c-6 6 -6 27 0 33c60 5 70 9 70 91v195c0 58 -11 63 -65 68c-2 6 -4 22 -2 28c69 9 95 18 123 29c8 0 9.89999 -3.39999 12 -8c4.7 -10.3 7 -49 8 -76
-c0.300003 -9.39999 5.89999 -7 12 0z" />
-    <glyph glyph-name="o" unicode="o" horiz-adv-x="504" 
-d="M41 205c0 63.2 19 121.4 55.3 164c36.6 43 90.9 70 156.7 70c153 0 210 -121 210 -225c0 -61.3 -20.3 -124.2 -65.1 -168c-34.1 -33.3 -82.5 -56 -146.9 -56c-142 0 -210 113 -210 215zM238 404c-90 0 -111 -89 -111 -176c0 -77 34 -203 138 -203c47 0 112 31 112 157
-c0 144 -53 222 -139 222z" />
-    <glyph glyph-name="p" unicode="p" horiz-adv-x="519" 
-d="M175 331c-11.6 -14.3 -16 -23 -16 -44v-182c0 -36.1 3.89999 -41.9 24 -59.9c18 -16.1 53 -21.1 71 -21.1c112 0 141 102 141 184c0 113 -55 185 -119 185c-29.2 0 -75 -30 -101 -62zM156 368c0.5 -9.60001 5.39999 -10.3 11 -4c39.5 44.5 90.5 75 137 75
-c102 0 177 -98 177 -204c0 -81 -27 -143 -74 -189c-41 -39 -91 -56 -147 -56c-31.6 0 -62.5 5.6 -87 15.5c-10.2 4.2 -14 5.5 -14 -7.5v-108c0 -83 11 -87 82 -91c6 -6 6 -27 0 -33c-33 1 -81 2 -121 2s-77 -1 -112 -2c-6 6 -6 27 0 33c61 3 72 8 72 91v427
-c0 58 -11 63 -65 68c-2 6 -4 22 -2 28c69 9 95 18 123 29c8 0 9.89999 -3.39999 12 -8c4.7 -10.3 6.5 -36 8 -66z" />
-    <glyph glyph-name="q" unicode="q" horiz-adv-x="503" 
-d="M322 368.4c-21.9 24.5 -48.6 36.6 -79 36.6c-80 0 -122 -74 -122 -178c0 -151 87 -193 145 -193c15.8 0 42.6 1.1 66 13.2c13 6.8 14 11.8 14 29.8v230c0 24.1 -4 39 -24 61.4zM346 -111v111c0 21 -4 19 -27 5.6c-17.1 -10 -50 -15.6 -77 -15.6c-144 0 -207 124 -207 217
-c0 132 90 232 212 232c42.4 0 81.4 -8.70001 113 -29.2c12 -7.79999 16 -4.79999 29 13.2c8.10001 11.3 14 19 21 19c11 0 15 -11 15 -25v-528c0 -83 11 -87 72 -90c6 -6 6 -27 0 -33c-33 1 -71 2 -111 2s-77 -1 -112 -2c-6 6 -6 27 0 33c61 3 72 7 72 90z" />
-    <glyph glyph-name="r" unicode="r" horiz-adv-x="372" 
-d="M176 358c0.199997 -5 5 -13 11 -2c23 39 64 83 111 83c42 0 60 -28.9 60 -48c0 -25 -23 -50 -47 -50c-17.4 0 -28.6 13.3 -36.2 23.3c-7.79999 10.3 -16.8 12.7 -25.8 12.7c-12 0 -35 -33 -46 -49c-12 -18 -24 -41 -24 -67v-139c0 -83 12 -86 82 -91c6 -6 6 -27 0 -33
-c-35 1 -81 2 -121 2s-79 -1 -114 -2c-6 6 -6 27 0 33c62 4 74 8 74 91v195c0 58 -11 63 -65 68c-2 6 -4 22 -2 28c69 9 95 18 123 29c8 0 9.89999 -3.39999 12 -8c4.7 -10.3 6.3 -36 8 -76z" />
-    <glyph glyph-name="s.superior" unicode="&#x2e2;" horiz-adv-x="253" 
-d="M28 458h22c1 -14 7 -41 23 -57c7 -6 26 -18 49 -18c24 0 48 11 48 38c0 21 -8 41 -58 62c-46 19 -77 35 -77 80c0 42 45 74 94 74c31 0 70 -10 81 -17l9 -75l-23 -1c-14 58 -48 68 -67 68c-25 0 -46 -13 -46 -40c0 -24 10 -33 44 -47c51 -21 97 -40 97 -90
-c0 -61 -66 -77 -100 -77c-30 0 -52 14 -72 14c-3 0 -13 -1 -19 -2c0 24 -2 56 -5 88z" />
-    <glyph glyph-name="t" unicode="t" horiz-adv-x="316" 
-d="M43 429l46 0.100006c0 110.9 -3 104.3 -3 115.9c0 6.90002 10 10.3 22 13.7c12.5 3.5 22.7 7.79999 34 14.1c9.3 5.10004 17.8 9 22.3 9c4.7 0 7.7 -2.39996 7.7 -8.79999c0 0 -4 -40 -4 -105v-39h120c5 0 8 -2 8 -6v-20c0 -9 -14 -13 -24 -13h-104v-253
-c0 -62 6 -92 33 -92c26 0 56 8 82 28c10 -1 16 -6.7 18 -17c-39 -44 -89 -66 -135 -66s-77 28 -77 99v301h-59c-4 0 -5 1 -5 6v13c0 8 4 20 18 20z" />
-    <glyph glyph-name="u" unicode="u" horiz-adv-x="531" 
-d="M217 -10c-99 0 -129 67 -129 136v192c0 65 -14 76 -62 80c-6 6 -6 27 0 33c34 -1 70 -2 102 -2c15 0 30 1 35 2c5 0 8 -3 8 -6c0 0 -4 -73 -4 -103v-182c0 -89 50 -103 80 -103c25 0 63 16 100 48c14 12 16 20 16 39v193c0 66 -13 78 -62 81c-6 6 -6 27 0 33
-c34 -1 70 -2 102 -2c15 0 30 1 35 2c5 0 8 -3 8 -6c0 0 -4 -73 -4 -103v-192c0 -49 9 -68 73 -73c6 -6 6 -21 0 -27c-61 -7 -96 -22 -118 -40c-6.5 -2.5 -11 -3 -19 0c0 0 -8.5 33.5 -11 59c-0.700012 7 -10 5 -15 1c-49 -40 -96 -60 -135 -60z" />
-    <glyph glyph-name="v" unicode="v" horiz-adv-x="497" 
-d="M325 398c-6 6 -6 27 0 33c25 -1 59 -2 92 -2c26 0 50 1 70 2c6 -6 6 -27 0 -33c-56 -5 -66.9 -30.1 -85.6 -74l-133.4 -313c-7.10001 -16.6 -14 -23 -24 -23c-13 0 -19 6 -25 21l-127.6 316c-20.4 50.6 -27.4 66.7 -80.4 73c-6 6 -6 27 0 33c30 -1 60 -2 93 -2
-s68 1 101 2c6 -6 6 -27 0 -33c-53.3 -7 -49 -19 -31.1 -67l72.1 -193c15.6 -41.8 20.8 -42.5 37 -3l80.7 196c20.9 50.8 15.3 63 -38.7 67z" />
-    <glyph glyph-name="w" unicode="w" horiz-adv-x="747" 
-d="M203 398c-48 -3 -49 -19 -30.1 -67l80 -206c12.9 -32.5 15.1 -31 28.1 2l70 177l-6.39999 16c-17.9 44.8 -29.6 73.5 -76.6 78c-6 6 -6 27 0 33c30 -1 63 -2 88 -2c30 0 70 1 100 2c6 -6 6 -27 0 -33c-53 -4 -55 -14 -36.5 -61l86.3 -219c8.20001 -20.8 12.2 -21 22.2 4
-l83.6 208c14.1 35.1 24.4 64 -50.6 68c-6 6 -6 27 0 33c30 -1 72 -2 102 -2s52 1 72 2c6 -6 6 -27 0 -33c-51 -3 -68 -31.1 -84.4 -72l-130.6 -317c-6 -15 -14 -21 -23 -21c-10 0 -18 6 -24 20l-103 248l-101 -246c-7 -16 -15 -22 -24 -22c-10 0 -18 6 -24 20l-130.9 323
-c-21.1 52 -32 62.2 -79.1 67c-6 6 -6 27 0 33c26.2 -1 53 -2 91 -2c36 0 71 1 101 2c6 -6 6 -27 0 -33z" />
-    <glyph glyph-name="x.superior" unicode="&#x2e3;" horiz-adv-x="307" 
-d="M234.2 569l-52.2 -67l52.2 -74c26.3 -37.3 32.7 -40.2 60.8 -42c4 -4 4 -18 0 -22c-18 1 -33 2 -56 2c-24 0 -50 -1 -68 -2c-4 4 -4 18 0 22c29 1 26 9 14 28c0 0 -27 42 -32 50c-16 -21 -40 -50 -40 -50c-14 -18 -15 -27 14 -28c4 -4 4 -18 0 -22c-18 1 -34 2 -58 2
-c-23 0 -30 -1 -48 -2c-4 4 -4 18 0 22c28.1 1.79999 30.4 6.5 60.8 42c0 0 49.2 58 52.2 61l-56.2 80c-26.6 37.8 -27.7 40.2 -55.8 42c-4 4 -4 18 0 22c18 -1 28 -2 51 -2c24 0 53 1 71 2c4 -4 4 -18 0 -22c-29 -1 -29 -8 -17 -28l36 -57c40 56 41 57 41 57
-c13.2 18.8 15 27 -14 28c-4 4 -4 18 0 22c18 -1 33 -2 57 -2c23 0 30 1 48 2c4 -4 4 -18 0 -22c-28.1 -1.79999 -32.8 -6.09998 -60.8 -42z" />
-    <glyph glyph-name="y" unicode="y" horiz-adv-x="515" 
-d="M204 -160c-36 -64 -76 -72 -97 -72c-27 0 -47 16 -47 37c0 13 15 43 44 43c11 0 15 -3 29 -3c25 0 39 9 50 29c15 31 27.1 58.6 39 92c10 28 -5.3 73.9 -14 94l-113.1 263c-26.2 61 -39.2 70 -78.9 75c-6 6 -6 27 0 33c20 -1 47 -2 81 -2c36 0 76 1 113 2
-c6 -6 6 -27 0 -33c-56 -4.29999 -50.8 -22.8 -32.8 -65l88.7 -208c8.5 -19.8 16.9 -17.1 23.9 -1l99.2 229c16 36 -16.4 42 -48 45c-6 6 -6 27 0 33c30 -1 61 -2 91 -2c28 0 51 1 71 2c6 -6 6 -27 0 -33c-47 -5.70001 -61.3 -21.7 -81 -64c-52.2 -112.4 -97 -215 -177 -408
-c-12.3 -29.6 -25.4 -58.2 -41 -86z" />
-    <glyph glyph-name="z" unicode="z" horiz-adv-x="424" 
-d="M71 439c14.5 -5.39999 26.9 -10 59 -10h183c29 0 57 2 62 2c7 0 12 -3 12 -7s-2.70001 -11.8 -18 -37c-62 -102 -166 -259 -240 -353h133c52.1 1.2 72.5 23.2 98 76l14 29c12 0 23.5 -2.3 30 -6c-7 -50 -20 -102 -32 -136l-312 3c-15 0 -23 5 -23 12
-c0 5 0.400002 8.4 9 20c78 105 178 249 246 363l-128 -3c-30 -0.700012 -61 -18 -81 -91c-11.6 -2.60001 -24.2 -0.700012 -33 3c9 49 14 84 15 129c0 2.39999 3.6 6 6 6z" />
-    <glyph glyph-name="braceleft" unicode="{" horiz-adv-x="277" 
-d="M178 552l8 -166c4.3 -89 -37.8 -117.8 -105 -137v-4c67.8 -28.2 109.4 -67.7 105 -150l-8 -149c-4.5 -84 36 -134 80 -134c6 -6 6 -18 0 -24c-101 0 -157 33 -152 163l6 170c2 61 -24.5 105 -98 114c-8 8 -9 15 0 24c74 7 98 61 98 111l-6 184c-4 113 62 153 152 153
-c6 -6 6 -18 0 -24c-38 -11 -85 -28.1 -80 -131z" />
-    <glyph glyph-name="bar" unicode="|" horiz-adv-x="205" 
-d="M125 -232h-44v930h44v-930z" />
-    <glyph glyph-name="braceright" unicode="}" horiz-adv-x="277" 
-d="M95 -58l-8 166c-4.3 89 37.8 117.8 105 137v4c-67.8 28.2 -109.4 67.7 -105 150l8 149c4.5 84 -36 134 -80 134c-6 6 -6 18 0 24c101 0 157 -33 152 -163l-6 -170c-2 -61 24.5 -105 98 -114c8 -8 9 -15 0 -24c-74 -7 -98 -61 -98 -111l6 -184c4 -113 -62 -153 -152 -153
-c-6 6 -6 18 0 24c38 11 85 28.1 80 131z" />
-    <glyph glyph-name="asciitilde" unicode="~" horiz-adv-x="449" 
-d="M26 209c13 65 67 128 128 128c23 0 50.5 -13.8 75 -32c27 -20 50 -33 72 -33c28 0 77 17 99 67c8 0 13.7 -1.89999 17 -6c-31 -107 -96 -120 -120 -120c-23 0 -52 15 -76 33c-24.2 18.1 -48 32 -73 32c-35 0 -82 -29 -105 -73c-6 0 -11.3 1 -17 4z" />
-    <glyph glyph-name="uni00A0" unicode="&#xa0;" horiz-adv-x="250" 
- />
-    <glyph glyph-name="exclamdown" unicode="&#xa1;" horiz-adv-x="288" 
-d="M144 -229c-24 0 -53 19 -53 73c0 65 14 107 24 193c13 108 13 168 15 182c1 11 4 20 14 20s13 -7 14 -13c2 -21 8 -111 16 -189c9 -88 23 -123 23 -193c0 -54 -29 -73 -53 -73zM197 386c0 -29 -24 -53 -53 -53s-53 24 -53 53s24 53 53 53s53 -24 53 -53z" />
-    <glyph glyph-name="cent" unicode="&#xa2;" horiz-adv-x="465" 
-d="M232 611h36v-96.6c88.9 -1.10004 141.5 -38.8 141.5 -90.3c0 -29.5 -26.5 -41.9 -46.5 -41.9s-33.3 8.59998 -36.2 34.3c-3.59998 31.5 -10.6 62.9 -58.8 66.2v-348.1c3.39999 -0.300003 6.79999 -0.5 10.3 -0.5c40.9 0 81.8 20.9 114.1 62.7
-c8.60001 -1 16.2 -4.7 20 -13.3c-44.6 -73.1 -91.7 -93.5 -144.4 -95.8v-100.7h-36v101.8c-104 11.2 -162.8 92.3 -162.8 206c0 119.7 79.2 199.8 162.8 216.4v99.8zM232 145.3v333.4c-48.2 -15.8 -81 -74.3 -81 -163c0 -85.2 33.9 -146.4 81 -170.4z" />
-    <glyph glyph-name="sterling" unicode="&#xa3;" horiz-adv-x="465" 
-d="M74 300c-5 0 -6 2 -6 7v11c0 8 6 21 24 21h45v20c0 85 27 139 82 193c35 36 80 59 133 59c23 0 80 -13 80 -49c0 -25 -17 -41 -41 -41c-15 0 -24 8 -36 19c-13 12 -28 23 -50 23c-46 0 -83 -66 -83 -153v-71h124c5 0 8 -2 8 -6v-20c0 -8 -13 -13 -24 -13h-108
-c-1 -119 -41 -177 -75 -209c124 0 113 -47 182 -47c30 0 77 8 103 44c8 -1 14 -4 18 -11c-24 -52 -74 -88 -139 -88c-90 0 -91 60 -179 60c-35 0 -40 -14 -40 -25c0 -23 -18 -35 -40 -35c-19 0 -36 12 -36 28c0 19 24 35 51 50c59 43 70 123 70 214v19h-63z" />
-    <glyph glyph-name="currency" unicode="&#xa4;" horiz-adv-x="465" 
-d="M108 305c0 -77 48 -141 123 -141c74 0 123 65 123 140c0 79 -56 141 -121 141c-74 0 -125 -65 -125 -140zM231 119c-42 0 -80 13 -114 38l-45 -56l-43 43l57 45c-27 33 -42 72 -42 115c0 45 15 84 42 116l-55 44l39 42l48 -54c35 25 72 37 113 37c43 0 81 -13 115 -39
-l49 58l41 -43l-58 -47c26 -32 40 -70 40 -114c0 -42 -14 -80 -39 -113l55 -46l-38 -40l-48 53c-35 -26 -74 -39 -117 -39z" />
-    <glyph glyph-name="yen" unicode="&#xa5;" horiz-adv-x="465" 
-d="M191 127v7h-141c-5 0 -6 2 -6 7v13c0 8 6 19 24 19h123v72h-141c-5 0 -6 1 -6 6v12c0 8 6 21 24 21h119l-107 219c-18 38 -39 62 -80 66c-6 6 -6 27 0 33c32 -1 76 -2 90 -2c6 0 57 1 89 2c6 -6 6 -27 0 -33c-36 0 -47 -3 -30 -38l107 -220h2l77 176c32 73 35 78 -15 82
-c-6 6 -6 27 0 33c32 -1 62 -2 79 -2s35 1 67 2c6 -6 4 -27 -2 -33c-53 -5 -53 -9 -86 -82l-92 -203h129c4 0 8 -2 8 -6v-19c0 -10 -14 -14 -25 -14h-122v-72h139c4 0 8 -2 8 -6v-19c0 -10 -14 -14 -25 -14h-122v-7c0 -88 17 -93 102 -96c6 -6 6 -27 0 -33
-c-53 1 -87.2 2 -143 2c-56.9 0 -94 -1 -146 -2c-6 6 -6 27 0 33c85 3 102 8 102 96z" />
-    <glyph glyph-name="brokenbar" unicode="&#xa6;" horiz-adv-x="211" 
-d="M130 674v-362h-49v362h49zM130 161v-362h-49v362h49z" />
-    <glyph glyph-name="section" unicode="&#xa7;" horiz-adv-x="473" 
-d="M124.8 415.1c-34.9 35.3 -44.8 68.9 -44.8 110.9c0 66 53 132 156 132c97 0 139 -62 139 -101c0 -21 -9 -38 -36 -38c-26 0 -36 22 -41 41c-10 38 -25 67 -68 67c-47 0 -81 -35 -81 -81c0 -47 26 -84 91 -119c77 -41 183 -85 183 -208c0 -66.4 -30.4 -112.2 -74.8 -148.1
-c34.9 -35.3 44.8 -68.9 44.8 -110.9c0 -66 -53 -132 -156 -132c-97 0 -139 62 -139 101c0 21 9 38 36 38c26 0 36 -22 41 -41c10 -38 25 -67 68 -67c47 0 81 35 81 81c0 47 -26 84 -91 119c-77 41 -183 85 -183 208c0 64.4 30.4 112.2 74.8 148.1zM327 90.1
-c24.1 21.4 42 49.5 42 80.9c0 92 -75 132 -147 174c-31.5 18.2 -56.4 34.8 -75.9 50.8c-25.7 -23.2 -42.1 -46.4 -42.1 -80.8c0 -92 75 -132 147 -174c31.6 -18.2 56.5 -34.9 76 -50.9z" />
-    <glyph glyph-name="dieresis" unicode="&#xa8;" horiz-adv-x="379" 
-d="M50 575c0 26 21 48 47 48s47 -22 47 -48s-21 -47 -47 -47s-47 21 -47 47zM219 575c0 26 21 48 47 48s47 -22 47 -48s-21 -47 -47 -47s-47 21 -47 47z" />
-    <glyph glyph-name="copyright" unicode="&#xa9;" horiz-adv-x="695" 
-d="M439 216c-20 -31 -63 -64 -118 -64c-38.7 0 -75.3 12.9 -102 35c-34.6 28.7 -54 72.4 -54 117c0 38.2 12 74.6 36 101.5c28.9 32.3 74 51.5 122 51.5c70 0 87 -13 107 -15c2 -37 1 -59 0 -83c-5 -3 -12 -4 -20 -4c-17 46 -34 79 -91 79c-40 0 -87 -25 -87 -123
-c0 -73 42 -130 98 -130c51 0 79 34 90 50c9.79999 -2.7 14.4 -8.89999 19 -15zM321 23c-157 0 -287 128 -287 283c0 156 131 282 287 282s287 -126 287 -282s-131 -283 -287 -283zM321 556c-140 0 -247 -111 -247 -250c0 -138 107 -251 247 -251c138 0 247 112 247 251
-s-108 250 -247 250z" />
-    <glyph glyph-name="ordfeminine" unicode="&#xaa;" horiz-adv-x="307" 
-d="M192 502c-85 -22 -109 -40 -109 -71c0 -21 11 -41 45 -41c21 0 38 10 64 33v79zM235 358c-25 0 -39 21 -42 39c-34 -30 -52 -39 -85 -39c-42 0 -77 27 -77 70c0 42 40 70 103 86l58 15c0 75 -31 83 -54 83c-33 0 -54 -11 -54 -27c0 -7 1 -11 2 -13s2 -7 2 -12
-c0 -8 -7 -21 -26 -21c-15 0 -26 10 -26 25c0 40 62 73 104 73c49 0 106 -20 106 -114v-75c0 -41 5 -57 14 -57c4 0 9 2 12 5c7.29999 -2.70001 10.6 -8 10 -16c-9 -10 -28 -22 -47 -22z" />
-    <glyph glyph-name="guillemotleft" unicode="&#xab;" horiz-adv-x="543" 
-d="M156 215c37.5 -42.5 75 -91 127 -170c-2.5 -10 -13.5 -17.8 -24 -19c-79.5 85.5 -129.5 134 -185 183v12c55.5 49 105.5 97.5 185 183c10.5 -1.20001 21.5 -9 24 -19c-52 -79 -89.5 -127.5 -127 -170zM336 215c37.5 -42.5 75 -91 127 -170c-2.5 -10 -13.5 -17.8 -24 -19
-c-79.5 85.5 -129.5 134 -185 183v12c55.5 49 105.5 97.5 185 183c10.5 -1.20001 21.5 -9 24 -19c-52 -79 -89.5 -127.5 -127 -170z" />
-    <glyph glyph-name="logicalnot" unicode="&#xac;" horiz-adv-x="599" 
-d="M499 99v224h-459c-3.7 12.8 -6.7 26 0 44h513v-268c-16.6 -6.4 -35 -9 -54 0z" />
-    <glyph glyph-name="uni00AD" unicode="&#xad;" horiz-adv-x="338" 
-d="M271 223h-216c-9 0 -15 9 -15 19c0 18 13 41 25 41h219c10 0 14 -10 14 -20c0 -12 -14 -40 -27 -40z" />
-    <glyph glyph-name="registered" unicode="&#xae;" horiz-adv-x="695" 
-d="M376 370c0 34 -16 51 -50 51c-25 0 -40 -16 -40 -34v-75h42c30 0 48 12 48 58zM263 443c16 0 52 2 72 2c75 0 95 -45 95 -75c0 -39 -26 -64 -57 -74l48 -82c11 -18.8 27 -27 43 -24c4 -4 5 -11 4 -17c-12 -5 -24 -7 -36 -7c-20 0 -44 9 -61 38l-48 80c-4 3 -32 4 -37 4
-v-56c0 -32 8 -38 40 -41c4 -4 4 -20 0 -24c-18 1 -47 2 -63 2s-46 -1 -64 -2c-4 4 -4 20 0 24c32 3 40 9 40 41v148c0 32 -8 38 -40 41c-4 4 -4 20 0 24c18 -1 48 -2 64 -2zM321 23c-157 0 -287 128 -287 283c0 156 131 282 287 282s287 -126 287 -282s-131 -283 -287 -283z
-M321 556c-140 0 -247 -111 -247 -250c0 -138 107 -251 247 -251c138 0 247 112 247 251s-108 250 -247 250z" />
-    <glyph glyph-name="macron" unicode="&#xaf;" horiz-adv-x="397" 
-d="M315 529h-244c-9 0 -12 8 -12 15c0 12 10 29 22 29h244c10 0 14 -8 14 -14c0 -12 -11 -30 -24 -30z" />
-    <glyph glyph-name="degree" unicode="&#xb0;" horiz-adv-x="267" 
-d="M199 508c0 33 -20 72 -65 72c-43 0 -66 -36 -66 -72c0 -35 24 -69 66 -69c41 0 65 35 65 69zM34 509c0 56 45 101 100 101s99 -45 99 -101c0 -55 -44 -100 -99 -100s-100 45 -100 100z" />
-    <glyph glyph-name="plusminus" unicode="&#xb1;" horiz-adv-x="550" 
-d="M250 520c0 13 23 27 33 27c8 0 17 -4 17 -14v-172h176c10 0 14 -9 14 -17c0 -10 -14 -33 -27 -33h-163v-160c0 -12 -19 -25 -34 -25c-8 0 -16 6 -16 15v170h-175c-9 0 -15 8 -15 16c0 15 13 34 25 34h165v159zM463 37h-388c-9 0 -15 8 -15 16c0 15 13 34 25 34h391
-c10 0 14 -9 14 -17c0 -10 -14 -33 -27 -33z" />
-    <glyph glyph-name="two.superior" unicode="&#xb2;" horiz-adv-x="307" 
-d="M73 587c-12 0 -26 11 -26 24c0 26 28 77 107 77c50 0 108 -19 108 -83c0 -46 -33 -79 -89 -119c-42 -30 -57 -57 -66 -90h83c31 0 45 39 56 67c10.7 0.299988 18.7 -1.29999 24 -5c-4.29999 -35.7 -10.5 -67.3 -19 -94h-206c0 48 38 90 86 127c45 36 69 59 69 113
-c0 47 -32 54 -50 54c-31 0 -43 -9 -48 -21c-3.5 -8.29999 -0.699997 -21.1 -2 -29c-3 -18 -17 -21 -27 -21z" />
-    <glyph glyph-name="three.superior" unicode="&#xb3;" horiz-adv-x="307" 
-d="M186 624c0 26 -22 34 -38 34c-17 0 -45 -8 -52 -24c-4.8 -11 -4 -29 -27 -29c-19 0 -23 15 -23 18c0 17 27 65 114 65c52 0 85 -22 85 -59c0 -29 -22 -52 -51 -68c33 -3 80 -30 80 -88c0 -69 -59 -115 -139 -115c-26.2 0 -96.8 11.3 -96.8 42.8
-c0 13.3 12.5 22.2 24.8 22.2c14 0 24 -5 30 -17c5.7 -11.5 14 -18 46 -18c29 0 73 13 73 77c0 57 -51 61 -75 61c-7 0 -12 -1 -20 -2c-5.4 6.5 -4.7 17.9 -2 27c44 6 71 32 71 73z" />
-    <glyph glyph-name="acute" unicode="&#xb4;" horiz-adv-x="341" 
-d="M175 703c3 1 9 2 14 2c6.39999 0 32 -1 55 -23l3 -11l-115 -109c-15 -15 -23 -19 -30 -19s-14 6 -14 13c0 11.2 3.3 15.2 11.4 28z" />
-    <glyph glyph-name="uni00B5" unicode="&#xb5;" horiz-adv-x="515" 
-d="M340 60c-39 -44 -82 -70 -146 -70c-27 0 -53 10 -65 23c-6 0 -13 -4 -13 -9c0 -65 34 -135 34 -178c0 -41 -19 -60 -43 -60c-17 0 -57 24 -57 65c0 51 16 98 16 161c0 33 -9 84 -9 142v188c0 28 -11 107 -11 107c24 0 57 7 87 10c0 0 3 -64 3 -96v-196
-c0 -62 17 -112 73 -112c55 0 110 39 133 72v322c25 0 53 7 79 10v-318c0 -46 1 -87 42 -87c26 0 29 16 35 16c4 0 12 -8 12 -15c0 -5 -36 -45 -88 -45c-61 0 -77 42 -80 70h-2z" />
-    <glyph glyph-name="pilcrow" unicode="&#xb6;" horiz-adv-x="602" 
-d="M367 574v-735c0 -27 17 -38 40 -38s41 7 41 38v735c0 31 -18 38 -41 38s-40 -11 -40 -38zM408 645c69 0 129.5 0 177 2l2 -2v-19c0 -5 -4 -7.70001 -8 -8l-26 -2c-39.7 -3.09998 -55 -12 -55 -42v-735c0 -30 15.3 -38.9 55 -42l26 -2c4 -0.300003 8 -3 8 -8v-19l-2 -2
-c-47.5 2 -108 2 -177 2s-128 0 -177 -2l-2 2v19c0 5 3 7.7 7 8l27 2c41.6 3.10001 54 14 54 42v446c-9 -2 -17 -3 -32 -3c-146 0 -228 65 -228 199c0 79 58 166 190 166c75 0 134 -2 161 -2z" />
-    <glyph glyph-name="periodcentered" unicode="&#xb7;" horiz-adv-x="250" 
-d="M125 199c-28 0 -54 26 -54 54s26 54 54 54s54 -26 54 -54s-26 -54 -54 -54z" />
-    <glyph glyph-name="cedilla" unicode="&#xb8;" horiz-adv-x="541" 
-d="M302 -96c-19 0 -29 -1 -45 -6l-6 6l40 96h34l-25 -67c8 2 17 3 26 3c40 0 71 -24 71 -62c0 -43 -46 -74 -107 -74c-32 0 -49 6 -74 17c0 12 3 19 10 26c27 -10 38 -14 58 -14c30 0 51 14 51 40c0 21 -10 35 -33 35z" />
-    <glyph glyph-name="one.superior" unicode="&#xb9;" horiz-adv-x="307" 
-d="M135 620c-13 0 -32 -6 -57 -15c-7.9 6.09998 -10 15 -10 27c47 17 73 29 117 56c5.3 2.90002 12.7 5 18 0v-239c0 -51 21 -54 55 -56c4 -8 4 -22 0 -29c-30 1 -51 1 -84 1c-35.3 0 -66 0 -96 -1c-4 6 -5 21 0 29c40 2 71 5 71 56v130c0 32 -2 41 -14 41z" />
-    <glyph glyph-name="ordmasculine" unicode="&#xba;" horiz-adv-x="349" 
-d="M39 429c0 81 54 137 140 137c87 0 132 -62 132 -131c0 -65 -45 -132 -139 -132c-74 0 -133 55 -133 126zM171 540c-50 0 -74 -47 -74 -101c0 -49 26 -110 86 -110c27 0 70 18 70 90c0 80 -32 121 -82 121z" />
-    <glyph glyph-name="guillemotright" unicode="&#xbb;" horiz-adv-x="543" 
-d="M387 215c-37.5 42.5 -75 91 -127 170c2.5 10 13.5 17.8 24 19c79.5 -85.5 129.5 -134 185 -183v-12c-55.5 -49 -105.5 -97.5 -185 -183c-10.5 1.2 -21.5 9 -24 19c52 79 89.5 127.5 127 170zM207 215c-37.5 42.5 -75 91 -127 170c2.5 10 13.5 17.8 24 19
-c79.5 -85.5 129.5 -134 185 -183v-12c-55.5 -49 -105.5 -97.5 -185 -183c-10.5 1.2 -21.5 9 -24 19c52 79 89.5 127.5 127 170z" />
-    <glyph glyph-name="onequarter" unicode="&#xbc;" horiz-adv-x="660" 
-d="M557 601l41 -8l-458 -655l-42 8zM528 191.7c-39.2 -48.5 -91.5 -122.2 -98 -139.7h98v139.7zM528 -6v24h-118.8c-26.6 0 -21.5 20.2 -18.9 28.2c2.90002 6.3 6.10001 11.3 9.5 16.8c33.2 53.8 77 106 112.1 147c9.00003 10.5 20.4 21.7 35.7 30.8
-c1.10004 0.699997 10.4 1.2 13.7 1.2c6.29999 0 18.7 -1.10001 18.7 -10v-180h56l-6 -34h-50v-24c0 -41 17 -44 51 -46c4 -8 4 -22 0 -29c-30 1 -48.4 1 -78 1c-35.3 0 -48 0 -78 -1c-4 6 -5 21 0 29c40 2 53 5 53 46zM132 571c-13 0 -32 -6 -57 -15
-c-7.9 6.09998 -10 15 -10 27c47 17 73 29 117 56c5.3 2.90002 12.7 5 18 0v-239c0 -51 21 -54 55 -56c4 -8 4 -22 0 -29c-30 1 -51 1 -84 1c-35.3 0 -66 0 -96 -1c-4 6 -5 21 0 29c40 2 71 5 71 56v130c0 32 -2 41 -14 41z" />
-    <glyph glyph-name="onehalf" unicode="&#xbd;" horiz-adv-x="660" 
-d="M532 601l42 -8l-459 -655l-41 8zM431 144c-12 0 -26 11 -26 24c0 26 28 77 107 77c50 0 108 -19 108 -83c0 -46 -33 -79 -89 -119c-42 -30 -57 -57 -66 -90h83c31 0 45 39 56 67c10.7 0.299999 18.7 -1.3 24 -5c-4.29999 -35.7 -10.5 -67.3 -19 -94h-206
-c0 48 38 90 86 127c45 36 69 59 69 113c0 47 -32 54 -50 54c-31 0 -43 -9 -48 -21c-3.5 -8.3 -0.700012 -21.1 -2 -29c-3 -18 -17 -21 -27 -21zM134 571c-13 0 -32 -6 -57 -15c-7.9 6.09998 -10 15 -10 27c47 17 73 29 117 56c5.3 2.90002 12.7 5 18 0v-239
-c0 -51 21 -54 55 -56c4 -8 4 -22 0 -29c-30 1 -51 1 -84 1c-35.3 0 -66 0 -96 -1c-4 6 -5 21 0 29c40 2 71 5 71 56v130c0 32 -2 41 -14 41z" />
-    <glyph glyph-name="threequarters" unicode="&#xbe;" horiz-adv-x="660" 
-d="M562 601l41 -8l-458 -655l-42 8zM184 573c0 26 -22 34 -38 34c-17 0 -45 -8 -52 -24c-4.8 -11 -4 -29 -27 -29c-19 0 -23 15 -23 18c0 17 27 65 114 65c52 0 85 -22 85 -59c0 -29 -22 -52 -51 -68c33 -3 80 -30 80 -88c0 -69 -59 -115 -139 -115
-c-26.2 0 -96.8 11.3 -96.8 42.8c0 13.3 12.5 22.2 24.8 22.2c14 0 24 -5 30 -17c5.7 -11.5 14 -18 46 -18c29 0 73 13 73 77c0 57 -51 61 -75 61c-7 0 -12 -1 -20 -2c-5.4 6.5 -4.7 17.9 -2 27c44 6 71 32 71 73zM532 193.7c-39.2 -48.5 -91.5 -122.2 -98 -139.7h98v139.7z
-M532 -4v24h-118.8c-26.6 0 -21.5 20.2 -18.9 28.2c2.90002 6.3 6.10001 11.3 9.5 16.8c33.2 53.8 77 106 112.1 147c9 10.5 20.4 21.7 35.7 30.8c1.10004 0.699997 10.4 1.2 13.7 1.2c6.29999 0 18.7 -1.10001 18.7 -10v-180h56l-6 -34h-50v-24c0 -41 17 -44 51 -46
-c4 -8 4 -22 0 -29c-30 1 -48.4 1 -78 1c-35.3 0 -48 0 -78 -1c-4 6 -5 21 0 29c40 2 53 5 53 46z" />
-    <glyph glyph-name="questiondown" unicode="&#xbf;" horiz-adv-x="435" 
-d="M321 -143c0 15 -2 21 -6 26s-6 11 -6 24c0 23 20 35 39 35c16 0 41 -8 41 -43c0 -38 -21 -66 -51 -90c-29 -25 -71 -39 -124 -39c-102 0 -168 60 -168 151c0 79 62 123 109 157c23 17 43 33 52 50c13 25 14 49 14 73v44c0 7 9 10 17 10s16 -3 16 -10v-46
-c0 -43 -5 -102 -70 -161c-40 -37 -55 -66 -55 -113c0 -65 38 -122 95 -122s97 24 97 54zM291 386c0 -29 -24 -53 -53 -53s-53 24 -53 53s24 53 53 53s53 -24 53 -53z" />
-    <glyph glyph-name="Agrave" unicode="&#xc0;" horiz-adv-x="695" 
-d="M284 818l121 -84c11 -8 15 -14 15 -21c0 -8 -7 -15 -15 -15s-22 3 -43 12l-154 63c18.3 17.7 41.8 33.4 76 45zM263 283h177l-94 272h-6l-102.2 -258.7c-3.8 -10.3 3.2 -13.3 25.2 -13.3zM155 79c-15.6 -41.1 31.4 -45.4 69 -48c6 -6 6 -27 0 -33c-37 1 -87 2 -128 2
-c-30.3 0 -63 -1 -89 -2c-6 6 -6 27 0 33c43.5 3 74 9 100 71l227 536c13 0 40 11 55 20l206 -572c17.4 -48.2 51.2 -51.5 90 -55c6 -6 6 -27 0 -33c-35 1 -73 2 -114 2c-39 0 -94 -1 -131 -2c-6 6 -6 27 0 33c47.6 3.4 85.8 6.5 74 41l-58 169h-211c-24 0 -30 -4 -35 -17z
-" />
-    <glyph glyph-name="Aacute" unicode="&#xc1;" horiz-adv-x="695" 
-d="M417 820c28.6 -13.3 49.3 -30.7 62 -52l-144 -58c-21 -9 -33 -12 -42 -12s-15 7 -15 15c0 7 2 12 15 21zM263 283h177l-94 272h-6l-102.2 -258.7c-3.8 -10.3 3.2 -13.3 25.2 -13.3zM155 79c-15.6 -41.1 31.4 -45.4 69 -48c6 -6 6 -27 0 -33c-37 1 -87 2 -128 2
-c-30.3 0 -63 -1 -89 -2c-6 6 -6 27 0 33c43.5 3 74 9 100 71l227 536c13 0 40 11 55 20l206 -572c17.4 -48.2 51.2 -51.5 90 -55c6 -6 6 -27 0 -33c-35 1 -73 2 -114 2c-39 0 -94 -1 -131 -2c-6 6 -6 27 0 33c47.6 3.4 85.8 6.5 74 41l-58 169h-211c-24 0 -30 -4 -35 -17z
-" />
-    <glyph glyph-name="Acircumflex" unicode="&#xc2;" horiz-adv-x="695" 
-d="M377 808c30 -36 67 -70 103 -97c-2.79999 -9.09998 -6.89999 -17.2 -16 -21c-39 18 -73 36 -106 61c-37 -27 -69 -44 -107 -61c-9 6 -12 12 -14 21c37 28 70 63 101 97c14 8.40002 23.6 7.70001 39 0zM263 283h177l-94 272h-6l-102.2 -258.7
-c-3.8 -10.3 3.2 -13.3 25.2 -13.3zM155 79c-15.6 -41.1 31.4 -45.4 69 -48c6 -6 6 -27 0 -33c-37 1 -87 2 -128 2c-30.3 0 -63 -1 -89 -2c-6 6 -6 27 0 33c43.5 3 74 9 100 71l227 536c13 0 40 11 55 20l206 -572c17.4 -48.2 51.2 -51.5 90 -55c6 -6 6 -27 0 -33
-c-35 1 -73 2 -114 2c-39 0 -94 -1 -131 -2c-6 6 -6 27 0 33c47.6 3.4 85.8 6.5 74 41l-58 169h-211c-24 0 -30 -4 -35 -17z" />
-    <glyph glyph-name="Atilde" unicode="&#xc3;" horiz-adv-x="695" 
-d="M422 747c22 0 33 10 47 52c11 1 21 -2 27 -6c-12 -60 -41 -99 -87 -99c-22 0 -43 18 -64 32c-18 11 -37 19 -54 19c-26 0 -36 -15 -46 -48c-11 -2 -21 -1 -27 5c14 59 37 98 80 98c30 0 52 -20 72 -34c16 -12 33 -19 52 -19zM263 283h177l-94 272h-6l-102.2 -258.7
-c-3.8 -10.3 3.2 -13.3 25.2 -13.3zM155 79c-15.6 -41.1 31.4 -45.4 69 -48c6 -6 6 -27 0 -33c-37 1 -87 2 -128 2c-30.3 0 -63 -1 -89 -2c-6 6 -6 27 0 33c43.5 3 74 9 100 71l227 536c13 0 40 11 55 20l206 -572c17.4 -48.2 51.2 -51.5 90 -55c6 -6 6 -27 0 -33
-c-35 1 -73 2 -114 2c-39 0 -94 -1 -131 -2c-6 6 -6 27 0 33c47.6 3.4 85.8 6.5 74 41l-58 169h-211c-24 0 -30 -4 -35 -17z" />
-    <glyph glyph-name="Adieresis" unicode="&#xc4;" horiz-adv-x="695" 
-d="M193 706c0 26 22 48 48 48s48 -22 48 -48s-22 -48 -48 -48s-48 22 -48 48zM430 706c0 26 22 48 48 48s48 -22 48 -48s-22 -48 -48 -48s-48 22 -48 48zM263 283h177l-94 272h-6l-102.2 -258.7c-3.8 -10.3 3.2 -13.3 25.2 -13.3zM155 79c-15.6 -41.1 31.4 -45.4 69 -48
-c6 -6 6 -27 0 -33c-37 1 -87 2 -128 2c-30.3 0 -63 -1 -89 -2c-6 6 -6 27 0 33c43.5 3 74 9 100 71l227 536c13 0 40 11 55 20l206 -572c17.4 -48.2 51.2 -51.5 90 -55c6 -6 6 -27 0 -33c-35 1 -73 2 -114 2c-39 0 -94 -1 -131 -2c-6 6 -6 27 0 33c47.6 3.4 85.8 6.5 74 41
-l-58 169h-211c-24 0 -30 -4 -35 -17z" />
-    <glyph glyph-name="Aring" unicode="&#xc5;" horiz-adv-x="695" 
-d="M263 283h177l-94 272h-6l-102.2 -258.7c-3.8 -10.3 3.2 -13.3 25.2 -13.3zM155 79c-15.6 -41.1 31.4 -45.4 69 -48c6 -6 6 -27 0 -33c-37 1 -87 2 -128 2c-30.3 0 -63 -1 -89 -2c-6 6 -6 27 0 33c43.5 3 74 9 100 71l225.1 531.5c-34.3 11.5 -61.1 43.7 -61.1 80.5
-c0 46 42 85 88 85s88 -38 88 -85c0 -32.5 -20.9 -62.4 -50.6 -76.5l198.6 -551.5c17.4 -48.2 51.2 -51.5 90 -55c6 -6 6 -27 0 -33c-35 1 -73 2 -114 2c-39 0 -94 -1 -131 -2c-6 6 -6 27 0 33c47.6 3.4 85.8 6.5 74 41l-58 169h-211c-24 0 -30 -4 -35 -17zM359 767
-c-31 0 -48 -23 -48 -53c0 -28 17 -53 48 -53s48 25 48 53c0 31 -18 53 -48 53z" />
-    <glyph glyph-name="AE" unicode="&#xc6;" horiz-adv-x="865" 
-d="M271 305h158v270c0 12 -1 21 -5 23zM429 122v144h-178l-97 -187c-20.3 -39.1 32.4 -45.4 70 -48c6 -6 6 -27 0 -33c-37 1 -87 2 -128 2c-39 0 -52 -1 -89 -2c-6 6 -6 27 0 33c43.5 3 72.3 11.7 104 71l243 455c16.2 30.7 10 54 -60 57c-6 6 -6 27 0 33
-c50 -1 115 -2 115 -2h140h176c24 0 32 1 49 4c3 0 4 -1 4 -3c2 -8 17 -104 22 -145c-9.79999 -4.70001 -20.6 -6.79999 -33 -5c-22 69 -38 109 -113 109h-105c-24 0 -36 -20 -36 -44v-200h91c85 0 88 13 91 68c6 6 27 6 33 0c-1 -30 -2 -52.5 -2 -86c0 -34.3 1 -53 2 -88
-c-6 -6 -27 -6 -33 0c-3 45 -6 68 -91 68h-91v-241c0 -27 14 -43 36 -43h136c76 0 111 59 131 131c13.1 3.2 24.6 0.899994 35 -5c-8 -51 -23 -117 -37 -167c0 0 -80 2 -128 2h-214s-81 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91z" />
-    <glyph glyph-name="Ccedilla" unicode="&#xc7;" horiz-adv-x="646" 
-d="M367 -96c-19 0 -29 -1 -45 -6l-6 6l35.8 86c-211.5 2.3 -314.8 147.6 -314.8 320c0 104.3 39.6 202.2 106 263c59 54 130 85 215 85c123 0 168 -40 219 -45c10 -55 17 -103 22 -155c-11.3 -6 -21 -9 -33 -5c-26 86 -81 168 -219 168c-52 0 -110 -28 -159.6 -89
-c-36.5 -44.9 -59.4 -116.7 -59.4 -203c0 -146 93.4 -298 228 -298c93 0 161 31 232 109c11 0 18 -6 23 -15c-61 -79.8 -138.8 -125 -224.2 -133.5l-21.8 -58.5c8 2 17 3 26 3c40 0 71 -24 71 -62c0 -43 -46 -74 -107 -74c-32 0 -49 6 -74 17c0 12 3 19 10 26
-c27 -10 38 -14 58 -14c30 0 51 14 51 40c0 21 -10 35 -33 35z" />
-    <glyph glyph-name="Egrave" unicode="&#xc8;" horiz-adv-x="557" 
-d="M245 817l121 -84c11 -8 15 -14 15 -21c0 -8 -7 -15 -15 -15s-22 3 -43 12l-154 63c18.3 17.7 41.8 33.4 76 45zM281 361c85 0 88 13 91 68c6 6 27 6 33 0c-1 -24 -2 -58 -2 -86c0 -34.3 1 -62 2 -88c-6 -6 -27 -6 -33 0c-3 45 -6 68 -91 68h-91v-221c0 -47 14 -63 56 -63
-h116c76 0 111 59 131 131c13.1 3.2 24.6 1 35 -5c-8 -51 -23 -117 -37 -167c0 0 -80 2 -128 2h-215c-33 0 -93 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c40 -1 98.5 -2 129 -2h255c24 0 32 1 49 4c3 0 4 -1 4 -3
-c2 -8 17 -104 22 -145c-9.79999 -4.70001 -20.6 -6.79999 -33 -5c-22 69 -38 109 -113 109h-75c-54 0 -66 -20 -66 -64v-180h91z" />
-    <glyph glyph-name="Eacute" unicode="&#xc9;" horiz-adv-x="557" 
-d="M350 820c28.6 -13.3 49.3 -30.7 62 -52l-144 -58c-21 -9 -33 -12 -42 -12s-15 7 -15 15c0 7 2 12 15 21zM281 361c85 0 88 13 91 68c6 6 27 6 33 0c-1 -24 -2 -58 -2 -86c0 -34.3 1 -62 2 -88c-6 -6 -27 -6 -33 0c-3 45 -6 68 -91 68h-91v-221c0 -47 14 -63 56 -63h116
-c76 0 111 59 131 131c13.1 3.2 24.6 1 35 -5c-8 -51 -23 -117 -37 -167c0 0 -80 2 -128 2h-215c-33 0 -93 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c40 -1 98.5 -2 129 -2h255c24 0 32 1 49 4c3 0 4 -1 4 -3
-c2 -8 17 -104 22 -145c-9.79999 -4.70001 -20.6 -6.79999 -33 -5c-22 69 -38 109 -113 109h-75c-54 0 -66 -20 -66 -64v-180h91z" />
-    <glyph glyph-name="Ecircumflex" unicode="&#xca;" horiz-adv-x="557" 
-d="M315 808c30 -36 67 -70 103 -97c-2.79999 -9.09998 -6.89999 -17.2 -16 -21c-39 18 -73 36 -106 61c-37 -27 -69 -44 -107 -61c-9 6 -12 12 -14 21c37 28 70 63 101 97c14 8.40002 23.6 7.70001 39 0zM281 361c85 0 88 13 91 68c6 6 27 6 33 0c-1 -24 -2 -58 -2 -86
-c0 -34.3 1 -62 2 -88c-6 -6 -27 -6 -33 0c-3 45 -6 68 -91 68h-91v-221c0 -47 14 -63 56 -63h116c76 0 111 59 131 131c13.1 3.2 24.6 1 35 -5c-8 -51 -23 -117 -37 -167c0 0 -80 2 -128 2h-215c-33 0 -93 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401
-c0 83 -17 88 -87 91c-6 6 -6 27 0 33c40 -1 98.5 -2 129 -2h255c24 0 32 1 49 4c3 0 4 -1 4 -3c2 -8 17 -104 22 -145c-9.79999 -4.70001 -20.6 -6.79999 -33 -5c-22 69 -38 109 -113 109h-75c-54 0 -66 -20 -66 -64v-180h91z" />
-    <glyph glyph-name="Edieresis" unicode="&#xcb;" horiz-adv-x="557" 
-d="M324 757c0 26 22 48 48 48s48 -22 48 -48s-22 -48 -48 -48s-48 22 -48 48zM135 757c0 26 22 48 48 48s48 -22 48 -48s-22 -48 -48 -48s-48 22 -48 48zM281 361c85 0 88 13 91 68c6 6 27 6 33 0c-1 -24 -2 -58 -2 -86c0 -34.3 1 -62 2 -88c-6 -6 -27 -6 -33 0
-c-3 45 -6 68 -91 68h-91v-221c0 -47 14 -63 56 -63h116c76 0 111 59 131 131c13.1 3.2 24.6 1 35 -5c-8 -51 -23 -117 -37 -167c0 0 -80 2 -128 2h-215c-33 0 -93 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c40 -1 98.5 -2 129 -2
-h255c24 0 32 1 49 4c3 0 4 -1 4 -3c2 -8 17 -104 22 -145c-9.79999 -4.70001 -20.6 -6.79999 -33 -5c-22 69 -38 109 -113 109h-75c-54 0 -66 -20 -66 -64v-180h91z" />
-    <glyph glyph-name="Igrave" unicode="&#xcc;" horiz-adv-x="297" 
-d="M99 817l121 -84c11 -8 15 -14 15 -21c0 -8 -7 -15 -15 -15s-22 3 -43 12l-154 63c18.3 17.7 41.8 33.4 76 45zM191 122c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-45 1 -93.4 2 -129 2c-36.3 0 -85 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91
-c-6 6 -6 27 0 33c47 -1 95.5 -2 129 -2c38.5 0 86 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-401z" />
-    <glyph glyph-name="Iacute" unicode="&#xcd;" horiz-adv-x="297" 
-d="M210 819c28.6 -13.3 49.3 -30.7 62 -52l-144 -58c-21 -9 -33 -12 -42 -12s-15 7 -15 15c0 7 2 12 15 21zM191 122c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-45 1 -93.4 2 -129 2c-36.3 0 -85 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91
-c-6 6 -6 27 0 33c47 -1 95.5 -2 129 -2c38.5 0 86 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-401z" />
-    <glyph glyph-name="Icircumflex" unicode="&#xce;" horiz-adv-x="297" 
-d="M165 808c30 -36 67 -70 103 -97c-2.79999 -9.09998 -6.89999 -17.2 -16 -21c-39 18 -73 36 -106 61c-37 -27 -69 -44 -107 -61c-9 6 -12 12 -14 21c37 28 70 63 101 97c14 8.40002 23.6 7.70001 39 0zM191 122c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33
-c-45 1 -93.4 2 -129 2c-36.3 0 -85 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c47 -1 95.5 -2 129 -2c38.5 0 86 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-401z" />
-    <glyph glyph-name="Idieresis" unicode="&#xcf;" horiz-adv-x="297" 
-d="M195 757c0 26 22 48 48 48s48 -22 48 -48s-22 -48 -48 -48s-48 22 -48 48zM6 757c0 26 22 48 48 48s48 -22 48 -48s-22 -48 -48 -48s-48 22 -48 48zM191 122c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-45 1 -93.4 2 -129 2c-36.3 0 -85 -1 -130 -2c-6 6 -6 27 0 33
-c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c47 -1 95.5 -2 129 -2c38.5 0 86 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-401z" />
-    <glyph glyph-name="Eth" unicode="&#xd0;" horiz-adv-x="701" 
-d="M191 84c0 -32 11 -52 109 -52c141 0 262 50 262 252c0 154 -71 329 -287 329c-49 0 -84 -14 -84 -49v-238h97c9 0 12 -8 12 -13c0 -11 -9 -26 -21 -26h-88v-203zM148 645c39 0 94 2 165 2c192 0 345 -153 345 -339c0 -246 -186 -310 -327 -310c-103 0 -145 2 -182 2
-c-37.7 0 -91 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v165h-87c-8 0 -11 8 -11 14c0 10 10 25 19 25h79v197c0 83 -17 88 -87 91c-6 6 -6 27 0 33c40 -1 93.3 -2 129 -2z" />
-    <glyph glyph-name="Ntilde" unicode="&#xd1;" horiz-adv-x="699" 
-d="M417 745c22 0 33 10 47 52c11 1 21 -2 27 -6c-12 -60 -41 -99 -87 -99c-22 0 -43 18 -64 32c-18 11 -37 19 -54 19c-26 0 -36 -15 -46 -48c-11 -2 -21 -1 -27 5c14 59 37 98 80 98c30 0 52 -20 72 -34c16 -12 33 -19 52 -19zM556 512c0 91 -17 95 -87 102
-c-6 6 -6 27 0 33c44 -1 89.7 -2 111 -2c23.7 0 71 1 112 2c6 -6 6 -27 0 -33c-70 -7 -87 -13 -87 -102v-491c0 -19 -9 -31 -23 -31c-16 0 -29 9 -40 24l-349 441c-17 22 -28 33 -34 33c-8 0 -8 -15 -8 -49v-306c0 -91 17 -95 87 -102c6 -6 6 -27 0 -33c-42 1 -87.9 2 -111 2
-c-23.6 0 -69 -1 -112 -2c-6 6 -6 27 0 33c70 7 87 13 87 102v417c-6 26 -36 61 -79 64c-6 6 -6 27 0 33l135 -2l343 -435c29 -37 44 -55 48 -55c7 0 7 11 7 30v327z" />
-    <glyph glyph-name="Ograve" unicode="&#xd2;" horiz-adv-x="702" 
-d="M304 819l121 -84c11 -8 15 -14 15 -21c0 -8 -7 -15 -15 -15s-22 3 -43 12l-154 63c18.3 17.7 41.8 33.4 76 45zM331 622c-99 0 -198 -85 -198 -295c0 -192 115 -301 237 -301c114 0 200 105 200 284c0 202 -107 312 -239 312zM666 329c0 -84 -22 -156.3 -61.8 -213
-c-54.9 -78.3 -143.4 -126 -254.2 -126c-170 0 -313 123 -313 320c0 193.9 113.3 348 307 348c179 0 322 -122 322 -329z" />
-    <glyph glyph-name="Oacute" unicode="&#xd3;" horiz-adv-x="702" 
-d="M387 820c28.6 -13.3 49.3 -30.7 62 -52l-144 -58c-21 -9 -33 -12 -42 -12s-15 7 -15 15c0 7 2 12 15 21zM331 622c-99 0 -198 -85 -198 -295c0 -192 115 -301 237 -301c114 0 200 105 200 284c0 202 -107 312 -239 312zM666 329c0 -84 -22 -156.3 -61.8 -213
-c-54.9 -78.3 -143.4 -126 -254.2 -126c-170 0 -313 123 -313 320c0 193.9 113.3 348 307 348c179 0 322 -122 322 -329z" />
-    <glyph glyph-name="Ocircumflex" unicode="&#xd4;" horiz-adv-x="702" 
-d="M366 808c30 -36 67 -70 103 -97c-2.79999 -9.09998 -6.89999 -17.2 -16 -21c-39 18 -73 36 -106 61c-37 -27 -69 -44 -107 -61c-9 6 -12 12 -14 21c37 28 70 63 101 97c14 8.40002 23.6 7.70001 39 0zM331 622c-99 0 -198 -85 -198 -295c0 -192 115 -301 237 -301
-c114 0 200 105 200 284c0 202 -107 312 -239 312zM666 329c0 -84 -22 -156.3 -61.8 -213c-54.9 -78.3 -143.4 -126 -254.2 -126c-170 0 -313 123 -313 320c0 193.9 113.3 348 307 348c179 0 322 -122 322 -329z" />
-    <glyph glyph-name="Otilde" unicode="&#xd5;" horiz-adv-x="702" 
-d="M410 745c22 0 33 10 47 52c11 1 21 -2 27 -6c-12 -60 -41 -99 -87 -99c-22 0 -43 18 -64 32c-18 11 -37 19 -54 19c-26 0 -36 -15 -46 -48c-11 -2 -21 -1 -27 5c14 59 37 98 80 98c30 0 52 -20 72 -34c16 -12 33 -19 52 -19zM331 622c-99 0 -198 -85 -198 -295
-c0 -192 115 -301 237 -301c114 0 200 105 200 284c0 202 -107 312 -239 312zM666 329c0 -84 -22 -156.3 -61.8 -213c-54.9 -78.3 -143.4 -126 -254.2 -126c-170 0 -313 123 -313 320c0 193.9 113.3 348 307 348c179 0 322 -122 322 -329z" />
-    <glyph glyph-name="Odieresis" unicode="&#xd6;" horiz-adv-x="702" 
-d="M97 706c0 26 22 48 48 48s48 -22 48 -48s-22 -48 -48 -48s-48 22 -48 48zM506 706c0 26 22 48 48 48s48 -22 48 -48s-22 -48 -48 -48s-48 22 -48 48zM331 622c-99 0 -198 -85 -198 -295c0 -192 115 -301 237 -301c114 0 200 105 200 284c0 202 -107 312 -239 312z
-M666 329c0 -84 -22 -156.3 -61.8 -213c-54.9 -78.3 -143.4 -126 -254.2 -126c-170 0 -313 123 -313 320c0 193.9 113.3 348 307 348c179 0 322 -122 322 -329z" />
-    <glyph glyph-name="multiply" unicode="&#xd7;" horiz-adv-x="550" 
-d="M308 290l123 -122l-35 -35l-122 122l-122 -122l-36 35l123 122l-123 123l36 35l122 -123l122 123l35 -35z" />
-    <glyph glyph-name="Oslash" unicode="&#xd8;" horiz-adv-x="702" 
-d="M108 -13c-19 0 -33 17 -36 32l51.5 63.4c-53.3 55.1 -86.5 132.8 -86.5 227.6c0 193.9 113.3 348 307 348c74.7 0 143.1 -21.2 197.5 -61l49.5 61c19 0 33.7 -15.1 36 -30l-50 -61.7c55.2 -56.2 89 -136.7 89 -237.3c0 -84 -22 -156.3 -61.8 -213
-c-54.9 -78.3 -143.4 -126 -254.2 -126c-71 0 -137.3 21.5 -190.4 60.8zM331 622c-99 0 -198 -85 -198 -295c0 -72.2 16.2 -132.6 43 -179.9l322.3 396.7c-43.1 51.4 -102.2 78.2 -167.3 78.2zM526 503.3l-321.6 -397.2c44.1 -52.3 104 -80.1 165.6 -80.1
-c114 0 200 105 200 284c0 78.8 -16.3 143.6 -44 193.3z" />
-    <glyph glyph-name="Ugrave" unicode="&#xd9;" horiz-adv-x="661" 
-d="M276 818l121 -84c11 -8 15 -14 15 -21c0 -8 -7 -15 -15 -15s-22 3 -43 12l-154 63c18.3 17.7 41.8 33.4 76 45zM172 523v-257c0 -65 2 -141 51 -188c30.1 -28.9 71 -47 119 -47c169 0 184 134 184 246v246c0 81 -17 84 -92 91c-6 6 -6 27 0 33c46 -1 94.5 -2 116 -2
-c23.2 0 64 1 102 2c6 -6 6 -27 0 -33c-60 -7 -77 -10.7 -77 -91v-228c0 -178 -49 -305 -254 -305c-102.5 0 -234 39 -234 243v290c0 83 -17 88 -77 91c-6 6 -6 27 0 33c39 -1 80 -2 119 -2c39.4 0 88 1 135 2c6 -6 6 -27 0 -33c-77 -3 -92 -8 -92 -91z" />
-    <glyph glyph-name="Uacute" unicode="&#xda;" horiz-adv-x="661" 
-d="M405 819c28.6 -13.3 49.3 -30.7 62 -52l-144 -58c-21 -9 -33 -12 -42 -12s-15 7 -15 15c0 7 2 12 15 21zM172 523v-257c0 -65 2 -141 51 -188c30.1 -28.9 71 -47 119 -47c169 0 184 134 184 246v246c0 81 -17 84 -92 91c-6 6 -6 27 0 33c46 -1 94.5 -2 116 -2
-c23.2 0 64 1 102 2c6 -6 6 -27 0 -33c-60 -7 -77 -10.7 -77 -91v-228c0 -178 -49 -305 -254 -305c-102.5 0 -234 39 -234 243v290c0 83 -17 88 -77 91c-6 6 -6 27 0 33c39 -1 80 -2 119 -2c39.4 0 88 1 135 2c6 -6 6 -27 0 -33c-77 -3 -92 -8 -92 -91z" />
-    <glyph glyph-name="Ucircumflex" unicode="&#xdb;" horiz-adv-x="661" 
-d="M368 808c30 -36 67 -70 103 -97c-2.79999 -9.09998 -6.89999 -17.2 -16 -21c-39 18 -73 36 -106 61c-37 -27 -69 -44 -107 -61c-9 6 -12 12 -14 21c37 28 70 63 101 97c14 8.40002 23.6 7.70001 39 0zM172 523v-257c0 -65 2 -141 51 -188c30.1 -28.9 71 -47 119 -47
-c169 0 184 134 184 246v246c0 81 -17 84 -92 91c-6 6 -6 27 0 33c46 -1 94.5 -2 116 -2c23.2 0 64 1 102 2c6 -6 6 -27 0 -33c-60 -7 -77 -10.7 -77 -91v-228c0 -178 -49 -305 -254 -305c-102.5 0 -234 39 -234 243v290c0 83 -17 88 -77 91c-6 6 -6 27 0 33
-c39 -1 80 -2 119 -2c39.4 0 88 1 135 2c6 -6 6 -27 0 -33c-77 -3 -92 -8 -92 -91z" />
-    <glyph glyph-name="Udieresis" unicode="&#xdc;" horiz-adv-x="667" 
-d="M323 -10c-89 0 -234 42 -234 246v287c0 83 -16.5 88 -77 91c-6 6 -6 27 0 33c37 -1 81 -2 120 -2c41 0 60 1 85 2c13.9 0 13 -31 4 -33c-31 -5 -47 -28 -47 -91v-254c0 -65 -1 -135 52 -188c29 -29 71 -50 119 -50c168 0 184 134 184 246v246c0 66 -13 84 -48 91
-c-14.7 11 -11.7 33 7 33c26 0 44 -2 67 -2s67 1 97 2c6 -6 6 -27 0 -33c-61 -3 -74 -8 -74 -91v-228c0 -178 -49 -305 -255 -305zM232 707c0 26 21 47 47 47s47 -21 47 -47s-21 -47 -47 -47s-47 21 -47 47zM376 707c0 26 21 47 47 47s47 -21 47 -47s-21 -47 -47 -47
-s-47 21 -47 47z" />
-    <glyph glyph-name="Yacute" unicode="&#xdd;" horiz-adv-x="575" 
-d="M360 820c28.6 -13.3 49.3 -30.7 62 -52l-144 -58c-21 -9 -33 -12 -42 -12s-15 7 -15 15c0 7 2 12 15 21zM337 122c0 -83 17 -88 97 -91c6 -6 6 -27 0 -33c-50 1 -100.3 2 -139 2c-38.6 0 -91 -1 -140 -2c-6 6 -6 27 0 33c80 3 97 8 97 91v127c0 37 -3.5 47.5 -21 77
-l-131.3 221c-34.5 58.1 -51.7 64 -93.7 67c-6 6 -7 27 -1 33c30 -1 63 -2 102 -2c40 0 78 1 114 2c6 -6 6 -27 0 -33c-56 -3 -60 -12.6 -35.8 -55.2l116 -204.8c9 -15.9 13.8 -17.2 21.8 -2l110.8 209c21.4 40.4 5.5 50 -38.8 53c-6 6 -6 27 0 33c32 -1 68 -2 91 -2
-s55 1 83 2c6 -6 6 -27 0 -33c-44.7 -4.29999 -67 -13.3 -95 -64l-119.5 -216c-16.4 -29.6 -17.5 -46.5 -17.5 -76.3v-135.7z" />
-    <glyph glyph-name="Thorn" unicode="&#xde;" horiz-adv-x="527" 
-d="M183 479v-291c9 -3 33 -5 71 -5c72 0 146 31 146 160c0 120 -69 147 -128 147c-19 0 -68 -5 -89 -11zM183 122c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-50 1 -79 2 -129 2c-51 0 -81 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33
-c50 -1 79 -2 129 -2c51 0 81 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-4c36 2 71 4 90 4c185 0 220 -109 220 -180c0 -75 -56 -193 -234 -193c-35 0 -61 4 -76 9v-37z" />
-    <glyph glyph-name="germandbls" unicode="&#xdf;" horiz-adv-x="541" 
-d="M92 122v264c0 8 -3 12 -12 12h-51c-6 6 2 33 15 33c36.1 0 48 5 48 46c0 165 125 221 204 221c104 0 152 -63 152 -111c0 -77 -58 -123 -128 -176v-2c79 -52 180 -120 180 -236c0 -105 -64 -183 -156 -183c-84 0 -104 52 -104 96c0 16 15 35 31 35c20 0 28 -10 28 -30
-c0 -17 -8 -26 -8 -38c0 -30 30 -30 53 -30c30 0 71 42 71 133c0 93 -71 176 -155 240v13c67 52 105 92 105 165c0 54 -25 91 -78 91c-104 0 -116 -115 -116 -223v-320c0 -83 12 -86 48 -91c6 -6 6 -27 0 -33c-23 1 -53 2 -87 2c-40 0 -79 -1 -109 -2c-6 6 -6 27 0 33
-c57 3 69 8 69 91z" />
-    <glyph glyph-name="agrave" unicode="&#xe0;" horiz-adv-x="457" 
-d="M196 671l70 -126c5 -10 6 -17 6 -24c0 -5 -7 -11 -15 -11c-6 0 -13 5 -29 20l-114 109l2 11c8 6 31 23 65 23c5 0 11 -1 15 -2zM293 233l-79 -21c-74 -19 -95 -65 -95 -110c0 -31 22 -71 72 -71c28 0 62 23 88 44c8 6 14 13 14 26v132zM293 48h-2l-20 -16
-c-44 -34 -74.2 -42 -109 -42c-70 0 -126 26 -126 108c0 68 69 121 165 145l86 21c3 1 6 5 6 12c0 113 -47 130 -81 130c-38 0 -80 -11 -80 -42c0 -11 1 -17 2 -20c2 -4 3 -11 3 -18c0 -13 -18 -34 -47 -34c-23 0 -35 12 -35 36c0 57 83 111 165 111c73 0 151 -27 151 -169
-v-147c0 -46 1 -85 30 -85c12.7 0 29.5 9.8 37 16c11.3 -6.3 15.3 -14.7 17 -27c-20.7 -20 -56.7 -37 -95 -37c-50.4 0 -61 27 -67 58z" />
-    <glyph glyph-name="aacute" unicode="&#xe1;" horiz-adv-x="457" 
-d="M244 671c3 1 9 2 14 2c6.39999 0 32 -1 55 -23l3 -11l-115 -109c-15 -15 -23 -19 -30 -19s-14 6 -14 13c0 11.2 3.3 15.2 11.4 28zM293 233l-79 -21c-74 -19 -95 -65 -95 -110c0 -31 22 -71 72 -71c28 0 62 23 88 44c8 6 14 13 14 26v132zM293 48h-2l-20 -16
-c-44 -34 -74.2 -42 -109 -42c-70 0 -126 26 -126 108c0 68 69 121 165 145l86 21c3 1 6 5 6 12c0 113 -47 130 -81 130c-38 0 -80 -11 -80 -42c0 -11 1 -17 2 -20c2 -4 3 -11 3 -18c0 -13 -18 -34 -47 -34c-23 0 -35 12 -35 36c0 57 83 111 165 111c73 0 151 -27 151 -169
-v-147c0 -46 1 -85 30 -85c12.7 0 29.5 9.8 37 16c11.3 -6.3 15.3 -14.7 17 -27c-20.7 -20 -56.7 -37 -95 -37c-50.4 0 -61 27 -67 58z" />
-    <glyph glyph-name="acircumflex" unicode="&#xe2;" horiz-adv-x="457" 
-d="M231 660c29 -47 73 -100 109 -140c-5 -7 -13.6 -15.1 -23 -17c-38 24 -73 52 -103 83c-32 -32 -65 -61 -104 -83c-9 2 -16 8 -22 17c36 40 82 94 111 140c10.7 2.29999 21.3 3 32 0zM293 233l-79 -21c-74 -19 -95 -65 -95 -110c0 -31 22 -71 72 -71c28 0 62 23 88 44
-c8 6 14 13 14 26v132zM293 48h-2l-20 -16c-44 -34 -74.2 -42 -109 -42c-70 0 -126 26 -126 108c0 68 69 121 165 145l86 21c3 1 6 5 6 12c0 113 -47 130 -81 130c-38 0 -80 -11 -80 -42c0 -11 1 -17 2 -20c2 -4 3 -11 3 -18c0 -13 -18 -34 -47 -34c-23 0 -35 12 -35 36
-c0 57 83 111 165 111c73 0 151 -27 151 -169v-147c0 -46 1 -85 30 -85c12.7 0 29.5 9.8 37 16c11.3 -6.3 15.3 -14.7 17 -27c-20.7 -20 -56.7 -37 -95 -37c-50.4 0 -61 27 -67 58z" />
-    <glyph glyph-name="atilde" unicode="&#xe3;" horiz-adv-x="457" 
-d="M283 573c22 0 33 10 47 52c11 1 21 -2 27 -6c-12 -60 -41 -99 -87 -99c-22 0 -43 18 -64 32c-18 11 -37 19 -54 19c-26 0 -36 -15 -46 -48c-11 -2 -21 -1 -27 5c14 59 37 98 80 98c30 0 52 -20 72 -34c16 -12 33 -19 52 -19zM293 233l-79 -21c-74 -19 -95 -65 -95 -110
-c0 -31 22 -71 72 -71c28 0 62 23 88 44c8 6 14 13 14 26v132zM293 48h-2l-20 -16c-44 -34 -74.2 -42 -109 -42c-70 0 -126 26 -126 108c0 68 69 121 165 145l86 21c3 1 6 5 6 12c0 113 -47 130 -81 130c-38 0 -80 -11 -80 -42c0 -11 1 -17 2 -20c2 -4 3 -11 3 -18
-c0 -13 -18 -34 -47 -34c-23 0 -35 12 -35 36c0 57 83 111 165 111c73 0 151 -27 151 -169v-147c0 -46 1 -85 30 -85c12.7 0 29.5 9.8 37 16c11.3 -6.3 15.3 -14.7 17 -27c-20.7 -20 -56.7 -37 -95 -37c-50.4 0 -61 27 -67 58z" />
-    <glyph glyph-name="adieresis" unicode="&#xe4;" horiz-adv-x="457" 
-d="M83 575c0 26 21 48 47 48s47 -22 47 -48s-21 -47 -47 -47s-47 21 -47 47zM252 575c0 26 21 48 47 48s47 -22 47 -48s-21 -47 -47 -47s-47 21 -47 47zM293 233l-79 -21c-74 -19 -95 -65 -95 -110c0 -31 22 -71 72 -71c28 0 62 23 88 44c8 6 14 13 14 26v132zM293 48h-2
-l-20 -16c-44 -34 -74.2 -42 -109 -42c-70 0 -126 26 -126 108c0 68 69 121 165 145l86 21c3 1 6 5 6 12c0 113 -47 130 -81 130c-38 0 -80 -11 -80 -42c0 -11 1 -17 2 -20c2 -4 3 -11 3 -18c0 -13 -18 -34 -47 -34c-23 0 -35 12 -35 36c0 57 83 111 165 111
-c73 0 151 -27 151 -169v-147c0 -46 1 -85 30 -85c12.7 0 29.5 9.8 37 16c11.3 -6.3 15.3 -14.7 17 -27c-20.7 -20 -56.7 -37 -95 -37c-50.4 0 -61 27 -67 58z" />
-    <glyph glyph-name="aring" unicode="&#xe5;" horiz-adv-x="457" 
-d="M210 635c-31 0 -48 -23 -48 -53c0 -28 17 -53 48 -53s48 25 48 53c0 31 -18 53 -48 53zM122 582c0 46 42 85 88 85s88 -38 88 -85c0 -45 -40 -85 -88 -85c-46 0 -88 39 -88 85zM293 233l-79 -21c-74 -19 -95 -65 -95 -110c0 -31 22 -71 72 -71c28 0 62 23 88 44
-c8 6 14 13 14 26v132zM293 48h-2l-20 -16c-44 -34 -74.2 -42 -109 -42c-70 0 -126 26 -126 108c0 68 69 121 165 145l86 21c3 1 6 5 6 12c0 113 -47 130 -81 130c-38 0 -80 -11 -80 -42c0 -11 1 -17 2 -20c2 -4 3 -11 3 -18c0 -13 -18 -34 -47 -34c-23 0 -35 12 -35 36
-c0 57 83 111 165 111c73 0 151 -27 151 -169v-147c0 -46 1 -85 30 -85c12.7 0 29.5 9.8 37 16c11.3 -6.3 15.3 -14.7 17 -27c-20.7 -20 -56.7 -37 -95 -37c-50.4 0 -61 27 -67 58z" />
-    <glyph glyph-name="ae" unicode="&#xe6;" horiz-adv-x="687" 
-d="M265 384c-14.7 15.3 -44 22 -65 22c-39 0 -77 -14 -77 -43c0 -10 1 -17 3 -20c2 -4 3 -11 3 -18c0 -16 -14 -33 -39 -33c-31 0 -40 25 -40 45c0 58 78 102 160 102c24 0 101 -3 138 -70c33 45 85 70 142 70c114 0 158 -66 158 -100c0 -81 -46 -118 -277 -121
-c0 -90 59 -179 134 -179c54 0 89 25 119 60c8.70001 -0.800003 16.7 -10.7 20 -16c-29 -54 -87 -93 -153 -93c-91 0 -129.7 45.1 -151 69c-8 9 -12.1 5.1 -24 -7c-46 -47 -96.9 -62 -134 -62c-36 0 -72.1 5.5 -94 18c-34.5 19.6 -49 52.4 -49 94c0 40 27 82 63 103.2
-c43.1 25.4 109.2 38.7 196 44.8c-1 79 -10 110 -33 134zM298 215c-69.3 -5.5 -119.3 -22.4 -150 -45.1c-24.7 -18.2 -37 -40.2 -37 -62.9c0 -43 27 -75 83 -75c32 0 84 41 99 81c4 19 5 52 5 102zM372 253c153 2 200 22 200 83c0 32 -35 70 -83 70c-68 0 -109 -68 -117 -153
-z" />
-    <glyph glyph-name="ccedilla" unicode="&#xe7;" horiz-adv-x="428" 
-d="M228 -96c-19 0 -29 -1 -45 -6l-6 6l36.2 86.9c-112.5 9.7 -176.2 95.7 -176.2 217.1c0 142 106 231 205 231c96 0 153 -40 153 -95c0 -31 -28 -44 -49 -44s-35 9 -38 36c-4 35 -12 70 -71 70c-66 0 -114 -66 -114 -176c0 -117 61 -191 134 -191c43 0 86 22 120 66
-c9 -1 17 -5 21 -14c-46.5 -76.3 -95.6 -98.1 -150.6 -100.7l-21.4 -57.3c8 2 17 3 26 3c40 0 71 -24 71 -62c0 -43 -46 -74 -107 -74c-32 0 -49 6 -74 17c0 12 3 19 10 26c27 -10 38 -14 58 -14c30 0 51 14 51 40c0 21 -10 35 -33 35z" />
-    <glyph glyph-name="egrave" unicode="&#xe8;" horiz-adv-x="447" 
-d="M210 671l70 -126c5 -10 6 -17 6 -24c0 -5 -7 -11 -15 -11c-6 0 -13 5 -29 20l-114 109l2 11c8 6 31 23 65 23c5 0 11 -1 15 -2zM124 282l181 3c11 0.200012 15 5 15 14c0 84 -45 105 -83 105c-24 0 -94 -9 -113 -122zM386 93c12 -1 18 -6 21 -16
-c-40 -52 -94 -87 -170 -87c-72 0 -119 24 -153 64c-33 38 -47 92 -47 148c0 152 113 235 200 235c139 0 169 -90 169 -174c0 -11 -7 -17 -19 -17l-266 2c0 -58 12 -104 32 -137c31 -51 73 -72 109 -72c58 0 87 16 124 54z" />
-    <glyph glyph-name="eacute" unicode="&#xe9;" horiz-adv-x="447" 
-d="M270 671c3 1 9 2 14 2c6.39999 0 32 -1 55 -23l3 -11l-115 -109c-15 -15 -23 -19 -30 -19s-14 6 -14 13c0 11.2 3.3 15.2 11.4 28zM124 282l181 3c11 0.200012 15 5 15 14c0 84 -45 105 -83 105c-24 0 -94 -9 -113 -122zM386 93c12 -1 18 -6 21 -16
-c-40 -52 -94 -87 -170 -87c-72 0 -119 24 -153 64c-33 38 -47 92 -47 148c0 152 113 235 200 235c139 0 169 -90 169 -174c0 -11 -7 -17 -19 -17l-266 2c0 -58 12 -104 32 -137c31 -51 73 -72 109 -72c58 0 87 16 124 54z" />
-    <glyph glyph-name="ecircumflex" unicode="&#xea;" horiz-adv-x="447" 
-d="M249 660c29 -47 73 -100 109 -140c-5 -7 -13.6 -15.1 -23 -17c-38 24 -73 52 -103 83c-32 -32 -65 -61 -104 -83c-9 2 -16 8 -22 17c36 40 82 94 111 140c10.7 2.29999 21.3 3 32 0zM124 282l181 3c11 0.200012 15 5 15 14c0 84 -45 105 -83 105c-24 0 -94 -9 -113 -122z
-M386 93c12 -1 18 -6 21 -16c-40 -52 -94 -87 -170 -87c-72 0 -119 24 -153 64c-33 38 -47 92 -47 148c0 152 113 235 200 235c139 0 169 -90 169 -174c0 -11 -7 -17 -19 -17l-266 2c0 -58 12 -104 32 -137c31 -51 73 -72 109 -72c58 0 87 16 124 54z" />
-    <glyph glyph-name="edieresis" unicode="&#xeb;" horiz-adv-x="447" 
-d="M99 575c0 26 21 48 47 48s47 -22 47 -48s-21 -47 -47 -47s-47 21 -47 47zM268 575c0 26 21 48 47 48s47 -22 47 -48s-21 -47 -47 -47s-47 21 -47 47zM124 282l181 3c11 0.200012 15 5 15 14c0 84 -45 105 -83 105c-24 0 -94 -9 -113 -122zM386 93c12 -1 18 -6 21 -16
-c-40 -52 -94 -87 -170 -87c-72 0 -119 24 -153 64c-33 38 -47 92 -47 148c0 152 113 235 200 235c139 0 169 -90 169 -174c0 -11 -7 -17 -19 -17l-266 2c0 -58 12 -104 32 -137c31 -51 73 -72 109 -72c58 0 87 16 124 54z" />
-    <glyph glyph-name="igrave" unicode="&#xec;" horiz-adv-x="271" 
-d="M99 671l70 -126c5 -10 6 -17 6 -24c0 -5 -7 -11 -15 -11c-6 0 -13 5 -29 20l-114 109l2 11c8 6 31 23 65 23c5 0 11 -1 15 -2zM181 122c0 -83 11 -87 72 -91c6 -6 6 -27 0 -33c-33 1 -71 2 -111 2s-79 -1 -112 -2c-6 6 -6 27 0 33c61 5 72 8 72 91v195
-c0 57 -10.5 62.9 -65 68c-2 6 -4 22 -2 28c69 9 108.5 18 137 29c8 0 13 -3 13 -7c0 0 -4 -64 -4 -113.7v-199.3z" />
-    <glyph glyph-name="iacute" unicode="&#xed;" horiz-adv-x="271" 
-d="M163 671c3 1 9 2 14 2c6.39999 0 32 -1 55 -23l3 -11l-115 -109c-15 -15 -23 -19 -30 -19s-14 6 -14 13c0 11.2 3.3 15.2 11.4 28zM181 122c0 -83 11 -87 72 -91c6 -6 6 -27 0 -33c-33 1 -71 2 -111 2s-79 -1 -112 -2c-6 6 -6 27 0 33c61 5 72 8 72 91v195
-c0 57 -10.5 62.9 -65 68c-2 6 -4 22 -2 28c69 9 108.5 18 137 29c8 0 13 -3 13 -7c0 0 -4 -64 -4 -113.7v-199.3z" />
-    <glyph glyph-name="icircumflex" unicode="&#xee;" horiz-adv-x="271" 
-d="M141 660c29 -47 73 -100 109 -140c-5 -7 -13.6 -15.1 -23 -17c-38 24 -73 52 -103 83c-32 -32 -65 -61 -104 -83c-9 2 -16 8 -22 17c36 40 82 94 111 140c10.7 2.29999 21.3 3 32 0zM181 122c0 -83 11 -87 72 -91c6 -6 6 -27 0 -33c-33 1 -71 2 -111 2s-79 -1 -112 -2
-c-6 6 -6 27 0 33c61 5 72 8 72 91v195c0 57 -10.5 62.9 -65 68c-2 6 -4 22 -2 28c69 9 108.5 18 137 29c8 0 13 -3 13 -7c0 0 -4 -64 -4 -113.7v-199.3z" />
-    <glyph glyph-name="idieresis" unicode="&#xef;" horiz-adv-x="271" 
-d="M-4 575c0 26 21 48 47 48s47 -22 47 -48s-21 -47 -47 -47s-47 21 -47 47zM165 575c0 26 21 48 47 48s47 -22 47 -48s-21 -47 -47 -47s-47 21 -47 47zM181 122c0 -83 11 -87 72 -91c6 -6 6 -27 0 -33c-33 1 -71 2 -111 2s-79 -1 -112 -2c-6 6 -6 27 0 33c61 5 72 8 72 91
-v195c0 57 -10.5 62.9 -65 68c-2 6 -4 22 -2 28c69 9 108.5 18 137 29c8 0 13 -3 13 -7c0 0 -4 -64 -4 -113.7v-199.3z" />
-    <glyph glyph-name="eth" unicode="&#xf0;" horiz-adv-x="486" 
-d="M248 26c47 0 115 35 115 197c0 46 -4 90 -16 133c-23 29 -58 48 -101 48c-101 0 -126 -103 -126 -179c0 -114 57 -199 128 -199zM34 208c0 173 132 231 214 231c26 0 51 -4 76 -14c-22 53 -52 101 -89 147l-109 -73l-22 32l105 71l-16 16c-21 22 -44 42 -68 59l16 21
-c35 -19 71 -43 106 -71l106 71l22 -32l-97 -65l18 -18c86 -86 151 -200 151 -346c0 -169 -104 -247 -216 -247c-124 0 -197 114 -197 218z" />
-    <glyph glyph-name="ntilde" unicode="&#xf1;" horiz-adv-x="542" 
-d="M346 573c22 0 33 10 47 52c11 1 21 -2 27 -6c-12 -60 -41 -99 -87 -99c-22 0 -43 18 -64 32c-18 11 -37 19 -54 19c-26 0 -36 -15 -46 -48c-11 -2 -21 -1 -27 5c14 59 37 98 80 98c30 0 52 -20 72 -34c16 -12 33 -19 52 -19zM184 358c59.3 68 115 81 164 81
-c35 0 66 -12 83 -34c23 -31 27 -79 27 -134v-149c0 -82 11 -86 67 -91c5 -6 5 -27 0 -33c-30 1 -66 2 -106 2s-72 -1 -102 -2c-5 6 -5 27 0 33c52 5 62 9 62 91v152c0 30 -2 57 -12 77c-12 23 -33 36 -53 36c-39 0 -84 -22 -122 -59c-8 -9 -17 -21 -17 -42v-164
-c0 -82 10 -86 61 -91c6 -6 6 -27 0 -33c-30 1 -60 2 -100 2s-80 -1 -110 -2c-6 6 -6 27 0 33c60 5 70 9 70 91v195c0 58 -11 63 -65 68c-2 6 -4 22 -2 28c69 9 95 18 123 29c8 0 9.89999 -3.39999 12 -8c4.7 -10.3 7 -49 8 -76c0.300003 -9.39999 5.89999 -7 12 0z" />
-    <glyph glyph-name="oslash" unicode="&#xf8;" horiz-adv-x="504" 
-d="M414 454c17 0 27 -10 31 -23l-41.9 -51.1c42.2 -44.6 59.9 -107.9 59.9 -165.9c0 -61.3 -20.3 -124.2 -65.1 -168c-34.1 -33.3 -82.5 -56 -146.9 -56c-55.1 0 -99 17 -132.2 43.8l-50.8 -61.8c-16 0 -28 11 -30 26l52.6 63.8c-33.3 40.7 -49.6 93.3 -49.6 143.2
-c0 63.2 19 121.4 55.3 164c36.6 43 90.9 70 156.7 70c50 0 89.7 -13 120.6 -34zM238 404c-90 0 -111 -89 -111 -176c0 -29.7 5.10001 -66.8 17.3 -101.1l189.1 229.3c-23.6 31.5 -56.1 47.8 -95.4 47.8zM353.8 320l-191 -232.6c21.7 -36 54.6 -62.4 102.2 -62.4
-c47 0 112 31 112 157c0 56.4 -8.20001 102.6 -23.2 138z" />
-    <glyph glyph-name="udieresis" unicode="&#xfc;" horiz-adv-x="531" 
-d="M123 575c0 26 21 48 47 48s47 -22 47 -48s-21 -47 -47 -47s-47 21 -47 47zM292 575c0 26 21 48 47 48s47 -22 47 -48s-21 -47 -47 -47s-47 21 -47 47zM217 -10c-99 0 -129 67 -129 136v192c0 65 -14 76 -62 80c-6 6 -6 27 0 33c34 -1 70 -2 102 -2c15 0 30 1 35 2
-c5 0 8 -3 8 -6c0 0 -4 -73 -4 -103v-182c0 -89 50 -103 80 -103c25 0 63 16 100 48c14 12 16 20 16 39v193c0 66 -13 78 -62 81c-6 6 -6 27 0 33c34 -1 70 -2 102 -2c15 0 30 1 35 2c5 0 8 -3 8 -6c0 0 -4 -73 -4 -103v-192c0 -49 9 -68 73 -73c6 -6 6 -21 0 -27
-c-61 -7 -96 -22 -118 -40c-6.5 -2.5 -11 -3 -19 0c0 0 -8.5 33.5 -11 59c-0.700012 7 -10 5 -15 1c-49 -40 -96 -60 -135 -60z" />
-    <glyph glyph-name="yacute" unicode="&#xfd;" horiz-adv-x="515" 
-d="M315 671c3 1 9 2 14 2c6.39999 0 32 -1 55 -23l3 -11l-115 -109c-15 -15 -23 -19 -30 -19s-14 6 -14 13c0 11.2 3.3 15.2 11.4 28zM204 -160c-36 -64 -76 -72 -97 -72c-27 0 -47 16 -47 37c0 13 15 43 44 43c11 0 15 -3 29 -3c25 0 39 9 50 29c15 31 27.1 58.6 39 92
-c10 28 -5.3 73.9 -14 94l-113.1 263c-26.2 61 -39.2 70 -78.9 75c-6 6 -6 27 0 33c20 -1 47 -2 81 -2c36 0 76 1 113 2c6 -6 6 -27 0 -33c-56 -4.29999 -50.8 -22.8 -32.8 -65l88.7 -208c8.5 -19.8 16.9 -17.1 23.9 -1l99.2 229c16 36 -16.4 42 -48 45c-6 6 -6 27 0 33
-c30 -1 61 -2 91 -2c28 0 51 1 71 2c6 -6 6 -27 0 -33c-47 -5.70001 -61.3 -21.7 -81 -64c-52.2 -112.4 -97 -215 -177 -408c-12.3 -29.6 -25.4 -58.2 -41 -86z" />
-    <glyph glyph-name="thorn" unicode="&#xfe;" horiz-adv-x="502" 
-d="M161 288v-190c0 -31.8 5 -38 17 -48.4c28.3 -24.4 55.8 -25.6 70 -25.6c106 0 131 97 131 184c0 60 -9 118 -52 161c-15 15 -33 24 -58 24c-33.5 0 -108 -35 -108 -105zM84 559c0 84 -12 79 -64 82c-6 6 -8 22 -6 30c40 3 115 17 140 27c9 0 13 -3 13 -10
-c0 0 -4 -40 -4 -105v-191c0 -22 2 -22 17 -6.70001c25.4 25.9 63.5 53.7 115 53.7c97 0 170 -99 170 -204c0 -81 -27 -142 -72 -187c-39 -39 -87 -58 -140 -58c-27.4 0 -50.2 4.6 -71 13c-11 4.4 -19 15 -19 -13v-100c0 -83 11 -87 82 -91c6 -6 6 -27 0 -33
-c-43 1 -74 2 -121 2c-44 0 -70 -1 -112 -2c-6 6 -6 27 0 33c61 3 72 8 72 91v669z" />
-    <glyph glyph-name="ydieresis" unicode="&#xff;" horiz-adv-x="515" 
-d="M140 575c0 26 21 48 47 48s47 -22 47 -48s-21 -47 -47 -47s-47 21 -47 47zM309 575c0 26 21 48 47 48s47 -22 47 -48s-21 -47 -47 -47s-47 21 -47 47zM204 -160c-36 -64 -76 -72 -97 -72c-27 0 -47 16 -47 37c0 13 15 43 44 43c11 0 15 -3 29 -3c25 0 39 9 50 29
-c15 31 27.1 58.6 39 92c10 28 -5.3 73.9 -14 94l-113.1 263c-26.2 61 -39.2 70 -78.9 75c-6 6 -6 27 0 33c20 -1 47 -2 81 -2c36 0 76 1 113 2c6 -6 6 -27 0 -33c-56 -4.29999 -50.8 -22.8 -32.8 -65l88.7 -208c8.5 -19.8 16.9 -17.1 23.9 -1l99.2 229
-c16 36 -16.4 42 -48 45c-6 6 -6 27 0 33c30 -1 61 -2 91 -2c28 0 51 1 71 2c6 -6 6 -27 0 -33c-47 -5.70001 -61.3 -21.7 -81 -64c-52.2 -112.4 -97 -215 -177 -408c-12.3 -29.6 -25.4 -58.2 -41 -86z" />
-    <glyph glyph-name="Amacron" unicode="&#x100;" horiz-adv-x="695" 
-d="M462 738h-224c-9 0 -13 11 -13 18c0 12 11 32 22 32h225c10 0 14 -11 14 -17c0 -12 -11 -33 -24 -33zM263 283h177l-94 272h-6l-102.2 -258.7c-3.8 -10.3 3.2 -13.3 25.2 -13.3zM155 79c-15.6 -41.1 31.4 -45.4 69 -48c6 -6 6 -27 0 -33c-37 1 -87 2 -128 2
-c-30.3 0 -63 -1 -89 -2c-6 6 -6 27 0 33c43.5 3 74 9 100 71l227 536c13 0 40 11 55 20l206 -572c17.4 -48.2 51.2 -51.5 90 -55c6 -6 6 -27 0 -33c-35 1 -73 2 -114 2c-39 0 -94 -1 -131 -2c-6 6 -6 27 0 33c47.6 3.4 85.8 6.5 74 41l-58 169h-211c-24 0 -30 -4 -35 -17z
-" />
-    <glyph glyph-name="amacron" unicode="&#x101;" horiz-adv-x="457" 
-d="M322 518h-224c-9 0 -13 11 -13 18c0 12 11 32 22 32h225c10 0 14 -11 14 -17c0 -12 -11 -33 -24 -33zM293 233l-79 -21c-74 -19 -95 -65 -95 -110c0 -31 22 -71 72 -71c28 0 62 23 88 44c8 6 14 13 14 26v132zM293 48h-2l-20 -16c-44 -34 -74.2 -42 -109 -42
-c-70 0 -126 26 -126 108c0 68 69 121 165 145l86 21c3 1 6 5 6 12c0 113 -47 130 -81 130c-38 0 -80 -11 -80 -42c0 -11 1 -17 2 -20c2 -4 3 -11 3 -18c0 -13 -18 -34 -47 -34c-23 0 -35 12 -35 36c0 57 83 111 165 111c73 0 151 -27 151 -169v-147c0 -46 1 -85 30 -85
-c12.7 0 29.5 9.8 37 16c11.3 -6.3 15.3 -14.7 17 -27c-20.7 -20 -56.7 -37 -95 -37c-50.4 0 -61 27 -67 58z" />
-    <glyph glyph-name="Abreve" unicode="&#x102;" horiz-adv-x="695" 
-d="M494 804c-6 -71 -70 -113 -136 -113c-73 0 -131 43 -136 113h28c8 -39 55 -61 108 -61c49 0 101 22 108 61h28zM263 283h177l-94 272h-6l-102.2 -258.7c-3.8 -10.3 3.2 -13.3 25.2 -13.3zM155 79c-15.6 -41.1 31.4 -45.4 69 -48c6 -6 6 -27 0 -33c-37 1 -87 2 -128 2
-c-30.3 0 -63 -1 -89 -2c-6 6 -6 27 0 33c43.5 3 74 9 100 71l227 536c13 0 40 11 55 20l206 -572c17.4 -48.2 51.2 -51.5 90 -55c6 -6 6 -27 0 -33c-35 1 -73 2 -114 2c-39 0 -94 -1 -131 -2c-6 6 -6 27 0 33c47.6 3.4 85.8 6.5 74 41l-58 169h-211c-24 0 -30 -4 -35 -17z
-" />
-    <glyph glyph-name="abreve" unicode="&#x103;" horiz-adv-x="457" 
-d="M98 647c11 -53 54 -90 108 -90c52 0 98 32 108 90l27 -12c-12 -86 -76 -135 -135 -135c-70 0 -121 50 -135 135zM293 233l-79 -21c-74 -19 -95 -65 -95 -110c0 -31 22 -71 72 -71c28 0 62 23 88 44c8 6 14 13 14 26v132zM293 48h-2l-20 -16c-44 -34 -74.2 -42 -109 -42
-c-70 0 -126 26 -126 108c0 68 69 121 165 145l86 21c3 1 6 5 6 12c0 113 -47 130 -81 130c-38 0 -80 -11 -80 -42c0 -11 1 -17 2 -20c2 -4 3 -11 3 -18c0 -13 -18 -34 -47 -34c-23 0 -35 12 -35 36c0 57 83 111 165 111c73 0 151 -27 151 -169v-147c0 -46 1 -85 30 -85
-c12.7 0 29.5 9.8 37 16c11.3 -6.3 15.3 -14.7 17 -27c-20.7 -20 -56.7 -37 -95 -37c-50.4 0 -61 27 -67 58z" />
-    <glyph glyph-name="Aogonek" unicode="&#x104;" horiz-adv-x="695" 
-d="M701 -135c-29 -45 -69 -65 -110 -65c-50 0 -88 20 -88 74c0 41.5 35.6 98.9 96 125.9c-9.20001 0.1 -18.5 0.1 -28 0.1c-39 0 -94 -1 -131 -2c-6 6 -6 27 0 33c47.6 3.4 85.8 6.5 74 41l-58 169h-211c-24 0 -30 -4 -35 -17l-55 -145c-15.6 -41.1 31.4 -45.4 69 -48
-c6 -6 6 -27 0 -33c-37 1 -87 2 -128 2c-30.3 0 -63 -1 -89 -2c-6 6 -6 27 0 33c43.5 3 74 9 100 71l227 536c13 0 40 11 55 20l206 -572c17.4 -48.2 51.2 -51.5 90 -55c6 -6 6 -27 0 -33c-71 0 -120 -67 -120 -113c0 -26 13 -47 50 -47c29 0 45 16 67 38c9 0 15 -4 19 -11z
-M263 283h177l-94 272h-6l-102.2 -258.7c-3.8 -10.3 3.2 -13.3 25.2 -13.3z" />
-    <glyph glyph-name="aogonek" unicode="&#x105;" horiz-adv-x="457" 
-d="M460 -135c-29 -45 -69 -65 -110 -65c-50 0 -88 20 -88 74c0 40.9 34.2 79.7 83.9 116.8c-38.4 4.7 -47.5 29.3 -52.9 57.2h-2l-20 -16c-44 -34 -74.2 -42 -109 -42c-70 0 -126 26 -126 108c0 68 69 121 165 145l86 21c3 1 6 5 6 12c0 113 -47 130 -81 130
-c-38 0 -80 -11 -80 -42c0 -11 1 -17 2 -20c2 -4 3 -11 3 -18c0 -13 -18 -34 -47 -34c-23 0 -35 12 -35 36c0 57 83 111 165 111c73 0 151 -27 151 -169v-147c0 -46 1 -85 30 -85c12.7 0 29.5 9.8 37 16c11.3 -6.3 15.3 -14.7 17 -27c-13.7 -13.2 -34.1 -25.1 -57.4 -31.7
-c-47.7 -40.7 -73.6 -70.2 -73.6 -110.3c0 -26 13 -47 50 -47c29 0 45 16 67 38c9 0 15 -4 19 -11zM293 233l-79 -21c-74 -19 -95 -65 -95 -110c0 -31 22 -71 72 -71c28 0 62 23 88 44c8 6 14 13 14 26v132z" />
-    <glyph glyph-name="Cacute" unicode="&#x106;" horiz-adv-x="646" 
-d="M392 819c28.6 -13.3 49.3 -30.7 62 -52l-144 -58c-21 -9 -33 -12 -42 -12s-15 7 -15 15c0 7 2 12 15 21zM357 -10c-215 0 -320 146.2 -320 320c0 104.3 39.6 202.2 106 263c59 54 130 85 215 85c123 0 168 -40 219 -45c10 -55 17 -103 22 -155c-11.3 -6 -21 -9 -33 -5
-c-26 86 -81 168 -219 168c-52 0 -110 -28 -159.6 -89c-36.5 -44.9 -59.4 -116.7 -59.4 -203c0 -146 93.4 -298 228 -298c93 0 161 31 232 109c11 0 18 -6 23 -15c-68 -89 -157 -135 -254 -135z" />
-    <glyph glyph-name="cacute" unicode="&#x107;" horiz-adv-x="428" 
-d="M254 671c3 1 9 2 14 2c6.39999 0 32 -1 55 -23l3 -11l-115 -109c-15 -15 -23 -19 -30 -19s-14 6 -14 13c0 11.2 3.3 15.2 11.4 28zM398 91c-50 -82 -103 -101 -163 -101c-126 0 -198 89 -198 218c0 142 106 231 205 231c96 0 153 -40 153 -95c0 -31 -28 -44 -49 -44
-s-35 9 -38 36c-4 35 -12 70 -71 70c-66 0 -114 -66 -114 -176c0 -117 61 -191 134 -191c43 0 86 22 120 66c9 -1 17 -5 21 -14z" />
-    <glyph glyph-name="Ccircumflex" unicode="&#x108;" horiz-adv-x="646" 
-d="M376 809c30 -36 67 -70 103 -97c-2.79999 -9.09998 -6.89999 -17.2 -16 -21c-39 18 -73 36 -106 61c-37 -27 -69 -44 -107 -61c-9 6 -12 12 -14 21c37 28 70 63 101 97c14 8.40002 23.6 7.70001 39 0zM357 -10c-215 0 -320 146.2 -320 320c0 104.3 39.6 202.2 106 263
-c59 54 130 85 215 85c123 0 168 -40 219 -45c10 -55 17 -103 22 -155c-11.3 -6 -21 -9 -33 -5c-26 86 -81 168 -219 168c-52 0 -110 -28 -159.6 -89c-36.5 -44.9 -59.4 -116.7 -59.4 -203c0 -146 93.4 -298 228 -298c93 0 161 31 232 109c11 0 18 -6 23 -15
-c-68 -89 -157 -135 -254 -135z" />
-    <glyph glyph-name="ccircumflex" unicode="&#x109;" horiz-adv-x="428" 
-d="M239 660c29 -47 73 -100 109 -140c-5 -7 -13.6 -15.1 -23 -17c-38 24 -73 52 -103 83c-32 -32 -65 -61 -104 -83c-9 2 -16 8 -22 17c36 40 82 94 111 140c10.7 2.29999 21.3 3 32 0zM398 91c-50 -82 -103 -101 -163 -101c-126 0 -198 89 -198 218c0 142 106 231 205 231
-c96 0 153 -40 153 -95c0 -31 -28 -44 -49 -44s-35 9 -38 36c-4 35 -12 70 -71 70c-66 0 -114 -66 -114 -176c0 -117 61 -191 134 -191c43 0 86 22 120 66c9 -1 17 -5 21 -14z" />
-    <glyph glyph-name="Cdotaccent" unicode="&#x10a;" horiz-adv-x="646" 
-d="M304 753c0 28 24 52 52 52s52 -24 52 -52s-24 -52 -52 -52s-52 24 -52 52zM357 -10c-215 0 -320 146.2 -320 320c0 104.3 39.6 202.2 106 263c59 54 130 85 215 85c123 0 168 -40 219 -45c10 -55 17 -103 22 -155c-11.3 -6 -21 -9 -33 -5c-26 86 -81 168 -219 168
-c-52 0 -110 -28 -159.6 -89c-36.5 -44.9 -59.4 -116.7 -59.4 -203c0 -146 93.4 -298 228 -298c93 0 161 31 232 109c11 0 18 -6 23 -15c-68 -89 -157 -135 -254 -135z" />
-    <glyph glyph-name="cdotaccent" unicode="&#x10b;" horiz-adv-x="428" 
-d="M179 600c0 24 28 48 52 48c27 0 48 -28 48 -52c0 -21.1 -24 -48 -52 -48c-24 0 -48 26 -48 52zM398 91c-50 -82 -103 -101 -163 -101c-126 0 -198 89 -198 218c0 142 106 231 205 231c96 0 153 -40 153 -95c0 -31 -28 -44 -49 -44s-35 9 -38 36c-4 35 -12 70 -71 70
-c-66 0 -114 -66 -114 -176c0 -117 61 -191 134 -191c43 0 86 22 120 66c9 -1 17 -5 21 -14z" />
-    <glyph glyph-name="Ccaron" unicode="&#x10c;" horiz-adv-x="646" 
-d="M333 697c-30 37 -65 67 -101 95l16 20c39 -17 73 -36 106 -61c37 26 69 45 107 61l15 -20c-38 -29 -70 -61 -100 -95h-43zM357 -10c-215 0 -320 146.2 -320 320c0 104.3 39.6 202.2 106 263c59 54 130 85 215 85c123 0 168 -40 219 -45c10 -55 17 -103 22 -155
-c-11.3 -6 -21 -9 -33 -5c-26 86 -81 168 -219 168c-52 0 -110 -28 -159.6 -89c-36.5 -44.9 -59.4 -116.7 -59.4 -203c0 -146 93.4 -298 228 -298c93 0 161 31 232 109c11 0 18 -6 23 -15c-68 -89 -157 -135 -254 -135z" />
-    <glyph glyph-name="ccaron" unicode="&#x10d;" horiz-adv-x="428" 
-d="M202 502c-29 47 -66 92 -101 130l20 13c39 -29 72 -54 106 -90c37 38 71 63 108 90l19 -13c-35 -39 -73 -84 -102 -130h-50zM398 91c-50 -82 -103 -101 -163 -101c-126 0 -198 89 -198 218c0 142 106 231 205 231c96 0 153 -40 153 -95c0 -31 -28 -44 -49 -44
-s-35 9 -38 36c-4 35 -12 70 -71 70c-66 0 -114 -66 -114 -176c0 -117 61 -191 134 -191c43 0 86 22 120 66c9 -1 17 -5 21 -14z" />
-    <glyph glyph-name="Dcaron" unicode="&#x10e;" horiz-adv-x="701" 
-d="M291 697c-30 37 -65 67 -101 95l16 20c39 -17 73 -36 106 -61c37 26 69 45 107 61l15 -20c-38 -29 -70 -61 -100 -95h-43zM191 84c0 -32 11 -52 109 -52c141 0 262 50 262 252c0 154 -71 329 -287 329c-49 0 -84 -14 -84 -49v-480zM148 645c39 0 94 2 165 2
-c192 0 345 -153 345 -339c0 -246 -186 -310 -327 -310c-103 0 -145 2 -182 2c-37.7 0 -91 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c40 -1 93.3 -2 129 -2z" />
-    <glyph glyph-name="dcaron" unicode="&#x10f;" horiz-adv-x="528" 
-d="M503 698c38 0 60 -37 60 -73s-32 -98 -102 -106l-5 17c42 9 63 46 63 69c0 13 -6 21 -14 21c-41 0 -46 22 -46 38s14 34 44 34zM345 124v190c0 31 -3 38 -17 54c-20 23 -45 36 -81 36c-20 0 -62 -3 -93 -50c-15 -21 -29 -61 -29 -133c0 -125 56 -184 110 -184
-c25 0 57 16 94 48c14.1 12.2 16 20 16 39zM334 50.3c-49 -40.3 -86 -60.3 -125 -60.3c-108 0 -170 90 -170 213c0 74 26 133 69 176c40 38 84 60 150 60c33 0 74 -17 78 -17c7 0 9 2 9 9v128c0 84 -12 79 -64 82c-6 6 -8 22 -6 30c40 3 115 17 140 27c9 0 13 -3 13 -10
-c0 0 -4 -40 -4 -105v-453c0 -49 9 -68 73 -73c6 -6 6 -21 0 -27c-61 -7 -96 -22 -118 -40c-6 -2.5 -11 -3 -19 0c0 0 -8.5 34.5 -11 59c-0.700012 7 -10.2 5.2 -15 1.3z" />
-    <glyph glyph-name="Dcroat" unicode="&#x110;" horiz-adv-x="701" 
-d="M191 84c0 -32 11 -52 109 -52c141 0 262 50 262 252c0 154 -71 329 -287 329c-49 0 -84 -14 -84 -49v-237h122c9.29999 -1.29999 13 -7.79999 13 -12.6c0 -9.60001 -10.7 -25.4 -23 -27.4h-112v-203zM148 645c39 0 94 2 165 2c192 0 345 -153 345 -339
-c0 -246 -186 -310 -327 -310c-103 0 -145 2 -182 2c-37.7 0 -91 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v165h-79c-9 2 -12 7.79999 -12 13.4c0 9.60001 9 24.3 21 26.6h70v196c0 83 -17 88 -87 91c-6 6 -6 27 0 33c40 -1 93.3 -2 129 -2z" />
-    <glyph glyph-name="dcroat" unicode="&#x111;" horiz-adv-x="506" 
-d="M345 124v190c0 31 -3 38 -17 54c-20 23 -45 36 -81 36c-20 0 -62 -3 -93 -50c-15 -21 -29 -61 -29 -133c0 -125 56 -184 110 -184c25 0 57 16 94 48c14.1 12.2 16 20 16 39zM334 50.3c-49 -40.3 -86 -60.3 -125 -60.3c-108 0 -170 90 -170 213c0 74 26 133 69 176
-c40 38 84 60 150 60c33 0 74 -17 78 -17c7 0 9 2 9 9v102h-148c-9 2 -12 7.79999 -12 13.4c0 9.59998 9 24.3 21 26.6h138.9c-1.39999 69.4 -15 65.2 -63.9 68c-6 6 -8 22 -6 30c40 3 115 17 140 27c9 0 13 -3 13 -10c0 0 -4 -40 -4 -105v-10h59
-c9.29999 -1.29999 13 -7.79999 13 -12.6c0 -9.60004 -10.7 -25.4 -23 -27.4h-49v-403c0 -49 9 -68 73 -73c6 -6 6 -21 0 -27c-61 -7 -96 -22 -118 -40c-6 -2.5 -11 -3 -19 0c0 0 -8.5 34.5 -11 59c-0.700012 7 -10.2 5.2 -15 1.3z" />
-    <glyph glyph-name="Emacron" unicode="&#x112;" horiz-adv-x="557" 
-d="M375 745h-224c-9 0 -13 11 -13 18c0 12 11 32 22 32h225c10 0 14 -11 14 -17c0 -12 -11 -33 -24 -33zM281 361c85 0 88 13 91 68c6 6 27 6 33 0c-1 -24 -2 -58 -2 -86c0 -34.3 1 -62 2 -88c-6 -6 -27 -6 -33 0c-3 45 -6 68 -91 68h-91v-221c0 -47 14 -63 56 -63h116
-c76 0 111 59 131 131c13.1 3.2 24.6 1 35 -5c-8 -51 -23 -117 -37 -167c0 0 -80 2 -128 2h-215c-33 0 -93 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c40 -1 98.5 -2 129 -2h255c24 0 32 1 49 4c3 0 4 -1 4 -3
-c2 -8 17 -104 22 -145c-9.79999 -4.70001 -20.6 -6.79999 -33 -5c-22 69 -38 109 -113 109h-75c-54 0 -66 -20 -66 -64v-180h91z" />
-    <glyph glyph-name="emacron" unicode="&#x113;" horiz-adv-x="447" 
-d="M337 518h-224c-9 0 -13 11 -13 18c0 12 11 32 22 32h225c10 0 14 -11 14 -17c0 -12 -11 -33 -24 -33zM124 282l181 3c11 0.200012 15 5 15 14c0 84 -45 105 -83 105c-24 0 -94 -9 -113 -122zM386 93c12 -1 18 -6 21 -16c-40 -52 -94 -87 -170 -87c-72 0 -119 24 -153 64
-c-33 38 -47 92 -47 148c0 152 113 235 200 235c139 0 169 -90 169 -174c0 -11 -7 -17 -19 -17l-266 2c0 -58 12 -104 32 -137c31 -51 73 -72 109 -72c58 0 87 16 124 54z" />
-    <glyph glyph-name="Ebreve" unicode="&#x114;" horiz-adv-x="557" 
-d="M416 803c-6 -71 -70 -113 -136 -113c-73 0 -131 43 -136 113h28c8 -39 55 -61 108 -61c49 0 101 22 108 61h28zM281 361c85 0 88 13 91 68c6 6 27 6 33 0c-1 -24 -2 -58 -2 -86c0 -34.3 1 -62 2 -88c-6 -6 -27 -6 -33 0c-3 45 -6 68 -91 68h-91v-221c0 -47 14 -63 56 -63
-h116c76 0 111 59 131 131c13.1 3.2 24.6 1 35 -5c-8 -51 -23 -117 -37 -167c0 0 -80 2 -128 2h-215c-33 0 -93 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c40 -1 98.5 -2 129 -2h255c24 0 32 1 49 4c3 0 4 -1 4 -3
-c2 -8 17 -104 22 -145c-9.79999 -4.70001 -20.6 -6.79999 -33 -5c-22 69 -38 109 -113 109h-75c-54 0 -66 -20 -66 -64v-180h91z" />
-    <glyph glyph-name="dotlessi" unicode="&#x131;" horiz-adv-x="271" 
-d="M181 122c0 -83 11 -87 72 -91c6 -6 6 -27 0 -33c-33 1 -71 2 -111 2s-79 -1 -112 -2c-6 6 -6 27 0 33c61 5 72 8 72 91v195c0 57 -10.5 62.9 -65 68c-2 6 -4 22 -2 28c69 9 108.5 18 137 29c8 0 13 -3 13 -7c0 0 -4 -64 -4 -113.7v-199.3z" />
-    <glyph glyph-name="IJ" unicode="&#x132;" horiz-adv-x="598" 
-d="M509 523v-420c0 -143 -58.3 -194.7 -102 -232c-41 -35 -72 -43 -117 -43c-22 0 -75 18 -75 54c0 22 30 43 44 43c24.9 0 33.7 -12.8 39.7 -25.5c7 -14.7 21.2 -26.5 40.3 -26.5c33 0 85 28 85 208v442c0 83 -17 88 -97 91c-6 6 -6 27 0 33c50 -1 102.7 -2 139 -2
-c38.7 0 82 1 120 2c6 -6 6 -27 0 -33c-60 -3 -77 -8 -77 -91zM191 122c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-45 1 -93.4 2 -129 2c-36.3 0 -85 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c47 -1 95.5 -2 129 -2
-c38.5 0 86 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-401z" />
-    <glyph glyph-name="ij" unicode="&#x133;" horiz-adv-x="542" 
-d="M369 599c0 24 28 48 52 48c27 0 48 -28 48 -52c0 -21.1 -24 -48 -52 -48c-24 0 -48 26 -48 52zM383 317c0 57 -11 63 -65 68c-2 6 -4 22 -2 28c69 9 109 18 137 29c8 0 13 -3 13 -7c0 0 -4 -64 -4 -114v-211c0 -189 -28 -261 -75 -299c-37 -31 -89 -34 -110 -34
-c-19 0 -55 14 -55 43c0 18 21 38 32 38c22 0 34 -16 44 -26c7 -7 20 -11 31 -11c50 0 54 123 54 255v241zM90 599c0 24 28 48 52 48c27 0 48 -28 48 -52c0 -21.1 -24 -48 -52 -48c-24 0 -48 26 -48 52zM181 122c0 -83 11 -87 72 -91c6 -6 6 -27 0 -33c-33 1 -71 2 -111 2
-s-79 -1 -112 -2c-6 6 -6 27 0 33c61 5 72 8 72 91v195c0 57 -10.5 62.9 -65 68c-2 6 -4 22 -2 28c69 9 108.5 18 137 29c8 0 13 -3 13 -7c0 0 -4 -64 -4 -113.7v-199.3z" />
-    <glyph glyph-name="Jcircumflex" unicode="&#x134;" horiz-adv-x="322" 
-d="M197 808c30 -36 67 -70 103 -97c-2.79999 -9.09998 -6.89999 -17.2 -16 -21c-39 18 -73 36 -106 61c-37 -27 -69 -44 -107 -61c-9 6 -12 12 -14 21c37 28 70 63 101 97c14 8.40002 23.6 7.70001 39 0zM226 523v-420c0 -143 -58.3 -194.7 -102 -232
-c-41 -35 -72 -43 -117 -43c-22 0 -75 18 -75 54c0 22 30 43 44 43c24.9 0 33.7 -12.8 39.7 -25.5c7 -14.7 21.2 -26.5 40.3 -26.5c33 0 85 28 85 208v442c0 83 -17 88 -97 91c-6 6 -6 27 0 33c50 -1 102.7 -2 139 -2c38.7 0 82 1 120 2c6 -6 6 -27 0 -33
-c-60 -3 -77 -8 -77 -91z" />
-    <glyph glyph-name="jcircumflex" unicode="&#x135;" horiz-adv-x="272" 
-d="M113 317c0 57 -11 63 -65 68c-2 6 -4 22 -2 28c69 9 109 18 137 29c8 0 13 -3 13 -7c0 0 -4 -64 -4 -114v-211c0 -189 -28 -261 -75 -299c-37 -31 -89 -34 -110 -34c-19 0 -55 14 -55 43c0 18 21 38 32 38c22 0 34 -16 44 -26c7 -7 20 -11 31 -11c50 0 54 123 54 255v241
-zM167 658c29 -47 73 -100 109 -140c-5 -7 -13.6 -15.1 -23 -17c-38 24 -73 52 -103 83c-32 -32 -65 -61 -104 -83c-9 2 -16 8 -22 17c36 40 82 94 111 140c10.7 2.29999 21.3 3 32 0z" />
-    <glyph glyph-name="Kcommaaccent" unicode="&#x136;" horiz-adv-x="637" 
-d="M352 -41c38 0 62 -34 62 -86c0 -60 -49 -90 -106 -99c-6 6 -8 15 -8 24c49 11 75 35 75 53c0 20 -13 24 -31 26c-17 3 -42 12 -42 39c0 24 21 43 50 43zM191 122c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-45 1 -91 2 -129 2c-39 0 -85 -1 -130 -2c-6 6 -6 27 0 33
-c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c45 -1 90.5 -2 129 -2c36.5 0 84 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-175.7c35.1 2.90002 57.7 16 79 38.7l165 176c42.1 44.9 8.10001 48.6 -28 52c-6 6 -6 27 0 33c37 -1 76 -2 113 -2
-c32.2 0 64 1 95 2c6 -6 6 -27 0 -33c-40 -3 -80 -7 -126 -56l-147 -151c-34 -35 -35 -42 -35 -49c0 -8 5.29999 -15.9 13 -25l219 -260c30.6 -36.3 59.1 -39.4 88 -42c6 -6 6 -27 0 -33c-33 1 -67 2 -101 2c-21.1 0 -34 -1 -54 -2c-4 0 -4.60001 3 -5 6
-c-2 16 -15.7 43.4 -36 69l-157 198c-20.3 25.6 -49.2 36.9 -83 37.9v-186.9z" />
-    <glyph glyph-name="kcommaaccent" unicode="&#x137;" horiz-adv-x="512" 
-d="M266 -41c38 0 62 -34 62 -86c0 -60 -49 -90 -106 -99c-6 6 -8 15 -8 24c49 11 75 35 75 53c0 20 -13 24 -31 26c-17 3 -42 12 -42 39c0 24 21 43 50 43zM86 122v437c0 84 -12 79 -64 82c-6 6 -8 22 -6 30c40 3 115 17 140 27c9 0 13 -3 13 -10c0 0 -4 -40 -4 -105v-348.8
-c18.9 2.60001 45.8 14.4 68 30.8c25.7 19 57 53 80 82c9.29999 11.7 33 47 -23 51c-6 6 -6 27 0 33c23 -1 60 -2 98 -2c36 0 64 1 87 2c6 -6 6 -27 0 -33c-40 -4 -75 -12 -105 -44l-88 -91c-4 -4 -4 -6 -4 -10c0 -5 3.39999 -9.5 7 -14l132 -166c26.7 -33.6 52 -38 86 -42
-c6 -6 6 -27 0 -33c-20 1 -51 2 -82 2c-20 0 -42 -1 -62 -2c-3 0 -3.70001 2 -4 5c-1.29999 11.7 -12.6 30.5 -42 70l-73 98c-11.9 16 -21 25 -32 32.5c-9.7 3.39999 -23.8 4.89999 -43 5.39999v-86.9c0 -83 11 -87 52 -91c6 -6 6 -27 0 -33c-23 1 -56 2 -91 2
-c-40 0 -74 -1 -107 -2c-6 6 -6 27 0 33c56 4 67 8 67 91z" />
-
-<!--
-Ist das so richtig?
--->
-    <glyph glyph-name="kgreenlandic" unicode="&#x138;" horiz-adv-x="519" 
-d="M175 122c0 -83 10 -86 52 -91c6 -6 6 -27 0 -33c-43 1 -56 2 -91 2c-44 0 -70 -1 -112 -2c-6 6 -6 27 0 33c61 5 72 8 72 91v195c0 57 -10.5 62.9 -65 68c-2 6 -4 22 -2 28c69 9 108.5 18 137 29c8 0 13 -3 13 -7c0 0 -4 -64 -4 -113.7v-86.6c18.7 3.3 43.9 14.7 65 30.3
-c25.7 19 57 53 80 82c9.29999 11.7 33 47 -23 51c-6 6 -6 27 0 33c37 -1 60 -2 98 -2c36 0 50 1 87 2c6 -6 6 -27 0 -33c-40 -4 -75 -12 -105 -44l-88 -91c-4 -4 -4 -6 -4 -10c0 -5 3.39999 -9.5 7 -14l132 -166c26.7 -33.6 52 -38 86 -42c6 -6 6 -27 0 -33
-c-30 1 -51 2 -82 2c-30 0 -42 -1 -62 -2c-3 0 -3.20001 2.1 -4 5c-4 15 -12.6 30.5 -42 70l-73 98c-11.9 16 -21 25 -32 32.5c-9.2 3.2 -22.3 4.8 -40 5.39999v-86.9z" />
-    <glyph glyph-name="Lacute" unicode="&#x139;" horiz-adv-x="528" 
-d="M192 819c28.6 -13.3 49.3 -30.7 62 -52l-144 -58c-21 -9 -33 -12 -42 -12s-15 7 -15 15c0 7 2 12 15 21zM149 0c-33.7 0 -91 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c46 -1 92.9 -2 129 -2c38.1 0 85 1 130 2
-c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-414c0 -51 18 -70 57 -70h63c106 0 143 59 163 131c12.4 1.8 23.2 -0.300003 33 -5c-6 -52 -16 -117 -26 -167c0 0 -92 2 -119.3 2h-212.7z" />
-    <glyph glyph-name="lacute" unicode="&#x13a;" horiz-adv-x="264" 
-d="M95 122v437c0 75 -6 78 -64 82c-6 6 -8 22 -6 30c40 3 115 17 140 27c9 0 13 -3 13 -10c0 0 -4 -40 -4 -105v-461c0 -83 11 -88 72 -91c6 -6 6 -27 0 -33c-33 1 -71 2 -111 2s-77 -1 -112 -2c-6 6 -6 27 0 33c61 3 72 8 72 91zM203 847c28.6 -13.3 49.3 -30.7 62 -52
-l-144 -58c-21 -9 -33 -12 -42 -12s-15 7 -15 15c0 7 2 12 15 21z" />
-    <glyph glyph-name="Lcommaaccent" unicode="&#x13b;" horiz-adv-x="528" 
-d="M277 -41c38 0 62 -34 62 -86c0 -60 -49 -90 -106 -99c-6 6 -8 15 -8 24c49 11 75 35 75 53c0 20 -13 24 -31 26c-17 3 -42 12 -42 39c0 24 21 43 50 43zM149 0c-33.7 0 -91 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33
-c46 -1 92.9 -2 129 -2c38.1 0 85 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-414c0 -51 18 -70 57 -70h63c106 0 143 59 163 131c12.4 1.8 23.2 -0.300003 33 -5c-6 -52 -16 -117 -26 -167c0 0 -92 2 -119.3 2h-212.7z" />
-    <glyph glyph-name="lcommaaccent" unicode="&#x13c;" horiz-adv-x="264" 
-d="M95 122v437c0 75 -6 78 -64 82c-6 6 -8 22 -6 30c40 3 115 17 140 27c9 0 13 -3 13 -10c0 0 -4 -40 -4 -105v-461c0 -83 11 -88 72 -91c6 -6 6 -27 0 -33c-33 1 -71 2 -111 2s-77 -1 -112 -2c-6 6 -6 27 0 33c61 3 72 8 72 91zM132 -41c38 0 62 -34 62 -86
-c0 -60 -49 -90 -106 -99c-6 6 -8 15 -8 24c49 11 75 35 75 53c0 20 -13 24 -31 26c-17 3 -42 12 -42 39c0 24 21 43 50 43z" />
-    <glyph glyph-name="Lcaron" unicode="&#x13d;" horiz-adv-x="528" 
-d="M400 698c38 0 60 -37 60 -73s-32 -98 -102 -106l-5 17c42 9 63 46 63 69c0 13 -6 21 -14 21c-41 0 -46 22 -46 38s14 34 44 34zM149 0c-33.7 0 -91 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c46 -1 92.9 -2 129 -2
-c38.1 0 85 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-414c0 -51 18 -70 57 -70h63c106 0 143 59 163 131c12.4 1.8 23.2 -0.300003 33 -5c-6 -52 -16 -117 -26 -167c0 0 -92 2 -119.3 2h-212.7z" />
-    <glyph glyph-name="lcaron" unicode="&#x13e;" horiz-adv-x="290" 
-d="M265 698c38 0 60 -37 60 -73s-32 -98 -102 -106l-5 17c42 9 63 46 63 69c0 13 -6 21 -14 21c-41 0 -46 22 -46 38s14 34 44 34zM95 122v437c0 75 -6 78 -64 82c-6 6 -8 22 -6 30c40 3 115 17 140 27c9 0 13 -3 13 -10c0 0 -4 -40 -4 -105v-461c0 -83 11 -88 72 -91
-c6 -6 6 -27 0 -33c-33 1 -71 2 -111 2s-77 -1 -112 -2c-6 6 -6 27 0 33c61 3 72 8 72 91z" />
-    <glyph glyph-name="Ldot" unicode="&#x13f;" horiz-adv-x="528" 
-d="M289 335c0 28 24 52 52 52s52 -24 52 -52s-24 -52 -52 -52s-52 24 -52 52zM149 0c-33.7 0 -91 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c46 -1 92.9 -2 129 -2c38.1 0 85 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91
-v-414c0 -51 18 -70 57 -70h63c106 0 143 59 163 131c12.4 1.8 23.2 -0.300003 33 -5c-6 -52 -16 -117 -26 -167c0 0 -92 2 -119.3 2h-212.7z" />
-    <glyph glyph-name="ldot" unicode="&#x140;" horiz-adv-x="264" 
-d="M213 360c0 25 21 49 48 49c23 0 47 -22 47 -49c0 -25 -20 -47 -47 -47c-30 0 -48 23 -48 47zM95 122v437c0 75 -6 78 -64 82c-6 6 -8 22 -6 30c40 3 115 17 140 27c9 0 13 -3 13 -10c0 0 -4 -40 -4 -105v-461c0 -83 11 -88 72 -91c6 -6 6 -27 0 -33c-33 1 -71 2 -111 2
-s-77 -1 -112 -2c-6 6 -6 27 0 33c61 3 72 8 72 91z" />
-    <glyph glyph-name="Lslash" unicode="&#x141;" horiz-adv-x="528" 
-d="M310 449l18 -30l-137 -78.6v-231.4c0 -51 18 -70 57 -70h63c106 0 143 59 163 131c12.4 1.8 23.2 -0.300003 33 -5c-6 -52 -16 -117 -26 -167c0 0 -92 2 -119.3 2h-212.7c-33.7 0 -91 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v169.6l-83 -47.6l-18 31l101 57.6v190.4
-c0 83 -17 88 -87 91c-6 6 -6 27 0 33c46 -1 92.9 -2 129 -2c38.1 0 85 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-141.9z" />
-    <glyph glyph-name="lslash" unicode="&#x142;" horiz-adv-x="264" 
-d="M243 438l17 -30l-86 -50.1v-235.9c0 -83 11 -88 72 -91c6 -6 6 -27 0 -33c-33 1 -71 2 -111 2s-77 -1 -112 -2c-6 6 -6 27 0 33c61 3 72 8 72 91v189.9l-72 -41.9l-17 29l89 52.2v207.8c0 75 -6 78 -64 82c-6 6 -8 22 -6 30c40 3 115 17 140 27c9 0 13 -3 13 -10
-c0 0 -4 -40 -4 -105v-185.5z" />
-    <glyph glyph-name="Nacute" unicode="&#x143;" horiz-adv-x="699" 
-d="M383 820c28.6 -13.3 49.3 -30.7 62 -52l-144 -58c-21 -9 -33 -12 -42 -12s-15 7 -15 15c0 7 2 12 15 21zM556 512c0 91 -17 95 -87 102c-6 6 -6 27 0 33c44 -1 89.7 -2 111 -2c23.7 0 71 1 112 2c6 -6 6 -27 0 -33c-70 -7 -87 -13 -87 -102v-491c0 -19 -9 -31 -23 -31
-c-16 0 -29 9 -40 24l-349 441c-17 22 -28 33 -34 33c-8 0 -8 -15 -8 -49v-306c0 -91 17 -95 87 -102c6 -6 6 -27 0 -33c-42 1 -87.9 2 -111 2c-23.6 0 -69 -1 -112 -2c-6 6 -6 27 0 33c70 7 87 13 87 102v417c-6 26 -36 61 -79 64c-6 6 -6 27 0 33l135 -2l343 -435
-c29 -37 44 -55 48 -55c7 0 7 11 7 30v327z" />
-    <glyph glyph-name="nacute" unicode="&#x144;" horiz-adv-x="542" 
-d="M314 671c3 1 9 2 14 2c6.39999 0 32 -1 55 -23l3 -11l-115 -109c-15 -15 -23 -19 -30 -19s-14 6 -14 13c0 11.2 3.3 15.2 11.4 28zM184 358c59.3 68 115 81 164 81c35 0 66 -12 83 -34c23 -31 27 -79 27 -134v-149c0 -82 11 -86 67 -91c5 -6 5 -27 0 -33
-c-30 1 -66 2 -106 2s-72 -1 -102 -2c-5 6 -5 27 0 33c52 5 62 9 62 91v152c0 30 -2 57 -12 77c-12 23 -33 36 -53 36c-39 0 -84 -22 -122 -59c-8 -9 -17 -21 -17 -42v-164c0 -82 10 -86 61 -91c6 -6 6 -27 0 -33c-30 1 -60 2 -100 2s-80 -1 -110 -2c-6 6 -6 27 0 33
-c60 5 70 9 70 91v195c0 58 -11 63 -65 68c-2 6 -4 22 -2 28c69 9 95 18 123 29c8 0 9.89999 -3.39999 12 -8c4.7 -10.3 7 -49 8 -76c0.300003 -9.39999 5.89999 -7 12 0z" />
-    <glyph glyph-name="Ncommaaccent" unicode="&#x145;" horiz-adv-x="699" 
-d="M358 -41c38 0 62 -34 62 -86c0 -60 -49 -90 -106 -99c-6 6 -8 15 -8 24c49 11 75 35 75 53c0 20 -13 24 -31 26c-17 3 -42 12 -42 39c0 24 21 43 50 43zM556 512c0 91 -17 95 -87 102c-6 6 -6 27 0 33c44 -1 89.7 -2 111 -2c23.7 0 71 1 112 2c6 -6 6 -27 0 -33
-c-70 -7 -87 -13 -87 -102v-491c0 -19 -9 -31 -23 -31c-16 0 -29 9 -40 24l-349 441c-17 22 -28 33 -34 33c-8 0 -8 -15 -8 -49v-306c0 -91 17 -95 87 -102c6 -6 6 -27 0 -33c-42 1 -87.9 2 -111 2c-23.6 0 -69 -1 -112 -2c-6 6 -6 27 0 33c70 7 87 13 87 102v417
-c-6 26 -36 61 -79 64c-6 6 -6 27 0 33l135 -2l343 -435c29 -37 44 -55 48 -55c7 0 7 11 7 30v327z" />
-    <glyph glyph-name="ncommaaccent" unicode="&#x146;" horiz-adv-x="542" 
-d="M261 -41c38 0 62 -34 62 -86c0 -60 -49 -90 -106 -99c-6 6 -8 15 -8 24c49 11 75 35 75 53c0 20 -13 24 -31 26c-17 3 -42 12 -42 39c0 24 21 43 50 43zM184 358c59.3 68 115 81 164 81c35 0 66 -12 83 -34c23 -31 27 -79 27 -134v-149c0 -82 11 -86 67 -91
-c5 -6 5 -27 0 -33c-30 1 -66 2 -106 2s-72 -1 -102 -2c-5 6 -5 27 0 33c52 5 62 9 62 91v152c0 30 -2 57 -12 77c-12 23 -33 36 -53 36c-39 0 -84 -22 -122 -59c-8 -9 -17 -21 -17 -42v-164c0 -82 10 -86 61 -91c6 -6 6 -27 0 -33c-30 1 -60 2 -100 2s-80 -1 -110 -2
-c-6 6 -6 27 0 33c60 5 70 9 70 91v195c0 58 -11 63 -65 68c-2 6 -4 22 -2 28c69 9 95 18 123 29c8 0 9.89999 -3.39999 12 -8c4.7 -10.3 7 -49 8 -76c0.300003 -9.39999 5.89999 -7 12 0z" />
-    <glyph glyph-name="Ncaron" unicode="&#x147;" horiz-adv-x="699" 
-d="M331 697c-30 37 -65 67 -101 95l16 20c39 -17 73 -36 106 -61c37 26 69 45 107 61l15 -20c-38 -29 -70 -61 -100 -95h-43zM556 512c0 91 -17 95 -87 102c-6 6 -6 27 0 33c44 -1 89.7 -2 111 -2c23.7 0 71 1 112 2c6 -6 6 -27 0 -33c-70 -7 -87 -13 -87 -102v-491
-c0 -19 -9 -31 -23 -31c-16 0 -29 9 -40 24l-349 441c-17 22 -28 33 -34 33c-8 0 -8 -15 -8 -49v-306c0 -91 17 -95 87 -102c6 -6 6 -27 0 -33c-42 1 -87.9 2 -111 2c-23.6 0 -69 -1 -112 -2c-6 6 -6 27 0 33c70 7 87 13 87 102v417c-6 26 -36 61 -79 64c-6 6 -6 27 0 33
-l135 -2l343 -435c29 -37 44 -55 48 -55c7 0 7 11 7 30v327z" />
-    <glyph glyph-name="ncaron" unicode="&#x148;" horiz-adv-x="542" 
-d="M246 503c-29 47 -66 92 -101 130l20 13c39 -29 72 -54 106 -90c37 38 71 63 108 90l19 -13c-35 -39 -73 -84 -102 -130h-50zM184 358c59.3 68 115 81 164 81c35 0 66 -12 83 -34c23 -31 27 -79 27 -134v-149c0 -82 11 -86 67 -91c5 -6 5 -27 0 -33c-30 1 -66 2 -106 2
-s-72 -1 -102 -2c-5 6 -5 27 0 33c52 5 62 9 62 91v152c0 30 -2 57 -12 77c-12 23 -33 36 -53 36c-39 0 -84 -22 -122 -59c-8 -9 -17 -21 -17 -42v-164c0 -82 10 -86 61 -91c6 -6 6 -27 0 -33c-30 1 -60 2 -100 2s-80 -1 -110 -2c-6 6 -6 27 0 33c60 5 70 9 70 91v195
-c0 58 -11 63 -65 68c-2 6 -4 22 -2 28c69 9 95 18 123 29c8 0 9.89999 -3.39999 12 -8c4.7 -10.3 7 -49 8 -76c0.300003 -9.39999 5.89999 -7 12 0z" />
-    <glyph glyph-name="napostrophe" unicode="&#x149;" horiz-adv-x="542" 
-d="M72 698c38 0 60 -37 60 -73s-32 -98 -102 -106l-5 17c42 9 63 46 63 69c0 13 -6 21 -14 21c-41 0 -46 22 -46 38s14 34 44 34zM197 358c59.3 68 115 81 164 81c35 0 66 -12 83 -34c23 -31 27 -79 27 -134v-149c0 -82 11 -86 67 -91c5 -6 5 -27 0 -33c-30 1 -66 2 -106 2
-s-72 -1 -102 -2c-5 6 -5 27 0 33c52 5 62 9 62 91v152c0 30 -2 57 -12 77c-12 23 -33 36 -53 36c-39 0 -84 -22 -122 -59c-8 -9 -17 -21 -17 -42v-164c0 -82 10 -86 61 -91c6 -6 6 -27 0 -33c-30 1 -60 2 -100 2s-80 -1 -110 -2c-6 6 -6 27 0 33c60 5 70 9 70 91v195
-c0 58 -11 63 -65 68c-2 6 -4 22 -2 28c69 9 95 18 123 29c8 0 9.89999 -3.39999 12 -8c4.7 -10.3 7 -49 8 -76c0.300003 -9.39999 5.89999 -7 12 0z" />
-
-<!--
-Sieht in Times anders aus
--->
-    <glyph glyph-name="Eng" unicode="&#x14a;" horiz-adv-x="725" 
-d="M182 647c9 0 13 -3 13 -10c0 0 -4 -40 -4 -105v-18.5c3 0 9 7.5 9 7.5c56 79 122 137 212 137c62 0 107 -20 142 -61c41.6 -48.7 64 -135 64 -268v-216c0 -143 -63.1 -204.8 -107 -242c-41.1 -34.8 -72 -43 -117 -43c-22 0 -75 18 -75 54c0 22 30 43 44 43
-c31 0 35 -21 45 -34c7 -10 21 -18 35 -18c33 0 85 28 85 208v258c0 101 -16.2 176.8 -42 214c-27 39 -64 49 -110 49c-50 0 -114 -55 -167 -118c-7 -8.29999 -15.3 -20.7 -18 -37.5v-324.5c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-50 1 -79 2 -129 2c-51 0 -81 -1 -130 -2
-c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c50 -1 79 -2 129 -2c13 0 25 1 34 2z" />
-    <glyph glyph-name="eng" unicode="&#x14b;" horiz-adv-x="528" 
-d="M175 358c0 -14 6 -4 9 0c61 68 115 81 164 81c35 0 66 -12 83 -34c23 -31 27 -79 27 -134v-161c0 -189 -28 -261 -75 -299c-37 -31 -89 -34 -110 -34c-19 0 -55 14 -55 43c0 18 21 38 32 38c22 0 34 -16 44 -26c7 -7 20 -11 31 -11c50 0 54 123 54 255v198
-c0 30 -2 57 -12 77c-12 23 -33 36 -53 36c-39 0 -84 -22 -122 -59c-8 -9 -17 -21 -17 -42v-164c0 -82 9 -86 60 -91c6 -6 6 -27 0 -33c-42 1 -60 2 -99 2c-43 0 -69 -1 -110 -2c-6 6 -6 27 0 33c60 5 70 9 70 91v195c0 58 -11 63 -65 68c-2 6 -4 22 -2 28c69 9 98 18 126 29
-c8 0 9.89999 -3.39999 12 -8c4.7 -10.3 8 -36 8 -76z" />
-    <glyph glyph-name="Omacron" unicode="&#x14c;" horiz-adv-x="702" 
-d="M458 745h-224c-9 0 -13 11 -13 18c0 12 11 32 22 32h225c10 0 14 -11 14 -17c0 -12 -11 -33 -24 -33zM331 622c-99 0 -198 -85 -198 -295c0 -192 115 -301 237 -301c114 0 200 105 200 284c0 202 -107 312 -239 312zM666 329c0 -84 -22 -156.3 -61.8 -213
-c-54.9 -78.3 -143.4 -126 -254.2 -126c-170 0 -313 123 -313 320c0 193.9 113.3 348 307 348c179 0 322 -122 322 -329z" />
-    <glyph glyph-name="omacron" unicode="&#x14d;" horiz-adv-x="504" 
-d="M360 518h-224c-9 0 -13 11 -13 18c0 12 11 32 22 32h225c10 0 14 -11 14 -17c0 -12 -11 -33 -24 -33zM41 205c0 63.2 19 121.4 55.3 164c36.6 43 90.9 70 156.7 70c153 0 210 -121 210 -225c0 -61.3 -20.3 -124.2 -65.1 -168c-34.1 -33.3 -82.5 -56 -146.9 -56
-c-142 0 -210 113 -210 215zM238 404c-90 0 -111 -89 -111 -176c0 -77 34 -203 138 -203c47 0 112 31 112 157c0 144 -53 222 -139 222z" />
-    <glyph glyph-name="Obreve" unicode="&#x14e;" horiz-adv-x="702" 
-d="M490 805c-6 -71 -70 -113 -136 -113c-73 0 -131 43 -136 113h28c8 -39 55 -61 108 -61c49 0 101 22 108 61h28zM331 622c-99 0 -198 -85 -198 -295c0 -192 115 -301 237 -301c114 0 200 105 200 284c0 202 -107 312 -239 312zM666 329c0 -84 -22 -156.3 -61.8 -213
-c-54.9 -78.3 -143.4 -126 -254.2 -126c-170 0 -313 123 -313 320c0 193.9 113.3 348 307 348c179 0 322 -122 322 -329z" />
-    <glyph glyph-name="obreve" unicode="&#x14f;" horiz-adv-x="504" 
-d="M131 645c11 -53 54 -90 108 -90c52 0 98 32 108 90l27 -12c-12 -86 -76 -135 -135 -135c-70 0 -121 50 -135 135zM41 205c0 63.2 19 121.4 55.3 164c36.6 43 90.9 70 156.7 70c153 0 210 -121 210 -225c0 -61.3 -20.3 -124.2 -65.1 -168
-c-34.1 -33.3 -82.5 -56 -146.9 -56c-142 0 -210 113 -210 215zM238 404c-90 0 -111 -89 -111 -176c0 -77 34 -203 138 -203c47 0 112 31 112 157c0 144 -53 222 -139 222z" />
-    <glyph glyph-name="Ohungarumlaut" unicode="&#x150;" horiz-adv-x="702" 
-d="M503 792c0 -9 -3 -16 -7 -20l-99 -84c-2 -2 -5 -3 -8 -3c-5 0 -13 5 -13 13c0 3 1.20001 6.40002 3.70001 11l59.3 109c5 8 12 12 23 12c29 0 41 -21.8 41 -38zM372 797c0 -8 -2 -15 -7 -19l-88 -80.5c-4.39999 -4 -8.39999 -7.5 -14 -7.5c-7 0 -13 5 -13 12
-c0 2 0.600006 7.20001 2.5 11l54.5 110c5 8 12 12 27 12c15.7 0 38 -14.7 38 -38zM331 622c-99 0 -198 -85 -198 -295c0 -192 115 -301 237 -301c114 0 200 105 200 284c0 202 -107 312 -239 312zM666 329c0 -84 -22 -156.3 -61.8 -213c-54.9 -78.3 -143.4 -126 -254.2 -126
-c-170 0 -313 123 -313 320c0 193.9 113.3 348 307 348c179 0 322 -122 322 -329z" />
-    <glyph glyph-name="ohungarumlaut" unicode="&#x151;" horiz-adv-x="504" 
-d="M397 611c0 -6 -1 -13 -7 -19l-114 -110c-2 -2 -4 -2 -6 -2c-5 0 -14 5 -14 13c0 1 0 3 1 4l78 139c5 9 12 12 24 12c21 0 38 -18.4 38 -37zM265 617c0 -5 -1 -11 -5 -16l-102 -121c-2 -2 -5 -3 -8 -3c-6 0 -14 5 -14 13c0 1 0 2 1 3l64 146c6 13 22 14 26 14
-c20.9 0 38 -15.5 38 -36zM41 205c0 63.2 19 121.4 55.3 164c36.6 43 90.9 70 156.7 70c153 0 210 -121 210 -225c0 -61.3 -20.3 -124.2 -65.1 -168c-34.1 -33.3 -82.5 -56 -146.9 -56c-142 0 -210 113 -210 215zM238 404c-90 0 -111 -89 -111 -176c0 -77 34 -203 138 -203
-c47 0 112 31 112 157c0 144 -53 222 -139 222z" />
-    <glyph glyph-name="OE" unicode="&#x152;" horiz-adv-x="869" 
-d="M356 32h13c40 0 49 12 49 40v502c0 31 -11 37 -49 37h-35c-97 0 -198 -70 -198 -284c0 -207 117 -295 220 -295zM358 -2c-188 1 -316 140 -316 320s119 328 305 328c0 0 70 -1 114 -1h78h257l14 -139l-27 -3c-7 43 -41 102 -93 102h-151c-24 0 -36 -8 -36 -32v-207h103
-c36 0 44 16 51 44l7 30c0 4 3 8 7 8h22c2 0 3 -2 3 -4c-2 -32 -8 -62 -8 -95c0 -35 5 -64 8 -96l-2 -3h-23c-5 0 -8 3 -8 7l-6 31c-6 28 -17 44 -51 44h-103v-260c0 -27 14 -33 36 -33h155c65 0 94 53 109 126l27 -5l-26 -160h-344c-40 0 -102 -2 -102 -2z" />
-    <glyph glyph-name="oe" unicode="&#x153;" horiz-adv-x="778" 
-d="M409 349c34 50 93 90 161 90c118 0 171 -74 171 -191h-290c-1 -9 -1 -20 -1 -30c0 -134 93 -181 132 -181c38 0 99 17 130 50c10.5 -0.599998 16.8 -7 22 -15c-22 -30 -68 -82 -163 -82c-92 0 -140 42 -168 89c-36 -54 -86 -89 -164 -89c-122 0 -205 93 -205 216
-c0 156 98 233 209 233c101 0 138 -43 166 -90zM120 237c0 -111 40 -212 133 -212c47 0 114 34 114 175c0 154 -81 206 -125 206c-103 0 -122 -100 -122 -169zM655 287c-1 41 -11 118 -87 118c-86 0 -112 -102 -114 -118h201z" />
-    <glyph glyph-name="Racute" unicode="&#x154;" horiz-adv-x="587" 
-d="M312 820c28.6 -13.3 49.3 -30.7 62 -52l-144 -58c-21 -9 -33 -12 -42 -12s-15 7 -15 15c0 7 2 12 15 21zM272 618c-71 0 -83 -35 -83 -64v-229h48c97 0 168 28 168 153c0 118 -72 140 -133 140zM189 122c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-44 1 -91.4 2 -129 2
-c-38.5 0 -85 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c47 -1 94 -2 129 -2c36 0 78 7 125 7c63 0 125 -3 173 -48c36 -34 53 -75 53 -125c0 -105 -90 -157 -133 -171l126 -210c26 -43.4 51 -77 96 -77c4 -8 4.5 -17.1 1 -24
-c-10 -5 -27 -7 -42 -7c-60 0 -103.3 42.4 -132 89l-107 174c-14.3 23.3 -33 38 -117 38v-169z" />
-    <glyph glyph-name="racute" unicode="&#x155;" horiz-adv-x="372" 
-d="M241 671c3 1 9 2 14 2c6.39999 0 32 -1 55 -23l3 -11l-115 -109c-15 -15 -23 -19 -30 -19s-14 6 -14 13c0 11.2 3.3 15.2 11.4 28zM176 358c0.199997 -5 5 -13 11 -2c23 39 64 83 111 83c42 0 60 -28.9 60 -48c0 -25 -23 -50 -47 -50c-17.4 0 -28.6 13.3 -36.2 23.3
-c-7.79999 10.3 -16.8 12.7 -25.8 12.7c-12 0 -35 -33 -46 -49c-12 -18 -24 -41 -24 -67v-139c0 -83 12 -86 82 -91c6 -6 6 -27 0 -33c-35 1 -81 2 -121 2s-79 -1 -114 -2c-6 6 -6 27 0 33c62 4 74 8 74 91v195c0 58 -11 63 -65 68c-2 6 -4 22 -2 28c69 9 95 18 123 29
-c8 0 9.89999 -3.39999 12 -8c4.7 -10.3 6.3 -36 8 -76z" />
-    <glyph glyph-name="Rcommaaccent" unicode="&#x156;" horiz-adv-x="587" 
-d="M310 -41c38 0 62 -34 62 -86c0 -60 -49 -90 -106 -99c-6 6 -8 15 -8 24c49 11 75 35 75 53c0 20 -13 24 -31 26c-17 3 -42 12 -42 39c0 24 21 43 50 43zM272 618c-71 0 -83 -35 -83 -64v-229h48c97 0 168 28 168 153c0 118 -72 140 -133 140zM189 122
-c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-44 1 -91.4 2 -129 2c-38.5 0 -85 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c47 -1 94 -2 129 -2c36 0 78 7 125 7c63 0 125 -3 173 -48c36 -34 53 -75 53 -125
-c0 -105 -90 -157 -133 -171l126 -210c26 -43.4 51 -77 96 -77c4 -8 4.5 -17.1 1 -24c-10 -5 -27 -7 -42 -7c-60 0 -103.3 42.4 -132 89l-107 174c-14.3 23.3 -33 38 -117 38v-169z" />
-    <glyph glyph-name="rcommaaccent" unicode="&#x157;" horiz-adv-x="372" 
-d="M137 -41c38 0 62 -34 62 -86c0 -60 -49 -90 -106 -99c-6 6 -8 15 -8 24c49 11 75 35 75 53c0 20 -13 24 -31 26c-17 3 -42 12 -42 39c0 24 21 43 50 43zM176 358c0.199997 -5 5 -13 11 -2c23 39 64 83 111 83c42 0 60 -28.9 60 -48c0 -25 -23 -50 -47 -50
-c-17.4 0 -28.6 13.3 -36.2 23.3c-7.79999 10.3 -16.8 12.7 -25.8 12.7c-12 0 -35 -33 -46 -49c-12 -18 -24 -41 -24 -67v-139c0 -83 12 -86 82 -91c6 -6 6 -27 0 -33c-35 1 -81 2 -121 2s-79 -1 -114 -2c-6 6 -6 27 0 33c62 4 74 8 74 91v195c0 58 -11 63 -65 68
-c-2 6 -4 22 -2 28c69 9 95 18 123 29c8 0 9.89999 -3.39999 12 -8c4.7 -10.3 6.3 -36 8 -76z" />
-    <glyph glyph-name="Rcaron" unicode="&#x158;" horiz-adv-x="587" 
-d="M244 697c-30 37 -65 67 -101 95l16 20c39 -17 73 -36 106 -61c37 26 69 45 107 61l15 -20c-38 -29 -70 -61 -100 -95h-43zM272 618c-71 0 -83 -35 -83 -64v-229h48c97 0 168 28 168 153c0 118 -72 140 -133 140zM189 122c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33
-c-44 1 -91.4 2 -129 2c-38.5 0 -85 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c47 -1 94 -2 129 -2c36 0 78 7 125 7c63 0 125 -3 173 -48c36 -34 53 -75 53 -125c0 -105 -90 -157 -133 -171l126 -210c26 -43.4 51 -77 96 -77
-c4 -8 4.5 -17.1 1 -24c-10 -5 -27 -7 -42 -7c-60 0 -103.3 42.4 -132 89l-107 174c-14.3 23.3 -33 38 -117 38v-169z" />
-    <glyph glyph-name="rcaron" unicode="&#x159;" horiz-adv-x="372" 
-d="M175 503c-29 47 -66 92 -101 130l20 13c39 -29 72 -54 106 -90c37 38 71 63 108 90l19 -13c-35 -39 -73 -84 -102 -130h-50zM176 358c0.199997 -5 5 -13 11 -2c23 39 64 83 111 83c42 0 60 -28.9 60 -48c0 -25 -23 -50 -47 -50c-17.4 0 -28.6 13.3 -36.2 23.3
-c-7.79999 10.3 -16.8 12.7 -25.8 12.7c-12 0 -35 -33 -46 -49c-12 -18 -24 -41 -24 -67v-139c0 -83 12 -86 82 -91c6 -6 6 -27 0 -33c-35 1 -81 2 -121 2s-79 -1 -114 -2c-6 6 -6 27 0 33c62 4 74 8 74 91v195c0 58 -11 63 -65 68c-2 6 -4 22 -2 28c69 9 95 18 123 29
-c8 0 9.89999 -3.39999 12 -8c4.7 -10.3 6.3 -36 8 -76z" />
-    <glyph glyph-name="Sacute" unicode="&#x15a;" horiz-adv-x="485" 
-d="M282 820c28.6 -13.3 49.3 -30.7 62 -52l-144 -58c-21 -9 -33 -12 -42 -12s-15 7 -15 15c0 7 2 12 15 21zM394.7 631c10.3 -53 14.3 -81 17.8 -129c-9 -7 -22 -7.79999 -32.5 -6c-20 66 -51 128 -148.1 128c-58.9 0 -109.5 -56 -109.5 -112
-c0 -84.1 99.9 -121.9 159.1 -144.1c82.4 -30.9 162.5 -77.5 162.5 -183.9c0 -63.6 -36.5 -125.2 -94 -161.2c-34.8 -21.7 -77.8 -32.8 -123.3 -32.8c-88.7 0 -116.7 23 -179.7 23c-12 49 -16 75 -20 152c9.6 5.10001 20.2 7 32.5 3c22 -99.5 82 -142 175.5 -142
-c79.8 0 125 42 125 123c0 97.8 -73.7 125.9 -134.5 149c-88 33.5 -174.5 81.6 -174.5 187c0 106 89 173 190.3 173c97.7 0 95.6 -19 153.4 -27z" />
-    <glyph glyph-name="sacute" unicode="&#x15b;" horiz-adv-x="390" 
-d="M48 138c6 6 25 7 31 1c6 -25 17 -69 39 -92c10.3 -10.7 32 -24 71 -24c37 0 85 21 85 70c0 43 -19 64 -102 98c-77 32 -110 63 -110 136c0 64 67 112 141 112c52 0 100 -14 131 -19c-1 -33 -3 -70 -6 -106c-6 -6 -26 -7 -32 -1c-13 85 -71 93 -93 93
-c-34 0 -70 -23 -70 -64c0 -55 39.8 -70.5 100 -92.8c68 -25.2 117 -64.9 117 -133.2c0 -99 -103 -126 -159 -126c-37 0 -64 4 -91 11c-7 2 -13 2 -20 2c-5 0 -15 -1 -25 -3c0 42 -3 89 -7 138zM227 671c3 1 9 2 14 2c6.39999 0 32 -1 55 -23l3 -11l-115 -109
-c-15 -15 -23 -19 -30 -19s-14 6 -14 13c0 11.2 3.3 15.2 11.4 28z" />
-    <glyph glyph-name="Scircumflex" unicode="&#x15c;" horiz-adv-x="485" 
-d="M248 815c30 -36 67 -70 103 -97c-2.79999 -9.09998 -6.89999 -17.2 -16 -21c-39 18 -73 36 -106 61c-37 -27 -69 -44 -107 -61c-9 6 -12 12 -14 21c37 28 70 63 101 97c14 8.40002 23.6 7.70001 39 0zM394.7 631c10.3 -53 14.3 -81 17.8 -129
-c-9 -7 -22 -7.79999 -32.5 -6c-20 66 -51 128 -148.1 128c-58.9 0 -109.5 -56 -109.5 -112c0 -84.1 99.9 -121.9 159.1 -144.1c82.4 -30.9 162.5 -77.5 162.5 -183.9c0 -63.6 -36.5 -125.2 -94 -161.2c-34.8 -21.7 -77.8 -32.8 -123.3 -32.8c-88.7 0 -116.7 23 -179.7 23
-c-12 49 -16 75 -20 152c9.6 5.10001 20.2 7 32.5 3c22 -99.5 82 -142 175.5 -142c79.8 0 125 42 125 123c0 97.8 -73.7 125.9 -134.5 149c-88 33.5 -174.5 81.6 -174.5 187c0 106 89 173 190.3 173c97.7 0 95.6 -19 153.4 -27z" />
-    <glyph glyph-name="scircumflex" unicode="&#x15d;" horiz-adv-x="390" 
-d="M48 138c6 6 25 7 31 1c6 -25 17 -69 39 -92c10.3 -10.7 32 -24 71 -24c37 0 85 21 85 70c0 43 -19 64 -102 98c-77 32 -110 63 -110 136c0 64 67 112 141 112c52 0 100 -14 131 -19c-1 -33 -3 -70 -6 -106c-6 -6 -26 -7 -32 -1c-13 85 -71 93 -93 93
-c-34 0 -70 -23 -70 -64c0 -55 39.8 -70.5 100 -92.8c68 -25.2 117 -64.9 117 -133.2c0 -99 -103 -126 -159 -126c-37 0 -64 4 -91 11c-7 2 -13 2 -20 2c-5 0 -15 -1 -25 -3c0 42 -3 89 -7 138zM211 660c29 -47 73 -100 109 -140c-5 -7 -13.6 -15.1 -23 -17
-c-38 24 -73 52 -103 83c-32 -32 -65 -61 -104 -83c-9 2 -16 8 -22 17c36 40 82 94 111 140c10.7 2.29999 21.3 3 32 0z" />
-    <glyph glyph-name="Scedilla" unicode="&#x15e;" horiz-adv-x="485" 
-d="M220 -96c-19 0 -29 -1 -45 -6l-6 6l36 86.5c-72.2 3.3 -100.4 22.5 -158 22.5c-12 49 -16 75 -20 152c9.6 5.10001 20.2 7 32.5 3c22 -99.5 82 -142 175.5 -142c79.8 0 125 42 125 123c0 97.8 -73.7 125.9 -134.5 149c-88 33.5 -174.5 81.6 -174.5 187
-c0 106 89 173 190.3 173c97.7 0 95.6 -19 153.4 -27c10.3 -53 14.3 -81 17.8 -129c-9 -7 -22 -7.79999 -32.5 -6c-20 66 -51 128 -148.1 128c-58.9 0 -109.5 -56 -109.5 -112c0 -84.1 99.9 -121.9 159.1 -144.1c82.4 -30.9 162.5 -77.5 162.5 -183.9
-c0 -63.6 -36.5 -125.2 -94 -161.2c-31.5 -19.7 -69.8 -30.6 -110.6 -32.5l-21.4 -57.3c8 2 17 3 26 3c40 0 71 -24 71 -62c0 -43 -46 -74 -107 -74c-32 0 -49 6 -74 17c0 12 3 19 10 26c27 -10 38 -14 58 -14c30 0 51 14 51 40c0 21 -10 35 -33 35z" />
-    <glyph glyph-name="scedilla" unicode="&#x15f;" horiz-adv-x="390" 
-d="M48 138c6 6 25 7 31 1c6 -25 17 -69 39 -92c10.3 -10.7 32 -24 71 -24c37 0 85 21 85 70c0 43 -19 64 -102 98c-77 32 -110 63 -110 136c0 64 67 112 141 112c52 0 100 -14 131 -19c-1 -33 -3 -70 -6 -106c-6 -6 -26 -7 -32 -1c-13 85 -71 93 -93 93
-c-34 0 -70 -23 -70 -64c0 -55 39.8 -70.5 100 -92.8c68 -25.2 117 -64.9 117 -133.2c0 -92.1 -89.1 -121.9 -146.6 -125.6l-21.4 -57.4c8 2 17 3 26 3c40 0 71 -24 71 -62c0 -43 -46 -74 -107 -74c-32 0 -49 6 -74 17c0 12 3 19 10 26c27 -10 38 -14 58 -14
-c30 0 51 14 51 40c0 21 -10 35 -33 35c-19 0 -29 -1 -45 -6l-6 6l36 86.5c-26.3 1.3 -47.6 5 -69 10.5c-7 2 -13 2 -20 2c-5 0 -15 -1 -25 -3c0 42 -3 89 -7 138z" />
-    <glyph glyph-name="Scaron" unicode="&#x160;" horiz-adv-x="485" 
-d="M215 697c-30 37 -65 67 -101 95l16 20c39 -17 73 -36 106 -61c37 26 69 45 107 61l15 -20c-38 -29 -70 -61 -100 -95h-43zM394.7 631c10.3 -53 14.3 -81 17.8 -129c-9 -7 -22 -7.79999 -32.5 -6c-20 66 -51 128 -148.1 128c-58.9 0 -109.5 -56 -109.5 -112
-c0 -84.1 99.9 -121.9 159.1 -144.1c82.4 -30.9 162.5 -77.5 162.5 -183.9c0 -63.6 -36.5 -125.2 -94 -161.2c-34.8 -21.7 -77.8 -32.8 -123.3 -32.8c-88.7 0 -116.7 23 -179.7 23c-12 49 -16 75 -20 152c9.6 5.10001 20.2 7 32.5 3c22 -99.5 82 -142 175.5 -142
-c79.8 0 125 42 125 123c0 97.8 -73.7 125.9 -134.5 149c-88 33.5 -174.5 81.6 -174.5 187c0 106 89 173 190.3 173c97.7 0 95.6 -19 153.4 -27z" />
-    <glyph glyph-name="scaron" unicode="&#x161;" horiz-adv-x="390" 
-d="M48 138c6 6 25 7 31 1c6 -25 17 -69 39 -92c10.3 -10.7 32 -24 71 -24c37 0 85 21 85 70c0 43 -19 64 -102 98c-77 32 -110 63 -110 136c0 64 67 112 141 112c52 0 100 -14 131 -19c-1 -33 -3 -70 -6 -106c-6 -6 -26 -7 -32 -1c-13 85 -71 93 -93 93
-c-34 0 -70 -23 -70 -64c0 -55 39.8 -70.5 100 -92.8c68 -25.2 117 -64.9 117 -133.2c0 -99 -103 -126 -159 -126c-37 0 -64 4 -91 11c-7 2 -13 2 -20 2c-5 0 -15 -1 -25 -3c0 42 -3 89 -7 138zM169 502c-29 47 -66 92 -101 130l20 13c39 -29 72 -54 106 -90
-c37 38 71 63 108 90l19 -13c-35 -39 -73 -84 -102 -130h-50z" />
-    <glyph glyph-name="Tcedilla" unicode="&#x162;" horiz-adv-x="597" 
-d="M309 -96c-19 0 -29 -1 -45 -6l-6 6l40 96c-38.4 -0.1 -85 -1.1 -130 -2c-6 6 -6 27 0 33c80 3 97 8 97 91v385c0 61 -10 99 -47 99h-49c-66 0 -112 -26 -132 -106c-12 0 -24 1 -34 5c11 48 21 100 25 145c0 1 2 3 4 3c38 -3 156 -8 233 -8h86c79 0 190 5 224 8
-c1 0 3 -2 3 -3c1 -45 6 -96 13 -142c-9 -4 -23 -5 -34 -5c-17 77 -64 103 -139 103h-22c-36 0 -46 -38 -46 -102v-382c0 -83 17 -88 97 -91c6 -6 6 -27 0 -33c-40.2 0.8 -80.7 1.6 -115 1.9l-25 -66.9c8 2 17 3 26 3c40 0 71 -24 71 -62c0 -43 -46 -74 -107 -74
-c-32 0 -49 6 -74 17c0 12 3 19 10 26c27 -10 38 -14 58 -14c30 0 51 14 51 40c0 21 -10 35 -33 35z" />
-    <glyph glyph-name="tcedilla" unicode="&#x163;" horiz-adv-x="316" 
-d="M168 -96c-19 0 -29 -1 -45 -6l-6 6l36.2 86.8c-38.8 5 -64.2 34 -64.2 98.2v301h-59c-4 0 -5 1 -5 6v13c0 8 4 20 18 20l46 0.100006c0 110.9 -3 104.3 -3 115.9c0 6.90002 10 10.3 22 13.7c12.5 3.5 22.7 7.79999 34 14.1c9.3 5.10004 17.8 9 22.3 9
-c4.7 0 7.7 -2.39996 7.7 -8.79999c0 0 -4 -40 -4 -105v-39h120c5 0 8 -2 8 -6v-20c0 -9 -14 -13 -24 -13h-104v-253c0 -62 6 -92 33 -92c26 0 56 8 82 28c10 -1 16 -6.7 18 -17c-32.9 -37.1 -73.6 -58.6 -113.1 -64.4l-21.9 -58.6c8 2 17 3 26 3c40 0 71 -24 71 -62
-c0 -43 -46 -74 -107 -74c-32 0 -49 6 -74 17c0 12 3 19 10 26c27 -10 38 -14 58 -14c30 0 51 14 51 40c0 21 -10 35 -33 35z" />
-    <glyph glyph-name="Tcaron" unicode="&#x164;" horiz-adv-x="597" 
-d="M277 697c-30 37 -65 67 -101 95l16 20c39 -17 73 -36 106 -61c37 26 69 45 107 61l15 -20c-38 -29 -70 -61 -100 -95h-43zM350 122c0 -83 17 -88 97 -91c6 -6 6 -27 0 -33c-50 1 -100.6 2 -139 2c-40.1 0 -91 -1 -140 -2c-6 6 -6 27 0 33c80 3 97 8 97 91v385
-c0 61 -10 99 -47 99h-49c-66 0 -112 -26 -132 -106c-12 0 -24 1 -34 5c11 48 21 100 25 145c0 1 2 3 4 3c38 -3 156 -8 233 -8h86c79 0 190 5 224 8c1 0 3 -2 3 -3c1 -45 6 -96 13 -142c-9 -4 -23 -5 -34 -5c-17 77 -64 103 -139 103h-22c-36 0 -46 -38 -46 -102v-382z" />
-    <glyph glyph-name="tcaron" unicode="&#x165;" horiz-adv-x="374" 
-d="M266 698c38 0 60 -37 60 -73s-32 -98 -102 -106l-5 17c42 9 63 46 63 69c0 13 -6 21 -14 21c-41 0 -46 22 -46 38s14 34 44 34zM43 429l46 0.100006c0 110.9 -3 104.3 -3 115.9c0 6.90002 10 10.3 22 13.7c12.5 3.5 22.7 7.79999 34 14.1c9.3 5.10004 17.8 9 22.3 9
-c4.7 0 7.7 -2.39996 7.7 -8.79999c0 0 -4 -40 -4 -105v-39h120c5 0 8 -2 8 -6v-20c0 -9 -14 -13 -24 -13h-104v-253c0 -62 6 -92 33 -92c26 0 56 8 82 28c10 -1 16 -6.7 18 -17c-39 -44 -89 -66 -135 -66s-77 28 -77 99v301h-59c-4 0 -5 1 -5 6v13c0 8 4 20 18 20z" />
-    <glyph glyph-name="Tbar" unicode="&#x166;" horiz-adv-x="597" 
-d="M350 122c0 -83 17 -88 97 -91c6 -6 6 -27 0 -33c-50 1 -100.6 2 -139 2c-40.1 0 -91 -1 -140 -2c-6 6 -6 27 0 33c80 3 97 8 97 91v199h-124c-8 0 -11 8 -11 14c0 10 10 25 19 25h116v147c0 61 -10 99 -47 99h-49c-66 0 -112 -26 -132 -106c-12 0 -24 1 -34 5
-c11 48 21 100 25 145c0 1 2 3 4 3c38 -3 156 -8 233 -8h86c79 0 190 5 224 8c1 0 3 -2 3 -3c1 -45 6 -96 13 -142c-9 -4 -23 -5 -34 -5c-17 77 -64 103 -139 103h-22c-36 0 -46 -38 -46 -102v-144h136c9 0 12 -8 12 -13c0 -11 -9 -26 -21 -26h-127v-199z" />
-    <glyph glyph-name="tbar" unicode="&#x167;" horiz-adv-x="316" 
-d="M43 429l46 0.100006c0 110.9 -3 104.3 -3 115.9c0 6.90002 10 10.3 22 13.7c12.5 3.5 22.7 7.79999 34 14.1c9.3 5.10004 17.8 9 22.3 9c4.7 0 7.7 -2.39996 7.7 -8.79999c0 0 -4 -40 -4 -105v-39h120c5 0 8 -2 8 -6v-20c0 -9 -14 -13 -24 -13h-104v-106h100
-c9 0 12 -8 12 -13c0 -11 -9 -26 -21 -26h-91v-108c0 -62 6 -92 33 -92c26 0 56 8 82 28c10 -1 16 -6.7 18 -17c-39 -44 -89 -66 -135 -66s-77 28 -77 99v156h-59c-8 0 -11 8 -11 14c0 10 10 25 19 25h51v106h-59c-4 0 -5 1 -5 6v13c0 8 4 20 18 20z" />
-    <glyph glyph-name="Utilde" unicode="&#x168;" horiz-adv-x="661" 
-d="M413 745c22 0 33 10 47 52c11 1 21 -2 27 -6c-12 -60 -41 -99 -87 -99c-22 0 -43 18 -64 32c-18 11 -37 19 -54 19c-26 0 -36 -15 -46 -48c-11 -2 -21 -1 -27 5c14 59 37 98 80 98c30 0 52 -20 72 -34c16 -12 33 -19 52 -19zM172 523v-257c0 -65 2 -141 51 -188
-c30.1 -28.9 71 -47 119 -47c169 0 184 134 184 246v246c0 81 -17 84 -92 91c-6 6 -6 27 0 33c46 -1 94.5 -2 116 -2c23.2 0 64 1 102 2c6 -6 6 -27 0 -33c-60 -7 -77 -10.7 -77 -91v-228c0 -178 -49 -305 -254 -305c-102.5 0 -234 39 -234 243v290c0 83 -17 88 -77 91
-c-6 6 -6 27 0 33c39 -1 80 -2 119 -2c39.4 0 88 1 135 2c6 -6 6 -27 0 -33c-77 -3 -92 -8 -92 -91z" />
-    <glyph glyph-name="utilde" unicode="&#x169;" horiz-adv-x="531" 
-d="M324 573c22 0 33 10 47 52c11 1 21 -2 27 -6c-12 -60 -41 -99 -87 -99c-22 0 -43 18 -64 32c-18 11 -37 19 -54 19c-26 0 -36 -15 -46 -48c-11 -2 -21 -1 -27 5c14 59 37 98 80 98c30 0 52 -20 72 -34c16 -12 33 -19 52 -19zM217 -10c-99 0 -129 67 -129 136v192
-c0 65 -14 76 -62 80c-6 6 -6 27 0 33c34 -1 70 -2 102 -2c15 0 30 1 35 2c5 0 8 -3 8 -6c0 0 -4 -73 -4 -103v-182c0 -89 50 -103 80 -103c25 0 63 16 100 48c14 12 16 20 16 39v193c0 66 -13 78 -62 81c-6 6 -6 27 0 33c34 -1 70 -2 102 -2c15 0 30 1 35 2c5 0 8 -3 8 -6
-c0 0 -4 -73 -4 -103v-192c0 -49 9 -68 73 -73c6 -6 6 -21 0 -27c-61 -7 -96 -22 -118 -40c-6.5 -2.5 -11 -3 -19 0c0 0 -8.5 33.5 -11 59c-0.700012 7 -10 5 -15 1c-49 -40 -96 -60 -135 -60z" />
-    <glyph glyph-name="Umacron" unicode="&#x16a;" horiz-adv-x="661" 
-d="M453 744h-224c-9 0 -13 11 -13 18c0 12 11 32 22 32h225c10 0 14 -11 14 -17c0 -12 -11 -33 -24 -33zM172 523v-257c0 -65 2 -141 51 -188c30.1 -28.9 71 -47 119 -47c169 0 184 134 184 246v246c0 81 -17 84 -92 91c-6 6 -6 27 0 33c46 -1 94.5 -2 116 -2
-c23.2 0 64 1 102 2c6 -6 6 -27 0 -33c-60 -7 -77 -10.7 -77 -91v-228c0 -178 -49 -305 -254 -305c-102.5 0 -234 39 -234 243v290c0 83 -17 88 -77 91c-6 6 -6 27 0 33c39 -1 80 -2 119 -2c39.4 0 88 1 135 2c6 -6 6 -27 0 -33c-77 -3 -92 -8 -92 -91z" />
-    <glyph glyph-name="umacron" unicode="&#x16b;" horiz-adv-x="531" 
-d="M363 518h-224c-9 0 -13 11 -13 18c0 12 11 32 22 32h225c10 0 14 -11 14 -17c0 -12 -11 -33 -24 -33zM217 -10c-99 0 -129 67 -129 136v192c0 65 -14 76 -62 80c-6 6 -6 27 0 33c34 -1 70 -2 102 -2c15 0 30 1 35 2c5 0 8 -3 8 -6c0 0 -4 -73 -4 -103v-182
-c0 -89 50 -103 80 -103c25 0 63 16 100 48c14 12 16 20 16 39v193c0 66 -13 78 -62 81c-6 6 -6 27 0 33c34 -1 70 -2 102 -2c15 0 30 1 35 2c5 0 8 -3 8 -6c0 0 -4 -73 -4 -103v-192c0 -49 9 -68 73 -73c6 -6 6 -21 0 -27c-61 -7 -96 -22 -118 -40c-6.5 -2.5 -11 -3 -19 0
-c0 0 -8.5 33.5 -11 59c-0.700012 7 -10 5 -15 1c-49 -40 -96 -60 -135 -60z" />
-    <glyph glyph-name="Ubreve" unicode="&#x16c;" horiz-adv-x="661" 
-d="M484 804c-6 -71 -70 -113 -136 -113c-73 0 -131 43 -136 113h28c8 -39 55 -61 108 -61c49 0 101 22 108 61h28zM172 523v-257c0 -65 2 -141 51 -188c30.1 -28.9 71 -47 119 -47c169 0 184 134 184 246v246c0 81 -17 84 -92 91c-6 6 -6 27 0 33c46 -1 94.5 -2 116 -2
-c23.2 0 64 1 102 2c6 -6 6 -27 0 -33c-60 -7 -77 -10.7 -77 -91v-228c0 -178 -49 -305 -254 -305c-102.5 0 -234 39 -234 243v290c0 83 -17 88 -77 91c-6 6 -6 27 0 33c39 -1 80 -2 119 -2c39.4 0 88 1 135 2c6 -6 6 -27 0 -33c-77 -3 -92 -8 -92 -91z" />
-    <glyph glyph-name="ubreve" unicode="&#x16d;" horiz-adv-x="531" 
-d="M141 646c11 -53 54 -90 108 -90c52 0 98 32 108 90l27 -12c-12 -86 -76 -135 -135 -135c-70 0 -121 50 -135 135zM217 -10c-99 0 -129 67 -129 136v192c0 65 -14 76 -62 80c-6 6 -6 27 0 33c34 -1 70 -2 102 -2c15 0 30 1 35 2c5 0 8 -3 8 -6c0 0 -4 -73 -4 -103v-182
-c0 -89 50 -103 80 -103c25 0 63 16 100 48c14 12 16 20 16 39v193c0 66 -13 78 -62 81c-6 6 -6 27 0 33c34 -1 70 -2 102 -2c15 0 30 1 35 2c5 0 8 -3 8 -6c0 0 -4 -73 -4 -103v-192c0 -49 9 -68 73 -73c6 -6 6 -21 0 -27c-61 -7 -96 -22 -118 -40c-6.5 -2.5 -11 -3 -19 0
-c0 0 -8.5 33.5 -11 59c-0.700012 7 -10 5 -15 1c-49 -40 -96 -60 -135 -60z" />
-    <glyph glyph-name="Uring" unicode="&#x16e;" horiz-adv-x="661" 
-d="M347 776c-31 0 -48 -23 -48 -53c0 -28 17 -53 48 -53s48 25 48 53c0 31 -18 53 -48 53zM259 723c0 46 42 85 88 85s88 -38 88 -85c0 -45 -40 -85 -88 -85c-46 0 -88 39 -88 85zM172 523v-257c0 -65 2 -141 51 -188c30.1 -28.9 71 -47 119 -47c169 0 184 134 184 246v246
-c0 81 -17 84 -92 91c-6 6 -6 27 0 33c46 -1 94.5 -2 116 -2c23.2 0 64 1 102 2c6 -6 6 -27 0 -33c-60 -7 -77 -10.7 -77 -91v-228c0 -178 -49 -305 -254 -305c-102.5 0 -234 39 -234 243v290c0 83 -17 88 -77 91c-6 6 -6 27 0 33c39 -1 80 -2 119 -2c39.4 0 88 1 135 2
-c6 -6 6 -27 0 -33c-77 -3 -92 -8 -92 -91z" />
-    <glyph glyph-name="uring" unicode="&#x16f;" horiz-adv-x="531" 
-d="M242 636c-31 0 -48 -23 -48 -53c0 -28 17 -53 48 -53s48 25 48 53c0 31 -18 53 -48 53zM154 583c0 46 42 85 88 85s88 -38 88 -85c0 -45 -40 -85 -88 -85c-46 0 -88 39 -88 85zM217 -10c-99 0 -129 67 -129 136v192c0 65 -14 76 -62 80c-6 6 -6 27 0 33
-c34 -1 70 -2 102 -2c15 0 30 1 35 2c5 0 8 -3 8 -6c0 0 -4 -73 -4 -103v-182c0 -89 50 -103 80 -103c25 0 63 16 100 48c14 12 16 20 16 39v193c0 66 -13 78 -62 81c-6 6 -6 27 0 33c34 -1 70 -2 102 -2c15 0 30 1 35 2c5 0 8 -3 8 -6c0 0 -4 -73 -4 -103v-192
-c0 -49 9 -68 73 -73c6 -6 6 -21 0 -27c-61 -7 -96 -22 -118 -40c-6.5 -2.5 -11 -3 -19 0c0 0 -8.5 33.5 -11 59c-0.700012 7 -10 5 -15 1c-49 -40 -96 -60 -135 -60z" />
-    <glyph glyph-name="Uhungarumlaut" unicode="&#x170;" horiz-adv-x="661" 
-d="M514 792c0 -9 -3 -16 -7 -20l-99 -84c-2 -2 -5 -3 -8 -3c-5 0 -13 5 -13 13c0 3 1.20001 6.40002 3.70001 11l59.3 109c5 8 12 12 23 12c29 0 41 -21.8 41 -38zM383 797c0 -8 -2 -15 -7 -19l-88 -80.5c-4.39999 -4 -8.39999 -7.5 -14 -7.5c-7 0 -13 5 -13 12
-c0 2 0.600006 7.20001 2.5 11l54.5 110c5 8 12 12 27 12c15.7 0 38 -14.7 38 -38zM172 523v-257c0 -65 2 -141 51 -188c30.1 -28.9 71 -47 119 -47c169 0 184 134 184 246v246c0 81 -17 84 -92 91c-6 6 -6 27 0 33c46 -1 94.5 -2 116 -2c23.2 0 64 1 102 2c6 -6 6 -27 0 -33
-c-60 -7 -77 -10.7 -77 -91v-228c0 -178 -49 -305 -254 -305c-102.5 0 -234 39 -234 243v290c0 83 -17 88 -77 91c-6 6 -6 27 0 33c39 -1 80 -2 119 -2c39.4 0 88 1 135 2c6 -6 6 -27 0 -33c-77 -3 -92 -8 -92 -91z" />
-    <glyph glyph-name="uhungarumlaut" unicode="&#x171;" horiz-adv-x="531" 
-d="M423 611c0 -6 -1 -13 -7 -19l-114 -110c-2 -2 -4 -2 -6 -2c-5 0 -14 5 -14 13c0 1 0 3 1 4l78 139c5 9 12 12 24 12c21 0 38 -18.4 38 -37zM291 617c0 -5 -1 -11 -5 -16l-102 -121c-2 -2 -5 -3 -8 -3c-6 0 -14 5 -14 13c0 1 0 2 1 3l64 146c6 13 22 14 26 14
-c20.9 0 38 -15.5 38 -36zM217 -10c-99 0 -129 67 -129 136v192c0 65 -14 76 -62 80c-6 6 -6 27 0 33c34 -1 70 -2 102 -2c15 0 30 1 35 2c5 0 8 -3 8 -6c0 0 -4 -73 -4 -103v-182c0 -89 50 -103 80 -103c25 0 63 16 100 48c14 12 16 20 16 39v193c0 66 -13 78 -62 81
-c-6 6 -6 27 0 33c34 -1 70 -2 102 -2c15 0 30 1 35 2c5 0 8 -3 8 -6c0 0 -4 -73 -4 -103v-192c0 -49 9 -68 73 -73c6 -6 6 -21 0 -27c-61 -7 -96 -22 -118 -40c-6.5 -2.5 -11 -3 -19 0c0 0 -8.5 33.5 -11 59c-0.700012 7 -10 5 -15 1c-49 -40 -96 -60 -135 -60z" />
-    <glyph glyph-name="Uogonek" unicode="&#x172;" horiz-adv-x="661" 
-d="M498 -135c-29 -45 -69 -65 -110 -65c-50 0 -88 20 -88 74c0 42.8 37.3 83.2 90.6 121.8c-20.9 -3.8 -44 -5.8 -69.6 -5.8c-102.5 0 -234 39 -234 243v290c0 83 -17 88 -77 91c-6 6 -6 27 0 33c39 -1 80 -2 119 -2c39.4 0 88 1 135 2c6 -6 6 -27 0 -33
-c-77 -3 -92 -8 -92 -91v-257c0 -65 2 -141 51 -188c30.1 -28.9 71 -47 119 -47c169 0 184 134 184 246v246c0 81 -17 84 -92 91c-6 6 -6 27 0 33c46 -1 94.5 -2 116 -2c23.2 0 64 1 102 2c6 -6 6 -27 0 -33c-60 -7 -77 -10.7 -77 -91v-228
-c0 -121.2 -22.7 -218.8 -101.9 -268.7c-76.3 -62.6 -111.1 -93.8 -111.1 -141.3c0 -26 13 -47 50 -47c29 0 45 16 67 38c9 0 15 -4 19 -11z" />
-    <glyph glyph-name="uogonek" unicode="&#x173;" horiz-adv-x="531" 
-d="M501 -135c-29 -45 -69 -65 -110 -65c-50 0 -88 20 -88 74c0 40.4 20.3 96.4 71 133.1c-2.60001 11.9 -5.60001 28.1 -7 41.9c-0.700012 7 -10 5 -15 1c-49 -40 -96 -60 -135 -60c-99 0 -129 67 -129 136v192c0 65 -14 76 -62 80c-6 6 -6 27 0 33c34 -1 70 -2 102 -2
-c15 0 30 1 35 2c5 0 8 -3 8 -6c0 0 -4 -73 -4 -103v-182c0 -89 50 -103 80 -103c25 0 63 16 100 48c14 12 16 20 16 39v193c0 66 -13 78 -62 81c-6 6 -6 27 0 33c34 -1 70 -2 102 -2c15 0 30 1 35 2c5 0 8 -3 8 -6c0 0 -4 -73 -4 -103v-192c0 -49 9 -68 73 -73
-c6 -6 6 -21 0 -27c-35.6 -4.1 -62.3 -10.9 -82.8 -19.4c-50.4 -28 -67.2 -86.3 -67.2 -125.6c0 -26 13 -47 50 -47c29 0 45 16 67 38c9 0 15 -4 19 -11z" />
-    <glyph glyph-name="Wcircumflex" unicode="&#x174;" horiz-adv-x="951" 
-d="M476 808c30 -36 67 -70 103 -97c-2.79999 -9.09998 -6.90002 -17.2 -16 -21c-39 18 -73 36 -106 61c-37 -27 -69 -44 -107 -61c-9 6 -12 12 -14 21c37 28 70 63 101 97c14 8.40002 23.6 7.70001 39 0zM810 565c15.3 42.6 -25 46 -66 49c-6 6 -6 27 0 33
-c40 -1 84 -2 110 -2s58 1 87 2c6 -6 6 -27 0 -33c-55 -3 -73.1 -26.3 -86 -61l-201 -539c-5 -15 -12 -26 -23 -26c-12 0 -17.1 10 -23 27l-115 332c-5.89999 17.1 -10 28 -14 28c-5 0 -8.10001 -5 -17 -25l-149 -335c-7.39999 -16.6 -13 -27 -26 -27
-c-11.5 0 -16.6 11.1 -22 27l-188 541c-18.6 53.5 -26 55 -71 58c-6 6 -6 27 0 33c29 -1 58.3 -2 93 -2c39 0 83 1 116 2c6 -6 6 -27 0 -33c-35 -2 -61.6 -6.90002 -50 -42l146.2 -442.3l4.29999 -1l129.5 293.3c7.5 16.9 9 24.7 9 35c0 9 -3.10001 19 -7 31l-23 66
-c-9 25.7 -31 57 -84 60c-6 6 -6 27 0 33c32 -1 67 -2 100 -2c40 0 84 1 125 2c6 -6 6 -27 0 -33c-34 -3 -69.5 -6.20001 -52 -60l137.5 -422l3.20001 -1.3z" />
-    <glyph glyph-name="wcircumflex" unicode="&#x175;" horiz-adv-x="747" 
-d="M383 659c29 -47 73 -100 109 -140c-5 -7 -13.6 -15.1 -23 -17c-38 24 -73 52 -103 83c-32 -32 -65 -61 -104 -83c-9 2 -16 8 -22 17c36 40 82 94 111 140c10.7 2.29999 21.3 3 32 0zM203 398c-48 -3 -49 -19 -30.1 -67l80 -206c12.9 -32.5 15.1 -31 28.1 2l70 177
-l-6.39999 16c-17.9 44.8 -29.6 73.5 -76.6 78c-6 6 -6 27 0 33c30 -1 63 -2 88 -2c30 0 70 1 100 2c6 -6 6 -27 0 -33c-53 -4 -55 -14 -36.5 -61l86.3 -219c8.20001 -20.8 12.2 -21 22.2 4l83.6 208c14.1 35.1 24.4 64 -50.6 68c-6 6 -6 27 0 33c30 -1 72 -2 102 -2
-s52 1 72 2c6 -6 6 -27 0 -33c-51 -3 -68.1 -31.1 -84.5 -72l-130.5 -317c-6 -15 -14 -21 -23 -21c-10 0 -18 6 -24 20l-103 248l-101 -246c-7 -16 -15 -22 -24 -22c-10 0 -18 6 -24 20l-130.9 323c-21.1 52 -32 62.2 -79.1 67c-6 6 -6 27 0 33c26.2 -1 53 -2 91 -2
-c36 0 71 1 101 2c6 -6 6 -27 0 -33z" />
-    <glyph glyph-name="Ycircumflex" unicode="&#x176;" horiz-adv-x="575" 
-d="M312 808c30 -36 67 -70 103 -97c-2.79999 -9.09998 -6.89999 -17.2 -16 -21c-39 18 -73 36 -106 61c-37 -27 -69 -44 -107 -61c-9 6 -12 12 -14 21c37 28 70 63 101 97c14 8.40002 23.6 7.70001 39 0zM337 122c0 -83 17 -88 97 -91c6 -6 6 -27 0 -33
-c-50 1 -100.3 2 -139 2c-38.6 0 -91 -1 -140 -2c-6 6 -6 27 0 33c80 3 97 8 97 91v127c0 37 -3.5 47.5 -21 77l-131.3 221c-34.5 58.1 -51.7 64 -93.7 67c-6 6 -7 27 -1 33c30 -1 63 -2 102 -2c40 0 78 1 114 2c6 -6 6 -27 0 -33c-56 -3 -60 -12.6 -35.8 -55.2l116 -204.8
-c9 -15.9 13.8 -17.2 21.8 -2l110.8 209c21.4 40.4 5.5 50 -38.8 53c-6 6 -6 27 0 33c32 -1 68 -2 91 -2s55 1 83 2c6 -6 6 -27 0 -33c-44.7 -4.29999 -67 -13.3 -95 -64l-119.5 -216c-16.4 -29.6 -17.5 -46.5 -17.5 -76.3v-135.7z" />
-    <glyph glyph-name="ycircumflex" unicode="&#x177;" horiz-adv-x="515" 
-d="M291 660c29 -47 73 -100 109 -140c-5 -7 -13.6 -15.1 -23 -17c-38 24 -73 52 -103 83c-32 -32 -65 -61 -104 -83c-9 2 -16 8 -22 17c36 40 82 94 111 140c10.7 2.29999 21.3 3 32 0zM204 -160c-36 -64 -76 -72 -97 -72c-27 0 -47 16 -47 37c0 13 15 43 44 43
-c11 0 15 -3 29 -3c25 0 39 9 50 29c15 31 27.1 58.6 39 92c10 28 -5.3 73.9 -14 94l-113.1 263c-26.2 61 -39.2 70 -78.9 75c-6 6 -6 27 0 33c20 -1 47 -2 81 -2c36 0 76 1 113 2c6 -6 6 -27 0 -33c-56 -4.29999 -50.8 -22.8 -32.8 -65l88.7 -208
-c8.5 -19.8 16.9 -17.1 23.9 -1l99.2 229c16 36 -16.4 42 -48 45c-6 6 -6 27 0 33c30 -1 61 -2 91 -2c28 0 51 1 71 2c6 -6 6 -27 0 -33c-47 -5.70001 -61.3 -21.7 -81 -64c-52.2 -112.4 -97 -215 -177 -408c-12.3 -29.6 -25.4 -58.2 -41 -86z" />
-    <glyph glyph-name="Ydieresis" unicode="&#x178;" horiz-adv-x="575" 
-d="M175 751c0 26 21 48 47 48s47 -22 47 -48s-21 -47 -47 -47s-47 21 -47 47zM344 751c0 26 21 48 47 48s47 -22 47 -48s-21 -47 -47 -47s-47 21 -47 47zM337 122c0 -83 17 -88 97 -91c6 -6 6 -27 0 -33c-50 1 -100.3 2 -139 2c-38.6 0 -91 -1 -140 -2c-6 6 -6 27 0 33
-c80 3 97 8 97 91v127c0 37 -3.5 47.5 -21 77l-131.3 221c-34.5 58.1 -51.7 64 -93.7 67c-6 6 -7 27 -1 33c30 -1 63 -2 102 -2c40 0 78 1 114 2c6 -6 6 -27 0 -33c-56 -3 -60 -12.6 -35.8 -55.2l116 -204.8c9 -15.9 13.8 -17.2 21.8 -2l110.8 209c21.4 40.4 5.5 50 -38.8 53
-c-6 6 -6 27 0 33c32 -1 68 -2 91 -2s55 1 83 2c6 -6 6 -27 0 -33c-44.7 -4.29999 -67 -13.3 -95 -64l-119.5 -216c-16.4 -29.6 -17.5 -46.5 -17.5 -76.3v-135.7z" />
-    <glyph glyph-name="Zacute" unicode="&#x179;" horiz-adv-x="604" 
-d="M551 -2c0 0 -99.7 2 -126.7 2h-364.3c-14 0 -19 5 -19 15c0 7 2 15 8 23c102 152 292 418 389 541c5 7 8 13 8 18c0 6 -4.10001 9.09998 -10 9l-211 -4c-75 -1.40002 -113 -37 -134 -106c-11 0 -20 2 -30 5c8 41 18 98 22 152c37 -3 134 -8 181 -8h221c30 0 61 2 73 2
-c8 0 13 -4 13 -11c0 -11 -2.90002 -17.8 -24 -45c-118 -152 -302 -413 -375 -519c-5 -9 -8 -15 -8 -20c0 -9 8 -14.4 25 -14l193 4c109 2 134 57 165 128c13 0 24 -3 31 -5c-12 -52 -22 -111 -27 -167zM348 820c28.6 -13.3 49.3 -30.7 62 -52l-144 -58
-c-21 -9 -33 -12 -42 -12s-15 7 -15 15c0 7 2 12 15 21z" />
-    <glyph glyph-name="zacute" unicode="&#x17a;" horiz-adv-x="424" 
-d="M256 671c3 1 9 2 14 2c6.39999 0 32 -1 55 -23l3 -11l-115 -109c-15 -15 -23 -19 -30 -19s-14 6 -14 13c0 11.2 3.3 15.2 11.4 28zM71 439c14.5 -5.39999 26.9 -10 59 -10h183c29 0 57 2 62 2c7 0 12 -3 12 -7s-2.70001 -11.8 -18 -37c-62 -102 -166 -259 -240 -353h133
-c52.1 1.2 72.5 23.2 98 76l14 29c12 0 23.5 -2.3 30 -6c-7 -50 -20 -102 -32 -136l-312 3c-15 0 -23 5 -23 12c0 5 0.400002 8.4 9 20c78 105 178 249 246 363l-128 -3c-30 -0.700012 -61 -18 -81 -91c-11.6 -2.60001 -24.2 -0.700012 -33 3c9 49 14 84 15 129
-c0 2.39999 3.6 6 6 6z" />
-    <glyph glyph-name="Zdotaccent" unicode="&#x17b;" horiz-adv-x="604" 
-d="M258 750c0 28 24 52 52 52s52 -24 52 -52s-24 -52 -52 -52s-52 24 -52 52zM551 -2c0 0 -99.7 2 -126.7 2h-364.3c-14 0 -19 5 -19 15c0 7 2 15 8 23c102 152 292 418 389 541c5 7 8 13 8 18c0 6 -4.10001 9.09998 -10 9l-211 -4c-75 -1.40002 -113 -37 -134 -106
-c-11 0 -20 2 -30 5c8 41 18 98 22 152c37 -3 134 -8 181 -8h221c30 0 61 2 73 2c8 0 13 -4 13 -11c0 -11 -2.90002 -17.8 -24 -45c-118 -152 -302 -413 -375 -519c-5 -9 -8 -15 -8 -20c0 -9 8 -14.4 25 -14l193 4c109 2 134 57 165 128c13 0 24 -3 31 -5
-c-12 -52 -22 -111 -27 -167z" />
-    <glyph glyph-name="zdotaccent" unicode="&#x17c;" horiz-adv-x="424" 
-d="M165 599c0 24 28 48 52 48c27 0 48 -28 48 -52c0 -21.1 -24 -48 -52 -48c-24 0 -48 26 -48 52zM71 439c14.5 -5.39999 26.9 -10 59 -10h183c29 0 57 2 62 2c7 0 12 -3 12 -7s-2.70001 -11.8 -18 -37c-62 -102 -166 -259 -240 -353h133c52.1 1.2 72.5 23.2 98 76l14 29
-c12 0 23.5 -2.3 30 -6c-7 -50 -20 -102 -32 -136l-312 3c-15 0 -23 5 -23 12c0 5 0.400002 8.4 9 20c78 105 178 249 246 363l-128 -3c-30 -0.700012 -61 -18 -81 -91c-11.6 -2.60001 -24.2 -0.700012 -33 3c9 49 14 84 15 129c0 2.39999 3.6 6 6 6z" />
-    <glyph glyph-name="Zcaron" unicode="&#x17d;" horiz-adv-x="604" 
-d="M280 697c-30 37 -65 67 -101 95l16 20c39 -17 73 -36 106 -61c37 26 69 45 107 61l15 -20c-38 -29 -70 -61 -100 -95h-43zM551 -2c0 0 -99.7 2 -126.7 2h-364.3c-14 0 -19 5 -19 15c0 7 2 15 8 23c102 152 292 418 389 541c5 7 8 13 8 18c0 6 -4.10001 9.09998 -10 9
-l-211 -4c-75 -1.40002 -113 -37 -134 -106c-11 0 -20 2 -30 5c8 41 18 98 22 152c37 -3 134 -8 181 -8h221c30 0 61 2 73 2c8 0 13 -4 13 -11c0 -11 -2.90002 -17.8 -24 -45c-118 -152 -302 -413 -375 -519c-5 -9 -8 -15 -8 -20c0 -9 8 -14.4 25 -14l193 4
-c109 2 134 57 165 128c13 0 24 -3 31 -5c-12 -52 -22 -111 -27 -167z" />
-    <glyph glyph-name="zcaron" unicode="&#x17e;" horiz-adv-x="424" 
-d="M188 501c-29 47 -66 92 -101 130l20 13c39 -29 72 -54 106 -90c37 38 71 63 108 90l19 -13c-35 -39 -73 -84 -102 -130h-50zM71 439c14.5 -5.39999 26.9 -10 59 -10h183c29 0 57 2 62 2c7 0 12 -3 12 -7s-2.70001 -11.8 -18 -37c-62 -102 -166 -259 -240 -353h133
-c52.1 1.2 72.5 23.2 98 76l14 29c12 0 23.5 -2.3 30 -6c-7 -50 -20 -102 -32 -136l-312 3c-15 0 -23 5 -23 12c0 5 0.400002 8.4 9 20c78 105 178 249 246 363l-128 -3c-30 -0.700012 -61 -18 -81 -91c-11.6 -2.60001 -24.2 -0.700012 -33 3c9 49 14 84 15 129
-c0 2.39999 3.6 6 6 6z" />
-    <glyph glyph-name="longs" unicode="&#x17f;" horiz-adv-x="291" 
-d="M172 122c0 -83 11 -88 79 -91c6 -6 6 -27 0 -33c-43 1 -72 2 -118 2c-41 0 -63 -1 -105 -2c-6 6 -6 27 0 33c54 3 65 8 65 91v257c0 12 -1 16 -15 16h-44c-4 0 -5 1 -5 5v9c0 8 5 20 23 20c31 0 41 21 41 48c0 158 88 221 155 221c41 0 63 -12 83 -30
-c15 -13 26 -29 26 -46s-9 -38 -35 -38c-27 0 -41 14 -46 41c-4 20 -11 39 -35 39c-53 0 -69 -70 -69 -190v-352z" />
-    <glyph glyph-name="uni0186" unicode="&#x186;" horiz-adv-x="646" 
-d="M289 658c215 0 320 -146.2 320 -320c0 -104.3 -39.6 -202.2 -106 -263c-59 -54 -130 -85 -215 -85c-123 0 -168 40 -219 45c-10 55 -17 103 -22 155c11.3 6 21 9 33 5c26 -86 81 -168 219 -168c52 0 110 28 159.6 89c36.5 44.9 59.4 116.7 59.4 203
-c0 146 -93.4 298 -228 298c-93 0 -161 -31 -232 -109c-11 0 -18 6 -23 15c68 89 157 135 254 135z" />
-    <glyph glyph-name="uni0189" unicode="&#x189;" horiz-adv-x="701" 
-d="M191 84c0 -32 11 -52 109 -52c141 0 262 50 262 252c0 154 -71 329 -287 329c-49 0 -84 -14 -84 -49v-238h97c9 0 12 -8 12 -13c0 -11 -9 -26 -21 -26h-88v-203zM148 645c39 0 94 2 165 2c192 0 345 -153 345 -339c0 -246 -186 -310 -327 -310c-103 0 -145 2 -182 2
-c-37.7 0 -91 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v165h-87c-8 0 -11 8 -11 14c0 10 10 25 19 25h79v197c0 83 -17 88 -87 91c-6 6 -6 27 0 33c40 -1 93.3 -2 129 -2z" />
-    <glyph glyph-name="uni018E" unicode="&#x18e;" horiz-adv-x="560" 
-d="M69 645h334l130 1v-21c0 -3 -1 -7 -8 -7h-29c-38 0 -52 -15 -52 -46v-500c0 -28 12 -45 52 -45h29c7 0 8 -4 8 -7v-22l-129 2h-78h-274l-25 160l26 5c16 -73 44 -126 110 -126h164c22 0 36 6 36 33v255h-136c-34 0 -45 -15 -51 -44l-6 -31c0 -3 -3 -7 -8 -7h-23l-2 3
-c2 17 8 62 8 96c0 33 -5 70 -8 95c0 2 1 4 3 4h22c4 0 7 -4 7 -8l7 -30c7 -28 15 -44 51 -44h136v212c0 24 -12 32 -36 32h-152c-52 0 -86 -60 -93 -103l-27 3z" />
-    <glyph glyph-name="uni018F" unicode="&#x18f;" horiz-adv-x="644" 
-d="M97 523l-23 24c79 74 126 111 236 111c215 0 301 -173 301 -332c0 -195 -102 -338 -295 -338c-192 0 -263 130 -274 272h478c1 11 1 23 1 37c0 186 -92 327 -227 327c-93 0 -144 -49 -197 -101zM122 216c31 -130 103 -194 201 -194c106 0 170 94 188 194h-389z" />
-    <glyph glyph-name="florin" unicode="&#x192;" horiz-adv-x="440" 
-d="M173 390h-95c-4 0 -5 1 -5 6v13c0 8 5 20 23 20h36c36 0 51 25 55 54c19 148 81 215 139 215c80 0 106 -39 106 -68c0 -20 -12 -37 -32 -37s-36 6 -39 25c-3 16 -13 51 -36 51c-18 0 -48 -22 -61 -128l-14 -112h111c5 0 8 -2 8 -6v-20c0 -9 -14 -13 -23 -13h-102l-2 -16
-c-50 -398 -66 -606 -186 -606c-56 0 -86 37 -86 56c0 15 12 34 32 34c18 0 29 -8 35 -22c7 -12 0 -32 22 -32c88 0 82 288 102 474z" />
-    <glyph glyph-name="uni019E" unicode="&#x19e;" horiz-adv-x="551" 
-d="M175 439l-3 -89h3c68 75 118 89 172 89c95 0 116 -69 116 -158v-441c0 -29 11 -40 44 -43l21 -2c5 -1 9 -3 9 -8v-19l-2 -2s-70 2 -114 2c-40 0 -103 -2 -103 -2l-3 2v19c0 5 4 7 9 8l15 2c34 5 45 14 45 43v448c0 70 -13 103 -69 103c-46 0 -86 -17 -140 -77v-242
-c0 -29 10 -38 45 -43l15 -2c5 -1 9 -3 9 -8v-19l-2 -2s-66 2 -108 2c-43 0 -110 -2 -110 -2l-2 2v19c0 5 4 7 9 8l20 2c35 3 45 14 45 43v249c0 50 -8 60 -23 62l-46 4l-2 24c74 11 116 20 146 31c3 0 4 -1 4 -3z" />
-    <glyph glyph-name="uni019F" unicode="&#x19f;" horiz-adv-x="702" 
-d="M666 329c0 -84 -22 -156.3 -61.8 -213c-54.9 -78.3 -143.4 -126 -254.2 -126c-170 0 -313 123 -313 320c0 193.9 113.3 348 307 348c179 0 322 -122 322 -329zM568.7 348c-12.6 177.8 -114.2 274 -237.7 274c-95.6 0 -191.3 -79.3 -197.7 -274h435.4zM570 309h-436.7
-c7 -180.8 118.6 -283 236.7 -283c113.8 0 199.7 104.6 200 283z" />
-    <glyph glyph-name="Ohorn" unicode="&#x1a0;" horiz-adv-x="702" 
-d="M331 622c-99 0 -198 -85 -198 -295c0 -192 115 -301 237 -301c114 0 200 105 200 284c0 202 -107 312 -239 312zM666 329c0 -84 -22 -156.3 -61.8 -213c-54.9 -78.3 -143.4 -126 -254.2 -126c-170 0 -313 123 -313 320c0 193.9 113.3 348 307 348
-c58.7 0 113.4 -13.1 160.6 -38c10.7 -2.29999 20.1 -3 31.4 -3c11 0 55 8 55 42c0 13 -17 24 -31 25c-34 4 -47 27 -47 47c0 24 16 39 46 39c38 0 69 -43 69 -91c0 -50 -22.3 -85.4 -75.6 -90.4c69.7 -56.2 113.6 -144.8 113.6 -259.6z" />
-    <glyph glyph-name="ohorn" unicode="&#x1a1;" horiz-adv-x="501" 
-d="M41 205c0 63.2 19 121.4 55.3 164c36.6 43 90.9 70 156.7 70c41.5 0 75.9 -8.89999 104 -23.9c6.39999 -0.800018 12.8 -1.10001 20 -1.10001c11 0 53 6 53 40c0 13 -14 21 -28 23c-34 3 -48 25 -48 45c0 24 17 39 46 39c38 0 64 -41 64 -88
-c0 -47.7 -24.8 -79.6 -66.7 -87.2c46.4 -44.8 65.7 -111.2 65.7 -171.8c0 -61.3 -20.3 -124.2 -65.1 -168c-34.1 -33.3 -82.5 -56 -146.9 -56c-142 0 -210 113 -210 215zM238 404c-90 0 -111 -89 -111 -176c0 -77 34 -203 138 -203c47 0 112 31 112 157
-c0 144 -53 222 -139 222z" />
-    <glyph glyph-name="uni01A7" unicode="&#x1a7;" horiz-adv-x="479" 
-d="M97 631c55 8 53 27 146 27c87 0 188 -67 188 -173c0 -117 -123 -167 -195 -194c-61 -24 -111 -51 -111 -142c0 -81 58 -125 134 -125c89 0 136 63 156 154l30 -3c-10 -76 -17 -124 -19 -175c-17 0 -26 5 -46 5c-24 0 -40 -17 -138 -17c-115 0 -198 94 -198 196
-c0 121 93 162 177 192c42 15 141 53 141 136c0 61 -44 112 -110 112c-99 0 -127 -84 -146 -150l-30 5c9 49 17 99 21 152z" />
-    <glyph glyph-name="uni01A8" unicode="&#x1a8;" horiz-adv-x="371" 
-d="M328 140l-7 -140c-9 2 -18 2 -23 2c-7 0 -12 0 -19 -2c-26 -7 -55 -10 -90 -10c-47 0 -152 27 -152 126c0 80 66 116 147 146c54 20 73 40 73 80c0 55 -39 67 -77 67c-21 0 -82 -16 -103 -98l-24 1c1 36 5 70 10 102c32 16 67 25 117 25c79 0 138 -45 138 -112
-c0 -75 -38 -96 -110 -128c-80 -34 -104 -63 -104 -106c0 -49 52 -75 87 -75c38 0 67 18 78 29c25 26 34 72 36 94z" />
-    <glyph glyph-name="uni01A9" unicode="&#x1a9;" horiz-adv-x="592" 
-d="M372 603h-226l218 -275l-1 -5l-260 -280h277c77 0 103 55 123 127c11.3 1.60001 24.3 0 33 -5c-5.20001 -55.6 -10.8 -111.1 -26 -165h-418c-28 0 -71 -2 -71 -2c-3.8 6.5 -3.2 26.4 0 33c11 3 20 10 29 21l221 257l2 1l-195 266c-17.2 23.4 -32 34 -56 38
-c-3.5 6 -3.6 26.1 0 32l101 -1h373c12.6 -59 16.7 -106.9 21 -155c-8.10001 -3.70001 -19.7 -7 -33 -5c-22 69 -37 118 -112 118z" />
-    <glyph glyph-name="Uhorn" unicode="&#x1af;" horiz-adv-x="690" 
-d="M616 608.8c-32 -2.79999 -41 -22.6 -41 -85.8v-228c0 -178 -49 -305 -254 -305c-90 0 -234 42 -234 246v287c0 83 -17 88 -77 91c-6 6 -6 27 0 33c50 -1 73 -2 119 -2c53 0 86 1 135 2c6 -6 6 -27 0 -33c-77 -3 -92 -8 -92 -91v-254c0 -65 2 -141 51 -188
-c30.1 -28.9 71 -50 119 -50c169 0 184 134 184 246v246c0 83 -17 84 -92 91c-6 6 -6 27 0 33c50 -1 70 -2 115 -2c83 0 99 5 99 26c0 9 -6.40002 15.8 -20 19c-21 5 -34 21 -34 41c0 24 20 39 49 39c38 0 53 -37 53 -84c0 -43 -37.2 -72.8 -80 -77.2z" />
-    <glyph glyph-name="uhorn" unicode="&#x1b0;" horiz-adv-x="531" 
-d="M217 -10c-99 0 -129 67 -129 136v192c0 65 -14 76 -62 80c-6 6 -6 27 0 33c34 -1 70 -2 102 -2c15 0 30 1 35 2c5 0 8 -3 8 -6c0 0 -4 -73 -4 -103v-182c0 -89 50 -103 80 -103c25 0 63 16 100 48c14 12 16 20 16 39v193c0 66 -13 78 -62 81c-6 6 -6 27 0 33
-c34 -1 70 -2 102 -2c10 0 20 0.399994 27 1v1c19 2 41 16 41 27s-8 20 -27 21c-34 1 -48 23 -48 43c0 24 17 39 46 39c38 0 63 -41 63 -88c0 -26 -17.7 -59.2 -60.1 -68.7c-1.19998 -23.9 -2.89999 -62.5 -2.89999 -82.3v-192c0 -49 9 -68 73 -73c6 -6 6 -21 0 -27
-c-61 -7 -96 -22 -118 -40c-6.5 -2.5 -11 -3 -19 0c0 0 -8.5 33.5 -11 59c-0.700012 7 -10 5 -15 1c-49 -40 -96 -60 -135 -60z" />
-    <glyph glyph-name="uni01B5" unicode="&#x1b5;" horiz-adv-x="604" 
-d="M551 -2c0 0 -99.7 2 -126.7 2h-364.3c-14 0 -19 5 -19 15c0 7 2 15 8 23c48.6 72.4 117.1 170.7 186.1 267h-125.1c-8 0 -11 8 -11 14c0 10 10 25 19 25h145.1c66.2 91.9 130.4 178.5 174.9 235c5 7 8 13 8 18c0 6 -4.10001 9.09998 -10 9l-211 -4
-c-75 -1.40002 -113 -37 -134 -106c-11 0 -20 2 -30 5c8 41 18 98 22 152c37 -3 134 -8 181 -8h221c30 0 61 2 73 2c8 0 13 -4 13 -11c0 -11 -2.90002 -17.8 -24 -45c-53 -68.3 -119.4 -158.6 -183 -247h154c9 0 12 -8 12 -13c0 -11 -9 -26 -21 -26h-173
-c-67.3 -94 -128.7 -181.7 -164 -233c-5 -9 -8 -15 -8 -20c0 -9 8 -14.4 25 -14l193 4c109 2 134 57 165 128c13 0 24 -3 31 -5c-12 -52 -22 -111 -27 -167z" />
-    <glyph glyph-name="uni01B6" unicode="&#x1b6;" horiz-adv-x="424" 
-d="M71 439c14.5 -5.39999 26.9 -10 59 -10h183c29 0 57 2 62 2c7 0 12 -3 12 -7s-2.70001 -11.8 -18 -37c-26.4 -43.4 -60.4 -96.8 -96.4 -151h62.4c9 0 12 -8 12 -13c0 -11 -9 -26 -21 -26h-79.6c-40.8 -60.1 -82.4 -118.6 -117.4 -163h133c52.1 1.2 72.5 23.2 98 76l14 29
-c12 0 23.5 -2.3 30 -6c-7 -50 -20 -102 -32 -136l-312 3c-15 0 -23 5 -23 12c0 5 0.400002 8.4 9 20c36.3 48.9 77.4 106.2 117.8 165h-86.8c-8 0 -11 8 -11 14c0 10 10 25 19 25h105.3c37 54.9 72.3 109.7 101.7 159l-128 -3c-30 -0.700012 -61 -18 -81 -91
-c-11.6 -2.60001 -24.2 -0.700012 -33 3c9 49 14 84 15 129c0 2.39999 3.6 6 6 6z" />
-    <glyph glyph-name="uni01B7" unicode="&#x1b7;" horiz-adv-x="608" 
-d="M167 645h355c21 0 28 -6 28 -14c0 -10 -6 -26 -15 -41l-168 -302c134 -27 197 -126 197 -237c0 -139 -132 -262 -292 -262c-80 0 -230 35 -230 101c0 23 10 50 44 50c27 0 55 -14 68 -35c32 -49 82 -79 137 -79c87 0 184 121 184 216c0 159 -115 213 -184 213
-c-16 0 -27 0 -41 -3l196 353h-249c-74 -1 -103 -84 -107 -128l-26 2l21 188c23 -5 58 -22 82 -22z" />
-    <glyph glyph-name="uni01B8" unicode="&#x1b8;" horiz-adv-x="608" 
-d="M443 645c25 0 59 17 83 22l21 -188l-26 -3c-4 45 -33 128 -107 129h-249l195 -353c-14 3 -26 3 -41 3c-69 0 -183 -54 -183 -213c0 -95 96 -216 184 -216c55 0 105 30 137 79c13 21 41 35 67 35c35 0 45 -27 45 -50c0 -66 -150 -101 -230 -101c-160 0 -293 123 -293 262
-c0 111 63 210 198 237l-167 302c-8 14 -16 31 -16 41c0 8 7 14 27 14h355z" />
-    <glyph glyph-name="uni01B9" unicode="&#x1b9;" horiz-adv-x="448" 
-d="M317 429c12 0 21 2 21 18l22 4l32 -152l-27 -5c-18 84 -48 96 -78 96h-142l157 -284c-22 5 -41 7 -59 7c-78 0 -145 -63 -145 -148c0 -118 88 -165 137 -165c41 0 69 23 81 46c13 21 29 28 52 28c21 0 29 -15 29 -31c0 -32 -62 -72 -153 -72c-144 0 -221 99 -221 195
-c0 106 63 176 181 186l-131 235c-6 13 -10 23 -10 29c0 9 6 13 24 13h230z" />
-    <glyph glyph-name="uni01C0" unicode="&#x1c0;" horiz-adv-x="185" 
-d="M112 -10h-39v708h39v-708z" />
-    <glyph glyph-name="uni01C1" unicode="&#x1c1;" horiz-adv-x="287" 
-d="M214 -10h-39v708h39v-708zM112 -10h-39v708h39v-708z" />
-    <glyph glyph-name="uni01C2" unicode="&#x1c2;" horiz-adv-x="332" 
-d="M291 323v-34h-116v-299h-39v299h-111v34h111v72h-111v34h111v269h39v-269h116v-34h-116v-72h116z" />
-    <glyph glyph-name="uni01C3" unicode="&#x1c3;" horiz-adv-x="288" 
-d="M144 658c24 0 53 -19 53 -73c0 -65 -14 -107 -24 -193c-13 -108 -13 -168 -15 -182c-1 -11 -4 -20 -14 -20s-13 7 -14 13c-2 21 -8 111 -16 189c-9 88 -23 123 -23 193c0 54 29 73 53 73zM91 43c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" />
-    <glyph glyph-name="uni01C4" unicode="&#x1c4;" horiz-adv-x="1267" 
-d="M191 84c0 -32 11 -52 109 -52c141 0 262 50 262 252c0 154 -71 329 -287 329c-49 0 -84 -14 -84 -49v-480zM148 645c39 0 94 2 165 2c192 0 345 -153 345 -339c0 -246 -186 -310 -327 -310c-103 0 -145 2 -182 2c-37.7 0 -91 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91
-v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c40 -1 93.3 -2 129 -2zM943 697c-30 37 -65 67 -101 95l16 20c39 -17 73 -36 106 -61c37 26 69 45 107 61l15 -20c-38 -29 -70 -61 -100 -95h-43zM1214 -2c0 0 -99.7 2 -126.7 2h-364.3c-14 0 -19 5 -19 15c0 7 2 15 8 23
-c102 152 292 418 389 541c5 7 8 13 8 18c0 6 -4.09998 9.09998 -10 9l-211 -4c-75 -1.40002 -113 -37 -134 -106c-11 0 -20 2 -30 5c8 41 18 98 22 152c37 -3 134 -8 181 -8h221c30 0 61 2 73 2c8 0 13 -4 13 -11c0 -11 -2.90002 -17.8 -24 -45
-c-118 -152 -302 -413 -375 -519c-5 -9 -8 -15 -8 -20c0 -9 8 -14.4 25 -14l193 4c109 2 134 57 165 128c13 0 24 -3 31 -5c-12 -52 -22 -111 -27 -167z" />
-    <glyph glyph-name="uni01C5" unicode="&#x1c5;" horiz-adv-x="1090" 
-d="M191 84c0 -32 11 -52 109 -52c141 0 262 50 262 252c0 154 -71 329 -287 329c-49 0 -84 -14 -84 -49v-480zM148 645c39 0 94 2 165 2c192 0 345 -153 345 -339c0 -246 -186 -310 -327 -310c-103 0 -145 2 -182 2c-37.7 0 -91 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91
-v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c40 -1 93.3 -2 129 -2zM848 501c-29 47 -66 92 -101 130l20 13c39 -29 72 -54 106 -90c37 38 71 63 108 90l19 -13c-35 -39 -73 -84 -102 -130h-50zM731 439c14.5 -5.39999 26.9 -10 59 -10h183c29 0 57 2 62 2c7 0 12 -3 12 -7
-s-2.69995 -11.8 -18 -37c-62 -102 -166 -259 -240 -353h133c52.1 1.2 72.5 23.2 98 76l14 29c12 0 23.5 -2.3 30 -6c-7 -50 -20 -102 -32 -136l-312 3c-15 0 -23 5 -23 12c0 5 0.400024 8.4 9 20c78 105 178 249 246 363l-128 -3c-30 -0.700012 -61 -18 -81 -91
-c-11.6 -2.60001 -24.2 -0.700012 -33 3c9 49 14 84 15 129c0 2.39999 3.59998 6 6 6z" />
-    <glyph glyph-name="uni01C6" unicode="&#x1c6;" horiz-adv-x="916" 
-d="M345 124v190c0 31 -3 38 -17 54c-20 23 -45 36 -81 36c-20 0 -62 -3 -93 -50c-15 -21 -29 -61 -29 -133c0 -125 56 -184 110 -184c25 0 57 16 94 48c14.1 12.2 16 20 16 39zM334 50.3c-49 -40.3 -86 -60.3 -125 -60.3c-108 0 -170 90 -170 213c0 74 26 133 69 176
-c40 38 84 60 150 60c33 0 74 -17 78 -17c7 0 9 2 9 9v128c0 84 -12 79 -64 82c-6 6 -8 22 -6 30c40 3 115 17 140 27c9 0 13 -3 13 -10c0 0 -4 -40 -4 -105v-453c0 -49 9 -68 73 -73c6 -6 6 -21 0 -27c-61 -7 -96 -22 -118 -40c-6 -2.5 -11 -3 -19 0c0 0 -8.5 34.5 -11 59
-c-0.700012 7 -10.2 5.2 -15 1.3zM674 501c-29 47 -66 92 -101 130l20 13c39 -29 72 -54 106 -90c37 38 71 63 108 90l19 -13c-35 -39 -73 -84 -102 -130h-50zM557 439c14.5 -5.39999 26.9 -10 59 -10h183c29 0 57 2 62 2c7 0 12 -3 12 -7s-2.70001 -11.8 -18 -37
-c-62 -102 -166 -259 -240 -353h133c52.1 1.2 72.5 23.2 98 76l14 29c12 0 23.5 -2.3 30 -6c-7 -50 -20 -102 -32 -136l-312 3c-15 0 -23 5 -23 12c0 5 0.400024 8.4 9 20c78 105 178 249 246 363l-128 -3c-30 -0.700012 -61 -18 -81 -91
-c-11.6 -2.60001 -24.2 -0.700012 -33 3c9 49 14 84 15 129c0 2.39999 3.59998 6 6 6z" />
-    <glyph glyph-name="uni01C7" unicode="&#x1c7;" horiz-adv-x="768" 
-d="M149 0c-33.7 0 -91 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c46 -1 92.9 -2 129 -2c38.1 0 85 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-414c0 -51 18 -70 57 -70h63c106 0 143 59 163 131
-c12.4 1.8 23.2 -0.300003 33 -5c-6 -52 -16 -117 -26 -167c0 0 -92 2 -119.3 2h-212.7zM678 523v-420c0 -143 -58.3 -194.7 -102 -232c-41 -35 -72 -43 -117 -43c-22 0 -75 18 -75 54c0 22 30 43 44 43c24.9 0 33.7 -12.8 39.7 -25.5c7 -14.7 21.2 -26.5 40.3 -26.5
-c33 0 85 28 85 208v442c0 83 -17 88 -97 91c-6 6 -6 27 0 33c50 -1 102.7 -2 139 -2c38.7 0 82 1 120 2c6 -6 6 -27 0 -33c-60 -3 -77 -8 -77 -91z" />
-    <glyph glyph-name="uni01C8" unicode="&#x1c8;" horiz-adv-x="771" 
-d="M149 0c-33.7 0 -91 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c46 -1 92.9 -2 129 -2c38.1 0 85 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-414c0 -51 18 -70 57 -70h63c106 0 143 59 163 131
-c12.4 1.8 23.2 -0.300003 33 -5c-6 -52 -16 -117 -26 -167c0 0 -92 2 -119.3 2h-212.7zM593 604c0 24 28 48 52 48c27 0 48 -28 48 -52c0 -21.1 -24 -48 -52 -48c-24 0 -48 26 -48 52zM607 322c0 57 -11 63 -65 68c-2 6 -4 22 -2 28c69 9 109 18 137 29c8 0 13 -3 13 -7
-c0 0 -4 -64 -4 -114v-211c0 -189 -28 -261 -75 -299c-37 -31 -89 -34 -110 -34c-19 0 -55 14 -55 43c0 18 21 38 32 38c22 0 34 -16 44 -26c7 -7 20 -11 31 -11c50 0 54 123 54 255v241z" />
-    <glyph glyph-name="uni01C9" unicode="&#x1c9;" horiz-adv-x="515" 
-d="M337 599c0 24 28 48 52 48c27 0 48 -28 48 -52c0 -21.1 -24 -48 -52 -48c-24 0 -48 26 -48 52zM351 317c0 57 -11 63 -65 68c-2 6 -4 22 -2 28c69 9 109 18 137 29c8 0 13 -3 13 -7c0 0 -4 -64 -4 -114v-211c0 -189 -28 -261 -75 -299c-37 -31 -89 -34 -110 -34
-c-19 0 -55 14 -55 43c0 18 21 38 32 38c22 0 34 -16 44 -26c7 -7 20 -11 31 -11c50 0 54 123 54 255v241zM95 122v437c0 75 -6 78 -64 82c-6 6 -8 22 -6 30c40 3 115 17 140 27c9 0 13 -3 13 -10c0 0 -4 -40 -4 -105v-461c0 -83 11 -88 72 -91c6 -6 6 -27 0 -33
-c-33 1 -71 2 -111 2s-77 -1 -112 -2c-6 6 -6 27 0 33c61 3 72 8 72 91z" />
-    <glyph glyph-name="uni01CA" unicode="&#x1ca;" horiz-adv-x="1018" 
-d="M556 512c0 91 -17 95 -87 102c-6 6 -6 27 0 33c44 -1 89.7 -2 111 -2c23.7 0 71 1 112 2c6 -6 6 -27 0 -33c-70 -7 -87 -13 -87 -102v-491c0 -19 -9 -31 -23 -31c-16 0 -29 9 -40 24l-349 441c-17 22 -28 33 -34 33c-8 0 -8 -15 -8 -49v-306c0 -91 17 -95 87 -102
-c6 -6 6 -27 0 -33c-42 1 -87.9 2 -111 2c-23.6 0 -69 -1 -112 -2c-6 6 -6 27 0 33c70 7 87 13 87 102v417c-6 26 -36 61 -79 64c-6 6 -6 27 0 33l135 -2l343 -435c29 -37 44 -55 48 -55c7 0 7 11 7 30v327zM928 523v-420c0 -143 -58.3 -194.7 -102 -232
-c-41 -35 -72 -43 -117 -43c-22 0 -75 18 -75 54c0 22 30 43 44 43c24.9 0 33.7 -12.8 39.7 -25.5c7 -14.7 21.2 -26.5 40.3 -26.5c33 0 85 28 85 208v442c0 83 -17 88 -97 91c-6 6 -6 27 0 33c50 -1 102.7 -2 139 -2c38.7 0 82 1 120 2c6 -6 6 -27 0 -33
-c-60 -3 -77 -8 -77 -91z" />
-    <glyph glyph-name="uni01CB" unicode="&#x1cb;" horiz-adv-x="970" 
-d="M556 512c0 91 -17 95 -87 102c-6 6 -6 27 0 33c44 -1 89.7 -2 111 -2c23.7 0 71 1 112 2c6 -6 6 -27 0 -33c-70 -7 -87 -13 -87 -102v-491c0 -19 -9 -31 -23 -31c-16 0 -29 9 -40 24l-349 441c-17 22 -28 33 -34 33c-8 0 -8 -15 -8 -49v-306c0 -91 17 -95 87 -102
-c6 -6 6 -27 0 -33c-42 1 -87.9 2 -111 2c-23.6 0 -69 -1 -112 -2c-6 6 -6 27 0 33c70 7 87 13 87 102v417c-6 26 -36 61 -79 64c-6 6 -6 27 0 33l135 -2l343 -435c29 -37 44 -55 48 -55c7 0 7 11 7 30v327zM792 599c0 24 28 48 52 48c27 0 48 -28 48 -52
-c0 -21.1 -24 -48 -52 -48c-24 0 -48 26 -48 52zM806 317c0 57 -11 63 -65 68c-2 6 -4 22 -2 28c69 9 109 18 137 29c8 0 13 -3 13 -7c0 0 -4 -64 -4 -114v-211c0 -189 -28 -261 -75 -299c-37 -31 -89 -34 -110 -34c-19 0 -55 14 -55 43c0 18 21 38 32 38c22 0 34 -16 44 -26
-c7 -7 20 -11 31 -11c50 0 54 123 54 255v241z" />
-    <glyph glyph-name="uni01CC" unicode="&#x1cc;" horiz-adv-x="814" 
-d="M184 358c59.3 68 115 81 164 81c35 0 66 -12 83 -34c23 -31 27 -79 27 -134v-149c0 -82 11 -86 67 -91c5 -6 5 -27 0 -33c-30 1 -66 2 -106 2s-72 -1 -102 -2c-5 6 -5 27 0 33c52 5 62 9 62 91v152c0 30 -2 57 -12 77c-12 23 -33 36 -53 36c-39 0 -84 -22 -122 -59
-c-8 -9 -17 -21 -17 -42v-164c0 -82 10 -86 61 -91c6 -6 6 -27 0 -33c-30 1 -60 2 -100 2s-80 -1 -110 -2c-6 6 -6 27 0 33c60 5 70 9 70 91v195c0 58 -11 63 -65 68c-2 6 -4 22 -2 28c69 9 95 18 123 29c8 0 9.89999 -3.39999 12 -8c4.7 -10.3 7 -49 8 -76
-c0.300003 -9.39999 5.89999 -7 12 0zM636 599c0 24 28 48 52 48c27 0 48 -28 48 -52c0 -21.1 -24 -48 -52 -48c-24 0 -48 26 -48 52zM650 317c0 57 -11 63 -65 68c-2 6 -4 22 -2 28c69 9 109 18 137 29c8 0 13 -3 13 -7c0 0 -4 -64 -4 -114v-211c0 -189 -28 -261 -75 -299
-c-37 -31 -89 -34 -110 -34c-19 0 -55 14 -55 43c0 18 21 38 32 38c22 0 34 -16 44 -26c7 -7 20 -11 31 -11c50 0 54 123 54 255v241z" />
-    <glyph glyph-name="uni01CD" unicode="&#x1cd;" horiz-adv-x="695" 
-d="M336 697c-30 37 -65 67 -101 95l16 20c39 -17 73 -36 106 -61c37 26 69 45 107 61l15 -20c-38 -29 -70 -61 -100 -95h-43zM263 283h177l-94 272h-6l-102.2 -258.7c-3.8 -10.3 3.2 -13.3 25.2 -13.3zM155 79c-15.6 -41.1 31.4 -45.4 69 -48c6 -6 6 -27 0 -33
-c-37 1 -87 2 -128 2c-30.3 0 -63 -1 -89 -2c-6 6 -6 27 0 33c43.5 3 74 9 100 71l227 536c13 0 40 11 55 20l206 -572c17.4 -48.2 51.2 -51.5 90 -55c6 -6 6 -27 0 -33c-35 1 -73 2 -114 2c-39 0 -94 -1 -131 -2c-6 6 -6 27 0 33c47.6 3.4 85.8 6.5 74 41l-58 169h-211
-c-24 0 -30 -4 -35 -17z" />
-    <glyph glyph-name="uni01CE" unicode="&#x1ce;" horiz-adv-x="457" 
-d="M189 503c-29 47 -66 92 -101 130l20 13c39 -29 72 -54 106 -90c37 38 71 63 108 90l19 -13c-35 -39 -73 -84 -102 -130h-50zM293 233l-79 -21c-74 -19 -95 -65 -95 -110c0 -31 22 -71 72 -71c28 0 62 23 88 44c8 6 14 13 14 26v132zM293 48h-2l-20 -16
-c-44 -34 -74.2 -42 -109 -42c-70 0 -126 26 -126 108c0 68 69 121 165 145l86 21c3 1 6 5 6 12c0 113 -47 130 -81 130c-38 0 -80 -11 -80 -42c0 -11 1 -17 2 -20c2 -4 3 -11 3 -18c0 -13 -18 -34 -47 -34c-23 0 -35 12 -35 36c0 57 83 111 165 111c73 0 151 -27 151 -169
-v-147c0 -46 1 -85 30 -85c12.7 0 29.5 9.8 37 16c11.3 -6.3 15.3 -14.7 17 -27c-20.7 -20 -56.7 -37 -95 -37c-50.4 0 -61 27 -67 58z" />
-    <glyph glyph-name="uni01CF" unicode="&#x1cf;" horiz-adv-x="297" 
-d="M122 697c-30 37 -65 67 -101 95l16 20c39 -17 73 -36 106 -61c37 26 69 45 107 61l15 -20c-38 -29 -70 -61 -100 -95h-43zM191 122c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-45 1 -93.4 2 -129 2c-36.3 0 -85 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401
-c0 83 -17 88 -87 91c-6 6 -6 27 0 33c47 -1 95.5 -2 129 -2c38.5 0 86 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-401z" />
-    <glyph glyph-name="uni01D0" unicode="&#x1d0;" horiz-adv-x="271" 
-d="M105 500c-29 47 -66 92 -101 130l20 13c39 -29 72 -54 106 -90c37 38 71 63 108 90l19 -13c-35 -39 -73 -84 -102 -130h-50zM181 122c0 -83 11 -87 72 -91c6 -6 6 -27 0 -33c-33 1 -71 2 -111 2s-79 -1 -112 -2c-6 6 -6 27 0 33c61 5 72 8 72 91v195
-c0 57 -10.5 62.9 -65 68c-2 6 -4 22 -2 28c69 9 108.5 18 137 29c8 0 13 -3 13 -7c0 0 -4 -64 -4 -113.7v-199.3z" />
-    <glyph glyph-name="uni01D1" unicode="&#x1d1;" horiz-adv-x="702" 
-d="M326 697c-30 37 -65 67 -101 95l16 20c39 -17 73 -36 106 -61c37 26 69 45 107 61l15 -20c-38 -29 -70 -61 -100 -95h-43zM331 622c-99 0 -198 -85 -198 -295c0 -192 115 -301 237 -301c114 0 200 105 200 284c0 202 -107 312 -239 312zM666 329
-c0 -84 -22 -156.3 -61.8 -213c-54.9 -78.3 -143.4 -126 -254.2 -126c-170 0 -313 123 -313 320c0 193.9 113.3 348 307 348c179 0 322 -122 322 -329z" />
-    <glyph glyph-name="uni01D2" unicode="&#x1d2;" horiz-adv-x="504" 
-d="M214 502c-29 47 -66 92 -101 130l20 13c39 -29 72 -54 106 -90c37 38 71 63 108 90l19 -13c-35 -39 -73 -84 -102 -130h-50zM41 205c0 63.2 19 121.4 55.3 164c36.6 43 90.9 70 156.7 70c153 0 210 -121 210 -225c0 -61.3 -20.3 -124.2 -65.1 -168
-c-34.1 -33.3 -82.5 -56 -146.9 -56c-142 0 -210 113 -210 215zM238 404c-90 0 -111 -89 -111 -176c0 -77 34 -203 138 -203c47 0 112 31 112 157c0 144 -53 222 -139 222z" />
-    <glyph glyph-name="uni01D3" unicode="&#x1d3;" horiz-adv-x="661" 
-d="M326 697c-30 37 -65 67 -101 95l16 20c39 -17 73 -36 106 -61c37 26 69 45 107 61l15 -20c-38 -29 -70 -61 -100 -95h-43zM172 523v-257c0 -65 2 -141 51 -188c30.1 -28.9 71 -47 119 -47c169 0 184 134 184 246v246c0 81 -17 84 -92 91c-6 6 -6 27 0 33
-c46 -1 94.5 -2 116 -2c23.2 0 64 1 102 2c6 -6 6 -27 0 -33c-60 -7 -77 -10.7 -77 -91v-228c0 -178 -49 -305 -254 -305c-102.5 0 -234 39 -234 243v290c0 83 -17 88 -77 91c-6 6 -6 27 0 33c39 -1 80 -2 119 -2c39.4 0 88 1 135 2c6 -6 6 -27 0 -33c-77 -3 -92 -8 -92 -91z
-" />
-    <glyph glyph-name="uni01D4" unicode="&#x1d4;" horiz-adv-x="531" 
-d="M228 502c-29 47 -66 92 -101 130l20 13c39 -29 72 -54 106 -90c37 38 71 63 108 90l19 -13c-35 -39 -73 -84 -102 -130h-50zM217 -10c-99 0 -129 67 -129 136v192c0 65 -14 76 -62 80c-6 6 -6 27 0 33c34 -1 70 -2 102 -2c15 0 30 1 35 2c5 0 8 -3 8 -6
-c0 0 -4 -73 -4 -103v-182c0 -89 50 -103 80 -103c25 0 63 16 100 48c14 12 16 20 16 39v193c0 66 -13 78 -62 81c-6 6 -6 27 0 33c34 -1 70 -2 102 -2c15 0 30 1 35 2c5 0 8 -3 8 -6c0 0 -4 -73 -4 -103v-192c0 -49 9 -68 73 -73c6 -6 6 -21 0 -27c-61 -7 -96 -22 -118 -40
-c-6.5 -2.5 -11 -3 -19 0c0 0 -8.5 33.5 -11 59c-0.700012 7 -10 5 -15 1c-49 -40 -96 -60 -135 -60z" />
-    <glyph glyph-name="uni01D5" unicode="&#x1d5;" horiz-adv-x="667" 
-d="M323 -10c-89 0 -234 42 -234 246v287c0 83 -16.5 88 -77 91c-6 6 -6 27 0 33c37 -1 81 -2 120 -2c41 0 60 1 85 2c13.9 0 13 -31 4 -33c-31 -5 -47 -28 -47 -91v-254c0 -65 -1 -135 52 -188c29 -29 71 -50 119 -50c168 0 184 134 184 246v246c0 66 -13 84 -48 91
-c-14.7 11 -11.7 33 7 33c26 0 44 -2 67 -2s67 1 97 2c6 -6 6 -27 0 -33c-61 -3 -74 -8 -74 -91v-228c0 -178 -49 -305 -255 -305zM232 707c0 26 21 47 47 47s47 -21 47 -47s-21 -47 -47 -47s-47 21 -47 47zM376 707c0 26 21 47 47 47s47 -21 47 -47s-21 -47 -47 -47
-s-47 21 -47 47zM461 800h-224c-9 0 -13 11 -13 18c0 12 11 32 22 32h225c10 0 14 -11 14 -17c0 -12 -11 -33 -24 -33z" />
-    <glyph glyph-name="uni01D6" unicode="&#x1d6;" horiz-adv-x="531" 
-d="M362 665h-224c-9 0 -13 11 -13 18c0 12 11 32 22 32h225c10 0 14 -11 14 -17c0 -12 -11 -33 -24 -33zM123 575c0 26 21 48 47 48s47 -22 47 -48s-21 -47 -47 -47s-47 21 -47 47zM292 575c0 26 21 48 47 48s47 -22 47 -48s-21 -47 -47 -47s-47 21 -47 47zM217 -10
-c-99 0 -129 67 -129 136v192c0 65 -14 76 -62 80c-6 6 -6 27 0 33c34 -1 70 -2 102 -2c15 0 30 1 35 2c5 0 8 -3 8 -6c0 0 -4 -73 -4 -103v-182c0 -89 50 -103 80 -103c25 0 63 16 100 48c14 12 16 20 16 39v193c0 66 -13 78 -62 81c-6 6 -6 27 0 33c34 -1 70 -2 102 -2
-c15 0 30 1 35 2c5 0 8 -3 8 -6c0 0 -4 -73 -4 -103v-192c0 -49 9 -68 73 -73c6 -6 6 -21 0 -27c-61 -7 -96 -22 -118 -40c-6.5 -2.5 -11 -3 -19 0c0 0 -8.5 33.5 -11 59c-0.700012 7 -10 5 -15 1c-49 -40 -96 -60 -135 -60z" />
-    <glyph glyph-name="uni01D7" unicode="&#x1d7;" horiz-adv-x="667" 
-d="M323 -10c-89 0 -234 42 -234 246v287c0 83 -16.5 88 -77 91c-6 6 -6 27 0 33c37 -1 81 -2 120 -2c41 0 60 1 85 2c13.9 0 13 -31 4 -33c-31 -5 -47 -28 -47 -91v-254c0 -65 -1 -135 52 -188c29 -29 71 -50 119 -50c168 0 184 134 184 246v246c0 66 -13 84 -48 91
-c-14.7 11 -11.7 33 7 33c26 0 44 -2 67 -2s67 1 97 2c6 -6 6 -27 0 -33c-61 -3 -74 -8 -74 -91v-228c0 -178 -49 -305 -255 -305zM232 707c0 26 21 47 47 47s47 -21 47 -47s-21 -47 -47 -47s-47 21 -47 47zM376 707c0 26 21 47 47 47s47 -21 47 -47s-21 -47 -47 -47
-s-47 21 -47 47zM434.1 849.9c22.1 -11.7 38 -27 47.8 -45.8l-110.9 -51.1c-16.2 -7.90002 -25.5 -10.5 -32.4 -10.5s-11.5 6.20001 -11.5 13.2c0 6.20001 1.5 10.6 11.5 18.5z" />
-    <glyph glyph-name="uni01D8" unicode="&#x1d8;" horiz-adv-x="531" 
-d="M313.4 747.2c2.39999 0.899963 7.20001 1.79999 11.2 1.79999c5.10001 0 25.6 -0.900024 44 -20.7l2.39999 -9.89996l-92 -98.1c-12 -13.5 -18.4 -17.1 -24 -17.1s-11.2 5.39996 -11.2 11.7c0 10.1 2.7 13.7 9.2 25.2zM123 575c0 26 21 48 47 48s47 -22 47 -48
-s-21 -47 -47 -47s-47 21 -47 47zM292 575c0 26 21 48 47 48s47 -22 47 -48s-21 -47 -47 -47s-47 21 -47 47zM217 -10c-99 0 -129 67 -129 136v192c0 65 -14 76 -62 80c-6 6 -6 27 0 33c34 -1 70 -2 102 -2c15 0 30 1 35 2c5 0 8 -3 8 -6c0 0 -4 -73 -4 -103v-182
-c0 -89 50 -103 80 -103c25 0 63 16 100 48c14 12 16 20 16 39v193c0 66 -13 78 -62 81c-6 6 -6 27 0 33c34 -1 70 -2 102 -2c15 0 30 1 35 2c5 0 8 -3 8 -6c0 0 -4 -73 -4 -103v-192c0 -49 9 -68 73 -73c6 -6 6 -21 0 -27c-61 -7 -96 -22 -118 -40c-6.5 -2.5 -11 -3 -19 0
-c0 0 -8.5 33.5 -11 59c-0.700012 7 -10 5 -15 1c-49 -40 -96 -60 -135 -60z" />
-    <glyph glyph-name="uni01D9" unicode="&#x1d9;" horiz-adv-x="667" 
-d="M323 -10c-89 0 -234 42 -234 246v287c0 83 -16.5 88 -77 91c-6 6 -6 27 0 33c37 -1 81 -2 120 -2c41 0 60 1 85 2c13.9 0 13 -31 4 -33c-31 -5 -47 -28 -47 -91v-254c0 -65 -1 -135 52 -188c29 -29 71 -50 119 -50c168 0 184 134 184 246v246c0 66 -13 84 -48 91
-c-14.7 11 -11.7 33 7 33c26 0 44 -2 67 -2s67 1 97 2c6 -6 6 -27 0 -33c-61 -3 -74 -8 -74 -91v-228c0 -178 -49 -305 -255 -305zM232 707c0 26 21 47 47 47s47 -21 47 -47s-21 -47 -47 -47s-47 21 -47 47zM376 707c0 26 21 47 47 47s47 -21 47 -47s-21 -47 -47 -47
-s-47 21 -47 47zM335.2 748.1c-23.1 32.6 -50.1 59 -77.8 83.6l12.3 17.6c30 -15 56.2 -31.7 81.6 -53.7c28.5 22.9 53.1 39.6 82.4 53.7l11.6 -17.6c-29.3 -25.5 -53.9 -53.7 -77 -83.6h-33.1z" />
-    <glyph glyph-name="uni01DA" unicode="&#x1da;" horiz-adv-x="531" 
-d="M231.2 644.2c-23.2 42.3 -52.8 82.8 -80.8 117l16 11.7c31.2 -26.1 57.6 -48.6 84.8 -81c29.6 34.2 56.8 56.7 86.4 81l15.2 -11.7c-28 -35.1 -58.4 -75.6 -81.6 -117h-40zM123 575c0 26 21 48 47 48s47 -22 47 -48s-21 -47 -47 -47s-47 21 -47 47zM292 575
-c0 26 21 48 47 48s47 -22 47 -48s-21 -47 -47 -47s-47 21 -47 47zM217 -10c-99 0 -129 67 -129 136v192c0 65 -14 76 -62 80c-6 6 -6 27 0 33c34 -1 70 -2 102 -2c15 0 30 1 35 2c5 0 8 -3 8 -6c0 0 -4 -73 -4 -103v-182c0 -89 50 -103 80 -103c25 0 63 16 100 48
-c14 12 16 20 16 39v193c0 66 -13 78 -62 81c-6 6 -6 27 0 33c34 -1 70 -2 102 -2c15 0 30 1 35 2c5 0 8 -3 8 -6c0 0 -4 -73 -4 -103v-192c0 -49 9 -68 73 -73c6 -6 6 -21 0 -27c-61 -7 -96 -22 -118 -40c-6.5 -2.5 -11 -3 -19 0c0 0 -8.5 33.5 -11 59
-c-0.700012 7 -10 5 -15 1c-49 -40 -96 -60 -135 -60z" />
-    <glyph glyph-name="uni01DB" unicode="&#x1db;" horiz-adv-x="667" 
-d="M323 -10c-89 0 -234 42 -234 246v287c0 83 -16.5 88 -77 91c-6 6 -6 27 0 33c37 -1 81 -2 120 -2c41 0 60 1 85 2c13.9 0 13 -31 4 -33c-31 -5 -47 -28 -47 -91v-254c0 -65 -1 -135 52 -188c29 -29 71 -50 119 -50c168 0 184 134 184 246v246c0 66 -13 84 -48 91
-c-14.7 11 -11.7 33 7 33c26 0 44 -2 67 -2s67 1 97 2c6 -6 6 -27 0 -33c-61 -3 -74 -8 -74 -91v-228c0 -178 -49 -305 -255 -305zM232 707c0 26 21 47 47 47s47 -21 47 -47s-21 -47 -47 -47s-47 21 -47 47zM376 707c0 26 21 47 47 47s47 -21 47 -47s-21 -47 -47 -47
-s-47 21 -47 47zM264.9 849.1l93.2 -73.9c8.5 -7 11.5 -12.3 11.5 -18.5c0 -7 -5.30002 -13.2 -11.5 -13.2c-6.20001 0 -16.9 2.59998 -33.1 10.5l-118.6 55.5c14.1 15.6 32.2 29.4 58.5 39.6z" />
-    <glyph glyph-name="uni01DC" unicode="&#x1dc;" horiz-adv-x="531" 
-d="M205.2 760.2l56 -113.4c4 -9 4.79999 -15.3 4.79999 -21.6c0 -4.5 -5.60001 -9.90002 -12 -9.90002c-4.8 0 -10.4 4.5 -23.2 18l-91.2 98.1l1.59999 9.89996c6.40001 5.40002 24.8 20.7 52 20.7c4 0 8.8 -0.900024 12 -1.79999zM123 575c0 26 21 48 47 48s47 -22 47 -48
-s-21 -47 -47 -47s-47 21 -47 47zM292 575c0 26 21 48 47 48s47 -22 47 -48s-21 -47 -47 -47s-47 21 -47 47zM217 -10c-99 0 -129 67 -129 136v192c0 65 -14 76 -62 80c-6 6 -6 27 0 33c34 -1 70 -2 102 -2c15 0 30 1 35 2c5 0 8 -3 8 -6c0 0 -4 -73 -4 -103v-182
-c0 -89 50 -103 80 -103c25 0 63 16 100 48c14 12 16 20 16 39v193c0 66 -13 78 -62 81c-6 6 -6 27 0 33c34 -1 70 -2 102 -2c15 0 30 1 35 2c5 0 8 -3 8 -6c0 0 -4 -73 -4 -103v-192c0 -49 9 -68 73 -73c6 -6 6 -21 0 -27c-61 -7 -96 -22 -118 -40c-6.5 -2.5 -11 -3 -19 0
-c0 0 -8.5 33.5 -11 59c-0.700012 7 -10 5 -15 1c-49 -40 -96 -60 -135 -60z" />
-    <glyph glyph-name="eturned" unicode="&#x1dd;" horiz-adv-x="447" 
-d="M304 147l-181 -3c-11 -0.199997 -15 -5 -15 -14c0 -84 45 -105 83 -105c24 0 94 9 113 122zM42 336c-12 1 -18 6 -21 16c40 52 94 87 170 87c72 0 119 -24 153 -64c33 -38 47 -92 47 -148c0 -152 -113 -235 -200 -235c-139 0 -169 90 -169 174c0 11 7 17 19 17l266 -2
-c0 58 -12 104 -32 137c-31 51 -73 72 -109 72c-58 0 -87 -16 -124 -54z" />
-    <glyph glyph-name="uni01DE" unicode="&#x1de;" horiz-adv-x="695" 
-d="M193 706c0 26 22 48 48 48s48 -22 48 -48s-22 -48 -48 -48s-48 22 -48 48zM430 706c0 26 22 48 48 48s48 -22 48 -48s-22 -48 -48 -48s-48 22 -48 48zM263 283h177l-94 272h-6l-102.2 -258.7c-3.8 -10.3 3.2 -13.3 25.2 -13.3zM155 79c-15.6 -41.1 31.4 -45.4 69 -48
-c6 -6 6 -27 0 -33c-37 1 -87 2 -128 2c-30.3 0 -63 -1 -89 -2c-6 6 -6 27 0 33c43.5 3 74 9 100 71l227 536c13 0 40 11 55 20l206 -572c17.4 -48.2 51.2 -51.5 90 -55c6 -6 6 -27 0 -33c-35 1 -73 2 -114 2c-39 0 -94 -1 -131 -2c-6 6 -6 27 0 33c47.6 3.4 85.8 6.5 74 41
-l-58 169h-211c-24 0 -30 -4 -35 -17zM472 800h-224c-9 0 -13 11 -13 18c0 12 11 32 22 32h225c10 0 14 -11 14 -17c0 -12 -11 -33 -24 -33z" />
-    <glyph glyph-name="uni01DF" unicode="&#x1df;" horiz-adv-x="457" 
-d="M321 666h-224c-9 0 -13 11 -13 18c0 12 11 32 22 32h225c10 0 14 -11 14 -17c0 -12 -11 -33 -24 -33zM83 575c0 26 21 48 47 48s47 -22 47 -48s-21 -47 -47 -47s-47 21 -47 47zM252 575c0 26 21 48 47 48s47 -22 47 -48s-21 -47 -47 -47s-47 21 -47 47zM293 233l-79 -21
-c-74 -19 -95 -65 -95 -110c0 -31 22 -71 72 -71c28 0 62 23 88 44c8 6 14 13 14 26v132zM293 48h-2l-20 -16c-44 -34 -74.2 -42 -109 -42c-70 0 -126 26 -126 108c0 68 69 121 165 145l86 21c3 1 6 5 6 12c0 113 -47 130 -81 130c-38 0 -80 -11 -80 -42c0 -11 1 -17 2 -20
-c2 -4 3 -11 3 -18c0 -13 -18 -34 -47 -34c-23 0 -35 12 -35 36c0 57 83 111 165 111c73 0 151 -27 151 -169v-147c0 -46 1 -85 30 -85c12.7 0 29.5 9.8 37 16c11.3 -6.3 15.3 -14.7 17 -27c-20.7 -20 -56.7 -37 -95 -37c-50.4 0 -61 27 -67 58z" />
-    <glyph glyph-name="uni01E0" unicode="&#x1e0;" horiz-adv-x="695" 
-d="M441 781h84c10 0 14 -8 14 -15c0 -12 -11 -29 -23 -29h-83zM274 737h-85c-9 0 -12 8 -12 15c0 11 10 29 22 29h84zM263 283h177l-94 272h-6l-102.2 -258.7c-3.8 -10.3 3.2 -13.3 25.2 -13.3zM155 79c-15.6 -41.1 31.4 -45.4 69 -48c6 -6 6 -27 0 -33c-37 1 -87 2 -128 2
-c-30.3 0 -63 -1 -89 -2c-6 6 -6 27 0 33c43.5 3 74 9 100 71l227 536c13 0 40 11 55 20l206 -572c17.4 -48.2 51.2 -51.5 90 -55c6 -6 6 -27 0 -33c-35 1 -73 2 -114 2c-39 0 -94 -1 -131 -2c-6 6 -6 27 0 33c47.6 3.4 85.8 6.5 74 41l-58 169h-211c-24 0 -30 -4 -35 -17z
-M306 754c0 28 24 52 52 52s52 -24 52 -52s-24 -52 -52 -52s-52 24 -52 52z" />
-    <glyph glyph-name="uni01E1" unicode="&#x1e1;" horiz-adv-x="457" 
-d="M322 665h-224c-9 0 -13 11 -13 18c0 12 11 32 22 32h225c10 0 14 -11 14 -17c0 -12 -11 -33 -24 -33zM293 233l-79 -21c-74 -19 -95 -65 -95 -110c0 -31 22 -71 72 -71c28 0 62 23 88 44c8 6 14 13 14 26v132zM293 48h-2l-20 -16c-44 -34 -74.2 -42 -109 -42
-c-70 0 -126 26 -126 108c0 68 69 121 165 145l86 21c3 1 6 5 6 12c0 113 -47 130 -81 130c-38 0 -80 -11 -80 -42c0 -11 1 -17 2 -20c2 -4 3 -11 3 -18c0 -13 -18 -34 -47 -34c-23 0 -35 12 -35 36c0 57 83 111 165 111c73 0 151 -27 151 -169v-147c0 -46 1 -85 30 -85
-c12.7 0 29.5 9.8 37 16c11.3 -6.3 15.3 -14.7 17 -27c-20.7 -20 -56.7 -37 -95 -37c-50.4 0 -61 27 -67 58zM166 599c0 24 28 48 52 48c27 0 48 -28 48 -52c0 -21.1 -24 -48 -52 -48c-24 0 -48 26 -48 52z" />
-    <glyph glyph-name="uni01E2" unicode="&#x1e2;" horiz-adv-x="865" 
-d="M665 745h-224c-9 0 -13 11 -13 18c0 12 11 32 22 32h225c10 0 14 -11 14 -17c0 -12 -11 -33 -24 -33zM271 305h158v270c0 12 -1 21 -5 23zM429 122v144h-178l-97 -187c-20.3 -39.1 32.4 -45.4 70 -48c6 -6 6 -27 0 -33c-37 1 -87 2 -128 2c-39 0 -52 -1 -89 -2
-c-6 6 -6 27 0 33c43.5 3 72.3 11.7 104 71l243 455c16.2 30.7 10 54 -60 57c-6 6 -6 27 0 33c50 -1 115 -2 115 -2h140h176c24 0 32 1 49 4c3 0 4 -1 4 -3c2 -8 17 -104 22 -145c-9.79999 -4.70001 -20.6 -6.79999 -33 -5c-22 69 -38 109 -113 109h-105
-c-24 0 -36 -20 -36 -44v-200h91c85 0 88 13 91 68c6 6 27 6 33 0c-1 -30 -2 -52.5 -2 -86c0 -34.3 1 -53 2 -88c-6 -6 -27 -6 -33 0c-3 45 -6 68 -91 68h-91v-241c0 -27 14 -43 36 -43h136c76 0 111 59 131 131c13.1 3.2 24.6 1 35 -5c-8 -51 -23 -117 -37 -167
-c0 0 -80 2 -128 2h-214s-81 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91z" />
-    <glyph glyph-name="uni01E3" unicode="&#x1e3;" horiz-adv-x="687" 
-d="M456 518h-224c-9 0 -13 11 -13 18c0 12 11 32 22 32h225c10 0 14 -11 14 -17c0 -12 -11 -33 -24 -33zM265 384c-14.7 15.3 -44 22 -65 22c-39 0 -77 -14 -77 -43c0 -10 1 -17 3 -20c2 -4 3 -11 3 -18c0 -16 -14 -33 -39 -33c-31 0 -40 25 -40 45c0 58 78 102 160 102
-c24 0 101 -3 138 -70c33 45 85 70 142 70c114 0 158 -66 158 -100c0 -81 -46 -118 -277 -121c0 -90 59 -179 134 -179c54 0 89 25 119 60c8.70001 -0.800003 16.7 -10.7 20 -16c-29 -54 -87 -93 -153 -93c-91 0 -129.7 45.1 -151 69c-8 9 -12.1 5.1 -24 -7
-c-46 -47 -96.9 -62 -134 -62c-36 0 -72.1 5.5 -94 18c-34.5 19.6 -49 52.4 -49 94c0 40 27 82 63 103.2c43.1 25.4 109.2 38.7 196 44.8c-1 79 -10 110 -33 134zM298 215c-69.3 -5.5 -119.3 -22.4 -150 -45.1c-24.7 -18.2 -37 -40.2 -37 -62.9c0 -43 27 -75 83 -75
-c32 0 84 41 99 81c4 19 5 52 5 102zM372 253c153 2 200 22 200 83c0 32 -35 70 -83 70c-68 0 -109 -68 -117 -153z" />
-    <glyph glyph-name="uni01E4" unicode="&#x1e4;" horiz-adv-x="685" 
-d="M377 658c111 0 148 -35 208 -45c16 -72 20.5 -112 23 -154c-11.3 -4.70001 -21.7 -6.70001 -33 -6c-26 86 -67 169 -212 169c-116.5 0 -230 -120 -230 -295c0 -132 84 -301 242 -301c54 0 121 6 155 38v89h-113c-9 2 -12 7.8 -12 13.4c0 9.60001 9 24.3 21 26.6h104v24
-c0 40.1 -27.1 43.8 -82 48c-6 6 -6 30 0 36c44 -1 90.5 -2 124 -2c40 0 65 1 89 2c6 -6 6 -30 0 -36c-29 -3 -46 -12.8 -46 -48v-24h67c9.29999 -1.3 13 -7.8 13 -12.6c0 -9.59999 -10.7 -25.4 -23 -27.4h-57v-52c0 -11 5 -19 16 -28c-68 -58 -161 -83 -279 -83
-c-191 0 -315 137.2 -315 317c0 220 173 351 340 351z" />
-    <glyph glyph-name="uni01E5" unicode="&#x1e5;" horiz-adv-x="500" 
-d="M319 279c0 83 -34 129 -97 129c-55 0 -80 -36 -80 -106c0 -64 9 -135 93 -135c37 0 84 19 84 112zM444 387c-11 0 -24 10 -28 18c-6 9 -13 12 -20 12c-13 0 -33 -14 -40 -24c29 -30 43 -57 43 -104c0 -98 -81 -153 -169 -153c-39 0 -67 7 -91 21c-12 -17 -18 -38 -18 -58
-c0 -43 35 -57 64 -57c5 0 15 1 30 2c24 3 49 5 67 5c37 0 107 -1 146 -33c29 -24 44 -49 44 -81c0 -7.5 -0.700012 -14.9 -2.10001 -22h33.1c9.29999 -1.3 13 -7.8 13 -12.6c0 -9.6 -10.7 -25.4 -23 -27.4h-38.8c-42.9 -70.4 -156.5 -111 -263.2 -111
-c-76.1 0 -157.1 26.4 -159 111h-25c-9 2 -12 7.8 -12 13.4c0 9.6 9 24.3 21 26.6h22.7c11.3 31 36.6 61.1 75.3 84c-26 13 -46 41 -46 77c0 34 16 77 44 101c-28 27 -52 58 -52 112c0 92 82 152 171 152c59 0 92 -20 104 -28c26 34 74 51 100 51c27 0 46 -16 46 -37
-c0 -20 -18 -38 -37 -38zM416.9 -87c-1.19998 23.5 -13.9 37.2 -50.9 58c-29 16 -71 17 -121 17c-14 0 -42 -3 -73 -3c-13 0 -29 2 -40 5c-24 -28.9 -29.5 -51 -30.7 -77h315.6zM407.1 -127h-302.6c16.2 -51.6 84.9 -74 116.5 -74c73.6 0 157.8 25.4 186.1 74z" />
-    <glyph glyph-name="Gcaron" unicode="&#x1e6;" horiz-adv-x="685" 
-d="M342 697c-30 37 -65 67 -101 95l16 20c39 -17 73 -36 106 -61c37 26 69 45 107 61l15 -20c-38 -29 -70 -61 -100 -95h-43zM377 658c111 0 148 -35 208 -45c16 -72 20.5 -112 23 -154c-11.3 -4.70001 -21.7 -6.70001 -33 -6c-26 86 -67 169 -212 169
-c-116.5 0 -230 -120 -230 -295c0 -132 84 -301 242 -301c54 0 121 6 155 38v153c0 40.1 -27.1 43.8 -82 48c-6 6 -6 30 0 36c44 -1 90.5 -2 124 -2c40 0 65 1 89 2c6 -6 6 -30 0 -36c-29 -3 -46 -12.8 -46 -48v-116c0 -11 5 -19 16 -28c-68 -58 -161 -83 -279 -83
-c-191 0 -315 137.2 -315 317c0 220 173 351 340 351z" />
-    <glyph glyph-name="gcaron" unicode="&#x1e7;" horiz-adv-x="500" 
-d="M195 508c-29 47 -66 92 -101 130l20 13c39 -29 72 -54 106 -90c37 38 71 63 108 90l19 -13c-35 -39 -73 -84 -102 -130h-50zM319 279c0 83 -34 129 -97 129c-55 0 -80 -36 -80 -106c0 -64 9 -135 93 -135c37 0 84 19 84 112zM132 -10c-29 -35 -31 -60 -31 -94
-c0 -68 84 -97 120 -97c90 0 196 38 196 110c0 26 -12 40 -51 62c-29 16 -71 17 -121 17c-14 0 -42 -3 -73 -3c-13 0 -29 2 -40 5zM444 387c-11 0 -24 10 -28 18c-6 9 -13 12 -20 12c-13 0 -33 -14 -40 -24c29 -30 43 -57 43 -104c0 -98 -81 -153 -169 -153
-c-39 0 -67 7 -91 21c-12 -17 -18 -38 -18 -58c0 -43 35 -57 64 -57c5 0 15 1 30 2c24 3 49 5 67 5c37 0 107 -1 146 -33c29 -24 44 -49 44 -81c0 -108 -146 -173 -281 -173c-77 0 -159 27 -159 114c0 43 28 89 82 121c-26 13 -46 41 -46 77c0 34 16 77 44 101
-c-28 27 -52 58 -52 112c0 92 82 152 171 152c59 0 92 -20 104 -28c26 34 74 51 100 51c27 0 46 -16 46 -37c0 -20 -18 -38 -37 -38z" />
-    <glyph glyph-name="uni01E8" unicode="&#x1e8;" horiz-adv-x="637" 
-d="M325 697c-30 37 -65 67 -101 95l16 20c39 -17 73 -36 106 -61c37 26 69 45 107 61l15 -20c-38 -29 -70 -61 -100 -95h-43zM191 122c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-45 1 -91 2 -129 2c-39 0 -85 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401
-c0 83 -17 88 -87 91c-6 6 -6 27 0 33c45 -1 90.5 -2 129 -2c36.5 0 84 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-175.7c35.1 2.90002 57.7 16 79 38.7l165 176c42.1 44.9 8.10001 48.6 -28 52c-6 6 -6 27 0 33c37 -1 76 -2 113 -2c32.2 0 64 1 95 2
-c6 -6 6 -27 0 -33c-40 -3 -80 -7 -126 -56l-147 -151c-34 -35 -35 -42 -35 -49c0 -8 5.29999 -15.9 13 -25l219 -260c30.6 -36.3 59.1 -39.4 88 -42c6 -6 6 -27 0 -33c-33 1 -67 2 -101 2c-21.1 0 -34 -1 -54 -2c-4 0 -4.60001 3 -5 6c-2 16 -15.7 43.4 -36 69l-157 198
-c-20.3 25.6 -49.2 36.9 -83 37.9v-186.9z" />
-    <glyph glyph-name="uni01E9" unicode="&#x1e9;" horiz-adv-x="512" 
-d="M286 644c-29 47 -66 92 -101 130l20 13c39 -29 72 -54 106 -90c37 38 71 63 108 90l19 -13c-35 -39 -73 -84 -102 -130h-50zM86 122v437c0 84 -12 79 -64 82c-6 6 -8 22 -6 30c40 3 115 17 140 27c9 0 13 -3 13 -10c0 0 -4 -40 -4 -105v-348.8
-c18.9 2.60001 45.8 14.4 68 30.8c25.7 19 57 53 80 82c9.29999 11.7 33 47 -23 51c-6 6 -6 27 0 33c23 -1 60 -2 98 -2c36 0 64 1 87 2c6 -6 6 -27 0 -33c-40 -4 -75 -12 -105 -44l-88 -91c-4 -4 -4 -6 -4 -10c0 -5 3.39999 -9.5 7 -14l132 -166c26.7 -33.6 52 -38 86 -42
-c6 -6 6 -27 0 -33c-20 1 -51 2 -82 2c-20 0 -42 -1 -62 -2c-3 0 -3.70001 2 -4 5c-1.29999 11.7 -12.6 30.5 -42 70l-73 98c-11.9 16 -21 25 -32 32.5c-9.7 3.39999 -23.8 4.89999 -43 5.39999v-86.9c0 -83 11 -87 52 -91c6 -6 6 -27 0 -33c-23 1 -56 2 -91 2
-c-40 0 -74 -1 -107 -2c-6 6 -6 27 0 33c56 4 67 8 67 91z" />
-    <glyph glyph-name="uni01EA" unicode="&#x1ea;" horiz-adv-x="702" 
-d="M532 -135c-29 -45 -69 -65 -110 -65c-50 0 -88 20 -88 74c0 43.8 39.3 85.3 94.7 124.7c-24.7 -5.7 -51 -8.7 -78.7 -8.7c-170 0 -313 123 -313 320c0 193.9 113.3 348 307 348c179 0 322 -122 322 -329c0 -84 -22 -156.3 -61.8 -213
-c-23.6 -33.6 -53.4 -61.6 -88.5 -82.6c-82.3 -67.4 -119.7 -99.1 -119.7 -148.4c0 -26 13 -47 50 -47c29 0 45 16 67 38c9 0 15 -4 19 -11zM331 622c-99 0 -198 -85 -198 -295c0 -192 115 -301 237 -301c114 0 200 105 200 284c0 202 -107 312 -239 312z" />
-    <glyph glyph-name="uni01EB" unicode="&#x1eb;" horiz-adv-x="504" 
-d="M382 -135c-29 -45 -69 -65 -110 -65c-50 0 -88 20 -88 74c0 40.8 34.1 79.5 83.5 116.5c-5.39999 -0.3 -10.9 -0.5 -16.5 -0.5c-142 0 -210 113 -210 215c0 63.2 19 121.4 55.3 164c36.6 43 90.9 70 156.7 70c153 0 210 -121 210 -225c0 -61.3 -20.3 -124.2 -65.1 -168
-c-18.7 -18.3 -41.7 -33.3 -69.2 -43.2c-56.6 -47.7 -82.7 -76.6 -82.7 -117.8c0 -26 13 -47 50 -47c29 0 45 16 67 38c9 0 15 -4 19 -11zM238 404c-90 0 -111 -89 -111 -176c0 -77 34 -203 138 -203c47 0 112 31 112 157c0 144 -53 222 -139 222z" />
-    <glyph glyph-name="uni01EC" unicode="&#x1ec;" horiz-adv-x="702" 
-d="M456 713h-224c-9 0 -13 11 -13 18c0 12 11 32 22 32h225c10 0 14 -11 14 -17c0 -12 -11 -33 -24 -33zM532 -135c-29 -45 -69 -65 -110 -65c-50 0 -88 20 -88 74c0 43.8 39.3 85.3 94.7 124.7c-24.7 -5.7 -51 -8.7 -78.7 -8.7c-170 0 -313 123 -313 320
-c0 193.9 113.3 348 307 348c179 0 322 -122 322 -329c0 -84 -22 -156.3 -61.8 -213c-23.6 -33.6 -53.4 -61.6 -88.5 -82.6c-82.3 -67.4 -119.7 -99.1 -119.7 -148.4c0 -26 13 -47 50 -47c29 0 45 16 67 38c9 0 15 -4 19 -11zM331 622c-99 0 -198 -85 -198 -295
-c0 -192 115 -301 237 -301c114 0 200 105 200 284c0 202 -107 312 -239 312z" />
-    <glyph glyph-name="uni01ED" unicode="&#x1ed;" horiz-adv-x="504" 
-d="M359 518h-224c-9 0 -13 11 -13 18c0 12 11 32 22 32h225c10 0 14 -11 14 -17c0 -12 -11 -33 -24 -33zM382 -135c-29 -45 -69 -65 -110 -65c-50 0 -88 20 -88 74c0 40.8 34.1 79.5 83.5 116.5c-5.39999 -0.3 -10.9 -0.5 -16.5 -0.5c-142 0 -210 113 -210 215
-c0 63.2 19 121.4 55.3 164c36.6 43 90.9 70 156.7 70c153 0 210 -121 210 -225c0 -61.3 -20.3 -124.2 -65.1 -168c-18.7 -18.3 -41.7 -33.3 -69.2 -43.2c-56.6 -47.7 -82.7 -76.6 -82.7 -117.8c0 -26 13 -47 50 -47c29 0 45 16 67 38c9 0 15 -4 19 -11zM238 404
-c-90 0 -111 -89 -111 -176c0 -77 34 -203 138 -203c47 0 112 31 112 157c0 144 -53 222 -139 222z" />
-    <glyph glyph-name="uni01EE" unicode="&#x1ee;" horiz-adv-x="608" 
-d="M275 697c-30 37 -65 67 -101 95l16 20c39 -17 73 -36 106 -61c37 26 69 45 107 61l15 -20c-38 -29 -70 -61 -100 -95h-43zM167 645h355c21 0 28 -6 28 -14c0 -10 -6 -26 -15 -41l-168 -302c134 -27 197 -126 197 -237c0 -139 -132 -262 -292 -262c-80 0 -230 35 -230 101
-c0 23 10 50 44 50c27 0 55 -14 68 -35c32 -49 82 -79 137 -79c87 0 184 121 184 216c0 159 -115 213 -184 213c-16 0 -27 0 -41 -3l196 353h-249c-74 -1 -103 -84 -107 -128l-26 2l21 188c23 -5 58 -22 82 -22z" />
-    <glyph glyph-name="uni01EF" unicode="&#x1ef;" horiz-adv-x="416" 
-d="M172 500c-29 47 -66 92 -101 130l20 13c39 -29 72 -54 106 -90c37 38 71 63 108 90l19 -13c-35 -39 -73 -84 -102 -130h-50zM127 107l168 288h-145c-30 0 -64 -21 -84 -94l-26 3c8 49 14 93 15 138h25c2 -6 11 -13 26 -13h203c29 0 65 6 67 6c7 0 13 -2 13 -6
-s-6 -15 -22 -42l-151 -250c96 0 177 -53 177 -159c0 -119 -85 -213 -208 -213c-85 0 -143 61 -143 93c0 18 10 36 32 36c23 0 36 -10 44 -34c8 -22 35 -60 75 -60c50 0 119 54 119 162c0 101 -31 141 -109 141c-11 0 -41 -7 -59 -11z" />
-    <glyph glyph-name="uni01F0" unicode="&#x1f0;" horiz-adv-x="272" 
-d="M113 317c0 57 -11 63 -65 68c-2 6 -4 22 -2 28c69 9 109 18 137 29c8 0 13 -3 13 -7c0 0 -4 -64 -4 -114v-211c0 -189 -28 -261 -75 -299c-37 -31 -89 -34 -110 -34c-19 0 -55 14 -55 43c0 18 21 38 32 38c22 0 34 -16 44 -26c7 -7 20 -11 31 -11c50 0 54 123 54 255v241
-zM120 509c-29 47 -66 92 -101 130l20 13c39 -29 72 -54 106 -90c37 38 71 63 108 90l19 -13c-35 -39 -73 -84 -102 -130h-50z" />
-    <glyph glyph-name="uni01F1" unicode="&#x1f1;" horiz-adv-x="1289" 
-d="M1236 -2c0 0 -99.7 2 -126.7 2h-364.3c-14 0 -19 5 -19 15c0 7 2 15 8 23c102 152 292 418 389 541c5 7 8 13 8 18c0 6 -4.09998 9.09998 -10 9l-211 -4c-75 -1.40002 -113 -37 -134 -106c-11 0 -20 2 -30 5c8 41 18 98 22 152c37 -3 134 -8 181 -8h221c30 0 61 2 73 2
-c8 0 13 -4 13 -11c0 -11 -2.90002 -17.8 -24 -45c-118 -152 -302 -413 -375 -519c-5 -9 -8 -15 -8 -20c0 -9 8 -14.4 25 -14l193 4c109 2 134 57 165 128c13 0 24 -3 31 -5c-12 -52 -22 -111 -27 -167zM191 84c0 -32 11 -52 109 -52c141 0 262 50 262 252
-c0 154 -71 329 -287 329c-49 0 -84 -14 -84 -49v-480zM148 645c39 0 94 2 165 2c192 0 345 -153 345 -339c0 -246 -186 -310 -327 -310c-103 0 -145 2 -182 2c-37.7 0 -91 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33
-c40 -1 93.3 -2 129 -2z" />
-    <glyph glyph-name="uni01F2" unicode="&#x1f2;" horiz-adv-x="1107" 
-d="M754 439c14.5 -5.39999 26.9 -10 59 -10h183c29 0 57 2 62 2c7 0 12 -3 12 -7s-2.69995 -11.8 -18 -37c-62 -102 -166 -259 -240 -353h133c52.1 1.2 72.5 23.2 98 76l14 29c12 0 23.5 -2.3 30 -6c-7 -50 -20 -102 -32 -136l-312 3c-15 0 -23 5 -23 12
-c0 5 0.400024 8.4 9 20c78 105 178 249 246 363l-128 -3c-30 -0.700012 -61 -18 -81 -91c-11.6 -2.60001 -24.2 -0.700012 -33 3c9 49 14 84 15 129c0 2.39999 3.59998 6 6 6zM191 84c0 -32 11 -52 109 -52c141 0 262 50 262 252c0 154 -71 329 -287 329
-c-49 0 -84 -14 -84 -49v-480zM148 645c39 0 94 2 165 2c192 0 345 -153 345 -339c0 -246 -186 -310 -327 -310c-103 0 -145 2 -182 2c-37.7 0 -91 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c40 -1 93.3 -2 129 -2z" />
-    <glyph glyph-name="uni01F3" unicode="&#x1f3;" horiz-adv-x="893" 
-d="M552 439c14.5 -5.39999 26.9 -10 59 -10h183c29 0 57 2 62 2c7 0 12 -3 12 -7s-2.70001 -11.8 -18 -37c-62 -102 -166 -259 -240 -353h133c52.1 1.2 72.5 23.2 98 76l14 29c12 0 23.5 -2.3 30 -6c-7 -50 -20 -102 -32 -136l-312 3c-15 0 -23 5 -23 12
-c0 5 0.400024 8.4 9 20c78 105 178 249 246 363l-128 -3c-30 -0.700012 -61 -18 -81 -91c-11.6 -2.60001 -24.2 -0.700012 -33 3c9 49 14 84 15 129c0 2.39999 3.59998 6 6 6zM345 124v190c0 31 -3 38 -17 54c-20 23 -45 36 -81 36c-20 0 -62 -3 -93 -50
-c-15 -21 -29 -61 -29 -133c0 -125 56 -184 110 -184c25 0 57 16 94 48c14.1 12.2 16 20 16 39zM334 50.3c-49 -40.3 -86 -60.3 -125 -60.3c-108 0 -170 90 -170 213c0 74 26 133 69 176c40 38 84 60 150 60c33 0 74 -17 78 -17c7 0 9 2 9 9v128c0 84 -12 79 -64 82
-c-6 6 -8 22 -6 30c40 3 115 17 140 27c9 0 13 -3 13 -10c0 0 -4 -40 -4 -105v-453c0 -49 9 -68 73 -73c6 -6 6 -21 0 -27c-61 -7 -96 -22 -118 -40c-6 -2.5 -11 -3 -19 0c0 0 -8.5 34.5 -11 59c-0.700012 7 -10.2 5.2 -15 1.3z" />
-    <glyph glyph-name="uni01F4" unicode="&#x1f4;" horiz-adv-x="685" 
-d="M429 820c28.6 -13.3 49.3 -30.7 62 -52l-144 -58c-21 -9 -33 -12 -42 -12s-15 7 -15 15c0 7 2 12 15 21zM377 658c111 0 148 -35 208 -45c16 -72 20.5 -112 23 -154c-11.3 -4.70001 -21.7 -6.70001 -33 -6c-26 86 -67 169 -212 169c-116.5 0 -230 -120 -230 -295
-c0 -132 84 -301 242 -301c54 0 121 6 155 38v153c0 40.1 -27.1 43.8 -82 48c-6 6 -6 30 0 36c44 -1 90.5 -2 124 -2c40 0 65 1 89 2c6 -6 6 -30 0 -36c-29 -3 -46 -12.8 -46 -48v-116c0 -11 5 -19 16 -28c-68 -58 -161 -83 -279 -83c-191 0 -315 137.2 -315 317
-c0 220 173 351 340 351z" />
-    <glyph glyph-name="uni01F5" unicode="&#x1f5;" horiz-adv-x="500" 
-d="M283 671c3 1 9 2 14 2c6.39999 0 32 -1 55 -23l3 -11l-115 -109c-15 -15 -23 -19 -30 -19s-14 6 -14 13c0 11.2 3.3 15.2 11.4 28zM319 279c0 83 -34 129 -97 129c-55 0 -80 -36 -80 -106c0 -64 9 -135 93 -135c37 0 84 19 84 112zM132 -10c-29 -35 -31 -60 -31 -94
-c0 -68 84 -97 120 -97c90 0 196 38 196 110c0 26 -12 40 -51 62c-29 16 -71 17 -121 17c-14 0 -42 -3 -73 -3c-13 0 -29 2 -40 5zM444 387c-11 0 -24 10 -28 18c-6 9 -13 12 -20 12c-13 0 -33 -14 -40 -24c29 -30 43 -57 43 -104c0 -98 -81 -153 -169 -153
-c-39 0 -67 7 -91 21c-12 -17 -18 -38 -18 -58c0 -43 35 -57 64 -57c5 0 15 1 30 2c24 3 49 5 67 5c37 0 107 -1 146 -33c29 -24 44 -49 44 -81c0 -108 -146 -173 -281 -173c-77 0 -159 27 -159 114c0 43 28 89 82 121c-26 13 -46 41 -46 77c0 34 16 77 44 101
-c-28 27 -52 58 -52 112c0 92 82 152 171 152c59 0 92 -20 104 -28c26 34 74 51 100 51c27 0 46 -16 46 -37c0 -20 -18 -38 -37 -38z" />
-    <glyph glyph-name="uni01F6" unicode="&#x1f6;" horiz-adv-x="900" 
-d="M513 132v189h-326v-249c0 -31 15.3 -39.9 55 -43l26 -2c4 -0.299999 8 -3 8 -8v-19l-2 -2s-86 2 -126 2c-35 0 -128 -2 -128 -2l-2 2v19c0 5 3 7.7 7 8l27 2c40.8 3 54 15 54 43v502c0 30 -16.2 39.2 -54 42l-27 2c-4 0.299988 -8 3 -8 8v19l2 2s87 -2 126 -2
-c36 0 129 2 129 2l2 -2v-19c0 -5 -3 -7.59998 -8 -8l-26 -2c-40.2 -3.09998 -55 -14 -55 -42v-211h326v211c0 30 -14.7 39 -54 42l-26 2c-5 0.400024 -9 3 -9 8v19l2 2s87 -2 126 -2c36 0 129 2 129 2l2 -2v-19c0 -5 -3 -7.59998 -8 -8l-26 -2
-c-40.3 -3.09998 -55 -14 -55 -42v-445c0 -65 39 -92 86 -92c75 0 136 102 136 200c0 96 -32 126 -61 131c-11 1 -42 6 -42 37c0 18 14 37 41 37c69 0 99 -73 99 -193c0 -183 -93 -259 -173 -259c-104 0 -167 51 -167 142z" />
-    <glyph glyph-name="uni01F7" unicode="&#x1f7;" horiz-adv-x="540" 
-d="M322 609c-45 0 -88 -31 -162 -105v-438c124 104 254 219 254 351c0 125 -23 192 -92 192zM160 547c57 55 121 111 185 111c121 0 159 -92 159 -201c0 -160 -168 -301 -344 -436v-210l-139 -37l-7 25c-1 5 0 8 5 9l20 6c30 9 40 27 40 60v649c0 65 -10 78 -30 78l-32 2
-c-3.2 0.200012 -6 2 -6 5l-2 24c40.5 3 115.9 16 141 26c9 0 13 -3 13 -10c0 0 -3 -36 -3 -101z" />
-    <glyph glyph-name="uni01F8" unicode="&#x1f8;" horiz-adv-x="699" 
-d="M293 817l121 -84c11 -8 15 -14 15 -21c0 -8 -7 -15 -15 -15s-22 3 -43 12l-154 63c18.3 17.7 41.8 33.4 76 45zM556 512c0 91 -17 95 -87 102c-6 6 -6 27 0 33c44 -1 89.7 -2 111 -2c23.7 0 71 1 112 2c6 -6 6 -27 0 -33c-70 -7 -87 -13 -87 -102v-491
-c0 -19 -9 -31 -23 -31c-16 0 -29 9 -40 24l-349 441c-17 22 -28 33 -34 33c-8 0 -8 -15 -8 -49v-306c0 -91 17 -95 87 -102c6 -6 6 -27 0 -33c-42 1 -87.9 2 -111 2c-23.6 0 -69 -1 -112 -2c-6 6 -6 27 0 33c70 7 87 13 87 102v417c-6 26 -36 61 -79 64c-6 6 -6 27 0 33
-l135 -2l343 -435c29 -37 44 -55 48 -55c7 0 7 11 7 30v327z" />
-    <glyph glyph-name="uni01F9" unicode="&#x1f9;" horiz-adv-x="542" 
-d="M271 671l70 -126c5 -10 6 -17 6 -24c0 -5 -7 -11 -15 -11c-6 0 -13 5 -29 20l-114 109l2 11c8 6 31 23 65 23c5 0 11 -1 15 -2zM184 358c59.3 68 115 81 164 81c35 0 66 -12 83 -34c23 -31 27 -79 27 -134v-149c0 -82 11 -86 67 -91c5 -6 5 -27 0 -33c-30 1 -66 2 -106 2
-s-72 -1 -102 -2c-5 6 -5 27 0 33c52 5 62 9 62 91v152c0 30 -2 57 -12 77c-12 23 -33 36 -53 36c-39 0 -84 -22 -122 -59c-8 -9 -17 -21 -17 -42v-164c0 -82 10 -86 61 -91c6 -6 6 -27 0 -33c-30 1 -60 2 -100 2s-80 -1 -110 -2c-6 6 -6 27 0 33c60 5 70 9 70 91v195
-c0 58 -11 63 -65 68c-2 6 -4 22 -2 28c69 9 95 18 123 29c8 0 9.89999 -3.39999 12 -8c4.7 -10.3 7 -49 8 -76c0.300003 -9.39999 5.89999 -7 12 0z" />
-    <glyph glyph-name="Aringacute" unicode="&#x1fa;" horiz-adv-x="695" 
-d="M263 283h177l-94 272h-6l-102.2 -258.7c-3.8 -10.3 3.2 -13.3 25.2 -13.3zM155 79c-15.6 -41.1 31.4 -45.4 69 -48c6 -6 6 -27 0 -33c-37 1 -87 2 -128 2c-30.3 0 -63 -1 -89 -2c-6 6 -6 27 0 33c43.5 3 74 9 100 71l225.1 531.5c-34.3 11.5 -61.1 43.7 -61.1 80.5
-c0 46 42 85 88 85c33 0 63.9 -19.5 78.8 -47.9l115.2 79.9c28.6 -13.3 49.3 -30.7 62 -52l-144 -58c-9.70001 -4.20001 -17.5 -7.09998 -24 -9c-0.799988 -31.8 -21.5 -60.7 -50.6 -74.5l198.6 -551.5c17.4 -48.2 51.2 -51.5 90 -55c6 -6 6 -27 0 -33c-35 1 -73 2 -114 2
-c-39 0 -94 -1 -131 -2c-6 6 -6 27 0 33c47.6 3.4 85.8 6.5 74 41l-58 169h-211c-24 0 -30 -4 -35 -17zM359 767c-31 0 -48 -23 -48 -53c0 -28 17 -53 48 -53s48 25 48 53c0 31 -18 53 -48 53z" />
-    <glyph glyph-name="aringacute" unicode="&#x1fb;" horiz-adv-x="457" 
-d="M210 635c-31 0 -48 -23 -48 -53c0 -28 17 -53 48 -53s48 25 48 53c0 31 -18 53 -48 53zM122 582c0 46 42 85 88 85s88 -38 88 -85c0 -45 -40 -85 -88 -85c-46 0 -88 39 -88 85zM293 233l-79 -21c-74 -19 -95 -65 -95 -110c0 -31 22 -71 72 -71c28 0 62 23 88 44
-c8 6 14 13 14 26v132zM293 48h-2l-20 -16c-44 -34 -74.2 -42 -109 -42c-70 0 -126 26 -126 108c0 68 69 121 165 145l86 21c3 1 6 5 6 12c0 113 -47 130 -81 130c-38 0 -80 -11 -80 -42c0 -11 1 -17 2 -20c2 -4 3 -11 3 -18c0 -13 -18 -34 -47 -34c-23 0 -35 12 -35 36
-c0 57 83 111 165 111c73 0 151 -27 151 -169v-147c0 -46 1 -85 30 -85c12.7 0 29.5 9.8 37 16c11.3 -6.3 15.3 -14.7 17 -27c-20.7 -20 -56.7 -37 -95 -37c-50.4 0 -61 27 -67 58zM230.4 830.2c2.40001 0.899963 7.20001 1.79999 11.2 1.79999
-c5.09999 0 25.6 -0.900024 44 -20.7l2.39999 -9.89996l-92 -98.1c-12 -13.5 -18.4 -17.1 -24 -17.1s-11.2 5.39996 -11.2 11.7c0 10.1 2.7 13.7 9.2 25.2z" />
-    <glyph glyph-name="AEacute" unicode="&#x1fc;" horiz-adv-x="865" 
-d="M618 821c28.6 -13.3 49.3 -30.7 62 -52l-144 -58c-21 -9 -33 -12 -42 -12s-15 7 -15 15c0 7 2 12 15 21zM271 305h158v270c0 12 -1 21 -5 23zM429 122v144h-178l-97 -187c-20.3 -39.1 32.4 -45.4 70 -48c6 -6 6 -27 0 -33c-37 1 -87 2 -128 2c-39 0 -52 -1 -89 -2
-c-6 6 -6 27 0 33c43.5 3 72.3 11.7 104 71l243 455c16.2 30.7 10 54 -60 57c-6 6 -6 27 0 33c50 -1 115 -2 115 -2h140h176c24 0 32 1 49 4c3 0 4 -1 4 -3c2 -8 17 -104 22 -145c-9.79999 -4.70001 -20.6 -6.79999 -33 -5c-22 69 -38 109 -113 109h-105
-c-24 0 -36 -20 -36 -44v-200h91c85 0 88 13 91 68c6 6 27 6 33 0c-1 -30 -2 -52.5 -2 -86c0 -34.3 1 -53 2 -88c-6 -6 -27 -6 -33 0c-3 45 -6 68 -91 68h-91v-241c0 -27 14 -43 36 -43h136c76 0 111 59 131 131c13.1 3.2 24.6 1 35 -5c-8 -51 -23 -117 -37 -167
-c0 0 -80 2 -128 2h-214s-81 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91z" />
-    <glyph glyph-name="aeacute" unicode="&#x1fd;" horiz-adv-x="687" 
-d="M407 671c3 1 9 2 14 2c6.39999 0 32 -1 55 -23l3 -11l-115 -109c-15 -15 -23 -19 -30 -19s-14 6 -14 13c0 11.2 3.29999 15.2 11.4 28zM265 384c-14.7 15.3 -44 22 -65 22c-39 0 -77 -14 -77 -43c0 -10 1 -17 3 -20c2 -4 3 -11 3 -18c0 -16 -14 -33 -39 -33
-c-31 0 -40 25 -40 45c0 58 78 102 160 102c24 0 101 -3 138 -70c33 45 85 70 142 70c114 0 158 -66 158 -100c0 -81 -46 -118 -277 -121c0 -90 59 -179 134 -179c54 0 89 25 119 60c8.70001 -0.800003 16.7 -10.7 20 -16c-29 -54 -87 -93 -153 -93
-c-91 0 -129.7 45.1 -151 69c-8 9 -12.1 5.1 -24 -7c-46 -47 -96.9 -62 -134 -62c-36 0 -72.1 5.5 -94 18c-34.5 19.6 -49 52.4 -49 94c0 40 27 82 63 103.2c43.1 25.4 109.2 38.7 196 44.8c-1 79 -10 110 -33 134zM298 215c-69.3 -5.5 -119.3 -22.4 -150 -45.1
-c-24.7 -18.2 -37 -40.2 -37 -62.9c0 -43 27 -75 83 -75c32 0 84 41 99 81c4 19 5 52 5 102zM372 253c153 2 200 22 200 83c0 32 -35 70 -83 70c-68 0 -109 -68 -117 -153z" />
-    <glyph glyph-name="Oslashacute" unicode="&#x1fe;" horiz-adv-x="702" 
-d="M392 820c28.6 -13.3 49.3 -30.7 62 -52l-144 -58c-21 -9 -33 -12 -42 -12s-15 7 -15 15c0 7 2 12 15 21zM108 -13c-19 0 -33 17 -36 32l51.5 63.4c-53.3 55.1 -86.5 132.8 -86.5 227.6c0 193.9 113.3 348 307 348c74.7 0 143.1 -21.2 197.5 -61l49.5 61
-c19 0 33.7 -15.1 36 -30l-50 -61.7c55.2 -56.2 89 -136.7 89 -237.3c0 -84 -22 -156.3 -61.8 -213c-54.9 -78.3 -143.4 -126 -254.2 -126c-71 0 -137.3 21.5 -190.4 60.8zM331 622c-99 0 -198 -85 -198 -295c0 -72.2 16.2 -132.6 43 -179.9l322.3 396.7
-c-43.1 51.4 -102.2 78.2 -167.3 78.2zM526 503.3l-321.6 -397.2c44.1 -52.3 104 -80.1 165.6 -80.1c114 0 200 105 200 284c0 78.8 -16.3 143.6 -44 193.3z" />
-    <glyph glyph-name="oslashacute" unicode="&#x1ff;" horiz-adv-x="504" 
-d="M289 671c3 1 9 2 14 2c6.39999 0 32 -1 55 -23l3 -11l-115 -109c-15 -15 -23 -19 -30 -19s-14 6 -14 13c0 11.2 3.3 15.2 11.4 28zM414 454c17 0 27 -10 31 -23l-41.9 -51.1c42.2 -44.6 59.9 -107.9 59.9 -165.9c0 -61.3 -20.3 -124.2 -65.1 -168
-c-34.1 -33.3 -82.5 -56 -146.9 -56c-55.1 0 -99 17 -132.2 43.8l-50.8 -61.8c-16 0 -28 11 -30 26l52.6 63.8c-33.3 40.7 -49.6 93.3 -49.6 143.2c0 63.2 19 121.4 55.3 164c36.6 43 90.9 70 156.7 70c50 0 89.7 -13 120.6 -34zM238 404c-90 0 -111 -89 -111 -176
-c0 -29.7 5.10001 -66.8 17.3 -101.1l189.1 229.3c-23.6 31.5 -56.1 47.8 -95.4 47.8zM353.8 320l-191 -232.6c21.7 -36 54.6 -62.4 102.2 -62.4c47 0 112 31 112 157c0 56.4 -8.20001 102.6 -23.2 138z" />
-    <glyph glyph-name="uni0200" unicode="&#x200;" horiz-adv-x="695" 
-d="M194 783c0 16.2 12 38 41 38c11 0 18 -4 23 -12l59.3 -109c2.5 -4.59998 3.70001 -8 3.70001 -11c0 -8 -8 -13 -13 -13c-3 0 -6 1 -8 3l-99 84c-4 4 -7 11 -7 20zM325 788c0 23.3 22.3 38 38 38c15 0 22 -4 27 -12l54.5 -110c1.89999 -3.79999 2.5 -9 2.5 -11
-c0 -7 -6 -12 -13 -12c-5.60001 0 -9.60001 3.5 -14 7.5l-88 80.5c-5 4 -7 11 -7 19zM263 283h177l-94 272h-6l-102.2 -258.7c-3.8 -10.3 3.2 -13.3 25.2 -13.3zM155 79c-15.6 -41.1 31.4 -45.4 69 -48c6 -6 6 -27 0 -33c-37 1 -87 2 -128 2c-30.3 0 -63 -1 -89 -2
-c-6 6 -6 27 0 33c43.5 3 74 9 100 71l227 536c13 0 40 11 55 20l206 -572c17.4 -48.2 51.2 -51.5 90 -55c6 -6 6 -27 0 -33c-35 1 -73 2 -114 2c-39 0 -94 -1 -131 -2c-6 6 -6 27 0 33c47.6 3.4 85.8 6.5 74 41l-58 169h-211c-24 0 -30 -4 -35 -17z" />
-    <glyph glyph-name="uni0201" unicode="&#x201;" horiz-adv-x="457" 
-d="M86 645c12 0 19 -2 24 -11l78 -139c1 -1 1 -3 1 -4c0 -9.70001 -10.4 -14 -13 -14c-3 0 -5 1 -7 3l-114 110c-5 6 -7 13 -7 19c0 17.9 14.6 36 38 36zM222 651c11 0 19 -5 23 -14l62.7 -143c1.29999 -3 1.29999 -5 1.29999 -6c0 -2.60001 -2.79999 -13 -14 -13
-c-3 0 -5 1 -7 3l-102 121c-5 5 -6 11 -6 16c0 13.8 10.5 36 42 36zM293 233l-79 -21c-74 -19 -95 -65 -95 -110c0 -31 22 -71 72 -71c28 0 62 23 88 44c8 6 14 13 14 26v132zM293 48h-2l-20 -16c-44 -34 -74.2 -42 -109 -42c-70 0 -126 26 -126 108c0 68 69 121 165 145
-l86 21c3 1 6 5 6 12c0 113 -47 130 -81 130c-38 0 -80 -11 -80 -42c0 -11 1 -17 2 -20c2 -4 3 -11 3 -18c0 -13 -18 -34 -47 -34c-23 0 -35 12 -35 36c0 57 83 111 165 111c73 0 151 -27 151 -169v-147c0 -46 1 -85 30 -85c12.7 0 29.5 9.8 37 16
-c11.3 -6.3 15.3 -14.7 17 -27c-20.7 -20 -56.7 -37 -95 -37c-50.4 0 -61 27 -67 58z" />
-    <glyph glyph-name="uni0202" unicode="&#x202;" horiz-adv-x="695" 
-d="M225 691c6 71 70 113 136 113c73 0 131 -43 136 -113h-28c-8 39 -55 61 -108 61c-49 0 -101 -22 -108 -61h-28zM263 283h177l-94 272h-6l-102.2 -258.7c-3.8 -10.3 3.2 -13.3 25.2 -13.3zM155 79c-15.6 -41.1 31.4 -45.4 69 -48c6 -6 6 -27 0 -33c-37 1 -87 2 -128 2
-c-30.3 0 -63 -1 -89 -2c-6 6 -6 27 0 33c43.5 3 74 9 100 71l227 536c13 0 40 11 55 20l206 -572c17.4 -48.2 51.2 -51.5 90 -55c6 -6 6 -27 0 -33c-35 1 -73 2 -114 2c-39 0 -94 -1 -131 -2c-6 6 -6 27 0 33c47.6 3.4 85.8 6.5 74 41l-58 169h-211c-24 0 -30 -4 -35 -17z
-" />
-    <glyph glyph-name="uni0203" unicode="&#x203;" horiz-adv-x="457" 
-d="M326 498c-11 53 -54 90 -108 90c-52 0 -98 -32 -108 -90l-27 12c12 86 76 135 135 135c70 0 121 -50 135 -135zM293 233l-79 -21c-74 -19 -95 -65 -95 -110c0 -31 22 -71 72 -71c28 0 62 23 88 44c8 6 14 13 14 26v132zM293 48h-2l-20 -16c-44 -34 -74.2 -42 -109 -42
-c-70 0 -126 26 -126 108c0 68 69 121 165 145l86 21c3 1 6 5 6 12c0 113 -47 130 -81 130c-38 0 -80 -11 -80 -42c0 -11 1 -17 2 -20c2 -4 3 -11 3 -18c0 -13 -18 -34 -47 -34c-23 0 -35 12 -35 36c0 57 83 111 165 111c73 0 151 -27 151 -169v-147c0 -46 1 -85 30 -85
-c12.7 0 29.5 9.8 37 16c11.3 -6.3 15.3 -14.7 17 -27c-20.7 -20 -56.7 -37 -95 -37c-50.4 0 -61 27 -67 58z" />
-    <glyph glyph-name="uni0204" unicode="&#x204;" horiz-adv-x="557" 
-d="M147 787c0 16.2 12 38 41 38c11 0 18 -4 23 -12l59.3 -109c2.5 -4.59998 3.70001 -8 3.70001 -11c0 -8 -8 -13 -13 -13c-3 0 -6 1 -8 3l-99 84c-4 4 -7 11 -7 20zM278 792c0 23.3 22.3 38 38 38c15 0 22 -4 27 -12l54.5 -110c1.89999 -3.79999 2.5 -9 2.5 -11
-c0 -7 -6 -12 -13 -12c-5.60001 0 -9.60001 3.5 -14 7.5l-88 80.5c-5 4 -7 11 -7 19zM281 361c85 0 88 13 91 68c6 6 27 6 33 0c-1 -24 -2 -58 -2 -86c0 -34.3 1 -62 2 -88c-6 -6 -27 -6 -33 0c-3 45 -6 68 -91 68h-91v-221c0 -47 14 -63 56 -63h116c76 0 111 59 131 131
-c13.1 3.2 24.6 1 35 -5c-8 -51 -23 -117 -37 -167c0 0 -80 2 -128 2h-215c-33 0 -93 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c40 -1 98.5 -2 129 -2h255c24 0 32 1 49 4c3 0 4 -1 4 -3c2 -8 17 -104 22 -145
-c-9.79999 -4.70001 -20.6 -6.79999 -33 -5c-22 69 -38 109 -113 109h-75c-54 0 -66 -20 -66 -64v-180h91z" />
-    <glyph glyph-name="uni0205" unicode="&#x205;" horiz-adv-x="447" 
-d="M93 652c12 0 19 -2 24 -11l78 -139c1 -1 1 -3 1 -4c0 -9.70001 -10.4 -14 -13 -14c-3 0 -5 1 -7 3l-114 110c-5 6 -7 13 -7 19c0 17.9 14.6 36 38 36zM229 658c11 0 19 -5 23 -14l62.7 -143c1.29999 -3 1.29999 -5 1.29999 -6c0 -2.60001 -2.79999 -13 -14 -13
-c-3 0 -5 1 -7 3l-102 121c-5 5 -6 11 -6 16c0 13.8 10.5 36 42 36zM124 282l181 3c11 0.200012 15 5 15 14c0 84 -45 105 -83 105c-24 0 -94 -9 -113 -122zM386 93c12 -1 18 -6 21 -16c-40 -52 -94 -87 -170 -87c-72 0 -119 24 -153 64c-33 38 -47 92 -47 148
-c0 152 113 235 200 235c139 0 169 -90 169 -174c0 -11 -7 -17 -19 -17l-266 2c0 -58 12 -104 32 -137c31 -51 73 -72 109 -72c58 0 87 16 124 54z" />
-    <glyph glyph-name="uni0206" unicode="&#x206;" horiz-adv-x="557" 
-d="M147 691c6 71 70 113 136 113c73 0 131 -43 136 -113h-28c-8 39 -55 61 -108 61c-49 0 -101 -22 -108 -61h-28zM281 361c85 0 88 13 91 68c6 6 27 6 33 0c-1 -24 -2 -58 -2 -86c0 -34.3 1 -62 2 -88c-6 -6 -27 -6 -33 0c-3 45 -6 68 -91 68h-91v-221c0 -47 14 -63 56 -63
-h116c76 0 111 59 131 131c13.1 3.2 24.6 1 35 -5c-8 -51 -23 -117 -37 -167c0 0 -80 2 -128 2h-215c-33 0 -93 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c40 -1 98.5 -2 129 -2h255c24 0 32 1 49 4c3 0 4 -1 4 -3
-c2 -8 17 -104 22 -145c-9.79999 -4.70001 -20.6 -6.79999 -33 -5c-22 69 -38 109 -113 109h-75c-54 0 -66 -20 -66 -64v-180h91z" />
-    <glyph glyph-name="uni0207" unicode="&#x207;" horiz-adv-x="447" 
-d="M334 499c-11 53 -54 90 -108 90c-52 0 -98 -32 -108 -90l-27 12c12 86 76 135 135 135c70 0 121 -50 135 -135zM124 282l181 3c11 0.200012 15 5 15 14c0 84 -45 105 -83 105c-24 0 -94 -9 -113 -122zM386 93c12 -1 18 -6 21 -16c-40 -52 -94 -87 -170 -87
-c-72 0 -119 24 -153 64c-33 38 -47 92 -47 148c0 152 113 235 200 235c139 0 169 -90 169 -174c0 -11 -7 -17 -19 -17l-266 2c0 -58 12 -104 32 -137c31 -51 73 -72 109 -72c58 0 87 16 124 54z" />
-    <glyph glyph-name="uni0208" unicode="&#x208;" horiz-adv-x="297" 
-d="M0 794c0 16.2 12 38 41 38c11 0 18 -4 23 -12l59.3 -109c2.5 -4.59998 3.7 -8 3.7 -11c0 -8 -8 -13 -13 -13c-3 0 -6 1 -8 3l-99 84c-4 4 -7 11 -7 20zM131 799c0 23.3 22.3 38 38 38c15 0 22 -4 27 -12l54.5 -110c1.89999 -3.79999 2.5 -9 2.5 -11c0 -7 -6 -12 -13 -12
-c-5.60001 0 -9.60001 3.5 -14 7.5l-88 80.5c-5 4 -7 11 -7 19zM191 122c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-45 1 -93.4 2 -129 2c-36.3 0 -85 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c47 -1 95.5 -2 129 -2
-c38.5 0 86 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-401z" />
-    <glyph glyph-name="uni0209" unicode="&#x209;" horiz-adv-x="271" 
-d="M-19 679c12 0 19 -2 24 -11l78 -139c1 -1 1 -3 1 -4c0 -9.70001 -10.4 -14 -13 -14c-3 0 -5 1 -7 3l-114 110c-5 6 -7 13 -7 19c0 17.9 14.6 36 38 36zM117 685c11 0 19 -5 23 -14l62.7 -143c1.3 -3 1.3 -5 1.3 -6c0 -2.59998 -2.8 -13 -14 -13c-3 0 -5 1 -7 3l-102 121
-c-5 5 -6 11 -6 16c0 13.8 10.5 36 42 36zM181 122c0 -83 11 -87 72 -91c6 -6 6 -27 0 -33c-33 1 -71 2 -111 2s-79 -1 -112 -2c-6 6 -6 27 0 33c61 5 72 8 72 91v195c0 57 -10.5 62.9 -65 68c-2 6 -4 22 -2 28c69 9 108.5 18 137 29c8 0 13 -3 13 -7c0 0 -4 -64 -4 -113.7
-v-199.3z" />
-    <glyph glyph-name="uni020A" unicode="&#x20a;" horiz-adv-x="297" 
-d="M12 690c6 71 70 113 136 113c73 0 131 -43 136 -113h-28c-8 39 -55 61 -108 61c-49 0 -101 -22 -108 -61h-28zM191 122c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-45 1 -93.4 2 -129 2c-36.3 0 -85 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91
-c-6 6 -6 27 0 33c47 -1 95.5 -2 129 -2c38.5 0 86 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-401z" />
-    <glyph glyph-name="uni020B" unicode="&#x20b;" horiz-adv-x="271" 
-d="M225 498c-9.89999 53 -48.6 90 -97.2 90c-46.8 0 -88.2 -32 -97.2 -90l-24.3 12c10.8 86 68.4 135 121.5 135c63 0 108.9 -50 121.5 -135zM181 122c0 -83 11 -87 72 -91c6 -6 6 -27 0 -33c-33 1 -71 2 -111 2s-79 -1 -112 -2c-6 6 -6 27 0 33c61 5 72 8 72 91v195
-c0 57 -10.5 62.9 -65 68c-2 6 -4 22 -2 28c69 9 108.5 18 137 29c8 0 13 -3 13 -7c0 0 -4 -64 -4 -113.7v-199.3z" />
-    <glyph glyph-name="uni020C" unicode="&#x20c;" horiz-adv-x="702" 
-d="M182 787c0 16.2 12 38 41 38c11 0 18 -4 23 -12l59.3 -109c2.5 -4.59998 3.70001 -8 3.70001 -11c0 -8 -8 -13 -13 -13c-3 0 -6 1 -8 3l-99 84c-4 4 -7 11 -7 20zM313 792c0 23.3 22.3 38 38 38c15 0 22 -4 27 -12l54.5 -110c1.89999 -3.79999 2.5 -9 2.5 -11
-c0 -7 -6 -12 -13 -12c-5.60001 0 -9.60001 3.5 -14 7.5l-88 80.5c-5 4 -7 11 -7 19zM331 622c-99 0 -198 -85 -198 -295c0 -192 115 -301 237 -301c114 0 200 105 200 284c0 202 -107 312 -239 312zM666 329c0 -84 -22 -156.3 -61.8 -213
-c-54.9 -78.3 -143.4 -126 -254.2 -126c-170 0 -313 123 -313 320c0 193.9 113.3 348 307 348c179 0 322 -122 322 -329z" />
-    <glyph glyph-name="uni020D" unicode="&#x20d;" horiz-adv-x="504" 
-d="M116 652c12 0 19 -2 24 -11l78 -139c1 -1 1 -3 1 -4c0 -9.70001 -10.4 -14 -13 -14c-3 0 -5 1 -7 3l-114 110c-5 6 -7 13 -7 19c0 17.9 14.6 36 38 36zM252 658c11 0 19 -5 23 -14l62.7 -143c1.29999 -3 1.29999 -5 1.29999 -6c0 -2.60001 -2.79999 -13 -14 -13
-c-3 0 -5 1 -7 3l-102 121c-5 5 -6 11 -6 16c0 13.8 10.5 36 42 36zM41 205c0 63.2 19 121.4 55.3 164c36.6 43 90.9 70 156.7 70c153 0 210 -121 210 -225c0 -61.3 -20.3 -124.2 -65.1 -168c-34.1 -33.3 -82.5 -56 -146.9 -56c-142 0 -210 113 -210 215zM238 404
-c-90 0 -111 -89 -111 -176c0 -77 34 -203 138 -203c47 0 112 31 112 157c0 144 -53 222 -139 222z" />
-    <glyph glyph-name="uni020E" unicode="&#x20e;" horiz-adv-x="702" 
-d="M212 691c6 71 70 113 136 113c73 0 131 -43 136 -113h-28c-8 39 -55 61 -108 61c-49 0 -101 -22 -108 -61h-28zM331 622c-99 0 -198 -85 -198 -295c0 -192 115 -301 237 -301c114 0 200 105 200 284c0 202 -107 312 -239 312zM666 329c0 -84 -22 -156.3 -61.8 -213
-c-54.9 -78.3 -143.4 -126 -254.2 -126c-170 0 -313 123 -313 320c0 193.9 113.3 348 307 348c179 0 322 -122 322 -329z" />
-    <glyph glyph-name="uni020F" unicode="&#x20f;" horiz-adv-x="504" 
-d="M348 498c-11 53 -54 90 -108 90c-52 0 -98 -32 -108 -90l-27 12c12 86 76 135 135 135c70 0 121 -50 135 -135zM41 205c0 63.2 19 121.4 55.3 164c36.6 43 90.9 70 156.7 70c153 0 210 -121 210 -225c0 -61.3 -20.3 -124.2 -65.1 -168c-34.1 -33.3 -82.5 -56 -146.9 -56
-c-142 0 -210 113 -210 215zM238 404c-90 0 -111 -89 -111 -176c0 -77 34 -203 138 -203c47 0 112 31 112 157c0 144 -53 222 -139 222z" />
-    <glyph glyph-name="uni0210" unicode="&#x210;" horiz-adv-x="587" 
-d="M100 792c0 16.2 12 38 41 38c11 0 18 -4 23 -12l59.3 -109c2.5 -4.59998 3.7 -8 3.7 -11c0 -8 -8 -13 -13 -13c-3 0 -6 1 -8 3l-99 84c-4 4 -7 11 -7 20zM231 797c0 23.3 22.3 38 38 38c15 0 22 -4 27 -12l54.5 -110c1.89999 -3.79999 2.5 -9 2.5 -11
-c0 -7 -6 -12 -13 -12c-5.60001 0 -9.60001 3.5 -14 7.5l-88 80.5c-5 4 -7 11 -7 19zM272 618c-71 0 -83 -35 -83 -64v-229h48c97 0 168 28 168 153c0 118 -72 140 -133 140zM189 122c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-44 1 -91.4 2 -129 2c-38.5 0 -85 -1 -130 -2
-c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c47 -1 94 -2 129 -2c36 0 78 7 125 7c63 0 125 -3 173 -48c36 -34 53 -75 53 -125c0 -105 -90 -157 -133 -171l126 -210c26 -43.4 51 -77 96 -77c4 -8 4.5 -17.1 1 -24c-10 -5 -27 -7 -42 -7
-c-60 0 -103.3 42.4 -132 89l-107 174c-14.3 23.3 -33 38 -117 38v-169z" />
-    <glyph glyph-name="uni0211" unicode="&#x211;" horiz-adv-x="372" 
-d="M71 653c12 0 19 -2 24 -11l78 -139c1 -1 1 -3 1 -4c0 -9.70001 -10.4 -14 -13 -14c-3 0 -5 1 -7 3l-114 110c-5 6 -7 13 -7 19c0 17.9 14.6 36 38 36zM207 659c11 0 19 -5 23 -14l62.7 -143c1.29999 -3 1.29999 -5 1.29999 -6c0 -2.60001 -2.79999 -13 -14 -13
-c-3 0 -5 1 -7 3l-102 121c-5 5 -6 11 -6 16c0 13.8 10.5 36 42 36zM176 358c0.199997 -5 5 -13 11 -2c23 39 64 83 111 83c42 0 60 -28.9 60 -48c0 -25 -23 -50 -47 -50c-17.4 0 -28.6 13.3 -36.2 23.3c-7.79999 10.3 -16.8 12.7 -25.8 12.7c-12 0 -35 -33 -46 -49
-c-12 -18 -24 -41 -24 -67v-139c0 -83 12 -86 82 -91c6 -6 6 -27 0 -33c-35 1 -81 2 -121 2s-79 -1 -114 -2c-6 6 -6 27 0 33c62 4 74 8 74 91v195c0 58 -11 63 -65 68c-2 6 -4 22 -2 28c69 9 95 18 123 29c8 0 9.89999 -3.39999 12 -8c4.7 -10.3 6.3 -36 8 -76z" />
-    <glyph glyph-name="uni0212" unicode="&#x212;" horiz-adv-x="587" 
-d="M148 691c6 71 70 113 136 113c73 0 131 -43 136 -113h-28c-8 39 -55 61 -108 61c-49 0 -101 -22 -108 -61h-28zM272 618c-71 0 -83 -35 -83 -64v-229h48c97 0 168 28 168 153c0 118 -72 140 -133 140zM189 122c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33
-c-44 1 -91.4 2 -129 2c-38.5 0 -85 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c47 -1 94 -2 129 -2c36 0 78 7 125 7c63 0 125 -3 173 -48c36 -34 53 -75 53 -125c0 -105 -90 -157 -133 -171l126 -210c26 -43.4 51 -77 96 -77
-c4 -8 4.5 -17.1 1 -24c-10 -5 -27 -7 -42 -7c-60 0 -103.3 42.4 -132 89l-107 174c-14.3 23.3 -33 38 -117 38v-169z" />
-    <glyph glyph-name="uni0213" unicode="&#x213;" horiz-adv-x="372" 
-d="M309 498c-11 53 -54 90 -108 90c-52 0 -98 -32 -108 -90l-27 12c12 86 76 135 135 135c70 0 121 -50 135 -135zM176 358c0.199997 -5 5 -13 11 -2c23 39 64 83 111 83c42 0 60 -28.9 60 -48c0 -25 -23 -50 -47 -50c-17.4 0 -28.6 13.3 -36.2 23.3
-c-7.79999 10.3 -16.8 12.7 -25.8 12.7c-12 0 -35 -33 -46 -49c-12 -18 -24 -41 -24 -67v-139c0 -83 12 -86 82 -91c6 -6 6 -27 0 -33c-35 1 -81 2 -121 2s-79 -1 -114 -2c-6 6 -6 27 0 33c62 4 74 8 74 91v195c0 58 -11 63 -65 68c-2 6 -4 22 -2 28c69 9 95 18 123 29
-c8 0 9.89999 -3.39999 12 -8c4.7 -10.3 6.3 -36 8 -76z" />
-    <glyph glyph-name="uni0214" unicode="&#x214;" horiz-adv-x="661" 
-d="M188 777c0 16.2 12 38 41 38c11 0 18 -4 23 -12l59.3 -109c2.5 -4.59998 3.70001 -8 3.70001 -11c0 -8 -8 -13 -13 -13c-3 0 -6 1 -8 3l-99 84c-4 4 -7 11 -7 20zM319 782c0 23.3 22.3 38 38 38c15 0 22 -4 27 -12l54.5 -110c1.89999 -3.79999 2.5 -9 2.5 -11
-c0 -7 -6 -12 -13 -12c-5.60001 0 -9.60001 3.5 -14 7.5l-88 80.5c-5 4 -7 11 -7 19zM172 523v-257c0 -65 2 -141 51 -188c30.1 -28.9 71 -47 119 -47c169 0 184 134 184 246v246c0 81 -17 84 -92 91c-6 6 -6 27 0 33c46 -1 94.5 -2 116 -2c23.2 0 64 1 102 2
-c6 -6 6 -27 0 -33c-60 -7 -77 -10.7 -77 -91v-228c0 -178 -49 -305 -254 -305c-102.5 0 -234 39 -234 243v290c0 83 -17 88 -77 91c-6 6 -6 27 0 33c39 -1 80 -2 119 -2c39.4 0 88 1 135 2c6 -6 6 -27 0 -33c-77 -3 -92 -8 -92 -91z" />
-    <glyph glyph-name="uni0215" unicode="&#x215;" horiz-adv-x="531" 
-d="M113 652c12 0 19 -2 24 -11l78 -139c1 -1 1 -3 1 -4c0 -9.70001 -10.4 -14 -13 -14c-3 0 -5 1 -7 3l-114 110c-5 6 -7 13 -7 19c0 17.9 14.6 36 38 36zM249 658c11 0 19 -5 23 -14l62.7 -143c1.29999 -3 1.29999 -5 1.29999 -6c0 -2.60001 -2.79999 -13 -14 -13
-c-3 0 -5 1 -7 3l-102 121c-5 5 -6 11 -6 16c0 13.8 10.5 36 42 36zM217 -10c-99 0 -129 67 -129 136v192c0 65 -14 76 -62 80c-6 6 -6 27 0 33c34 -1 70 -2 102 -2c15 0 30 1 35 2c5 0 8 -3 8 -6c0 0 -4 -73 -4 -103v-182c0 -89 50 -103 80 -103c25 0 63 16 100 48
-c14 12 16 20 16 39v193c0 66 -13 78 -62 81c-6 6 -6 27 0 33c34 -1 70 -2 102 -2c15 0 30 1 35 2c5 0 8 -3 8 -6c0 0 -4 -73 -4 -103v-192c0 -49 9 -68 73 -73c6 -6 6 -21 0 -27c-61 -7 -96 -22 -118 -40c-6.5 -2.5 -11 -3 -19 0c0 0 -8.5 33.5 -11 59
-c-0.700012 7 -10 5 -15 1c-49 -40 -96 -60 -135 -60z" />
-    <glyph glyph-name="uni0216" unicode="&#x216;" horiz-adv-x="661" 
-d="M213 691c6 71 70 113 136 113c73 0 131 -43 136 -113h-28c-8 39 -55 61 -108 61c-49 0 -101 -22 -108 -61h-28zM172 523v-257c0 -65 2 -141 51 -188c30.1 -28.9 71 -47 119 -47c169 0 184 134 184 246v246c0 81 -17 84 -92 91c-6 6 -6 27 0 33c46 -1 94.5 -2 116 -2
-c23.2 0 64 1 102 2c6 -6 6 -27 0 -33c-60 -7 -77 -10.7 -77 -91v-228c0 -178 -49 -305 -254 -305c-102.5 0 -234 39 -234 243v290c0 83 -17 88 -77 91c-6 6 -6 27 0 33c39 -1 80 -2 119 -2c39.4 0 88 1 135 2c6 -6 6 -27 0 -33c-77 -3 -92 -8 -92 -91z" />
-    <glyph glyph-name="uni0217" unicode="&#x217;" horiz-adv-x="531" 
-d="M359 498c-11 53 -54 90 -108 90c-52 0 -98 -32 -108 -90l-27 12c12 86 76 135 135 135c70 0 121 -50 135 -135zM217 -10c-99 0 -129 67 -129 136v192c0 65 -14 76 -62 80c-6 6 -6 27 0 33c34 -1 70 -2 102 -2c15 0 30 1 35 2c5 0 8 -3 8 -6c0 0 -4 -73 -4 -103v-182
-c0 -89 50 -103 80 -103c25 0 63 16 100 48c14 12 16 20 16 39v193c0 66 -13 78 -62 81c-6 6 -6 27 0 33c34 -1 70 -2 102 -2c15 0 30 1 35 2c5 0 8 -3 8 -6c0 0 -4 -73 -4 -103v-192c0 -49 9 -68 73 -73c6 -6 6 -21 0 -27c-61 -7 -96 -22 -118 -40c-6.5 -2.5 -11 -3 -19 0
-c0 0 -8.5 33.5 -11 59c-0.700012 7 -10 5 -15 1c-49 -40 -96 -60 -135 -60z" />
-    <glyph glyph-name="Scommaaccent" unicode="&#x218;" horiz-adv-x="485" 
-d="M394.7 631c10.3 -53 14.3 -81 17.8 -129c-9 -7 -22 -7.79999 -32.5 -6c-20 66 -51 128 -148.1 128c-58.9 0 -109.5 -56 -109.5 -112c0 -84.1 99.9 -121.9 159.1 -144.1c82.4 -30.9 162.5 -77.5 162.5 -183.9c0 -63.6 -36.5 -125.2 -94 -161.2
-c-34.8 -21.7 -77.8 -32.8 -123.3 -32.8c-88.7 0 -116.7 23 -179.7 23c-12 49 -16 75 -20 152c9.6 5.10001 20.2 7 32.5 3c22 -99.5 82 -142 175.5 -142c79.8 0 125 42 125 123c0 97.8 -73.7 125.9 -134.5 149c-88 33.5 -174.5 81.6 -174.5 187c0 106 89 173 190.3 173
-c97.7 0 95.6 -19 153.4 -27zM233 -41c38 0 62 -34 62 -86c0 -60 -49 -90 -106 -99c-6 6 -8 15 -8 24c49 11 75 35 75 53c0 20 -13 24 -31 26c-17 3 -42 12 -42 39c0 24 21 43 50 43z" />
-    <glyph glyph-name="scommaaccent" unicode="&#x219;" horiz-adv-x="390" 
-d="M186 -41c38 0 62 -34 62 -86c0 -60 -49 -90 -106 -99c-6 6 -8 15 -8 24c49 11 75 35 75 53c0 20 -13 24 -31 26c-17 3 -42 12 -42 39c0 24 21 43 50 43zM48 138c6 6 25 7 31 1c6 -25 17 -69 39 -92c10.3 -10.7 32 -24 71 -24c37 0 85 21 85 70c0 43 -19 64 -102 98
-c-77 32 -110 63 -110 136c0 64 67 112 141 112c52 0 100 -14 131 -19c-1 -33 -3 -70 -6 -106c-6 -6 -26 -7 -32 -1c-13 85 -71 93 -93 93c-34 0 -70 -23 -70 -64c0 -55 39.8 -70.5 100 -92.8c68 -25.2 117 -64.9 117 -133.2c0 -99 -103 -126 -159 -126c-37 0 -64 4 -91 11
-c-7 2 -13 2 -20 2c-5 0 -15 -1 -25 -3c0 42 -3 89 -7 138z" />
-    <glyph glyph-name="Tcommaaccent" unicode="&#x21a;" horiz-adv-x="597" 
-d="M295 -41c38 0 62 -34 62 -86c0 -60 -49 -90 -106 -99c-6 6 -8 15 -8 24c49 11 75 35 75 53c0 20 -13 24 -31 26c-17 3 -42 12 -42 39c0 24 21 43 50 43zM350 122c0 -83 17 -88 97 -91c6 -6 6 -27 0 -33c-50 1 -100.6 2 -139 2c-40.1 0 -91 -1 -140 -2c-6 6 -6 27 0 33
-c80 3 97 8 97 91v385c0 61 -10 99 -47 99h-49c-66 0 -112 -26 -132 -106c-12 0 -24 1 -34 5c11 48 21 100 25 145c0 1 2 3 4 3c38 -3 156 -8 233 -8h86c79 0 190 5 224 8c1 0 3 -2 3 -3c1 -45 6 -96 13 -142c-9 -4 -23 -5 -34 -5c-17 77 -64 103 -139 103h-22
-c-36 0 -46 -38 -46 -102v-382z" />
-    <glyph glyph-name="tcommaaccent" unicode="&#x21b;" horiz-adv-x="316" 
-d="M171 -41c38 0 62 -34 62 -86c0 -60 -49 -90 -106 -99c-6 6 -8 15 -8 24c49 11 75 35 75 53c0 20 -13 24 -31 26c-17 3 -42 12 -42 39c0 24 21 43 50 43zM43 429l46 0.100006c0 110.9 -3 104.3 -3 115.9c0 6.90002 10 10.3 22 13.7c12.5 3.5 22.7 7.79999 34 14.1
-c9.3 5.10004 17.8 9 22.3 9c4.7 0 7.7 -2.39996 7.7 -8.79999c0 0 -4 -40 -4 -105v-39h120c5 0 8 -2 8 -6v-20c0 -9 -14 -13 -24 -13h-104v-253c0 -62 6 -92 33 -92c26 0 56 8 82 28c10 -1 16 -6.7 18 -17c-39 -44 -89 -66 -135 -66s-77 28 -77 99v301h-59c-4 0 -5 1 -5 6
-v13c0 8 4 20 18 20z" />
-    <glyph glyph-name="uni021E" unicode="&#x21e;" horiz-adv-x="730" 
-d="M618 122c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-44 1 -91.7 2 -129 2c-37.1 0 -85 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v199h-342v-199c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-44 1 -92.7 2 -129 2c-37.7 0 -86 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91
-v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c38 -1 79 -2 129 -2c51 0 92 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-160h342v160c0 83 -17 88 -87 91c-6 6 -6 27 0 33c44 -1 91.7 -2 129 -2c38 0 89 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-401zM322 697
-c-30 37 -65 67 -101 95l16 20c39 -17 73 -36 106 -61c37 26 69 45 107 61l15 -20c-38 -29 -70 -61 -100 -95h-43z" />
-    <glyph glyph-name="uni021F" unicode="&#x21f;" horiz-adv-x="538" 
-d="M273 644c-29 47 -66 92 -101 130l20 13c39 -29 72 -54 106 -90c37 38 71 63 108 90l19 -13c-35 -39 -73 -84 -102 -130h-50zM167 285.9v-163.9c0 -83 9 -87 59.8 -91c6 -6 6 -27 0 -33c-28 1 -60.8 2 -98.8 2c-40 0 -76.8 -1 -109.8 -2c-6 6 -6 27 0 33
-c58 4 69.8 8 69.8 91v437c0 84 -12 79 -64 82c-6 6 -8 22 -6 30c40 3 115 17 140 27c9 0 13 -3 13 -10c0 0 -4 -40 -4 -105l-0.800003 -225c0 -14 6.40001 -3.79999 9.8 0c61 68 120.9 81 170 81c35 0 66.2 -12 83 -34c23.3 -30.5 27 -79 27 -134v-149c0 -82 11 -86 67 -91
-c5 -6 5 -27 0 -33c-33 1 -66 2 -106 2s-74 -1 -102 -2c-5 6 -5 27 0 33c52 5 62 9 62 91v152c0 30 -2 57.2 -12 77c-11.6 22.9 -32.6 36 -53 36c-39.4 0 -90 -21.7 -128 -59c-8 -8.70001 -17 -21 -17 -42.1z" />
-    <glyph glyph-name="uni0222" unicode="&#x222;" horiz-adv-x="554" 
-d="M117 150c0 -104 110 -128 154 -128c133 0 153 72 153 121c0 89 -91 131 -176 169c-53 -35 -131 -90 -131 -162zM402 532c0 76 -61 134 -128 134v25c164 0 202 -102 202 -155c0 -116 -134 -172 -146 -176c68 -30 176 -81 176 -191c0 -84 -65 -181 -240 -181
-c-100 0 -219 37 -219 166c0 107 125 167 164 178c-75 39 -149 85 -149 167c0 92 83 159 186 159v-26c-60 0 -105 -60 -105 -113c0 -58 78 -103 153 -138c72 50 106 77 106 151z" />
-    <glyph glyph-name="uni0223" unicode="&#x223;" horiz-adv-x="468" 
-d="M233 14c101 0 127 63 127 127c0 67 -63 115 -147 178l-40 -38c-46 -45 -68 -88 -68 -127c0 -80 51 -140 128 -140zM336 530c0 12 -1 58 -39 95l16 27c35 -14 83 -48 83 -122c0 -99 -98 -156 -114 -162c63 -43 146 -101 146 -193c0 -117 -74 -187 -197 -187
-c-163 0 -190 109 -190 157c0 81 77 164 142 193c-52 43 -124 90 -124 179c0 79 55 117 89 132l21 -25c-41 -33 -43 -71 -43 -86c0 -67 127 -149 127 -149c7 4 83 62 83 141z" />
-    <glyph glyph-name="uni0226" unicode="&#x226;" horiz-adv-x="695" 
-d="M306 754c0 28 24 52 52 52s52 -24 52 -52s-24 -52 -52 -52s-52 24 -52 52zM263 283h177l-94 272h-6l-102.2 -258.7c-3.8 -10.3 3.2 -13.3 25.2 -13.3zM155 79c-15.6 -41.1 31.4 -45.4 69 -48c6 -6 6 -27 0 -33c-37 1 -87 2 -128 2c-30.3 0 -63 -1 -89 -2c-6 6 -6 27 0 33
-c43.5 3 74 9 100 71l227 536c13 0 40 11 55 20l206 -572c17.4 -48.2 51.2 -51.5 90 -55c6 -6 6 -27 0 -33c-35 1 -73 2 -114 2c-39 0 -94 -1 -131 -2c-6 6 -6 27 0 33c47.6 3.4 85.8 6.5 74 41l-58 169h-211c-24 0 -30 -4 -35 -17z" />
-    <glyph glyph-name="uni0227" unicode="&#x227;" horiz-adv-x="457" 
-d="M166 599c0 24 28 48 52 48c27 0 48 -28 48 -52c0 -21.1 -24 -48 -52 -48c-24 0 -48 26 -48 52zM293 233l-79 -21c-74 -19 -95 -65 -95 -110c0 -31 22 -71 72 -71c28 0 62 23 88 44c8 6 14 13 14 26v132zM293 48h-2l-20 -16c-44 -34 -74.2 -42 -109 -42
-c-70 0 -126 26 -126 108c0 68 69 121 165 145l86 21c3 1 6 5 6 12c0 113 -47 130 -81 130c-38 0 -80 -11 -80 -42c0 -11 1 -17 2 -20c2 -4 3 -11 3 -18c0 -13 -18 -34 -47 -34c-23 0 -35 12 -35 36c0 57 83 111 165 111c73 0 151 -27 151 -169v-147c0 -46 1 -85 30 -85
-c12.7 0 29.5 9.8 37 16c11.3 -6.3 15.3 -14.7 17 -27c-20.7 -20 -56.7 -37 -95 -37c-50.4 0 -61 27 -67 58z" />
-    <glyph glyph-name="uni0228" unicode="&#x228;" horiz-adv-x="557" 
-d="M256 -96c-19 0 -29 -1 -45 -6l-6 6l40 96h-97c-33 0 -93 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c40 -1 98.5 -2 129 -2h255c24 0 32 1 49 4c3 0 4 -1 4 -3c2 -8 17 -104 22 -145c-9.79999 -4.70001 -20.6 -6.79999 -33 -5
-c-22 69 -38 109 -113 109h-75c-54 0 -66 -20 -66 -64v-180h91c85 0 88 13 91 68c6 6 27 6 33 0c-1 -24 -2 -58 -2 -86c0 -34.3 1 -62 2 -88c-6 -6 -27 -6 -33 0c-3 45 -6 68 -91 68h-91v-221c0 -47 14 -63 56 -63h116c76 0 111 59 131 131c13.1 3.2 24.6 1 35 -5
-c-8 -51 -23 -117 -37 -167c0 0 -80 2 -128 2h-84l-25 -67c8 2 17 3 26 3c40 0 71 -24 71 -62c0 -43 -46 -74 -107 -74c-32 0 -49 6 -74 17c0 12 3 19 10 26c27 -10 38 -14 58 -14c30 0 51 14 51 40c0 21 -10 35 -33 35z" />
-    <glyph glyph-name="uni0229" unicode="&#x229;" horiz-adv-x="447" 
-d="M229 -96c-19 0 -29 -1 -45 -6l-6 6l36.2 86.9c-59.3 4.6 -99.9 27.5 -130.2 63.1c-33 38 -47 92 -47 148c0 152 113 235 200 235c139 0 169 -90 169 -174c0 -11 -7 -17 -19 -17l-266 2c0 -58 12 -104 32 -137c31 -51 73 -72 109 -72c58 0 87 16 124 54
-c12 -1 18 -6 21 -16c-38 -49.4 -88.5 -83.4 -158.6 -86.7l-21.4 -57.3c8 2 17 3 26 3c40 0 71 -24 71 -62c0 -43 -46 -74 -107 -74c-32 0 -49 6 -74 17c0 12 3 19 10 26c27 -10 38 -14 58 -14c30 0 51 14 51 40c0 21 -10 35 -33 35zM124 282l181 3c11 0.200012 15 5 15 14
-c0 84 -45 105 -83 105c-24 0 -94 -9 -113 -122z" />
-    <glyph glyph-name="uni022A" unicode="&#x22a;" horiz-adv-x="702" 
-d="M97 706c0 26 22 48 48 48s48 -22 48 -48s-22 -48 -48 -48s-48 22 -48 48zM506 706c0 26 22 48 48 48s48 -22 48 -48s-22 -48 -48 -48s-48 22 -48 48zM331 622c-99 0 -198 -85 -198 -295c0 -192 115 -301 237 -301c114 0 200 105 200 284c0 202 -107 312 -239 312z
-M666 329c0 -84 -22 -156.3 -61.8 -213c-54.9 -78.3 -143.4 -126 -254.2 -126c-170 0 -313 123 -313 320c0 193.9 113.3 348 307 348c179 0 322 -122 322 -329zM440.3 800h-190.3c-7.7 0 -11.1 11 -11.1 18c0 12 9.40001 32 18.7 32h191.2c8.5 0 11.9 -11 11.9 -17
-c0 -12 -9.30002 -33 -20.4 -33z" />
-    <glyph glyph-name="uni022B" unicode="&#x22b;" horiz-adv-x="504" 
-d="M351 665h-224c-9 0 -13 11 -13 18c0 12 11 32 22 32h225c10 0 14 -11 14 -17c0 -12 -11 -33 -24 -33zM121 575c0 26 21 48 47 48s47 -22 47 -48s-21 -47 -47 -47s-47 21 -47 47zM290 575c0 26 21 48 47 48s47 -22 47 -48s-21 -47 -47 -47s-47 21 -47 47zM41 205
-c0 63.2 19 121.4 55.3 164c36.6 43 90.9 70 156.7 70c153 0 210 -121 210 -225c0 -61.3 -20.3 -124.2 -65.1 -168c-34.1 -33.3 -82.5 -56 -146.9 -56c-142 0 -210 113 -210 215zM238 404c-90 0 -111 -89 -111 -176c0 -77 34 -203 138 -203c47 0 112 31 112 157
-c0 144 -53 222 -139 222z" />
-    <glyph glyph-name="uni022C" unicode="&#x22c;" horiz-adv-x="702" 
-d="M516 776h61c10 0 13 -8 13 -15c0 -11 -10 -29 -23 -29h-60zM186 732h-62c-9 0 -13 8 -13 15c0 11 10 29 22 29h61zM400.7 745.1c18.7 0 28 11 39.9 57.2c9.39999 1.10004 17.8 -2.20001 22.9 -6.59998c-10.2 -66 -34.8 -108.9 -73.9 -108.9
-c-18.7 0 -36.6 19.8 -54.4 35.2c-15.3 12.1 -31.4 20.9 -45.9 20.9c-22.1 0 -30.6 -16.5 -39.1 -52.8c-9.39999 -2.19995 -17.9 -1.09998 -23 5.5c11.9 64.9 31.5 107.8 68 107.8c25.5 0 44.3 -22 61.3 -37.4c13.6 -13.2 28 -20.9 44.2 -20.9zM331 622
-c-99 0 -198 -85 -198 -295c0 -192 115 -301 237 -301c114 0 200 105 200 284c0 202 -107 312 -239 312zM666 329c0 -84 -22 -156.3 -61.8 -213c-54.9 -78.3 -143.4 -126 -254.2 -126c-170 0 -313 123 -313 320c0 193.9 113.3 348 307 348c179 0 322 -122 322 -329z" />
-    <glyph glyph-name="uni022D" unicode="&#x22d;" horiz-adv-x="504" 
-d="M344 665h-224c-9 0 -13 11 -13 18c0 12 11 32 22 32h225c10 0 14 -11 14 -17c0 -12 -11 -33 -24 -33zM304 573c22 0 33 10 47 52c11 1 21 -2 27 -6c-12 -60 -41 -99 -87 -99c-22 0 -43 18 -64 32c-18 11 -37 19 -54 19c-26 0 -36 -15 -46 -48c-11 -2 -21 -1 -27 5
-c14 59 37 98 80 98c30 0 52 -20 72 -34c16 -12 33 -19 52 -19zM41 205c0 63.2 19 121.4 55.3 164c36.6 43 90.9 70 156.7 70c153 0 210 -121 210 -225c0 -61.3 -20.3 -124.2 -65.1 -168c-34.1 -33.3 -82.5 -56 -146.9 -56c-142 0 -210 113 -210 215zM238 404
-c-90 0 -111 -89 -111 -176c0 -77 34 -203 138 -203c47 0 112 31 112 157c0 144 -53 222 -139 222z" />
-    <glyph glyph-name="uni022E" unicode="&#x22e;" horiz-adv-x="702" 
-d="M291 751c0 28 24 52 52 52s52 -24 52 -52s-24 -52 -52 -52s-52 24 -52 52zM331 622c-99 0 -198 -85 -198 -295c0 -192 115 -301 237 -301c114 0 200 105 200 284c0 202 -107 312 -239 312zM666 329c0 -84 -22 -156.3 -61.8 -213c-54.9 -78.3 -143.4 -126 -254.2 -126
-c-170 0 -313 123 -313 320c0 193.9 113.3 348 307 348c179 0 322 -122 322 -329z" />
-    <glyph glyph-name="uni022F" unicode="&#x22f;" horiz-adv-x="504" 
-d="M188 598c0 24 28 48 52 48c27 0 48 -28 48 -52c0 -21.1 -24 -48 -52 -48c-24 0 -48 26 -48 52zM41 205c0 63.2 19 121.4 55.3 164c36.6 43 90.9 70 156.7 70c153 0 210 -121 210 -225c0 -61.3 -20.3 -124.2 -65.1 -168c-34.1 -33.3 -82.5 -56 -146.9 -56
-c-142 0 -210 113 -210 215zM238 404c-90 0 -111 -89 -111 -176c0 -77 34 -203 138 -203c47 0 112 31 112 157c0 144 -53 222 -139 222z" />
-    <glyph glyph-name="uni0230" unicode="&#x230;" horiz-adv-x="702" 
-d="M436 771h82c9 0 13 -8 13 -15c0 -11 -10 -28 -23 -28h-81zM240 728h-85c-9 0 -12 7 -12 14c0 11 10 29 22 29h84zM291 751c0 28 24 52 52 52s52 -24 52 -52s-24 -52 -52 -52s-52 24 -52 52zM331 622c-99 0 -198 -85 -198 -295c0 -192 115 -301 237 -301
-c114 0 200 105 200 284c0 202 -107 312 -239 312zM666 329c0 -84 -22 -156.3 -61.8 -213c-54.9 -78.3 -143.4 -126 -254.2 -126c-170 0 -313 123 -313 320c0 193.9 113.3 348 307 348c179 0 322 -122 322 -329z" />
-    <glyph glyph-name="uni0231" unicode="&#x231;" horiz-adv-x="504" 
-d="M197 558c0 24 28 48 52 48c27 0 48 -28 48 -52c0 -21.1 -24 -48 -52 -48c-24 0 -48 26 -48 52zM41 205c0 63.2 19 121.4 55.3 164c36.6 43 90.9 70 156.7 70c153 0 210 -121 210 -225c0 -61.3 -20.3 -124.2 -65.1 -168c-34.1 -33.3 -82.5 -56 -146.9 -56
-c-142 0 -210 113 -210 215zM238 404c-90 0 -111 -89 -111 -176c0 -77 34 -203 138 -203c47 0 112 31 112 157c0 144 -53 222 -139 222zM357 648h-224c-9 0 -13 11 -13 18c0 12 11 32 22 32h225c10 0 14 -11 14 -17c0 -12 -11 -33 -24 -33z" />
-    <glyph glyph-name="uni0232" unicode="&#x232;" horiz-adv-x="575" 
-d="M413 704h-224c-9 0 -13 11 -13 18c0 12 11 32 22 32h225c10 0 14 -11 14 -17c0 -12 -11 -33 -24 -33zM337 122c0 -83 17 -88 97 -91c6 -6 6 -27 0 -33c-50 1 -100.3 2 -139 2c-38.6 0 -91 -1 -140 -2c-6 6 -6 27 0 33c80 3 97 8 97 91v127c0 37 -3.5 47.5 -21 77
-l-131.3 221c-34.5 58.1 -51.7 64 -93.7 67c-6 6 -7 27 -1 33c30 -1 63 -2 102 -2c40 0 78 1 114 2c6 -6 6 -27 0 -33c-56 -3 -60 -12.6 -35.8 -55.2l116 -204.8c9 -15.9 13.8 -17.2 21.8 -2l110.8 209c21.4 40.4 5.5 50 -38.8 53c-6 6 -6 27 0 33c32 -1 68 -2 91 -2
-s55 1 83 2c6 -6 6 -27 0 -33c-44.7 -4.29999 -67 -13.3 -95 -64l-119.5 -216c-16.4 -29.6 -17.5 -46.5 -17.5 -76.3v-135.7z" />
-    <glyph glyph-name="uni0233" unicode="&#x233;" horiz-adv-x="515" 
-d="M383 518h-224c-9 0 -13 11 -13 18c0 12 11 32 22 32h225c10 0 14 -11 14 -17c0 -12 -11 -33 -24 -33zM204 -160c-36 -64 -76 -72 -97 -72c-27 0 -47 16 -47 37c0 13 15 43 44 43c11 0 15 -3 29 -3c25 0 39 9 50 29c15 31 27.1 58.6 39 92c10 28 -5.3 73.9 -14 94
-l-113.1 263c-26.2 61 -39.2 70 -78.9 75c-6 6 -6 27 0 33c20 -1 47 -2 81 -2c36 0 76 1 113 2c6 -6 6 -27 0 -33c-56 -4.29999 -50.8 -22.8 -32.8 -65l88.7 -208c8.5 -19.8 16.9 -17.1 23.9 -1l99.2 229c16 36 -16.4 42 -48 45c-6 6 -6 27 0 33c30 -1 61 -2 91 -2
-c28 0 51 1 71 2c6 -6 6 -27 0 -33c-47 -5.70001 -61.3 -21.7 -81 -64c-52.2 -112.4 -97 -215 -177 -408c-12.3 -29.6 -25.4 -58.2 -41 -86z" />
-
-<!--
-Anfang{IPA Extensions}
--->
-    <glyph glyph-name="aturned" unicode="&#x250;" horiz-adv-x="457" 
-d="M169 196l79 21c74 19 95 65 95 110c0 31 -22 71 -72 71c-28 0 -62 -23 -88 -44c-8 -6 -14 -13 -14 -26v-132zM169 381h2l20 16c44 34 74.2 42 109 42c70 0 126 -26 126 -108c0 -68 -69 -121 -165 -145l-86 -21c-3 -1 -6 -5 -6 -12c0 -113 47 -130 81 -130
-c38 0 80 11 80 42c0 11 -1 17 -2 20c-2 4 -3 11 -3 18c0 13 18 34 47 34c23 0 35 -12 35 -36c0 -57 -83 -111 -165 -111c-73 0 -151 27 -151 169v147c0 46 -1 85 -30 85c-12.7 0 -29.5 -9.79999 -37 -16c-11.3 6.29999 -15.3 14.7 -17 27c20.7 20 56.7 37 95 37
-c50.4 0 61 -27 67 -58z" />
-    <glyph glyph-name="uni0251" unicode="&#x251;" horiz-adv-x="511" 
-d="M322 368.4c-21.9 24.5 -48.6 36.6 -79 36.6c-80 0 -122 -74 -122 -178c0 -151 87 -193 145 -193c15.8 0 42.6 1.1 66 13.2c13 6.8 14 11.8 14 29.8v230c0 24.1 -4 39 -24 61.4zM356 26.5c-29.8 -20.4 -63.7 -36.5 -114 -36.5c-144 0 -207 124 -207 217
-c0 132 90 232 212 232c42.4 0 81.4 -8.70001 113 -29.2c12 -7.79999 16 -4.79999 29 13.2c8.10001 11.3 14 19 21 19c11 0 15 -11 15 -25v-296c0 -45 1 -85 40 -85c15.3 0 25.2 16 31 16c4 0 13 -10 13 -17c0 -5 -36 -45 -85 -45c-37.6 0 -57.4 18.3 -68 36.5z" />
-    <glyph glyph-name="uni0252" unicode="&#x252;" horiz-adv-x="527" 
-d="M197 61.6c21.9 -24.5 48.6 -36.6 79 -36.6c80 0 122 84 122 188c0 133 -77 183 -135 183c-15.8 0 -52.6 -1.10001 -76 -13.2c-13 -6.79999 -14 -11.8 -14 -29.8v-230c0 -24.1 4 -39 24 -61.4zM163 403.5c29.8 20.4 63.7 36.5 114 36.5c144 0 207 -80 207 -207
-c0 -119.1 -80 -242 -202 -242c-42.4 0 -91.4 8.7 -123 29.2c-12 7.8 -16 4.8 -29 -13.2c-8.1 -11.3 -14 -19 -21 -19c-11 0 -15 11 -15 25v296c0 45 -1 85 -40 85c-21 0 -25.2 -16 -31 -16c-4 0 -13 10 -13 17c0 5 36 45 85 45c37.6 0 57.4 -18.3 68 -36.5z" />
-    <glyph glyph-name="cturned" unicode="&#x254;" horiz-adv-x="433" 
-d="M35 338c50 82 103 101 163 101c126 0 198 -89 198 -218c0 -142 -106 -231 -205 -231c-96 0 -153 40 -153 95c0 31 28 44 49 44s35 -9 38 -36c4 -35 12 -70 71 -70c66 0 114 66 114 176c0 117 -61 191 -134 191c-43 0 -86 -22 -120 -66c-9 1 -17 5 -21 14z" />
-    <glyph glyph-name="uni0258" unicode="&#x258;" horiz-adv-x="427" 
-d="M317 287c-19 113 -76 117 -100 117c-38 0 -94 -21 -94 -105c0 -9 5 -14 15 -14zM57 96c37 -38 77 -59 135 -59c54.7 0 128 57.8 128 211l-264 -2c-12 0 -19 6 -19 17c0 84 51 174 190 174c100 0 180 -67 180 -225c0 -123.7 -110.8 -224 -220 -224c-76 0 -113 37 -153 89
-c3 10 11 18 23 19z" />
-    <glyph glyph-name="uni0259" unicode="&#x259;" horiz-adv-x="447" 
-d="M330 147l-181 -3c-11 -0.199997 -15 -5 -15 -14c0 -84 45 -105 83 -105c24 0 94 9 113 122zM68 336c-12 1 -18 6 -21 16c40 52 94 87 170 87c72 0 119 -24 153 -64c33 -38 47 -92 47 -148c0 -152 -113 -235 -200 -235c-139 0 -169 90 -169 174c0 11 7 17 19 17l266 -2
-c0 58 -12 104 -32 137c-31 51 -73 72 -109 72c-58 0 -87 -16 -124 -54z" />
-    <glyph glyph-name="uni025B" unicode="&#x25b;" horiz-adv-x="397" 
-d="M123 121c0 -53 42 -93 97 -93c47 0 85 16 124 43c8.70001 -2.8 14.6 -10.2 15 -21c-33 -31 -87 -60 -150 -60c-132 0 -165 65 -165 123c0 38 19 91 91 116v2c-45.8 19.3 -72 47.7 -72 96c0 40 35 112 153 112c77 0 135 -36 135 -72c0 -29 -19 -37 -32 -37
-c-22 0 -32 16 -42 33c-11 22 -28 43 -67 43c-31 0 -76 -6 -76 -72c0 -69 36 -91 79 -91c1 0 46 5 51 5c19 0 29 -9 29 -21s-7 -23 -30 -23c-8 0 -42 6 -51 6c-56 0 -89 -33 -89 -89z" />
-    <glyph glyph-name="uni025C" unicode="&#x25c;" horiz-adv-x="396" 
-d="M275 112c0 56 -34 97 -90 97c-8 0 -43 -5 -51 -5c-22 0 -30 9 -30 21s11 18 29 18c6 0 50 -5 51 -5c43 0 79 18 79 79c0 64 -43 93 -75 93c-39 0 -64 -25 -76 -47c-9 -17 -20 -33 -42 -33c-12 0 -31 8 -31 37c0 36 66 72 143 72c119 0 152 -72 152 -112
-c0 -43.2 -24.7 -78.7 -71 -98v-2c90 -30 90 -83 90 -106c0 -57 -27 -131 -165 -131c-63 0 -117 29 -150 60c1.9 9.3 8.5 16 16 20c39 -27 77 -43 124 -43c59 0 97 32 97 85z" />
-    <glyph glyph-name="uni0265" unicode="&#x265;" horiz-adv-x="540" 
-d="M375 143.1v163.9c0 83 -9 87 -59.8 91c-6 6 -6 27 0 33c28 -1 60.8 -2 98.8 -2c40 0 76.8 1 109.8 2c6 -6 6 -27 0 -33c-58 -4 -69.8 -8 -69.8 -91v-404c0 -84 12 -79 64 -82c6 -6 8 -22 6 -30c-40 -3 -115 -17 -140 -27c-9 0 -13 3 -13 10c0 0 4 40 4 105l0.799988 192
-c0 14 -6.39999 3.8 -9.79999 0c-61 -68 -120.9 -81 -170 -81c-35 0 -66.2 12 -83 34c-23.3 30.5 -27 79 -27 134v149c0 82 -11 86 -67 91c-5 6 -5 27 0 33c33 -1 66 -2 106 -2s74 1 102 2c5 -6 5 -27 0 -33c-52 -5 -62 -9 -62 -91v-152c0 -30 2 -57.2 12 -77
-c11.6 -22.9 32.6 -36 53 -36c39.4 0 90 21.7 128 59c8 8.7 17 21 17 42.1z" />
-    <glyph glyph-name="uni026A" unicode="&#x26a;" horiz-adv-x="273" 
-d="M176 307v-185c0 -83 11 -87 72 -91c6 -6 6 -27 0 -33c-32 1 -68 2 -111 2c-44 0 -79 -1 -112 -2c-6 6 -6 27 0 33c61 5 72 8 72 91v185c0 83 -11 87 -72 91c-6 6 -6 27 0 33c33 -1 68 -2 111 -2c44 0 78 1 112 2c6 -6 6 -27 0 -33c-61 -5 -72 -8 -72 -91z" />
-    <glyph glyph-name="mturned" unicode="&#x26f;" horiz-adv-x="790" 
-d="M622 71c-0.5 12 -7.40002 5.1 -12 0c-41.7 -46.6 -94 -81 -152 -81c-52 0 -90.5 32.4 -100 73.4c-2 8.6 -8 3.6 -11 0.399998c-52.1 -55 -113.8 -73.8 -165 -73.8c-88 0 -103 70 -103 159v158c0 82 -9 87 -64 91c-5 6 -5 27 0 33c28 -1 63 -2 103 -2s77 1 102 2
-c5 -6 5 -27 0 -33c-52 -4 -62 -9 -62 -91v-176c0 -67 22 -89 60 -89c39 0 84 13 132 66c-1 12 -1 26 -1 40v159c0 82 -9 87 -59 91c-5 6 -5 27 0 33c25 -1 58 -2 98 -2s77 1 102 2c5 -6 5 -27 0 -33c-54 -4 -62 -9 -62 -91v-174c0 -67 28 -91 66 -91
-c30.9 0 68.4 20.3 108 59c8 8.7 17 21 17 42v164c0 82 -11 86 -61.8 91c-6 6 -6 27 0 33c30 -1 60.8 -2 100.8 -2s78 1 108 2c6 -6 6 -27 0 -33c-55 -4 -68 -9 -68 -91v-195c0 -58 11 -63 65 -68c2 -6 4 -22 2 -28c-69 -9 -95 -18 -123 -29c-8 0 -9.90002 3.4 -12 8
-c-4.70001 10.3 -6.70001 46.3 -8 76z" />
-    <glyph glyph-name="uni0270" unicode="&#x270;" horiz-adv-x="760" 
-d="M594 -159v120l3 113h-3c-48 -49 -90 -84 -152 -84c-55 0 -88 40 -95 86c-57 -60 -106 -86 -160 -86c-88 0 -103 71 -103 160v205c0 28 -11.3 39.4 -42 44l-20 3c-4 0.600006 -8 3 -8 8v19l2 2s68 -2 108 -2c35 0 103 2 103 2l2 -2v-19c0 -5 -3.10001 -7.20001 -8 -8
-l-19 -3c-32.7 -5.20001 -43 -16 -43 -44v-228c0 -66 26 -89 64 -89c39 0 71 18 119 70c-2 13 -2 26 -2 41v206c0 28 -10.2 38.8 -43 44l-19 3c-4 0.600006 -8 3 -8 8v19l2 2s68 -2 107 -2c36 0 104 2 104 2l2 -2v-19c0 -5 -3.10001 -7.20001 -8 -8l-19 -3
-c-32.4 -5.10001 -43 -16 -43 -44v-226c0 -66 26 -91 64 -91c35 0 67 23 115 72v245c0 28 -11.4 39 -43 44l-19 3c-4.90002 0.799988 -9 3 -9 8v19l2 2s69 -2 108 -2c35 0 103 2 103 2l2 -2v-19c0 -5 -3.09998 -7.20001 -8 -8l-19 -3c-32.4 -5.10001 -42 -16 -42 -44v-465
-c0 -50 2.59998 -55.8 24 -58l48 -5l3 -23c-62 -11 -106 -24 -128 -42h-23z" />
-    <glyph glyph-name="uni0271" unicode="&#x271;" horiz-adv-x="782" 
-d="M699 109c0 -162 -16 -261 -63 -299c-37 -31 -71 -31 -91 -31c-18 0 -52 14 -52 44c0 18 19 30 30 30c26 0 36 -12 44 -22c6 -9 12 -16 23 -16c44 0 35 152 34 260v227c0 67 -28 89 -66 89c-39 0 -74 -17 -122 -70c1 -12 1 -26 1 -40v-209c0 -29 15.1 -38.2 44 -43l12 -2
-c4.89999 -0.799999 9 -3 9 -8v-19l-2 -2c-40 1 -61 2 -102 2c-39 0 -59 -1 -99 -2l-2 2v19c0 5 3 7.3 8 8l15 2c29 3.9 42 14 42 43v228c0 67 -28 91 -66 91c-35 0 -72 -22 -119 -71v-248c0 -29 14.6 -38.9 43 -43l14 -2c4 -0.6 8 -3 8 -8v-19l-2 -2c-40 1 -61 2 -102 2
-c-39 0 -64 -1 -104 -2l-2 2v19c0 5 3 7.5 8 8l19 2c34.1 3.6 43 14 43 43v249c0 50 -7.6 60.3 -22 62l-43 4l-2 24c70.5 11 109.5 20 138 31c2.39999 0 4 -0.600006 4 -3l-3 -84h3c47 50 93 84 155 84c56 0 91 -38 98 -83c57 60 110 83 164 83c88 0 105 -70 105 -159v-171z
-" />
-    <glyph glyph-name="uni0272" unicode="&#x272;" horiz-adv-x="523" 
-d="M166 109c0 -161 -16 -261 -63 -299c-37 -31 -71 -31 -91 -31c-18 0 -52 14 -52 44c0 18 19 30 30 30c26 0 36 -12 44 -22c6 -9 12 -16 23 -16c44 0 34 152 34 260v246c0 50 -7.6 60.3 -22 62l-43 4l-2 24c70.5 11 109.5 20 138 31c2.39999 0 4 -0.600006 4 -3l-3 -89h3
-c64 75 112 89 163 89c90 0 110 -69 110 -158v-209c0 -29 10.7 -39.7 42 -43l19 -2c5 -0.5 9 -3 9 -8v-19l-2 -2c-40 1 -66 2 -107 2c-39 0 -59 -1 -99 -2l-2 2v19c0 5 3 7.3 8 8l14 2c32 4.6 43 14 43 43v216c0 70 -12 103 -65 103c-44 0 -82 -17 -133 -77v-205z" />
-    <glyph glyph-name="uni0273" unicode="&#x273;" horiz-adv-x="523" 
-d="M364 109v179c0 70 -12 103 -65 103c-44 0 -82 -17 -133 -77v-242c0 -29 10.2 -38.3 43 -43l14 -2c4.89999 -0.700001 8 -3 8 -8v-19l-2 -2c-40 1 -61 2 -102 2c-39 0 -64 -1 -104 -2l-2 2v19c0 5 3 7.5 8 8l19 2c33.1 3.5 43 14 43 43v249c0 50 -7.6 60.3 -22 62l-43 4
-l-2 24c70.5 11 109.5 20 138 31c2.39999 0 4 -0.600006 4 -3l-3 -89h3c64 75 112 89 163 89c90 0 110 -69 110 -158v-206c0 -110 -10 -260 34 -260c11 0 17 7 23 16c8 10 18 22 44 22c11 0 30 -12 30 -30c0 -30 -34 -44 -52 -44c-23 0 -62 0 -99 31c-47 38 -55 138 -55 299z
-" />
-    <glyph glyph-name="rturned" unicode="&#x279;" horiz-adv-x="372" 
-d="M191 71c-0.199997 5 -5 13 -11 2c-23 -39 -64 -83 -111 -83c-42 0 -60 28.9 -60 48c0 25 23 50 47 50c17.4 0 28.6 -13.3 36.2 -23.3c7.8 -10.3 16.8 -12.7 25.8 -12.7c12 0 35 33 46 49c12 18 24 41 24 67v139c0 83 -12 86 -82 91c-6 6 -6 27 0 33c35 -1 81 -2 121 -2
-s79 1 114 2c6 -6 6 -27 0 -33c-62 -4 -74 -8 -74 -91v-195c0 -58 11 -63 65 -68c2 -6 4 -22 2 -28c-69 -9 -95 -18 -123 -29c-8 0 -9.89999 3.4 -12 8c-4.7 10.3 -6.3 36 -8 76z" />
-    <glyph glyph-name="uni027A" unicode="&#x27a;" horiz-adv-x="355" 
-d="M269 573v-465c0 -50 7.60001 -60.3 22 -62l43 -4l2 -24c-70.5 -11 -109.5 -20 -138 -31c-2.39999 0 -4 0.6 -4 3l3 90h-3c-26 -39 -70 -90 -117 -90c-41 0 -56 20 -56 46s17 42 43 42c20 0 31 -8 41 -18c6 -6 13 -9 20 -9c11 0 33 18 57 52c7 9 12 22 12 35v435
-c0 29 -11.2 40.8 -43 43l-29 2c-5 0.299988 -9 3 -9 8v19l2 2c37 -1 80 -2 118 -2c36 0 67 1 104 2l1 -2v-19c0 -5 -2 -7.5 -7 -8l-19 -2c-32.6 -3.40002 -43 -14 -43 -43z" />
-    <glyph glyph-name="uni027C" unicode="&#x27c;" horiz-adv-x="355" 
-d="M97 -160v481c0 50 -7.6 60.3 -22 62l-43 4l-2 24c70.5 11 109.5 20 138 31c2.39999 0 4 -0.600006 4 -3l-3 -90h3c26 39 70 90 117 90c41 0 56 -20 56 -46s-17 -42 -43 -42c-20 0 -31 8 -41 18c-6 6 -13 9 -20 9c-11 0 -33 -18 -57 -52c-7 -9 -12 -22 -12 -35v-451
-c0 -29 11.2 -40.8 43 -43l29 -2c5 -0.300003 9 -3 9 -8v-19l-2 -2c-37 1 -80 2 -118 2c-36 0 -67 -1 -104 -2l-1 2v19c0 5 2 7.5 7 8l19 2c32.6 3.39999 43 14 43 43z" />
-    <glyph glyph-name="uni0283" unicode="&#x283;" horiz-adv-x="304" 
-d="M-32 -114c24 0 30 -15 35 -32c6 -15 11 -30 34 -30c22 0 55 27 55 177v436c0 103 3 182 63 230c27 21 53 31 81 31c75 0 108 -40 108 -67c0 -20 -14 -34 -32 -34c-22 0 -29 13 -34 29c-10 25 -26 38 -43 38c-58 0 -68 -95 -68 -190v-421c0 -107 -1 -188 -61 -237
-c-35 -29 -58 -30 -73 -30c-42 0 -96 26 -96 67c0 16 12 33 31 33z" />
-    <glyph glyph-name="uni0285" unicode="&#x285;" horiz-adv-x="344" 
-d="M343 -114c19 0 31 -17 31 -33c0 -41 -54 -67 -96 -67c-15 0 -39 1 -73 30c-60 49 -61 130 -61 237v273c0 95 -10 190 -68 190c-17 0 -33 -13 -43 -38c-6 -16 -12 -29 -35 -29c-17 0 -31 14 -31 34c0 27 33 67 107 67c28 0 55 -10 81 -31c61 -48 63 -127 63 -230v-288
-c0 -150 34 -177 56 -177c23 0 28 15 33 30c6 17 12 32 36 32z" />
-    <glyph glyph-name="uni0287" unicode="&#x287;" horiz-adv-x="316" 
-d="M270 0l-46 -0.1c0 -110.9 3 -104.3 3 -115.9c0 -6.9 -10 -10.3 -22 -13.7c-12.5 -3.5 -22.7 -7.8 -34 -14.1c-9.3 -5.09999 -17.8 -9 -22.3 -9c-4.7 0 -7.7 2.40001 -7.7 8.8c0 0 4 40 4 105v39h-120c-5 0 -8 2 -8 6v20c0 9 14 13 24 13h104v253c0 62 -6 92 -33 92
-c-26 0 -56 -8 -82 -28c-10 1 -16 6.70001 -18 17c39 44 89 66 135 66s77 -28 77 -99v-301h59c4 0 5 -1 5 -6v-13c0 -8 -4 -20 -18 -20z" />
-    <glyph glyph-name="uni028C" unicode="&#x28c;" horiz-adv-x="497" 
-d="M168 32c6 -6 6 -27 0 -33c-25 1 -59 2 -92 2c-26 0 -50 -1 -70 -2c-6 6 -6 27 0 33c56 5 66.9 30.1 85.6 74l133.4 313c7.10001 16.6 14 23 24 23c13 0 19 -6 25 -21l127.6 -316c20.4 -50.6 27.4 -66.7 80.4 -73c6 -6 6 -27 0 -33c-30 1 -60 2 -93 2s-68 -1 -101 -2
-c-6 6 -6 27 0 33c53.3 7 49 19 31.1 67l-72.1 193c-15.6 41.8 -20.8 42.5 -37 3l-80.7 -196c-20.9 -50.8 -15.3 -63 38.7 -67z" />
-    <glyph glyph-name="uni028D" unicode="&#x28d;" horiz-adv-x="747" 
-d="M537 32c48 3 49 19 30.1 67l-80 206c-12.9 32.5 -15.1 31 -28.1 -2l-70 -177l6.39999 -16c17.9 -44.8 29.6 -73.5 76.6 -78c6 -6 6 -27 0 -33c-30 1 -63 2 -88 2c-30 0 -70 -1 -100 -2c-6 6 -6 27 0 33c53 4 55 14 36.5 61l-86.3 219c-8.2 20.8 -12.2 21 -22.2 -4
-l-83.6 -208c-14.1 -35.1 -24.4 -64 50.6 -68c6 -6 6 -27 0 -33c-30 1 -72 2 -102 2s-52 -1 -72 -2c-6 6 -6 27 0 33c51 3 68.1 31.1 84.5 72l130.5 317c6 15 14 21 23 21c10 0 18 -6 24 -20l103 -248l101 246c7 16 15 22 24 22c10 0 18 -6 24 -20l130.9 -323
-c21.1 -52 32 -62.2 79.1 -67c6 -6 6 -27 0 -33c-26.2 1 -53 2 -91 2c-36 0 -71 -1 -101 -2c-6 6 -6 27 0 33z" />
-    <glyph glyph-name="uni028E" unicode="&#x28e;" horiz-adv-x="515" 
-d="M303 589c36 64 76 72 97 72c27 0 47 -16 47 -37c0 -13 -15 -43 -44 -43c-11 0 -15 3 -29 3c-25 0 -39 -9 -50 -29c-15 -31 -27.1 -58.6 -39 -92c-10 -28 5.29999 -73.9 14 -94l113.1 -263c26.2 -61 39.2 -70 78.9 -75c6 -6 6 -27 0 -33c-20 1 -47 2 -81 2
-c-36 0 -76 -1 -113 -2c-6 6 -6 27 0 33c56 4.3 50.8 22.8 32.8 65l-88.7 208c-8.5 19.8 -16.9 17.1 -23.9 1l-99.2 -229c-16 -36 16.4 -42 48 -45c6 -6 6 -27 0 -33c-30 1 -61 2 -91 2c-28 0 -51 -1 -71 -2c-6 6 -6 27 0 33c47 5.7 61.3 21.7 81 64
-c52.2 112.4 97 215 177 408c12.3 29.6 25.4 58.2 41 86z" />
-    <glyph glyph-name="uni028F" unicode="&#x28f;" horiz-adv-x="472" 
-d="M112.4 325c-26.4 48 -30.9 66.2 -88.4 73c-6 6 -6 27 0 33c37 -1 53 -2 88 -2c41 0 69 1 106 2c6 -6 6 -27 0 -33c-62.2 -5.39999 -46 -21 -23.1 -67l63.1 -126l61.7 126c23.3 50 19.3 63 -34.7 67c-6 6 -6 27 0 33c37 -1 59 -2 96 -2c26 0 44 1 66 2c6 -6 6 -27 0 -33
-c-56 -5 -69 -31 -89.6 -74l-75.4 -153v-49c0 -83 11 -87 72 -91c6 -6 6 -27 0 -33c-43 1 -68 2 -111 2c-44 0 -70 -1 -112 -2c-6 6 -6 27 0 33c61 5 72 8 72 91v37z" />
-    <glyph glyph-name="uni0292" unicode="&#x292;" horiz-adv-x="416" 
-d="M127 107l168 288h-145c-30 0 -64 -21 -84 -94l-26 3c8 49 14 93 15 138h25c2 -6 11 -13 26 -13h203c29 0 65 6 67 6c7 0 13 -2 13 -6s-6 -15 -22 -42l-151 -250c96 0 177 -53 177 -159c0 -119 -85 -213 -208 -213c-85 0 -143 61 -143 93c0 18 10 36 32 36
-c23 0 36 -10 44 -34c8 -22 35 -60 75 -60c50 0 119 54 119 162c0 101 -31 141 -109 141c-11 0 -41 -7 -59 -11z" />
-    <glyph glyph-name="uni029E" unicode="&#x29e;" horiz-adv-x="538" 
-d="M443 307v-406c0 -84 12 -79 64 -82c6 -6 8 -22 6 -30c-40 -3 -115 -17 -140 -27c-9 0 -13 3 -13 10c0 0 4 40 4 105v317.8c-18.9 -2.60001 -45.8 -14.4 -68 -30.8c-25.7 -19 -57 -53 -80 -82c-9.3 -11.7 -33 -47 23 -51c6 -6 6 -27 0 -33c-37 1 -60 2 -98 2
-c-36 0 -50 -1 -87 -2c-6 6 -6 27 0 33c40 4 75 12 105 44l88 91c4 4 4 6 4 10c0 5 -3.39999 9.5 -7 14l-132 166c-26.7 33.6 -52 38 -86 42c-6 6 -6 27 0 33c30 -1 51 -2 82 -2c30 0 42 1 62 2c3 0 3.2 -2.10001 4 -5c4 -15 12.6 -30.5 42 -70l73 -98
-c11.9 -16 21 -25 32 -32.5c9.70001 -3.39999 23.8 -5 43 -5.5v87c0 83 -11 87 -52 91c-6 6 -6 27 0 33c43 -1 55.5 -2 91 -2c41.7 0 65 1 107 2c6 -6 6 -27 0 -33c-56 -4 -67 -8 -67 -91z" />
-    <glyph glyph-name="uni02BB" unicode="&#x2bb;" horiz-adv-x="168" 
-d="M89 471c-38 0 -60 37 -60 73s32 98 102 106l5 -17c-42 -9 -63 -46 -63 -69c0 -13 6 -21 14 -21c41 0 46 -22 46 -38s-14 -34 -44 -34z" />
-    <glyph glyph-name="afii57929" unicode="&#x2bc;" horiz-adv-x="175" 
-d="M79 652c38 0 60 -37 60 -73s-32 -98 -102 -106l-5 17c42 9 63 46 63 69c0 13 -6 21 -14 21c-41 0 -46 22 -46 38s14 34 44 34z" />
-    <glyph glyph-name="circumflex" unicode="&#x2c6;" horiz-adv-x="349" 
-d="M194 682c29 -47 73 -100 109 -140c-5 -7 -13.6 -15.1 -23 -17c-38 24 -73 52 -103 83c-32 -32 -65 -61 -104 -83c-9 2 -16 8 -22 17c36 40 82 94 111 140c10.7 2.29999 21.3 3 32 0z" />
-    <glyph glyph-name="caron" unicode="&#x2c7;" horiz-adv-x="349" 
-d="M149 518c-29 47 -66 92 -101 130l20 13c39 -29 72 -54 106 -90c37 38 71 63 108 90l19 -13c-35 -39 -73 -84 -102 -130h-50z" />
-    <glyph glyph-name="uni02C8" unicode="&#x2c8;" horiz-adv-x="130" 
-d="M90 715c-1 -17 -1 -52 -1 -75s0 -63 1 -92c-9 -7 -23 -10 -29 -10c-7 0 -14 2 -21 6c1 20 1 55 1 76c0 24 0 65 -1 91c10 6 23 11 29 11c7 0 13 -2 21 -7z" />
-    <glyph glyph-name="uni02C9" unicode="&#x2c9;" horiz-adv-x="425" 
-d="M311 518h-224c-9 0 -13 11 -13 18c0 12 11 32 22 32h225c10 0 14 -11 14 -17c0 -12 -11 -33 -24 -33z" />
-    <glyph glyph-name="uni02CC" unicode="&#x2cc;" horiz-adv-x="205" 
-d="M123 -228c-11 -6 -19 -8 -26 -8c-8 0 -16 2 -28 6v165c10 4 17 6 24 6c9 0 18 -2 30 -6v-163z" />
-    <glyph glyph-name="uni02D0" unicode="&#x2d0;" horiz-adv-x="209" 
-d="M36 405h139l-70 -121zM36 37l69 121l70 -121h-139z" />
-    <glyph glyph-name="uni02D1" unicode="&#x2d1;" horiz-adv-x="204" 
-d="M36 404h139l-70 -121z" />
-    <glyph glyph-name="breve" unicode="&#x2d8;" horiz-adv-x="317" 
-d="M48 676c11 -53 54 -90 108 -90c52 0 98 32 108 90l27 -12c-12 -86 -76 -135 -135 -135c-70 0 -121 50 -135 135z" />
-    <glyph glyph-name="dotaccent" unicode="&#x2d9;" horiz-adv-x="291" 
-d="M96 599c0 24 28 48 52 48c27 0 48 -28 48 -52c0 -21.1 -24 -48 -52 -48c-24 0 -48 26 -48 52z" />
-    <glyph glyph-name="ring" unicode="&#x2da;" horiz-adv-x="361" 
-d="M181 724c-31 0 -48 -23 -48 -53c0 -28 17 -53 48 -53s48 25 48 53c0 31 -18 53 -48 53zM93 671c0 46 42 85 88 85s88 -38 88 -85c0 -45 -40 -85 -88 -85c-46 0 -88 39 -88 85z" />
-    <glyph glyph-name="ogonek" unicode="&#x2db;" horiz-adv-x="334" 
-d="M262 -135c-29 -45 -69 -65 -110 -65c-50 0 -88 20 -88 74c0 56 64 108 144 157l14 -17c-62 -51 -96 -83 -96 -129c0 -26 13 -47 50 -47c29 0 45 16 67 38c9 0 15 -4 19 -11z" />
-    <glyph glyph-name="tilde" unicode="&#x2dc;" horiz-adv-x="292" 
-d="M209 621c22 0 33 10 47 52c11 1 21 -2 27 -6c-12 -60 -41 -99 -87 -99c-22 0 -43 18 -64 32c-18 11 -37 19 -54 19c-26 0 -36 -15 -46 -48c-11 -2 -21 -1 -27 5c14 59 37 98 80 98c30 0 52 -20 72 -34c16 -12 33 -19 52 -19z" />
-
-<!--
-Ende{Spacing modifying letters}
--->
-    <glyph glyph-name="hungarumlaut" unicode="&#x2dd;" horiz-adv-x="350" 
-d="M315 691c0 -6 -1 -13 -7 -19l-114 -110c-2 -2 -4 -2 -6 -2c-5 0 -14 5 -14 13c0 1 0 3 1 4l78 139c5 9 12 12 24 12c21 0 38 -18.4 38 -37zM183 697c0 -5 -1 -11 -5 -16l-102 -121c-2 -2 -5 -3 -8 -3c-6 0 -14 5 -14 13c0 1 0 2 1 3l64 146c6 13 22 14 26 14
-c20.9 0 38 -15.5 38 -36z" />
-    <glyph glyph-name="gravecomb" unicode="&#x300;" 
-d="M-156 708l70 -126c5 -10 6 -17 6 -24c0 -5 -7 -11 -15 -11c-6 0 -13 5 -29 20l-114 109l2 11c8 6 31 23 65 23c5 0 11 -1 15 -2z" />
-    <glyph glyph-name="acutecomb" unicode="&#x301;" 
-d="M-152 708c3 1 9 2 14 2c6.39999 0 32 -1 55 -23l3 -11l-115 -109c-15 -15 -23 -19 -30 -19s-14 6 -14 13c0 11.2 3.3 15.2 11.4 28z" />
-    <glyph glyph-name="circumflexcomb" unicode="&#x302;" 
-d="M-123 711c29 -47 73 -100 109 -140c-5 -7 -13.6 -15.1 -23 -17c-38 24 -73 52 -103 83c-32 -32 -65 -61 -104 -83c-9 2 -16 8 -22 17c36 40 82 94 111 140c10.7 2.29999 21.3 3 32 0z" />
-    <glyph glyph-name="tildecomb" unicode="&#x303;" 
-d="M-84 621c22 0 33 10 47 52c11 1 21 -2 27 -6c-12 -60 -41 -99 -87 -99c-22 0 -43 18 -64 32c-18 11 -37 19 -54 19c-26 0 -36 -15 -46 -48c-11 -2 -21 -1 -27 5c14 59 37 98 80 98c30 0 52 -20 72 -34c16 -12 33 -19 52 -19z" />
-    <glyph glyph-name="uni0307" unicode="&#x307;" 
-d="M-230 576c0 24 28 48 52 48c27 0 48 -28 48 -52c0 -21.1 -24 -48 -52 -48c-24 0 -48 26 -48 52z" />
-    <glyph glyph-name="uni0308" unicode="&#x308;" 
-d="M-341 573c0 26 21 48 47 48s47 -22 47 -48s-21 -47 -47 -47s-47 21 -47 47zM-172 573c0 26 21 48 47 48s47 -22 47 -48s-21 -47 -47 -47s-47 21 -47 47z" />
-    <glyph glyph-name="hookabovecomb" unicode="&#x309;" 
-d="M-88 723c0 -20 -15 -36 -31 -52c-17 -16 -27 -33 -29 -59h-28c1 34 14 56 25 73c8 12 13 24 13 36c0 23 -8 33 -29 33c-19 0 -24 -6 -24 -11c0 -4 1 -6 2 -8c1 -3 4 -9 4 -17c0 -11 -13 -21 -22 -21c-19 0 -27 15 -27 27c0 22 33 57 75 57c55 0 71 -41 71 -58z" />
-    <glyph glyph-name="uni030C" unicode="&#x30c;" 
-d="M-229 533c-29 47 -66 92 -101 130l20 13c39 -29 72 -54 106 -90c37 38 71 63 108 90l19 -13c-35 -39 -73 -84 -102 -130h-50z" />
-    <glyph glyph-name="uni030F" unicode="&#x30f;" 
-d="M-260 751c12 0 19 -2 24 -11l78 -139c1 -1 1 -3 1 -4c0 -9.70001 -10.4 -14 -13 -14c-3 0 -5 1 -7 3l-114 110c-5 6 -7 13 -7 19c0 17.9 14.6 36 38 36zM-124 757c11 0 19 -5 23 -14l62.7 -143c1.3 -3 1.3 -5 1.3 -6c0 -2.59998 -2.8 -13 -14 -13c-3 0 -5 1 -7 3
-l-102 121c-5 5 -6 11 -6 16c0 13.8 10.5 36 42 36z" />
-    <glyph glyph-name="uni031B" unicode="&#x31b;" 
-d="M-90 415c0 -51 -32 -83 -87 -83h-24v26h24c11 0 52 4 52 38c0 13 -13 21 -27 22c-35 4 -48 26 -48 46c0 24 18 39 46 39c38 0 64 -41 64 -88z" />
-    <glyph glyph-name="dotbelowcomb" unicode="&#x323;" 
-d="M-270 -113c0 31 23 54 54 54s54 -23 54 -54s-23 -54 -54 -54s-54 23 -54 54z" />
-    <glyph glyph-name="uni0326" unicode="&#x326;" 
-d="M-250 -41c38 0 62 -34 62 -86c0 -60 -49 -90 -106 -99c-6 6 -8 15 -8 24c49 11 75 35 75 53c0 20 -13 24 -31 26c-17 3 -42 12 -42 39c0 24 21 43 50 43z" />
-    <glyph glyph-name="uni0327" unicode="&#x327;" 
-d="M-186 -96c-19 0 -29 -1 -45 -6l-6 6l40 96h34l-25 -67c8 2 17 3 26 3c40 0 71 -24 71 -62c0 -43 -46 -74 -107 -74c-32 0 -49 6 -74 17c0 12 3 19 10 26c27 -10 38 -14 58 -14c30 0 51 14 51 40c0 21 -10 35 -33 35z" />
-    <glyph glyph-name="tonos" unicode="&#x384;" horiz-adv-x="219" 
-d="M125 731c20 0 42 -15 42 -35c0 -5 -2 -13 -6 -18l-92 -122c-3 -4 -8 -8 -12 -8c-8 0 -14 6 -14 13c0 3 1 7 2 10l52 143c4 11 15 17 28 17z" />
-    <glyph glyph-name="Iotatonos" unicode="&#x38a;" horiz-adv-x="376" 
-d="M46 725c20 0 42 -15 42 -35c0 -5 -2 -13 -6 -18l-92 -122c-3 -4 -8 -8 -12 -8c-8 0 -14 6 -14 13c0 3 1 7 2 10l52 143c4 11 15 17 28 17zM274 122c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-45 1 -93.4 2 -129 2c-36.3 0 -85 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91
-v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c47 -1 95.5 -2 129 -2c38.5 0 86 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-401z" />
-    <glyph glyph-name="Omicrontonos" unicode="&#x38c;" horiz-adv-x="721" 
-d="M67 725c20 0 42 -15 42 -35c0 -5 -2 -13 -6 -18l-92 -122c-3 -4 -8 -8 -12 -8c-8 0 -14 6 -14 13c0 3 1 7 2 10l52 143c4 11 15 17 28 17zM353 622c-99 0 -198 -85 -198 -295c0 -192 115 -301 237 -301c114 0 200 105 200 284c0 202 -107 312 -239 312zM688 329
-c0 -84 -22 -156.3 -61.8 -213c-54.9 -78.3 -143.4 -126 -254.2 -126c-170 0 -313 123 -313 320c0 193.9 113.3 348 307 348c179 0 322 -122 322 -329z" />
-    <glyph glyph-name="Upsilontonos" unicode="&#x38e;" horiz-adv-x="687" 
-d="M48 725c20 0 42 -15 42 -35c0 -5 -2 -13 -6 -18l-92 -122c-3 -4 -8 -8 -12 -8c-8 0 -14 6 -14 13c0 3 1 7 2 10l52 143c4 11 15 17 28 17zM449 122c0 -83 17 -88 97 -91c6 -6 6 -27 0 -33c-50 1 -100.3 2 -139 2c-38.6 0 -91 -1 -140 -2c-6 6 -6 27 0 33c80 3 97 8 97 91
-v127c0 37 -3.5 47.5 -21 77l-131.3 221c-34.5 58.1 -51.7 64 -93.7 67c-6 6 -7 27 -1 33c30 -1 63 -2 102 -2c40 0 78 1 114 2c6 -6 6 -27 0 -33c-56 -3 -60 -12.6 -35.8 -55.2l116 -204.8c9 -15.9 13.8 -17.2 21.8 -2l110.8 209c21.4 40.4 5.5 50 -38.8 53c-6 6 -6 27 0 33
-c32 -1 68 -2 91 -2s55 1 83 2c6 -6 6 -27 0 -33c-44.7 -4.29999 -67 -13.3 -95 -64l-119.5 -216c-16.4 -29.6 -17.5 -46.5 -17.5 -76.3v-135.7z" />
-    <glyph glyph-name="Omegatonos" unicode="&#x38f;" horiz-adv-x="715" 
-d="M58 725c20 0 42 -15 42 -35c0 -5 -2 -13 -6 -18l-92 -122c-3 -4 -8 -8 -12 -8c-8 0 -14 6 -14 13c0 3 1 7 2 10l52 143c4 11 15 17 28 17zM479 117l-3 -48h97c49 0 70 -7 76 50c10 4 18.7 4 26 0c0 -40 -3 -85 -7 -119h-208c-12 0 -17 5 -17 14l8 129
-c92 53 132 126 132 234c0 141 -80 247 -210 247c-139 0 -209 -118 -209 -246c0 -112 39 -173 131 -235l8 -128c0 -9 -6 -15 -17 -15h-213c-4.7 38.2 -7 78 -7 119c8.3 4.3 16.7 3.6 25 0c5 -53 24 -50 77 -50h103l-4 48c-108 37 -195 132 -195 260c0 132 104 281 301 281
-c199 0 301 -133 301 -281c0 -120 -84 -223 -195 -260z" />
-    <glyph glyph-name="iotadieresistonos" unicode="&#x390;" horiz-adv-x="281" 
-d="M189 784c20 0 42 -15 42 -35c0 -5 -2 -13 -6 -18l-92 -122c-3 -4 -8 -8 -12 -8c-8 0 -14 6 -14 13c0 3 1 7 2 10l52 143c4 11 15 17 28 17zM-5 573c0 26 21 48 47 48s47 -22 47 -48s-21 -47 -47 -47s-47 21 -47 47zM164 573c0 26 21 48 47 48s47 -22 47 -48
-s-21 -47 -47 -47s-47 21 -47 47zM84 322c0 28 -1 72 -18 107l2 2c6 -1 31 -2 43 -2c19 0 35 2 50 8c0 0 2 -62 2 -94v-244c0 -41 8 -55 23 -55c28 0 48 19 67 43c10.6 -2.2 18.4 -7.1 21 -17c-21 -37 -64 -81 -107 -81c-56 0 -83 32.5 -83 92v241z" />
-    <glyph glyph-name="Alpha" unicode="&#x391;" horiz-adv-x="695" 
-d="M263 283h177l-94 272h-6l-102.2 -258.7c-3.8 -10.3 3.2 -13.3 25.2 -13.3zM155 79c-15.6 -41.1 31.4 -45.4 69 -48c6 -6 6 -27 0 -33c-37 1 -87 2 -128 2c-30.3 0 -63 -1 -89 -2c-6 6 -6 27 0 33c43.5 3 74 9 100 71l227 536c13 0 40 11 55 20l206 -572
-c17.4 -48.2 51.2 -51.5 90 -55c6 -6 6 -27 0 -33c-35 1 -73 2 -114 2c-39 0 -94 -1 -131 -2c-6 6 -6 27 0 33c47.6 3.4 85.8 6.5 74 41l-58 169h-211c-24 0 -30 -4 -35 -17z" />
-    <glyph glyph-name="Beta" unicode="&#x392;" horiz-adv-x="588" 
-d="M191 550v-184h74c83 0 142 30 142 115c0 102 -73 132 -129 132c-87 0 -87 -10 -87 -63zM191 332v-214c0 -61 13 -87 83 -87c152 0 180 61 180 134c0 90 -57 167 -194 167h-69zM148 645c36 0 90 2 125 2c186 0 215 -87 215 -154c0 -54.3 -44.9 -105.6 -95 -131v-2
-c87 -25 154 -80 154 -176c0 -86 -53 -186 -252 -186c-84 0 -110.3 2 -146 2c-37.1 0 -91 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c39 -1 93.3 -2 129 -2z" />
-    <glyph glyph-name="Gamma" unicode="&#x393;" horiz-adv-x="497" 
-d="M147 645h205s81 1 120 2c5.5 -33.8 10.9 -72.7 15 -157c-9.70001 -4.29999 -19.3 -5.20001 -29 -4c-21 69 -37 119 -112 119h-120c-24 0 -36 -10 -36 -34v-449c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-40 1 -91.2 2 -129 2s-91 -1 -130 -2c-6 6 -6 27 0 33
-c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c50 -1 129 -2 129 -2z" />
-    <glyph glyph-name="Delta" unicode="&#x394;" horiz-adv-x="636" 
-d="M300 557l-203 -523h403l-198 523h-2zM352 658l244 -638c3 -9 4 -12 4 -14c0 -4 -4 -6 -21 -6h-528c-13 0 -21 1 -21 7c0 3 1 3 5 13l255 638h62z" />
-    <glyph glyph-name="Epsilon" unicode="&#x395;" horiz-adv-x="557" 
-d="M281 361c85 0 88 13 91 68c6 6 27 6 33 0c-1 -24 -2 -58 -2 -86c0 -34.3 1 -62 2 -88c-6 -6 -27 -6 -33 0c-3 45 -6 68 -91 68h-91v-221c0 -47 14 -63 56 -63h116c76 0 111 59 131 131c13.1 3.2 24.6 1 35 -5c-8 -51 -23 -117 -37 -167c0 0 -80 2 -128 2h-215
-c-33 0 -93 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c40 -1 98.5 -2 129 -2h255c24 0 32 1 49 4c3 0 4 -1 4 -3c2 -8 17 -104 22 -145c-9.79999 -4.70001 -20.6 -6.79999 -33 -5c-22 69 -38 109 -113 109h-75
-c-54 0 -66 -20 -66 -64v-180h91z" />
-    <glyph glyph-name="Zeta" unicode="&#x396;" horiz-adv-x="604" 
-d="M551 -2c0 0 -99.7 2 -126.7 2h-364.3c-14 0 -19 5 -19 15c0 7 2 15 8 23c102 152 292 418 389 541c5 7 8 13 8 18c0 6 -4.10001 9.09998 -10 9l-211 -4c-75 -1.40002 -113 -37 -134 -106c-11 0 -20 2 -30 5c8 41 18 98 22 152c37 -3 134 -8 181 -8h221c30 0 61 2 73 2
-c8 0 13 -4 13 -11c0 -11 -2.90002 -17.8 -24 -45c-118 -152 -302 -413 -375 -519c-5 -9 -8 -15 -8 -20c0 -9 8 -14.4 25 -14l193 4c109 2 134 57 165 128c13 0 24 -3 31 -5c-12 -52 -22 -111 -27 -167z" />
-    <glyph glyph-name="Eta" unicode="&#x397;" horiz-adv-x="730" 
-d="M618 122c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-44 1 -91.7 2 -129 2c-37.1 0 -85 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v199h-342v-199c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-44 1 -92.7 2 -129 2c-37.7 0 -86 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91
-v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c38 -1 79 -2 129 -2c51 0 92 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-160h342v160c0 83 -17 88 -87 91c-6 6 -6 27 0 33c44 -1 91.7 -2 129 -2c38 0 89 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-401z" />
-    <glyph glyph-name="Theta" unicode="&#x398;" horiz-adv-x="702" 
-d="M319 348h60c85 0 89 14 91 58c6 6 27 6 33 0c-1 -30 -2 -51 -2 -84c0 -34 1 -53 2 -88c-6 -6 -27 -6 -33 0c-3 34 -6 58 -91 58h-60c-85 0 -89 -14 -91 -58c-6 -6 -27 -6 -33 0c1 30 2 51 2 84c0 34 -1 53 -2 88c6 6 27 6 33 0c3 -34 6 -58 91 -58zM331 622
-c-99 0 -198 -85 -198 -295c0 -192 115 -301 237 -301c114 0 200 105 200 284c0 202 -107 312 -239 312zM666 329c0 -84 -22 -156.3 -61.8 -213c-54.9 -78.3 -143.4 -126 -254.2 -126c-170 0 -313 123 -313 320c0 193.9 113.3 348 307 348c179 0 322 -122 322 -329z" />
-    <glyph glyph-name="Iota" unicode="&#x399;" horiz-adv-x="297" 
-d="M191 122c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-45 1 -93.4 2 -129 2c-36.3 0 -85 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c47 -1 95.5 -2 129 -2c38.5 0 86 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-401z" />
-    <glyph glyph-name="Kappa" unicode="&#x39a;" horiz-adv-x="637" 
-d="M191 122c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-45 1 -91 2 -129 2c-39 0 -85 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c45 -1 90.5 -2 129 -2c36.5 0 84 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-175.7
-c35.1 2.90002 57.7 16 79 38.7l165 176c42.1 44.9 8.10001 48.6 -28 52c-6 6 -6 27 0 33c37 -1 76 -2 113 -2c32.2 0 64 1 95 2c6 -6 6 -27 0 -33c-40 -3 -80 -7 -126 -56l-147 -151c-34 -35 -35 -42 -35 -49c0 -8 5.29999 -15.9 13 -25l219 -260
-c30.6 -36.3 59.1 -39.4 88 -42c6 -6 6 -27 0 -33c-33 1 -67 2 -101 2c-21.1 0 -34 -1 -54 -2c-4 0 -4.60001 3 -5 6c-2 16 -15.7 43.4 -36 69l-157 198c-20.3 25.6 -49.2 36.9 -83 37.9v-186.9z" />
-    <glyph glyph-name="Lambda" unicode="&#x39b;" horiz-adv-x="658" 
-d="M205 31c6 -6 6 -27 0 -33c-41 1 -86 2 -109 2s-58 -1 -88 -2c-6 6 -6 27 0 33c63 7 79.1 45.7 98.3 93l206.7 510c5.79999 14.3 13 23 24 23c10 0 17 -7.40002 23 -23l197.5 -512c26.6 -69 34.5 -86 89.5 -91c6 -6 7 -27 1 -33c-33 1 -67.7 2 -104 2
-c-36 0 -81 -1 -121 -2c-6 6 -6 27 0 33c68 7 73.8 20.5 50.6 80l-159.1 407h-4.60001l-157.9 -401c-21.4 -54.4 -21 -81 53 -86z" />
-    <glyph glyph-name="Mu" unicode="&#x39c;" horiz-adv-x="839" 
-d="M662.7 116l-25.7 418h-2l-225 -529c-4 -8 -8 -15 -14 -15s-12.2 7.9 -15 15l-207 519h-2l-38 -401c-5.39999 -56.3 0 -87 66 -92c6 -6 6 -27 0 -33c-30 1 -70 2 -94 2s-56 -1 -86 -2c-6 6 -6 27 0 33c57 5 69 30.1 74.9 90l40.1 412c7 75 1 77 -68 81c-6 6 -6 27 0 33
-l145 -2l205 -508c3.10001 -7.60001 6 -13 8 -13s5 4 9 14l212 507l131 2c6 -6 6 -27 0 -33c-68 -4 -73 -18 -68.7 -72l29.8 -421c5.80005 -82.8 8.90002 -87 76.9 -90c6 -6 6 -27 0 -33c-33.2 1 -79 2 -109 2s-70 -1 -107 -2c-6 6 -6 27 0 33c65 3 68.7 4 63.7 85z" />
-    <glyph glyph-name="Nu" unicode="&#x39d;" horiz-adv-x="699" 
-d="M556 512c0 91 -17 95 -87 102c-6 6 -6 27 0 33c44 -1 89.7 -2 111 -2c23.7 0 71 1 112 2c6 -6 6 -27 0 -33c-70 -7 -87 -13 -87 -102v-491c0 -19 -9 -31 -23 -31c-16 0 -29 9 -40 24l-349 441c-17 22 -28 33 -34 33c-8 0 -8 -15 -8 -49v-306c0 -91 17 -95 87 -102
-c6 -6 6 -27 0 -33c-42 1 -87.9 2 -111 2c-23.6 0 -69 -1 -112 -2c-6 6 -6 27 0 33c70 7 87 13 87 102v417c-6 26 -36 61 -79 64c-6 6 -6 27 0 33l135 -2l343 -435c29 -37 44 -55 48 -55c7 0 7 11 7 30v327z" />
-    <glyph glyph-name="Xi" unicode="&#x39e;" horiz-adv-x="648" 
-d="M266 348h112c85 0 89 14 91 58c6 6 27 6 33 0c-1 -30 -2 -51.2 -2 -84c0 -34.3 1 -53 2 -88c-6 -6 -27 -6 -33 0c-3 34 -6 58 -91 58h-112c-85 0 -89 -14 -91 -58c-6 -6 -27 -6 -33 0c1 30 2 51.2 2 84c0 34.3 -1 53 -2 88c6 6 27 6 33 0c3 -34 6 -58 91 -58zM110 645
-h424c24 0 32 1 49 4c3 0 4 -1 4 -3c2 -8 12 -102 12 -145c-11 -6 -20.6 -6.79999 -33 -5c-22 69 -28 86 -103 86h-282c-75 0 -81 -17 -103 -86c-12.4 -1.79999 -22 -1 -33 5c0 41 10 137 12 145c0 2 1 3 4 3c17 -3 25 -4 49 -4zM534 0h-424c-24 0 -32 -1 -49 -4
-c-3 0 -4 1 -4 3c-2 8 -12 102 -12 145c11 6 20.6 6.8 33 5c22 -69 28 -86 103 -86h282c75 0 81 17 103 86c12.4 1.8 22 1 33 -5c0 -41 -10 -137 -12 -145c0 -2 -1 -3 -4 -3c-17 3 -25 4 -49 4z" />
-    <glyph glyph-name="Omicron" unicode="&#x39f;" horiz-adv-x="702" 
-d="M331 622c-99 0 -198 -85 -198 -295c0 -192 115 -301 237 -301c114 0 200 105 200 284c0 202 -107 312 -239 312zM666 329c0 -84 -22 -156.3 -61.8 -213c-54.9 -78.3 -143.4 -126 -254.2 -126c-170 0 -313 123 -313 320c0 193.9 113.3 348 307 348
-c179 0 322 -122 322 -329z" />
-    <glyph glyph-name="Pi" unicode="&#x3a0;" horiz-adv-x="667" 
-d="M521 645c27 0 79 1 129 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-401c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-38 1 -91.3 2 -130 2c-36.4 0 -91 -1 -129 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v409c0 62 -22 74 -46 74h-197c-24 0 -46 -12 -46 -74v-409
-c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-40 1 -91 2 -129 2c-39.7 0 -91 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c50 -1 106 -2 129 -2h375z" />
-    <glyph glyph-name="Rho" unicode="&#x3a1;" horiz-adv-x="541" 
-d="M189 554v-233c11 -3 51 -5 76 -5c97 0 149 44 149 152c0 127 -69 150 -138 150c-72 0 -87 -35 -87 -64zM104 523c0 83 -17 88 -87 91c-6 6 -6 27 0 33c40 -1 92.3 -2 129 -2c40 0 98.7 7 137 7c185 0 224 -107 224 -166c0 -85 -55 -204 -237 -204c-35 0 -59 3 -81 10
-v-170c0 -83 24 -87 102 -91c6 -6 6 -27 0 -33c-50 1 -108.6 2 -144 2c-35.7 0 -85 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401z" />
-    <glyph glyph-name="Sigma" unicode="&#x3a3;" horiz-adv-x="574" 
-d="M372 603h-226l218 -275l-1 -5l-260 -280h277c77 0 103 55 123 127c11.3 1.60001 24.3 0 33 -5c-5.20001 -55.6 -10.8 -111.1 -26 -165h-418c-28 0 -71 -2 -71 -2c-3.8 6.5 -3.2 26.4 0 33c11 3 20 10 29 21l221 257l2 1l-195 266c-17.2 23.4 -32 34 -56 38
-c-3.5 6 -3.6 26.1 0 32l101 -1h373c12.6 -59 16.7 -106.9 21 -155c-8.10001 -3.70001 -19.7 -7 -33 -5c-22 69 -37 118 -112 118z" />
-    <glyph glyph-name="Tau" unicode="&#x3a4;" horiz-adv-x="597" 
-d="M350 122c0 -83 17 -88 97 -91c6 -6 6 -27 0 -33c-50 1 -100.6 2 -139 2c-40.1 0 -91 -1 -140 -2c-6 6 -6 27 0 33c80 3 97 8 97 91v385c0 61 -10 99 -47 99h-49c-66 0 -112 -26 -132 -106c-12 0 -24 1 -34 5c11 48 21 100 25 145c0 1 2 3 4 3c38 -3 156 -8 233 -8h86
-c79 0 190 5 224 8c1 0 3 -2 3 -3c1 -45 6 -96 13 -142c-9 -4 -23 -5 -34 -5c-17 77 -64 103 -139 103h-22c-36 0 -46 -38 -46 -102v-382z" />
-
-<!--
-Geschwungen?
--->
-    <glyph glyph-name="Upsilon" unicode="&#x3a5;" horiz-adv-x="575" 
-d="M337 122c0 -83 17 -88 97 -91c6 -6 6 -27 0 -33c-50 1 -100.3 2 -139 2c-38.6 0 -91 -1 -140 -2c-6 6 -6 27 0 33c80 3 97 8 97 91v127c0 37 -3.5 47.5 -21 77l-131.3 221c-34.5 58.1 -51.7 64 -93.7 67c-6 6 -7 27 -1 33c30 -1 63 -2 102 -2c40 0 78 1 114 2
-c6 -6 6 -27 0 -33c-56 -3 -60 -12.6 -35.8 -55.2l116 -204.8c9 -15.9 13.8 -17.2 21.8 -2l110.8 209c21.4 40.4 5.5 50 -38.8 53c-6 6 -6 27 0 33c32 -1 68 -2 91 -2s55 1 83 2c6 -6 6 -27 0 -33c-44.7 -4.29999 -67 -13.3 -95 -64l-119.5 -216
-c-16.4 -29.6 -17.5 -46.5 -17.5 -76.3v-135.7z" />
-    <glyph glyph-name="Phi" unicode="&#x3a6;" horiz-adv-x="643" 
-d="M279 141v365c-85 -6 -165 -43 -165 -175c0 -124 70 -178 165 -190zM364 536c156 -12 255 -98 255 -205c0 -101 -96 -204 -255 -219c1 -74 20 -78 87 -81c6 -6 6 -27 0 -33c-50 1 -79 2 -129 2c-51 0 -81 -1 -130 -2c-6 6 -6 27 0 33c67 3 86 7 87 81
-c-235 17 -255 159 -255 212c0 79 66 194 255 211c-2 72 -20 76 -87 79c-6 6 -6 27 0 33c50 -1 79 -2 129 -2c51 0 81 1 130 2c6 -6 6 -27 0 -33c-66 -3 -85 -7 -87 -78zM364 505v-364c158 16 166 113 166 183c0 127 -69 171 -166 181z" />
-    <glyph glyph-name="Chi" unicode="&#x3a7;" horiz-adv-x="660" 
-d="M538 102c42.4 -58.3 59 -68 101 -71c6 -6 7 -27 1 -33c-30 1 -63 2 -102 2c-40 0 -77 -1 -114 -2c-6 6 -6 27 0 33c56 3 51.8 13.9 23.5 54.2l-123.5 175.8c-5.60001 8 -10 11 -14 11c-3 0 -9.29999 -6 -15 -14l-132 -185c-24.2 -34 -5.3 -39 39 -42c6 -6 6 -27 0 -33
-c-40 1 -82 2 -105 2s-60 -1 -90 -2c-6 6 -6 27 0 33c44.7 4.3 76.7 16.1 111 62l148 198c5.89999 7.89999 10 17 10 23c0 10 -5.79999 18.3 -14 30l-142.3 203c-41.2 58.7 -59.7 64 -101.7 67c-6 6 -7 27 -1 33c30 -1 63 -2 102 -2c40 0 77 1 114 2c6 -6 6 -27 0 -33
-c-56 -3 -51.7 -14.2 -23.5 -54.2l110.5 -163.8c4.79999 -7 9 -11 12 -11c4 0 10 3.5 16 12l123 175c23.5 33.4 5.29999 39 -39 42c-6 6 -6 27 0 33c40 -1 82 -2 105 -2s60 1 90 2c6 -6 6 -27 0 -33c-44.7 -4.29999 -76.3 -17.1 -111 -62l-137 -177
-c-9.10001 -11.8 -10 -21 -10 -30c0 -10 6.20001 -19.6 16 -33z" />
-    <glyph glyph-name="Psi" unicode="&#x3a8;" horiz-adv-x="679" 
-d="M382 122c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-50 1 -79 2 -129 2c-51 0 -81 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v133c-94.5 0.5 -210 22.8 -210 195c0 100 -40 139 -62 145c-8 2 -13 4 -13 9c0 11 9 12 20 12h31c49 0 97 -52 97 -150
-c0 -130.1 69.9 -176.7 137 -178v235c0 83 -17 88 -87 91c-6 6 -6 27 0 33c50 -1 79 -2 129 -2c51 0 81 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-235c83.9 0.899994 138 59 138 189c0 78 42 139 96 139h29c12 0 22 -2 22 -12c0 -7 -6.09998 -8.79999 -14 -11
-c-25 -7 -60 -29 -60 -120c0 -191.7 -112.5 -217.7 -211 -218v-133z" />
-    <glyph glyph-name="Omega" unicode="&#x3a9;" horiz-adv-x="697" 
-d="M457 117l-3 -48h97c49 0 70 -7 76 50c10 4 18.7 4 26 0c0 -40 -3 -85 -7 -119h-208c-12 0 -17 5 -17 14l8 129c92 53 132 126 132 234c0 141 -80 247 -210 247c-139 0 -209 -118 -209 -246c0 -112 39 -173 131 -235l8 -128c0 -9 -6 -15 -17 -15h-213
-c-4.7 38.2 -7 78 -7 119c8.3 4.3 16.7 3.6 25 0c5 -53 24 -50 77 -50h103l-4 48c-108 37 -195 132 -195 260c0 132 104 281 301 281c199 0 301 -133 301 -281c0 -120 -84 -223 -195 -260z" />
-    <glyph glyph-name="Iotadieresis" unicode="&#x3aa;" horiz-adv-x="297" 
-d="M195 757c0 26 22 48 48 48s48 -22 48 -48s-22 -48 -48 -48s-48 22 -48 48zM6 757c0 26 22 48 48 48s48 -22 48 -48s-22 -48 -48 -48s-48 22 -48 48zM191 122c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-45 1 -93.4 2 -129 2c-36.3 0 -85 -1 -130 -2c-6 6 -6 27 0 33
-c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c47 -1 95.5 -2 129 -2c38.5 0 86 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-401z" />
-    <glyph glyph-name="Upsilondieresis" unicode="&#x3ab;" horiz-adv-x="575" 
-d="M345 757c0 26 22 48 48 48s48 -22 48 -48s-22 -48 -48 -48s-48 22 -48 48zM156 757c0 26 22 48 48 48s48 -22 48 -48s-22 -48 -48 -48s-48 22 -48 48zM337 122c0 -83 17 -88 97 -91c6 -6 6 -27 0 -33c-50 1 -100.3 2 -139 2c-38.6 0 -91 -1 -140 -2c-6 6 -6 27 0 33
-c80 3 97 8 97 91v127c0 37 -3.5 47.5 -21 77l-131.3 221c-34.5 58.1 -51.7 64 -93.7 67c-6 6 -7 27 -1 33c30 -1 63 -2 102 -2c40 0 78 1 114 2c6 -6 6 -27 0 -33c-56 -3 -60 -12.6 -35.8 -55.2l116 -204.8c9 -15.9 13.8 -17.2 21.8 -2l110.8 209c21.4 40.4 5.5 50 -38.8 53
-c-6 6 -6 27 0 33c32 -1 68 -2 91 -2s55 1 83 2c6 -6 6 -27 0 -33c-44.7 -4.29999 -67 -13.3 -95 -64l-119.5 -216c-16.4 -29.6 -17.5 -46.5 -17.5 -76.3v-135.7z" />
-    <glyph glyph-name="alphatonos" unicode="&#x3ac;" horiz-adv-x="566" 
-d="M282 682c20 0 42 -15 42 -35c0 -5 -2 -13 -6 -18l-92 -122c-3 -4 -8 -8 -12 -8c-8 0 -14 6 -14 13c0 3 1 7 2 10l52 143c4 11 15 17 28 17zM409 191l14 -58c13 -53 33 -82 56 -82c25 0 38 7 55 37c12 0 19 -4 25 -11c-22 -63 -47 -87 -91 -87c-37 0 -63 33 -79 101l-9 39
-c-50 -99 -96 -140 -164 -140c-128 0 -182 82 -182 206c0 184 125 243 216 243c73.5 0 113 -48 132.8 -135c2.30002 -10 3.90002 -5.5 6.70001 2l47.5 128c15 0 33 -5 48 -5s36 5 49 5zM359 222l-5 21c-23 96 -49 162 -109 162c-67 0 -127 -71 -127 -186
-c0 -108 29 -195 103 -195c46 0 88 62 122 157z" />
-    <glyph glyph-name="epsilontonos" unicode="&#x3ad;" horiz-adv-x="397" 
-d="M240 680c20 0 42 -15 42 -35c0 -5 -2 -13 -6 -18l-92 -122c-3 -4 -8 -8 -12 -8c-8 0 -14 6 -14 13c0 3 1 7 2 10l52 143c4 11 15 17 28 17zM123 121c0 -53 42 -93 97 -93c47 0 85 16 124 43c8.70001 -2.8 14.6 -10.2 15 -21c-33 -31 -87 -60 -150 -60
-c-132 0 -165 65 -165 123c0 38 19 91 91 116v2c-45.8 19.3 -72 47.7 -72 96c0 40 35 112 153 112c77 0 135 -36 135 -72c0 -29 -19 -37 -32 -37c-22 0 -32 16 -42 33c-11 22 -28 43 -67 43c-31 0 -76 -6 -76 -72c0 -69 36 -91 79 -91c1 0 46 5 51 5c19 0 29 -9 29 -21
-s-7 -23 -30 -23c-8 0 -42 6 -51 6c-56 0 -89 -33 -89 -89z" />
-    <glyph glyph-name="etatonos" unicode="&#x3ae;" horiz-adv-x="528" 
-d="M330 681c20 0 42 -15 42 -35c0 -5 -2 -13 -6 -18l-92 -122c-3 -4 -8 -8 -12 -8c-8 0 -14 6 -14 13c0 3 1 7 2 10l52 143c4 11 15 17 28 17zM174 358c0 -5 0.800003 -8.20001 2.39999 -5.89999c45.6 48.4 86.1 86.9 160.6 86.9c68 0 109 -43 109 -158v-287
-c0 -51 3 -99 3 -138c0 -24 -1 -44 -5 -60l-80 -34l-11 18c13 34 14 100 14 214v275c0 65 -6 118 -67 118c-34.5 0 -78.5 -29 -126 -76.5v-238.5c0 -38 9 -82 -29 -82c-32 0 -46 10 -50 27c-2 10 0 37 0 55v245c0 58 -11 63 -65 68c-2 6 -4 22 -2 28c69 9 98 18 126 29
-c8 0 9.89999 -3.39999 12 -8c4.7 -10.3 8 -36 8 -76z" />
-    <glyph glyph-name="iotatonos" unicode="&#x3af;" horiz-adv-x="281" 
-d="M159 683c20 0 42 -15 42 -35c0 -5 -2 -13 -6 -18l-92 -122c-3 -4 -8 -8 -12 -8c-8 0 -14 6 -14 13c0 3 1 7 2 10l52 143c4 11 15 17 28 17zM84 322c0 28 -1 72 -18 107l2 2c6 -1 31 -2 43 -2c19 0 35 2 50 8c0 0 2 -62 2 -94v-244c0 -41 8 -55 23 -55c28 0 48 19 67 43
-c10.6 -2.2 18.4 -7.1 21 -17c-21 -37 -64 -81 -107 -81c-56 0 -83 32.5 -83 92v241z" />
-    <glyph glyph-name="upsilondieresistonos" unicode="&#x3b0;" horiz-adv-x="490" 
-d="M317 784c20 0 42 -15 42 -35c0 -5 -2 -13 -6 -18l-92 -122c-3 -4 -8 -8 -12 -8c-8 0 -14 6 -14 13c0 3 1 7 2 10l52 143c4 11 15 17 28 17zM123 573c0 26 21 48 47 48s47 -22 47 -48s-21 -47 -47 -47s-47 21 -47 47zM292 573c0 26 21 48 47 48s47 -22 47 -48
-s-21 -47 -47 -47s-47 21 -47 47zM171 321.3v-118.3c0 -101 12 -174 87 -174c92 0 147 110 147 208c0 96 -32 111 -61 127c-20 11 -34 25 -34 48c0 17 17 30 34 30c63 0 102 -73 102 -193c0 -174 -99 -259 -197 -259c-134 0 -157 90 -157 197v130c0 57 -10.5 62.9 -65 68
-c-2 6 -4 22 -2 28c69 9 108.5 18 137 29c8 0 13 -3 13 -7c0 0 -4 -64 -4 -113.7z" />
-    <glyph glyph-name="alpha" unicode="&#x3b1;" horiz-adv-x="566" 
-d="M409 191l14 -58c13 -53 33 -82 56 -82c25 0 38 7 55 37c12 0 19 -4 25 -11c-22 -63 -47 -87 -91 -87c-37 0 -63 33 -79 101l-9 39c-50 -99 -96 -140 -164 -140c-128 0 -182 82 -182 206c0 184 125 243 216 243c73.5 0 113 -48 132.8 -135
-c2.30002 -10 3.90002 -5.5 6.70001 2l47.5 128c15 0 33 -5 48 -5s36 5 49 5zM359 222l-5 21c-23 96 -49 162 -109 162c-67 0 -127 -71 -127 -186c0 -108 29 -195 103 -195c46 0 88 62 122 157z" />
-    <glyph glyph-name="beta" unicode="&#x3b2;" horiz-adv-x="517" 
-d="M152 75.3c19.4 -28.2 57 -56.3 118 -56.3c78 0 118 115 118 181c0 74 -31 162 -104 183c-20 -10 -31 -13 -48 -13c-19 0 -38 10 -38 33c0 17 14 25 29 25s32 0 60 -10c40 15 63 86 63 128c0 71 -40 119 -94 119c-39 0 -104 -24 -104 -175v-414.7zM152 -61
-c0 -59 -1 -106 -9 -146l-82 -31l-12 18c13 34 24 86 24 210v459c0 151 59 249 193 249c86 0 162 -48 162 -142c0 -73 -43 -130 -111 -153v-2c46.6 -15.6 157 -54.1 157 -197c0 -113 -84 -214 -198 -214c-54.9 0 -94.5 8.6 -124 31.3v-82.3z" />
-    <glyph glyph-name="gamma" unicode="&#x3b3;" horiz-adv-x="505" 
-d="M253 -29c-14 -41 -22 -76 -22 -99c0 -40 8 -68 23 -68c14 0 19 18 19 44c0 27 -5 66 -20 123zM191 -135c0 32 7 68 20 99l27 63c-32 105 -89 226 -132 317c-15 33 -31 31 -48 31c-11 0 -20 -1 -37 -1c-7.7 10 -9.3 21 -5 31c50 13 100 26 124 37c9 0 14 -5 18 -13
-c43 -101 88 -206 120 -312c26 65 54 144 81 217c13 34 25 75 28 102c11 -4 47 -5 55 -5c14 0 25 0 48 7l5 -2c-28 -34 -43 -63 -65 -104l-108 -205c-10 -20 -20 -41 -29 -61c2 -10 5 -20 7 -30c16 -67 26 -131 26 -156c0 -64 -12 -115 -71 -115c-45 0 -64 58 -64 100z" />
-    <glyph glyph-name="delta" unicode="&#x3b4;" horiz-adv-x="491" 
-d="M232 430l-15 12c-82 67 -116 106 -116 158c0 62 47 98 107 98c44 0 92 -21 126 -37c30 -15 77 -38 77 -56c0 -29 -30 -36 -44 -36c-25 0 -50 15 -70 44c-25 36 -55 52 -81 52c-51 0 -64 -25 -64 -51c0 -31 32 -62 108 -121l71 -53c39 -28 69 -62 90 -97
-c23 -40 35 -81 35 -119c0 -163 -111 -234 -217 -234c-124 0 -202 92 -202 203c0 117 110 199 195 237zM261 407c-77 -38 -144 -97 -144 -196c0 -81 40 -188 133 -188c51 0 126 26 126 189c0 52 -32 127 -83 169z" />
-    <glyph glyph-name="epsilon" unicode="&#x3b5;" horiz-adv-x="397" 
-d="M123 121c0 -53 42 -93 97 -93c47 0 85 16 124 43c8.70001 -2.8 14.6 -10.2 15 -21c-33 -31 -87 -60 -150 -60c-132 0 -165 65 -165 123c0 38 19 91 91 116v2c-45.8 19.3 -72 47.7 -72 96c0 40 35 112 153 112c77 0 135 -36 135 -72c0 -29 -19 -37 -32 -37
-c-22 0 -32 16 -42 33c-11 22 -28 43 -67 43c-31 0 -76 -6 -76 -72c0 -69 36 -91 79 -91c1 0 46 5 51 5c19 0 29 -9 29 -21s-7 -23 -30 -23c-8 0 -42 6 -51 6c-56 0 -89 -33 -89 -89z" />
-    <glyph glyph-name="zeta" unicode="&#x3b6;" horiz-adv-x="441" 
-d="M260 -229c-59 0 -99 22 -99 47c0 22 19 33 35 33c26 0 47 -12 58 -26c10 -12 32 -13 48 -13c37 0 69 39 69 99c0 40 -14 83 -82 83c-201 0 -251 94 -251 197c0 96 72 222 209 375c-24 -9 -56 -17 -76 -17c-58 0 -106 41 -119 109c20 24 34 30 57 40h9
-c-1 -6 -1 -13 -1 -20c0 -64 41 -96 69 -96c23 0 58 9 89 22c39 42 74 71 98 71c26 0 37 -15 37 -33c0 -25 -43 -42 -117 -67c-140 -179 -169 -299 -169 -373s16 -136 153 -145c88.8 -5.8 132 -61 132 -145c0 -56 -47 -141 -149 -141z" />
-    <glyph glyph-name="eta" unicode="&#x3b7;" horiz-adv-x="528" 
-d="M174 358c0 -5 0.800003 -8.20001 2.39999 -5.89999c45.6 48.4 86.1 86.9 160.6 86.9c68 0 109 -43 109 -158v-287c0 -51 3 -99 3 -138c0 -24 -1 -44 -5 -60l-80 -34l-11 18c13 34 14 100 14 214v275c0 65 -6 118 -67 118c-34.5 0 -78.5 -29 -126 -76.5v-238.5
-c0 -38 9 -82 -29 -82c-32 0 -46 10 -50 27c-2 10 0 37 0 55v245c0 58 -11 63 -65 68c-2 6 -4 22 -2 28c69 9 98 18 126 29c8 0 9.89999 -3.39999 12 -8c4.7 -10.3 8 -36 8 -76z" />
-    <glyph glyph-name="theta" unicode="&#x3b8;" horiz-adv-x="489" 
-d="M369 361c-1 156 -53 303 -127 303c-84 0 -120 -174 -121 -303h248zM369 325h-248c1 -144 49 -301 126 -301s121 156 122 301zM39 344c0 240 111 354 209 354c80 0 203 -89 203 -354c0 -274 -129 -354 -209 -354c-86 0 -203 82 -203 354z" />
-    <glyph glyph-name="iota" unicode="&#x3b9;" horiz-adv-x="281" 
-d="M84 322c0 28 -1 72 -18 107l2 2c6 -1 31 -2 43 -2c19 0 35 2 50 8c0 0 2 -62 2 -94v-244c0 -41 8 -55 23 -55c28 0 48 19 67 43c10.6 -2.2 18.4 -7.1 21 -17c-21 -37 -64 -81 -107 -81c-56 0 -83 32.5 -83 92v241z" />
-
-<!--
-Ist das so richtig? In Times anders
--->
-    <glyph glyph-name="kappa" unicode="&#x3ba;" horiz-adv-x="506" 
-d="M97 317c0 57 -10.5 62.9 -65 68c-2 6 -4 22 -2 28c69 9 108.5 18 137 29c8 0 13 -3 13 -7c0 0 -4 -64 -4 -113.7v-76.3c14 0 23.1 6.60001 42 30l38 47c69.1 85.5 103 117 148 117c31 0 52 -12 52 -47c0 -17 -17 -34 -36 -34c-17 0 -28 7 -37 15c-7 7 -16 9 -22 9
-c-15 0 -27 -17 -65 -65l-35 -43c-3 -4 -3 -8 -3 -13c0 -9 11 -26 19 -38l72 -116c30 -47 39 -68 61 -68c14 0 22 7 37 25c10.8 -2.6 16.2 -8.9 19 -17c-33 -42 -61 -57 -99 -57c-24 0 -42.2 17.2 -77 73l-73 117c-12 20 -18 36 -41 36v-144c0 -38 9 -82 -29 -82
-c-32 0 -46 10 -50 27c-2 10 0 37 0 55v245z" />
-    <glyph glyph-name="lambda" unicode="&#x3bb;" horiz-adv-x="531" 
-d="M524 65c-18 -39 -57 -76 -86 -76c-50 0 -74 44 -102 137l-71 237l-143 -363c-27 -2 -52 -6 -75 -12l-25 12l221 435l-13 43c-41 138 -80 159 -108 159c-25 0 -51 -10 -71 -25c-7.3 2.40002 -14.9 4.20001 -17 17c26 38 58 69 97 69c30 0 86 -11 121 -129l107 -355
-c39 -132 51 -164 83 -164c21 0 41 5 62 31c11.3 -2.4 16.7 -7 20 -16z" />
-    <glyph glyph-name="mu" unicode="&#x3bc;" horiz-adv-x="490" 
-d="M322 60c-40 -44 -82 -70 -143 -70c-18 0 -38 5 -50 12c0 -1 -1 -3 -1 -7c0 -19 8 -78 8 -131c0 -25 -2 -50 -6 -71l-79 -31l-11 18c13 34 14 89 14 213c0 27 4 45 4 66c0 11 -4 34 -4 53v210c0 28 -1 77 -11 109c6 -1 22 -2 35 -2c19 0 38 4 53 10c0 0 2 -64 2 -96v-194
-c0 -65 12 -114 65 -114c54 0 104 33 126 66v221c0 28 0 77 -6 109c6 -1 22 -2 35 -2c19 0 38 4 53 10c0 0 -3 -64 -3 -96v-222c0 -46 1 -87 40 -87c24.2 0 27.2 16 33 16c4 0 11 -8 11 -15c0 -5 -38 -45 -87 -45c-58 0 -73 42 -76 70h-2z" />
-    <glyph glyph-name="nu" unicode="&#x3bd;" horiz-adv-x="474" 
-d="M102 341c-9 29 -19.8 35.7 -43 37l-37 2c-4 8 -4.8 19 -3 27c59.5 13.5 101.5 22 132 35c6.5 0 9 -2 12 -13l95.9 -331c2.60001 -8.9 6.60001 -13.7 13.1 -4c72 108 96 158.5 96 192c0 66 -19 64 -19 115c0 17 16 41 47 41c30 0 44 -27 44 -55c0 -74 -61 -206 -198 -395
-c-9.7 -4.3 -19.3 -3.7 -29 0z" />
-    <glyph glyph-name="xi" unicode="&#x3be;" horiz-adv-x="426" 
-d="M205 568c-22 -6 -32 -7 -52 -7c-58 0 -94 18 -107 85c12 22 27 42 50 52h9c0 -6 -1 -13 -1 -20c0 -64 37 -87 64 -87c23 0 39 0 70 13c53 44 84 66 108 66c19 0 27 -11 27 -29c0 -25 -51 -43 -112 -62c-65 -53 -109 -105 -109 -144c0 -55 30 -77 60 -77
-c54 0 87 30 117 30c17 0 30 -11 30 -28c0 -27 -22 -42 -47 -42c-15 0 -32 5 -46 5c-32 0 -60 -5 -86 -12c-36 -18 -69 -62 -69 -132c0 -56 24 -119 139 -119c86 0 150 -46 150 -138c0 -76 -65 -150 -171 -150c-42 0 -77 7 -77 40c0 18 15 29 36 29c19 0 36 -8 56 -17
-c18 -9 38 -12 58 -12c35 0 66 54 66 110c0 50 -45 72 -110 72c-176 0 -219 92 -219 176c0 59 28 126 115 166c-46 15 -73 32 -73 85c0 55 76 112 124 147z" />
-    <glyph glyph-name="omicron" unicode="&#x3bf;" horiz-adv-x="504" 
-d="M41 205c0 63.2 19 121.4 55.3 164c36.6 43 90.9 70 156.7 70c153 0 210 -121 210 -225c0 -61.3 -20.3 -124.2 -65.1 -168c-34.1 -33.3 -82.5 -56 -146.9 -56c-142 0 -210 113 -210 215zM238 404c-90 0 -111 -89 -111 -176c0 -77 34 -203 138 -203c47 0 112 31 112 157
-c0 144 -53 222 -139 222z" />
-    <glyph glyph-name="pi" unicode="&#x3c0;" horiz-adv-x="566" 
-d="M531 429l11 -12c-17 -36 -49 -56 -92 -56h-50c-3 -36 -3 -117 -3 -255c0 -42 9 -61 32 -61c13 0 52 3 90 41c10 -1 15 -6 18 -16c-23 -31 -75 -80 -122 -80c-64 0 -81 26 -81 102c0 58 1 154 4 269h-124c0 -242 -36 -371 -134 -371c-22 0 -39 10 -39 34
-c0 18 15.2 35.9 41 42c42 10 80 23 80 295h-18c-50 0 -78 -22 -96 -79c-11 -4 -22.6 -0.200012 -24 8c8 60 44 139 138 139h369z" />
-    <glyph glyph-name="rho" unicode="&#x3c1;" horiz-adv-x="525" 
-d="M149 -207l-84 -31l-11 18c13 34 24 86 24 210v194c0 138 33 172 60 199c42 43 91 56 138 56c120 0 210 -94 210 -208c0 -153 -98 -241 -232 -241c-43 0 -69 10 -97 27v-78c0 -58 0 -106 -8 -146zM400 189c0 158 -64 212 -144 212c-43 0 -99 -27 -99 -173v-153
-c31 -30 66 -52 111 -52c83 0 132 59 132 166z" />
-    <glyph glyph-name="sigma1" unicode="&#x3c2;" horiz-adv-x="441" 
-d="M32 188c0 106 78 254 237 254c100 0 132 -35 132 -62c0 -26 -17 -51 -45 -51c-17 0 -34 10 -49 25s-34 31 -75 31c-90 0 -147 -99 -147 -176c0 -116 63 -140 195 -140c37 0 72 -18 91 -37c34 -34 35 -74 35 -119c0 -74 -60 -146 -149 -146c-59 0 -99 22 -99 47
-c0 22 19 33 35 33c26 0 47 -12 58 -26c10 -12 32 -13 48 -13c23 0 73 31 73 103c0 58 -61 74 -171 79c-112 5 -169 103 -169 198z" />
-    <glyph glyph-name="sigma" unicode="&#x3c3;" horiz-adv-x="570" 
-d="M480 361h-136c60 -31 122 -100 122 -189c0 -57 -45 -182 -204 -182c-137 0 -225 88 -225 214c0 61 23 120 65 162c35 35 106 63 197 63h241l11 -12c-18 -34 -34 -56 -71 -56zM269 23c64 0 114 58 114 152c0 91 -32 136 -89 186c-129 0 -174 -78 -174 -173
-c0 -68 46 -165 149 -165z" />
-    <glyph glyph-name="tau" unicode="&#x3c4;" horiz-adv-x="441" 
-d="M154 429h267l11 -12c-18 -34 -41 -56 -82 -56h-102c-10 -110 -16 -198 -16 -253c0 -45 11 -65 32 -65c17 0 46 4 87 46c8.70001 -3.1 15.6 -8.3 19 -18c-34 -44 -75 -81 -119 -81c-55 0 -83 22 -83 95c0 54 9 168 22 276h-56c-49 0 -61 -17 -84 -78c-10 0 -19 2 -23 8
-c7 53 34 138 127 138z" />
-    <glyph glyph-name="upsilon" unicode="&#x3c5;" horiz-adv-x="490" 
-d="M171 321.3v-118.3c0 -101 12 -174 87 -174c92 0 147 110 147 208c0 96 -32 111 -61 127c-20 11 -34 25 -34 48c0 17 17 30 34 30c63 0 102 -73 102 -193c0 -174 -99 -259 -197 -259c-134 0 -157 90 -157 197v130c0 57 -10.5 62.9 -65 68c-2 6 -4 22 -2 28
-c69 9 108.5 18 137 29c8 0 13 -3 13 -7c0 0 -4 -64 -4 -113.7z" />
-    <glyph glyph-name="phi" unicode="&#x3c6;" horiz-adv-x="589" 
-d="M466 218c0 103 -25 182 -86 182c-38 0 -64 -23 -64 -124v-254c101 13 150 96 150 196zM317 -8c0 -85 -1 -154 -12 -196l-69 -34l-12 18c23 35 34 88 34 212c-152 9 -219 98 -219 235c0 103 96 186 142 208l19 -21c-35 -28 -81 -86 -81 -196c0 -103 25 -187 139 -197v239
-c0 73 7 112 45 151c22 21 51 28 77 28c114 0 166 -100 166 -202c0 -195 -163 -239 -229 -245z" />
-    <glyph glyph-name="chi" unicode="&#x3c7;" horiz-adv-x="505" 
-d="M174 255c-31.5 94.5 -55 125 -102 125c-11 0 -30 -6 -46 -22c-7.4 2 -14.1 5.5 -16 18c24 32 48 63 81 63c66 0 103.2 -65.9 141 -178l29 -86l130 261s20 -3 27 -3c24 0 72 6 72 6l-73 -107l-141 -202l61 -179c40 -116 52 -124 92 -124c18 0 36 12 49 27
-c11 -1 17.4 -7.60001 19 -16c-8.20001 -17.8 -18.9 -35.7 -32 -48c-15.6 -14.7 -34.2 -22 -50 -22c-67 0 -88 49 -136 181l-39 108l-83 -183l-57 -109l-54 10l-26 1l3 16l198 322z" />
-    <glyph glyph-name="psi" unicode="&#x3c8;" horiz-adv-x="628" 
-d="M495 304c7 35 17 105 20 132c11 -4 30 -5 38 -5c14 0 22 0 45 7l3 -7c-17 -28 -26 -51 -35 -99l-30 -161c-15 -78 -73 -162 -172 -181c2 -17 3 -51 3 -66c0 -59 -1 -91 -9 -131l-66 -31l-11 18c13 34 31 104 35 210c-157 3 -191 124 -201 273l-5 73c-2 34 -25 39 -41 39
-h-35c-6.3 10 -8 20 -5 30c61 14 109 26 135 37c11 0 13.4 -3 14 -13l10 -158c8 -137 31 -238 130 -248c2 51 2 116 2 153c0 136 -5 295 -12 471c6 -1 16 -2 32 -2s41 8 47 10l-18 -156c-10 -81 -12 -203 -12 -318c0 -62 3 -122 6 -158c69 22 95 86 116 196z" />
-    <glyph glyph-name="omega" unicode="&#x3c9;" horiz-adv-x="658" 
-d="M624 189c0 -104 -68 -199 -190 -199c-51 0 -91 31 -113 103c-27 -72 -60 -103 -117 -103c-90 0 -170 73 -170 204c0 118 70 200 183 248c7.60001 -4 12 -13.7 13 -23c-65 -41 -114 -88 -114 -210c0 -112 27 -182 101 -182c37 0 60 30 91 101c-13 33 -15 70 -15 90
-c0 31 11 66 37 66c27 0 30 -13 30 -37s-9 -79 -24 -116c30 -69 65 -104 105 -104c72 0 101 37 101 147c0 73 -17 166 -121 245c1 8.10001 1.89999 20.1 15 23c94 -45 188 -137 188 -253z" />
-    <glyph glyph-name="iotadieresis" unicode="&#x3ca;" horiz-adv-x="281" 
-d="M-8 576c0 26 21 48 47 48s47 -22 47 -48s-21 -47 -47 -47s-47 21 -47 47zM161 576c0 26 21 48 47 48s47 -22 47 -48s-21 -47 -47 -47s-47 21 -47 47zM84 322c0 28 -1 72 -18 107l2 2c6 -1 31 -2 43 -2c19 0 35 2 50 8c0 0 2 -62 2 -94v-244c0 -41 8 -55 23 -55
-c28 0 48 19 67 43c10.6 -2.2 18.4 -7.1 21 -17c-21 -37 -64 -81 -107 -81c-56 0 -83 32.5 -83 92v241z" />
-    <glyph glyph-name="upsilondieresis" unicode="&#x3cb;" horiz-adv-x="490" 
-d="M114 574c0 26 21 48 47 48s47 -22 47 -48s-21 -47 -47 -47s-47 21 -47 47zM283 574c0 26 21 48 47 48s47 -22 47 -48s-21 -47 -47 -47s-47 21 -47 47zM171 321.3v-118.3c0 -101 12 -174 87 -174c92 0 147 110 147 208c0 96 -32 111 -61 127c-20 11 -34 25 -34 48
-c0 17 17 30 34 30c63 0 102 -73 102 -193c0 -174 -99 -259 -197 -259c-134 0 -157 90 -157 197v130c0 57 -10.5 62.9 -65 68c-2 6 -4 22 -2 28c69 9 108.5 18 137 29c8 0 13 -3 13 -7c0 0 -4 -64 -4 -113.7z" />
-    <glyph glyph-name="omicrontonos" unicode="&#x3cc;" horiz-adv-x="504" 
-d="M271 682c20 0 42 -15 42 -35c0 -5 -2 -13 -6 -18l-92 -122c-3 -4 -8 -8 -12 -8c-8 0 -14 6 -14 13c0 3 1 7 2 10l52 143c4 11 15 17 28 17zM41 205c0 63.2 19 121.4 55.3 164c36.6 43 90.9 70 156.7 70c153 0 210 -121 210 -225c0 -61.3 -20.3 -124.2 -65.1 -168
-c-34.1 -33.3 -82.5 -56 -146.9 -56c-142 0 -210 113 -210 215zM238 404c-90 0 -111 -89 -111 -176c0 -77 34 -203 138 -203c47 0 112 31 112 157c0 144 -53 222 -139 222z" />
-    <glyph glyph-name="upsilontonos" unicode="&#x3cd;" horiz-adv-x="490" 
-d="M294 682c20 0 42 -15 42 -35c0 -5 -2 -13 -6 -18l-92 -122c-3 -4 -8 -8 -12 -8c-8 0 -14 6 -14 13c0 3 1 7 2 10l52 143c4 11 15 17 28 17zM171 321.3v-118.3c0 -101 12 -174 87 -174c92 0 147 110 147 208c0 96 -32 111 -61 127c-20 11 -34 25 -34 48c0 17 17 30 34 30
-c63 0 102 -73 102 -193c0 -174 -99 -259 -197 -259c-134 0 -157 90 -157 197v130c0 57 -10.5 62.9 -65 68c-2 6 -4 22 -2 28c69 9 108.5 18 137 29c8 0 13 -3 13 -7c0 0 -4 -64 -4 -113.7z" />
-    <glyph glyph-name="omegatonos" unicode="&#x3ce;" horiz-adv-x="658" 
-d="M375 684c20 0 42 -15 42 -35c0 -5 -2 -13 -6 -18l-92 -122c-3 -4 -8 -8 -12 -8c-8 0 -14 6 -14 13c0 3 1 7 2 10l52 143c4 11 15 17 28 17zM624 189c0 -104 -68 -199 -190 -199c-51 0 -91 31 -113 103c-27 -72 -60 -103 -117 -103c-90 0 -170 73 -170 204
-c0 118 70 200 183 248c7.60001 -4 12 -13.7 13 -23c-65 -41 -114 -88 -114 -210c0 -112 27 -182 101 -182c37 0 60 30 91 101c-13 33 -15 70 -15 90c0 31 11 66 37 66c27 0 30 -13 30 -37s-9 -79 -24 -116c30 -69 65 -104 105 -104c72 0 101 37 101 147
-c0 73 -17 166 -121 245c1 8.10001 1.89999 20.1 15 23c94 -45 188 -137 188 -253z" />
-    <glyph glyph-name="uni03D0" unicode="&#x3d0;" horiz-adv-x="509" 
-d="M361 598c0 46 -12 66 -54 66c-123 0 -161 -162 -183 -282c34 20 72 32 116 54c76 40 121 112 121 162zM330 698c66 0 117 -37 117 -96c0 -71 -70 -132 -164 -178c114 -7 182 -98 182 -207c0 -130 -84 -229 -211 -229c-148 0 -221 138 -221 292c0 192 117 418 297 418z
-M119 265c0 -149 71 -243 142 -243c79 0 126 100 126 202c0 115 -66 167 -135 167c-31 0 -76 -7 -130 -45c-3 -16 -3 -49 -3 -81z" />
-    <glyph glyph-name="theta1" unicode="&#x3d1;" horiz-adv-x="547" 
-d="M395 414c0 176 -92 250 -140 250c-63 0 -98 -29 -98 -99c0 -31 14 -73 56 -108c26 -22 77 -43 182 -43zM93 152v60c0 38 -9 45 -22 45s-25 -2 -42 -5l-5 29c60 9 88 21 105 30c10 4 17 7 24 7h15v-165c0 -95 39 -134 105 -134c97 0 122 241 122 356
-c-137 0 -203 19 -247 62c-45 43 -61 82 -61 142c0 69 69 119 145 119c166 0 237 -153 237 -284c35 0 55 -3 71 -12c-12 -12 -17 -29 -23 -41c-11 7 -27 14 -48 14c0 -221 -62 -387 -211 -387c-113 0 -165 51 -165 164z" />
-    <glyph glyph-name="Upsilon1" unicode="&#x3d2;" horiz-adv-x="552" 
-d="M315 122c0 -83 17 -88 97 -91c6 -6 6 -27 0 -33c-50 1 -85 2 -139 2c-55 0 -91 -1 -140 -2c-6 6 -6 27 0 33c80 3 97 8 97 91v178c0 100 -15 193 -40 242c-30 57 -62 74 -91 74c-39 0 -55 -4 -77 -22c-8 3.59998 -14.3 8.5 -17 16c23 29 63 48 105 48
-c106 0 165 -113 176 -239h3c9 59 58 239 178 239c49 0 81 -24 81 -59c0 -20 -14 -38 -35 -38c-13 0 -30 5 -36 24c-7 19 -17 33 -35 33c-59 0 -127 -143 -127 -287v-209z" />
-    <glyph glyph-name="uni03D3" unicode="&#x3d3;" horiz-adv-x="654" 
-d="M53 724c20 0 42 -15 42 -35c0 -5 -2 -13 -6 -18l-92 -122c-3 -4 -8 -8 -12 -8c-8 0 -14 6 -14 13c0 3 1 7 2 10l52 143c4 11 15 17 28 17zM417 122c0 -83 17 -88 97 -91c6 -6 6 -27 0 -33c-50 1 -85 2 -139 2c-55 0 -91 -1 -140 -2c-6 6 -6 27 0 33c80 3 97 8 97 91v178
-c0 100 -15 193 -40 242c-30 57 -62 74 -91 74c-39 0 -55 -4 -77 -22c-8 3.59998 -14.3 8.5 -17 16c23 29 63 48 105 48c106 0 165 -113 176 -239h3c9 59 58 239 178 239c49 0 81 -24 81 -59c0 -20 -14 -38 -35 -38c-13 0 -30 5 -36 24c-7 19 -17 33 -35 33
-c-59 0 -127 -143 -127 -287v-209z" />
-    <glyph glyph-name="uni03D4" unicode="&#x3d4;" horiz-adv-x="552" 
-d="M328 759c0 26 22 48 48 48s48 -22 48 -48s-22 -48 -48 -48s-48 22 -48 48zM139 759c0 26 22 48 48 48s48 -22 48 -48s-22 -48 -48 -48s-48 22 -48 48zM315 122c0 -83 17 -88 97 -91c6 -6 6 -27 0 -33c-50 1 -85 2 -139 2c-55 0 -91 -1 -140 -2c-6 6 -6 27 0 33
-c80 3 97 8 97 91v178c0 100 -15 193 -40 242c-30 57 -62 74 -91 74c-39 0 -55 -4 -77 -22c-8 3.59998 -14.3 8.5 -17 16c23 29 63 48 105 48c106 0 165 -113 176 -239h3c9 59 58 239 178 239c49 0 81 -24 81 -59c0 -20 -14 -38 -35 -38c-13 0 -30 5 -36 24
-c-7 19 -17 33 -35 33c-59 0 -127 -143 -127 -287v-209z" />
-    <glyph glyph-name="phi1" unicode="&#x3d5;" horiz-adv-x="579" 
-d="M309 -207l-66 -31l-11 18c15.7 40.2 25.6 127.9 31.8 210.5c-136.1 7.2 -228.8 87.7 -228.8 215.5c0 122.3 70.2 223.6 233.4 232.4c-2.39999 83.4 -5.69998 170.3 -9.39999 251.6l32 -2l47 10l-18 -156c-3 -26.9 -5.39999 -62.9 -7.29999 -103.4
-c143 -6.30002 232.3 -79.2 232.3 -217.6c0 -84.1 -57.1 -215.4 -229.5 -229.7c3.89999 -73 5.29999 -142.3 -6.5 -198.3zM313.8 19.8c133.2 9.5 152.2 107.3 152.2 186.2c0 94.8 -37.1 189.5 -154.6 202.5c-3 -75 -4.39999 -159.9 -4.39999 -227.5
-c0 -52.5 3.60001 -107.5 6.79999 -161.2zM269.2 409.6c-134.6 -7.20001 -155.2 -121 -155.2 -193.6c0 -84.8 39 -182.5 151.9 -195.5c5.5 84 7.10001 155.5 7.10001 155.5c0 65.9 -1.39999 147.2 -3.79999 233.6z" />
-    <glyph glyph-name="omega1" unicode="&#x3d6;" horiz-adv-x="692" 
-d="M580 217c0 146 -118 203 -230 203h-147c-37 0 -54 4 -72 38l11 11h229c170 0 288 -118 288 -244c0 -101 -59 -237 -182 -237c-51 0 -108 26 -138 105c-33 -75 -74 -105 -131 -105c-90 0 -172 45 -172 189c0 101 83 183 174 225l13 -20c-32 -17 -108 -63 -108 -198
-c0 -112 34 -162 109 -162c31 0 72 35 102 106c-13 33 -15 70 -15 90c0 31 12 66 37 66c27 0 31 -13 31 -37s-9 -79 -25 -116c29 -68 68 -109 115 -109c81 0 111 53 111 195z" />
-    <glyph glyph-name="uni03D7" unicode="&#x3d7;" horiz-adv-x="498" 
-d="M302 83c0 61 7 110 14 161l-152 -155c-16 -60 -54 -101 -79 -101c-29 0 -39 19 -39 39c0 26 25 45 71 77c14 64 17 159 17 204c0 41 -23 75 -48 75c-11 0 -29 -6 -45 -22l-17 18c18 29 44 63 81 63c46 0 73 -47 73 -134c0 -34 -2 -103 -10 -159c75 69 116 116 167 181
-c23 69 59 112 88 112c27 0 35 -12 35 -38c0 -29 -23 -61 -97 -126c-11 -60 -15 -118 -15 -172c0 -30 19 -65 40 -65c16.7 0 45.1 3.9 85.1 44.1l1.89999 2.9l19 -19l-94 -153c-42 -67 -73 -100 -125 -100c-33 0 -68 11 -89 23c-12 8 -19 21 -19 33c0 10 8 25 24 25
-c27 0 37 -11 52 -33c10 -14 22 -14 47 -14c24 0 45 20 112 125l15.5 24.1c-13.8 -7 -27.9 -11.1 -42.5 -11.1c-55 0 -71 50 -71 95z" />
-    <glyph glyph-name="uni03F0" unicode="&#x3f0;" horiz-adv-x="498" 
-d="M302 83c0 61 7 110 14 161l-152 -155c-16 -60 -54 -101 -79 -101c-29 0 -39 19 -39 39c0 26 25 45 71 77c14 64 17 159 17 204c0 41 -23 75 -48 75c-11 0 -29 -6 -45 -22l-17 18c18 29 44 63 81 63c46 0 73 -47 73 -134c0 -34 -2 -103 -10 -159c75 69 116 116 167 181
-c23 69 59 112 88 112c27 0 35 -12 35 -38c0 -29 -23 -61 -97 -126c-11 -60 -15 -118 -15 -172c0 -30 19 -65 40 -65c17 0 46 4 87 46l19 -18c-34 -44 -75 -81 -119 -81c-55 0 -71 50 -71 95z" />
-    <glyph glyph-name="uni03F1" unicode="&#x3f1;" horiz-adv-x="473" 
-d="M440 214c0 -95 -74 -224 -201 -224c-78 0 -123 29 -163 82l-4 -2c13 -144 36 -203 189 -203c95 0 122 -54 130 -95l-22 -7c-8 19 -33 34 -118 34c-170 0 -217 94 -217 368c0 208 102 272 193 272c129 0 213 -89 213 -225zM237 23c69 0 124 51 124 196
-c0 73 -37 187 -130 187c-50 0 -119 -44 -119 -202c0 -146 77 -181 125 -181z" />
-    <glyph glyph-name="uni03F2" unicode="&#x3f2;" horiz-adv-x="445" 
-d="M130 200c0 -156 77 -181 129 -181c67 0 100 17 141 68l26 -14c-39 -53 -101 -83 -167 -83c-64 0 -118 18 -157 58c-41 40 -63 91 -63 178c0 47 23 115 58 149c39 40 97 64 168 64c67 0 121 -30 160 -83l-26 -14c-40 50 -65 65 -131 65c-36 0 -78 -21 -97 -42
-c-38 -40 -41 -91 -41 -165z" />
-    <glyph glyph-name="uni03F4" unicode="&#x3f4;" horiz-adv-x="702" 
-d="M666 329c0 -84 -22 -156.3 -61.8 -213c-54.9 -78.3 -143.4 -126 -254.2 -126c-170 0 -313 123 -313 320c0 193.9 113.3 348 307 348c179 0 322 -122 322 -329zM569.1 341c-10.4 182.2 -113 281 -238.1 281c-96.8 0 -193.6 -81.2 -197.9 -281h436zM569.9 302h-436.2
-c9.5 -176.4 119.7 -276 236.3 -276c112.3 0 197.4 101.9 199.9 276z" />
-    <glyph glyph-name="uni03F5" unicode="&#x3f5;" horiz-adv-x="421" 
-d="M115 242h174c4 0 7 -2 7 -6v-20c0 -9 -13 -13 -23 -13h-158c8 -100 59 -171 148 -171c45 0 81 22 109 50l17 -18c-15 -22 -60 -76 -150 -76c-135 0 -202 107 -202 223c0 164 126 231 204 231c53 0 97 -18 133 -56l-16 -21c-44 31 -91 33 -109 33c-33 0 -126 -6 -134 -156
-z" />
-    <glyph glyph-name="uni03F9" unicode="&#x3f9;" horiz-adv-x="599" 
-d="M568 121c-35 -63 -110 -131 -222 -131c-188 0 -307 154 -307 333c0 197 141 335 302 335c138 0 204 -89 206 -94l-29 -24c-9 22 -82 79 -184 79c-78 0 -204 -47 -204 -302c0 -153 72 -283 210 -283c107 0 183 64 210 104z" />
-    <glyph glyph-name="afii10054" unicode="&#x405;" horiz-adv-x="485" 
-d="M394.7 631c10.3 -53 14.3 -81 17.8 -129c-9 -7 -22 -7.79999 -32.5 -6c-20 66 -51 128 -148.1 128c-58.9 0 -109.5 -56 -109.5 -112c0 -84.1 99.9 -121.9 159.1 -144.1c82.4 -30.9 162.5 -77.5 162.5 -183.9c0 -63.6 -36.5 -125.2 -94 -161.2
-c-34.8 -21.7 -77.8 -32.8 -123.3 -32.8c-88.7 0 -116.7 23 -179.7 23c-12 49 -16 75 -20 152c9.6 5.10001 20.2 7 32.5 3c22 -99.5 82 -142 175.5 -142c79.8 0 125 42 125 123c0 97.8 -73.7 125.9 -134.5 149c-88 33.5 -174.5 81.6 -174.5 187c0 106 89 173 190.3 173
-c97.7 0 95.6 -19 153.4 -27z" />
-    <glyph glyph-name="afii10055" unicode="&#x406;" horiz-adv-x="297" 
-d="M191 122c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-45 1 -93.4 2 -129 2c-36.3 0 -85 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c47 -1 95.5 -2 129 -2c38.5 0 86 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-401z" />
-    <glyph glyph-name="afii10056" unicode="&#x407;" horiz-adv-x="297" 
-d="M195 757c0 26 22 48 48 48s48 -22 48 -48s-22 -48 -48 -48s-48 22 -48 48zM6 757c0 26 22 48 48 48s48 -22 48 -48s-22 -48 -48 -48s-48 22 -48 48zM191 122c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-45 1 -93.4 2 -129 2c-36.3 0 -85 -1 -130 -2c-6 6 -6 27 0 33
-c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c47 -1 95.5 -2 129 -2c38.5 0 86 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-401z" />
-    <glyph glyph-name="afii10017" unicode="&#x410;" horiz-adv-x="695" 
-d="M263 283h177l-94 272h-6l-102.2 -258.7c-3.8 -10.3 3.2 -13.3 25.2 -13.3zM155 79c-15.6 -41.1 31.4 -45.4 69 -48c6 -6 6 -27 0 -33c-37 1 -87 2 -128 2c-30.3 0 -63 -1 -89 -2c-6 6 -6 27 0 33c43.5 3 74 9 100 71l227 536c13 0 40 11 55 20l206 -572
-c17.4 -48.2 51.2 -51.5 90 -55c6 -6 6 -27 0 -33c-35 1 -73 2 -114 2c-39 0 -94 -1 -131 -2c-6 6 -6 27 0 33c47.6 3.4 85.8 6.5 74 41l-58 169h-211c-24 0 -30 -4 -35 -17z" />
-    <glyph glyph-name="afii10018" unicode="&#x411;" horiz-adv-x="583" 
-d="M187 333v-252c0 -36 13 -50 72 -50c157 0 188 85 188 147c0 57 -28 155 -163 155h-97zM145 0c-51 0 -81 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c50 -1 79 -2 129 -2h233c20 0 101 2 101 2l2 -2
-c12.2 -60 17.4 -116.4 19 -171c-8.20001 -5.29999 -21.5 -6.5 -35 -5c-21 84 -43 136 -116 136h-125c-24 0 -36 -7 -36 -31v-201h109c204 0 241 -109 241 -185c0 -64.8 -37.5 -119.4 -79 -147c-57 -38 -123 -43 -204 -43c-45 0 -76 2 -109 2z" />
-    <glyph glyph-name="afii10019" unicode="&#x412;" horiz-adv-x="588" 
-d="M191 550v-184h74c83 0 142 30 142 115c0 102 -73 132 -129 132c-87 0 -87 -10 -87 -63zM191 332v-214c0 -61 13 -87 83 -87c152 0 180 61 180 134c0 90 -57 167 -194 167h-69zM148 645c36 0 90 2 125 2c186 0 215 -87 215 -154c0 -54.3 -44.9 -105.6 -95 -131v-2
-c87 -25 154 -80 154 -176c0 -86 -53 -186 -252 -186c-84 0 -110.3 2 -146 2c-37.1 0 -91 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c39 -1 93.3 -2 129 -2z" />
-    <glyph glyph-name="afii10022" unicode="&#x415;" horiz-adv-x="557" 
-d="M281 361c85 0 88 13 91 68c6 6 27 6 33 0c-1 -24 -2 -58 -2 -86c0 -34.3 1 -62 2 -88c-6 -6 -27 -6 -33 0c-3 45 -6 68 -91 68h-91v-221c0 -47 14 -63 56 -63h116c76 0 111 59 131 131c13.1 3.2 24.6 1 35 -5c-8 -51 -23 -117 -37 -167c0 0 -80 2 -128 2h-215
-c-33 0 -93 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c40 -1 98.5 -2 129 -2h255c24 0 32 1 49 4c3 0 4 -1 4 -3c2 -8 17 -104 22 -145c-9.79999 -4.70001 -20.6 -6.79999 -33 -5c-22 69 -38 109 -113 109h-75
-c-54 0 -66 -20 -66 -64v-180h91z" />
-    <glyph glyph-name="afii10028" unicode="&#x41a;" horiz-adv-x="606" 
-d="M191 122c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-45 1 -93.4 2 -129 2c-36.3 0 -85 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c47 -1 95.5 -2 129 -2c38.5 0 86 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-157
-c36 0 79 1 103 15c59 32 73 96 82 152c10 62 40 118 119 118c53 0 71 -29 71 -52c0 -29 -23 -40 -44 -40c-13 0 -27 5 -37 15c-11 11 -19 16 -32 16c-30 0 -35.8 -32.9 -40 -62c-9 -62 -32 -148 -108 -176v-5c69 0 107 -43 134 -113c58.6 -152.1 94.2 -200.1 160 -203
-c5.79999 -9.8 5.5 -22.8 0 -33l-79 1c-78 1 -115 82 -158 192c-39 100 -57 133 -171 133v-202z" />
-    <glyph glyph-name="afii10029" unicode="&#x41b;" horiz-adv-x="633" 
-d="M522 122c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-45 1 -93.4 2 -129 2c-36.3 0 -85 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v402c0 69 -9 90 -52 90h-75c-43 0 -49 -13 -49 -88c0 -164 -11 -358 -48 -450c-21 -52 -57 -88 -115 -88c-37 0 -92 14 -92 67
-c0 32 19 52 46 52c26 0 39 -15 45 -33c8 -23 19 -26 31 -26c21 0 39 25 51 66c19 62 37 182 38 385c0 110.5 -14.2 113.3 -78 115c-5.7 8.5 -6.2 23 0 33c0 0 38 -2 103 -2h237s81 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -9 -87 -92v-400z" />
-    <glyph glyph-name="afii10030" unicode="&#x41c;" horiz-adv-x="839" 
-d="M662.7 116l-25.7 418h-2l-225 -529c-4 -8 -8 -15 -14 -15s-12.2 7.9 -15 15l-207 519h-2l-38 -401c-5.39999 -56.3 0 -87 66 -92c6 -6 6 -27 0 -33c-30 1 -70 2 -94 2s-56 -1 -86 -2c-6 6 -6 27 0 33c57 5 69 30.1 74.9 90l40.1 412c7 75 1 77 -68 81c-6 6 -6 27 0 33
-l145 -2l205 -508c3.10001 -7.60001 6 -13 8 -13s5 4 9 14l212 507l131 2c6 -6 6 -27 0 -33c-68 -4 -73 -18 -68.7 -72l29.8 -421c5.80005 -82.8 8.90002 -87 76.9 -90c6 -6 6 -27 0 -33c-33.2 1 -79 2 -109 2s-70 -1 -107 -2c-6 6 -6 27 0 33c65 3 68.7 4 63.7 85z" />
-    <glyph glyph-name="afii10031" unicode="&#x41d;" horiz-adv-x="730" 
-d="M618 122c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-44 1 -91.7 2 -129 2c-37.1 0 -85 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v199h-342v-199c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-44 1 -92.7 2 -129 2c-37.7 0 -86 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91
-v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c38 -1 79 -2 129 -2c51 0 92 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-160h342v160c0 83 -17 88 -87 91c-6 6 -6 27 0 33c44 -1 91.7 -2 129 -2c38 0 89 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-401z" />
-    <glyph glyph-name="afii10032" unicode="&#x41e;" horiz-adv-x="702" 
-d="M331 622c-99 0 -198 -85 -198 -295c0 -192 115 -301 237 -301c114 0 200 105 200 284c0 202 -107 312 -239 312zM666 329c0 -84 -22 -156.3 -61.8 -213c-54.9 -78.3 -143.4 -126 -254.2 -126c-170 0 -313 123 -313 320c0 193.9 113.3 348 307 348
-c179 0 322 -122 322 -329z" />
-    <glyph glyph-name="afii10038" unicode="&#x424;" horiz-adv-x="674" 
-d="M207 -2c-6 6 -6 27 0 33c69.1 3 86.6 7.9 87 88c-108 5 -257 36 -257 206c0 162.9 133.8 204 256.8 211c-1.89999 70.6 -20.6 75.2 -86.8 78c-6 6 -6 27 0 33c38 -1 79 -2 129 -2c51 0 92 1 130 2c6 -6 6 -27 0 -33c-66.2 -2.79999 -84.9 -7.40002 -86.8 -78
-c144.9 -8 256.8 -56.1 256.8 -205c0 -159 -127 -205 -257 -212c0.399994 -80.1 17.9 -85 87 -88c6 -7 6 -24.7 0 -33c-39 1 -92.7 2 -129 2c-36 0 -91 -1 -130 -2zM379 148c84 6 177 37 177 177c0 142 -78 175 -177 182v-359zM294 148v359c-92 -7 -177 -38 -177 -176
-c0 -146 87 -177 177 -183z" />
-    <glyph glyph-name="afii10065" unicode="&#x430;" horiz-adv-x="457" 
-d="M293 233l-79 -21c-74 -19 -95 -65 -95 -110c0 -31 22 -71 72 -71c28 0 62 23 88 44c8 6 14 13 14 26v132zM293 48h-2l-20 -16c-44 -34 -74.2 -42 -109 -42c-70 0 -126 26 -126 108c0 68 69 121 165 145l86 21c3 1 6 5 6 12c0 113 -47 130 -81 130c-38 0 -80 -11 -80 -42
-c0 -11 1 -17 2 -20c2 -4 3 -11 3 -18c0 -13 -18 -34 -47 -34c-23 0 -35 12 -35 36c0 57 83 111 165 111c73 0 151 -27 151 -169v-147c0 -46 1 -85 30 -85c12.7 0 29.5 9.8 37 16c11.3 -6.3 15.3 -14.7 17 -27c-20.7 -20 -56.7 -37 -95 -37c-50.4 0 -61 27 -67 58z" />
-    <glyph glyph-name="afii10066" unicode="&#x431;" horiz-adv-x="489" 
-d="M120 231c0 -111 65 -206 138 -206c54 0 112 43 112 169c0 120 -48 210 -126 210c-104 0 -124 -116.7 -124 -173zM34 257c0 94.7 10 179 46 247c42 79 110 107 191 120c84 13 137 26 145 74c7.79999 3.90002 15.1 3.20001 22 0c-9 -112 -73 -141 -163 -151
-c-92 -10 -130 -13 -162 -68c-15 -26 -30.7 -89.7 -35 -142l2 -2c22 48 80 104 175 104c141 0 201 -113 201 -221c0 -126 -78.7 -228 -216 -228c-97 0 -206 77.7 -206 267z" />
-    <glyph glyph-name="afii10067" unicode="&#x432;" horiz-adv-x="479" 
-d="M186 246h66c62 0 88 38 88 78c0 59.5 -31 74 -83 74c-48 0 -71 -6 -71 -36v-116zM186 217v-131c0 -46 19 -55 71 -55c54 0 92 19 92 86c0 59.5 -26 100 -87 100h-76zM146 429c42.9 0 69 2 110 2c121 0 164 -30 164 -100c0 -60 -35 -92.5 -81 -101v-3
-c61 -11.5 96 -50 96 -106c0 -99 -65 -123 -151 -123c-67 0 -100 2 -137 2c-44 0 -79 -1 -112 -2c-6 6 -6 27 0 33c61 5 72 8 72 91v185c0 83 -11 87 -72 91c-6 6 -6 27 0 33c33 -1 68 -2 111 -2z" />
-    <glyph glyph-name="afii10068" unicode="&#x433;" horiz-adv-x="416" 
-d="M186 307v-185c0 -83 11 -87 72 -91c6 -6 6 -27 0 -33c-32 1 -67.7 2 -111 2c-43.7 0 -79 -1 -112 -2c-6 6 -6 27 0 33c61 5 72 8 72 91v185c0 83 -11 87 -72 91c-6 6 -6 27 0 33c33 -1 67.7 -1.60001 111 -2h126c32 0 112 2 112 2l2 -2c5.5 -53.5 9 -97 13 -150
-c-8.5 -3.60001 -17.9 -5.5 -29 -4c-14 58 -38 115 -120 115h-22c-35 0 -42 -26 -42 -83z" />
-    <glyph glyph-name="afii10069" unicode="&#x434;" horiz-adv-x="538" 
-d="M161 51c0 -11 9 -12 20 -12h129c40 0 42 16 42 49v241c0 34 -5 62 -45 62h-69c-27.3 0 -34 -12.7 -35 -28c-15 -228.7 -42 -295 -42 -312zM189 429h202c40 0 78 1 108 2c6 -6 6 -27 0 -33c-55 -4 -68 -9 -68 -91v-229c0 -37 25 -44 43 -47c19 -3 27 -11 27 -25l6 -134
-c-9.60001 -4.2 -19.3 -4.3 -28 -2c-9 40 -38 130 -127 130h-173c-90 0 -117 -92 -126 -129c-11.8 -3.2 -19.6 -2.39999 -27 1l6 133c1 18 15 24 30 26c28 3 57 12 63 39c16.6 70.4 32.7 143.7 37 236c3.89999 82.9 -14 87 -75 92c-6 6 -6 27 0 33c30 -1 69 -2 102 -2z" />
-    <glyph glyph-name="afii10070" unicode="&#x435;" horiz-adv-x="447" 
-d="M124 282l181 3c11 0.200012 15 5 15 14c0 84 -45 105 -83 105c-24 0 -94 -9 -113 -122zM386 93c12 -1 18 -6 21 -16c-40 -52 -94 -87 -170 -87c-72 0 -119 24 -153 64c-33 38 -47 92 -47 148c0 152 113 235 200 235c139 0 169 -90 169 -174c0 -11 -7 -17 -19 -17l-266 2
-c0 -58 12 -104 32 -137c31 -51 73 -72 109 -72c58 0 87 16 124 54z" />
-    <glyph glyph-name="afii10072" unicode="&#x436;" horiz-adv-x="706" 
-d="M109 0c0 0 -74 -1 -94 -2c-6 6 -6 27 0 33c39 2 49 10 66 42l45 85c25 47 58 71 115 71v3c-39 11 -56 46 -71 86c-12 31 -24 50 -45 50c-9 0 -17 -3 -23 -7s-17 -7 -30 -7c-22 0 -40 19 -40 39c0 22 24 45 57 45c58 0 85 -54 104 -101c22 -55 52 -93 123 -93v63
-c0 83 -12 87 -63 91c-6 6 -6 27 0 33c23 -1 59.6 -2 99 -2c39.8 0 76 1 100 2c6 -6 6 -27 0 -33c-51 -5 -63 -8 -63 -91v-63c71 0 101 38 123 93c19 47 46 101 104 101c33 0 57 -23 57 -45c0 -20 -18 -39 -40 -39c-13 0 -24 3 -30 7s-14 7 -23 7c-21 0 -33 -19 -45 -50
-c-15 -40 -32 -75 -71 -86v-3c57 0 90 -24 115 -71l45 -85c17 -32 27 -40 66 -42c6 -6 6 -27 0 -33c-20 1 -94 2 -94 2c-20 1 -37 24 -50 51l-43 90c-18 37 -46 64 -114 68v-87c0 -83 12 -87 63 -91c6 -6 6 -27 0 -33c-22 1 -59.6 2 -99 2c-39.8 0 -77 -1 -100 -2
-c-6 6 -6 27 0 33c51 5 63 8 63 91v87c-68 -4 -96 -31 -114 -68l-43 -90c-13 -27 -30 -50 -50 -51z" />
-    <glyph glyph-name="afii10073" unicode="&#x437;" horiz-adv-x="436" 
-d="M43 83c0 16 23 31 41 31c26 0 36.6 -13.6 45 -32c16.5 -36 27 -57 84 -57c70.5 0 93 32 93 91c0 44 -14 95 -88 95c-25 0 -36 -6 -55 -6c-9 0 -20 5 -20 21s10 22 19 22c19 0 36 -6 55 -6c64 0 71 47.5 71 89c0 40 -18 73 -73 73c-84 0 -109 -58 -128 -116
-c-9.4 -1.5 -18.9 0.399994 -27 4l13 119c54 9 100.5 28 154 28c101 0 141 -44 141 -102c0 -52 -16.5 -80 -77 -103v-3c70.5 -12 101 -52 101 -112c0 -99 -78 -129 -178 -129c-79 0 -112 21 -137 39c-21 16 -34 32 -34 54z" />
-    <glyph glyph-name="afii10074" unicode="&#x438;" horiz-adv-x="586" 
-d="M198 63l156.1 311.5c9 17.9 18.1 38 25.9 56.5c10 -1 37.8 -2 60 -2c30.8 0 71 1 111 2c6 -6 6 -27 0 -33c-61 -3 -77 -12 -77 -95v-177c0 -83 16 -92 77 -95c6 -6 6 -27 0 -33c-39 1 -80.2 2 -111 2c-39.8 0 -94 -1 -117 -2c-6 6 -6 27 0 33c51 3 72 12 72 95v227
-c0 10 -4 12 -7 12l-156.4 -312.8c-10.3 -20.5 -19.6 -40.4 -24.6 -54.2c-11 1 -38.4 2 -61 2c-32 0 -72 -1 -111 -2c-6 6 -6 27 0 33c61 3 77 12 77 95v177c0 83 -16 92 -77 95c-6 6 -6 27 0 33c38 -1 78.4 -2 111 -2c37 0 94 1 117 2c6 -6 6 -27 0 -33
-c-51 -3 -72 -12 -72 -95v-228c0 -10 4 -12 7 -12z" />
-    <glyph glyph-name="afii10075" unicode="&#x439;" horiz-adv-x="586" 
-d="M413 590c0 -55 -58 -87 -122 -87c-65 0 -120 33 -120 87c0 18 16 33 39 33c22 0 34 -14 34 -30c0 -3 0 -5 -1 -8s-1 -6 -1 -8c0 -22 20 -43 50 -43c29 0 50 20 50 42c0 3 0 6 -1 9c-1 2 -1 4 -1 7c0 17 17 31 35 31c24 0 38 -14 38 -33zM198 63l156.1 311.5
-c9 17.9 18.1 38 25.9 56.5c10 -1 37.8 -2 60 -2c30.8 0 71 1 111 2c6 -6 6 -27 0 -33c-61 -3 -77 -12 -77 -95v-177c0 -83 16 -92 77 -95c6 -6 6 -27 0 -33c-39 1 -80.2 2 -111 2c-39.8 0 -94 -1 -117 -2c-6 6 -6 27 0 33c51 3 72 12 72 95v227c0 10 -4 12 -7 12
-l-156.4 -312.8c-10.3 -20.5 -19.6 -40.4 -24.6 -54.2c-11 1 -38.4 2 -61 2c-32 0 -72 -1 -111 -2c-6 6 -6 27 0 33c61 3 77 12 77 95v177c0 83 -16 92 -77 95c-6 6 -6 27 0 33c38 -1 78.4 -2 111 -2c37 0 94 1 117 2c6 -6 6 -27 0 -33c-51 -3 -72 -12 -72 -95v-228
-c0 -10 4 -12 7 -12z" />
-    <glyph glyph-name="afii10076" unicode="&#x43a;" horiz-adv-x="502" 
-d="M386 0c-20 1 -40 24 -53 51l-43 90c-18 37 -36 64 -104 68v-87c0 -83 11 -87 62 -91c6 -6 6 -27 0 -33c-22 1 -62 2 -101 2c-44 0 -79 -1 -112 -2c-6 6 -6 27 0 33c61 5 72 8 72 91v185c0 83 -11 87 -72 91c-6 6 -6 27 0 33c33 -1 68 -2 111 -2c40 0 78 1 102 2
-c6 -6 6 -27 0 -33c-51 -5 -62 -8 -62 -91v-63c71 0 98 38 120 93c19 47 46 101 104 101c33 0 57 -23 57 -45c0 -20 -18 -39 -40 -39c-13 0 -24 3 -30 7s-14 7 -23 7c-21 0 -33 -19 -45 -50c-15 -40 -32 -75 -71 -86v-3c57 0 92 -24 117 -71l45 -85c17 -32 25 -40 64 -42
-c6 -6 6 -27 0 -33c-20 1 -98 2 -98 2z" />
-    <glyph glyph-name="afii10077" unicode="&#x43b;" horiz-adv-x="527" 
-d="M418 122c0 -82 9 -87 74 -91c5 -6 5 -27 0 -33c-28 1 -73 2 -113 2s-77 -1 -102 -2c-5 6 -5 27 0 33c52 4 62 9 62 91v210c0 34 -7 58 -45 58h-45c-40 0 -43 -26 -43 -104c0 -68 -6 -170 -26 -218c-23 -54 -51 -80 -102 -80c-46 0 -74 27 -74 58c0 22 14 42 39 42
-c28 0 34 -19 37 -38c2 -13 6 -21 19 -21c17 0 34 13 47 49c14 41 22 96 22 201c0 108 -10.3 114 -81 119c-6 6 -6 27 0 33c30 -1 69 -2 102 -2h189c40 0 78 1 108 2c6 -6 6 -27 0 -33c-55 -4 -68 -9 -68 -91v-185z" />
-    <glyph glyph-name="afii10078" unicode="&#x43c;" horiz-adv-x="680" 
-d="M117 306c2.7 83 -11 87 -72 92c-6 6 -6 27 0 33c35 -2 141 -2 174 -2l117.4 -286.3l3.60001 -10l4.79999 10.1l133.2 286.2c33 0 130 0 165 2c6 -6 6 -27 0 -33c-61 -5 -73 -8 -72 -91l2 -185c0 -83 11 -87 72 -91c6 -6 6 -27 0 -33c-39 1 -82 2 -112 2
-c-35 0 -72 -1 -108 -2c-6 6 -6 27 0 33c61 5 68 8 68 91l0.899994 241.8c0 11.8 -5.19998 10.7 -9.69998 0.400024l-164.2 -353.2c-3.29999 -3 -7 -3 -11 0l-145 354c-3.60001 8.79999 -7.7 9 -8 0l-7 -245c-2 -75 2 -85 59 -89c6 -6 6 -27 0 -33c-20 1 -67 2 -87 2
-c-16 0 -66 -1 -86 -2c-6 6 -6 27 0 33c58 3 73.3 5 76 89z" />
-    <glyph glyph-name="afii10079" unicode="&#x43d;" horiz-adv-x="586" 
-d="M479 307v-185c0 -83 11 -87 72 -91c6 -6 6 -27 0 -33c-39 1 -80.7 2 -111 2c-34.8 0 -72 -1 -108 -2c-6 6 -6 27 0 33c61 5 68 8 68 91v87h-214v-87c0 -83 7 -87 68 -91c6 -6 6 -27 0 -33c-36 1 -75.2 2 -107 2s-72 -1 -112 -2c-6 6 -6 27 0 33c61 5 72 8 72 91v185
-c0 83 -11 87 -72 91c-6 6 -6 27 0 33c40 -1 81.4 -2 111 -2c31.8 0 70 1 108 2c6 -6 6 -27 0 -33c-61 -5 -68 -8 -68 -91v-65h214v65c0 83 -7 87 -68 91c-6 6 -6 27 0 33c39 -1 79 -2 107 -2c33 0 77 0 112 2c6 -6 6 -27 0 -33c-61 -5 -72 -8 -72 -91z" />
-    <glyph glyph-name="afii10080" unicode="&#x43e;" horiz-adv-x="504" 
-d="M41 205c0 63.2 19 121.4 55.3 164c36.6 43 90.9 70 156.7 70c153 0 210 -121 210 -225c0 -61.3 -20.3 -124.2 -65.1 -168c-34.1 -33.3 -82.5 -56 -146.9 -56c-142 0 -210 113 -210 215zM238 404c-90 0 -111 -89 -111 -176c0 -77 34 -203 138 -203c47 0 112 31 112 157
-c0 144 -53 222 -139 222z" />
-    <glyph glyph-name="afii10081" unicode="&#x43f;" horiz-adv-x="586" 
-d="M437 429c40 0 78 1 108 2c6 -6 6 -27 0 -33c-55 -4 -68 -9 -68 -91v-185c0 -82 9 -87 74 -91c5 -6 5 -27 0 -33c-28 1 -73 2 -113 2s-77 -1 -102 -2c-5 6 -5 27 0 33c52 4 62 9 62 91v217c0 40 -6 51 -43 51h-121c-39 0 -42 -20 -42 -51v-217c0 -82 10 -86 61 -91
-c6 -6 6 -27 0 -33c-30 1 -60 2 -100 2s-88 -1 -118 -2c-6 6 -6 27 0 33c65 4 78 9 78 91v185c0 82 -13 87 -68 91c-6 6 -6 27 0 33c30 -1 68 -2 108 -2h284z" />
-    <glyph glyph-name="afii10082" unicode="&#x440;" horiz-adv-x="519" 
-d="M175 331c-11.6 -14.3 -16 -23 -16 -44v-182c0 -36.1 3.89999 -41.9 24 -59.9c18 -16.1 53 -21.1 71 -21.1c112 0 141 102 141 184c0 113 -55 185 -119 185c-29.2 0 -75 -30 -101 -62zM156 368c0.5 -9.60001 5.39999 -10.3 11 -4c39.5 44.5 90.5 75 137 75
-c102 0 177 -98 177 -204c0 -81 -27 -143 -74 -189c-41 -39 -91 -56 -147 -56c-31.6 0 -62.5 5.6 -87 15.5c-10.2 4.2 -14 5.5 -14 -7.5v-108c0 -83 11 -87 82 -91c6 -6 6 -27 0 -33c-33 1 -81 2 -121 2s-77 -1 -112 -2c-6 6 -6 27 0 33c61 3 72 8 72 91v427
-c0 58 -11 63 -65 68c-2 6 -4 22 -2 28c69 9 95 18 123 29c8 0 9.89999 -3.39999 12 -8c4.7 -10.3 6.5 -36 8 -66z" />
-    <glyph glyph-name="afii10083" unicode="&#x441;" horiz-adv-x="428" 
-d="M398 91c-50 -82 -103 -101 -163 -101c-126 0 -198 89 -198 218c0 142 106 231 205 231c96 0 153 -40 153 -95c0 -31 -28 -44 -49 -44s-35 9 -38 36c-4 35 -12 70 -71 70c-66 0 -114 -66 -114 -176c0 -117 61 -191 134 -191c43 0 86 22 120 66c9 -1 17 -5 21 -14z" />
-    <glyph glyph-name="afii10084" unicode="&#x442;" horiz-adv-x="445" 
-d="M182 122v270h-15c-82 0 -97 -28 -114 -109c-13 0 -27 4 -27 4c7 46 11 90 12 148c40 -3 96 -6 146 -6h75c50 0 125 4 148 6c1 -58 5 -102 11 -148c0 0 -13 -4 -26 -4c-17 81 -33 109 -114 109h-17v-270c0 -83 11 -88 72 -91c6 -6 6 -27 0 -33c-38 1 -76.7 2 -111 2
-c-33.3 0 -73 -1 -112 -2c-6 6 -6 27 0 33c61 3 72 8 72 91z" />
-    <glyph glyph-name="afii10085" unicode="&#x443;" horiz-adv-x="515" 
-d="M204 -160c-36 -64 -76 -72 -97 -72c-27 0 -47 16 -47 37c0 13 15 43 44 43c11 0 15 -3 29 -3c25 0 39 9 50 29c15 31 27.1 58.6 39 92c10 28 -5.3 73.9 -14 94l-113.1 263c-26.2 61 -39.2 70 -78.9 75c-6 6 -6 27 0 33c20 -1 47 -2 81 -2c36 0 76 1 113 2
-c6 -6 6 -27 0 -33c-56 -4.29999 -50.8 -22.8 -32.8 -65l88.7 -208c8.5 -19.8 16.9 -17.1 23.9 -1l99.2 229c16 36 -16.4 42 -48 45c-6 6 -6 27 0 33c30 -1 61 -2 91 -2c28 0 51 1 71 2c6 -6 6 -27 0 -33c-47 -5.70001 -61.3 -21.7 -81 -64c-52.2 -112.4 -97 -215 -177 -408
-c-12.3 -29.6 -25.4 -58.2 -41 -86z" />
-    <glyph glyph-name="afii10086" unicode="&#x444;" horiz-adv-x="657" 
-d="M221 30c27 0 49 14 68 44v288c-22 27 -41 37 -63 37c-87 0 -105 -90 -105 -177c0 -84 18 -192 100 -192zM437 399c-22 0 -47 -10 -69 -42v-289c22 -32 44 -38 65 -38c87 0 103 91 103 178c0 84 -16 191 -99 191zM368 583v-189c22 27 50 45 97 45c100 0 153 -94 153 -205
-c0 -135 -71 -244 -175 -244c-31 0 -53 7 -75 29v-129c0 -83 11 -88 72 -91c6 -6 6 -27 0 -33c-33 1 -71 2 -111 2s-77 -1 -112 -2c-6 6 -6 27 0 33c61 3 72 8 72 91v140c-26 -28 -56 -40 -96 -40c-100 0 -154 95 -154 203c0 160 85 246 176 246c31 0 55 -13 74 -34v154
-c0 75 -6 78 -64 82c-6 6 -8 22 -6 30c40 3 115 17 140 27c9 0 13 -3 13 -10c0 0 -4 -40 -4 -105z" />
-    <glyph glyph-name="afii10088" unicode="&#x446;" horiz-adv-x="577" 
-d="M225 39h126c39 0 42 20 42 51v217c0 82 -10 86 -61 91c-6 6 -6 27 0 33c30 -1 60 -2 100 -2s78 1 108 2c6 -6 6 -27 0 -33c-55 -4 -68 -9 -68 -91v-185c0 -80 16.3 -86 39 -91c13.8 -3 29 -8 30 -26l6 -133c-8.29999 -2.60001 -16.9 -3.3 -26 -1c-13 49 -42 129 -126 129
-h-252c-40 0 -78 -1 -108 -2c-6 6 -6 27 0 33c55 4 68 9 68 91v185c0 82 -9 87 -64 91c-5 6 -5 27 0 33c28 -1 63 -2 103 -2s77 1 102 2c5 -6 5 -27 0 -33c-52 -4 -62 -9 -62 -91v-217c0 -40 6 -51 43 -51z" />
-    <glyph glyph-name="uni0450" unicode="&#x450;" horiz-adv-x="447" 
-d="M210 671l70 -126c5 -10 6 -17 6 -24c0 -5 -7 -11 -15 -11c-6 0 -13 5 -29 20l-114 109l2 11c8 6 31 23 65 23c5 0 11 -1 15 -2zM124 282l181 3c11 0.200012 15 5 15 14c0 84 -45 105 -83 105c-24 0 -94 -9 -113 -122zM386 93c12 -1 18 -6 21 -16
-c-40 -52 -94 -87 -170 -87c-72 0 -119 24 -153 64c-33 38 -47 92 -47 148c0 152 113 235 200 235c139 0 169 -90 169 -174c0 -11 -7 -17 -19 -17l-266 2c0 -58 12 -104 32 -137c31 -51 73 -72 109 -72c58 0 87 16 124 54z" />
-    <glyph glyph-name="afii10071" unicode="&#x451;" horiz-adv-x="447" 
-d="M99 575c0 26 21 48 47 48s47 -22 47 -48s-21 -47 -47 -47s-47 21 -47 47zM268 575c0 26 21 48 47 48s47 -22 47 -48s-21 -47 -47 -47s-47 21 -47 47zM124 282l181 3c11 0.200012 15 5 15 14c0 84 -45 105 -83 105c-24 0 -94 -9 -113 -122zM386 93c12 -1 18 -6 21 -16
-c-40 -52 -94 -87 -170 -87c-72 0 -119 24 -153 64c-33 38 -47 92 -47 148c0 152 113 235 200 235c139 0 169 -90 169 -174c0 -11 -7 -17 -19 -17l-266 2c0 -58 12 -104 32 -137c31 -51 73 -72 109 -72c58 0 87 16 124 54z" />
-    <glyph glyph-name="afii10100" unicode="&#x453;" horiz-adv-x="416" 
-d="M260 671c3 1 9 2 14 2c6.39999 0 32 -1 55 -23l3 -11l-115 -109c-15 -15 -23 -19 -30 -19s-14 6 -14 13c0 11.2 3.3 15.2 11.4 28zM186 307v-185c0 -83 11 -87 72 -91c6 -6 6 -27 0 -33c-32 1 -67.7 2 -111 2c-43.7 0 -79 -1 -112 -2c-6 6 -6 27 0 33c61 5 72 8 72 91
-v185c0 83 -11 87 -72 91c-6 6 -6 27 0 33c33 -1 67.7 -1.60001 111 -2h126c32 0 112 2 112 2l2 -2c5.5 -53.5 9 -97 13 -150c-8.5 -3.60001 -17.9 -5.5 -29 -4c-14 58 -38 115 -120 115h-22c-35 0 -42 -26 -42 -83z" />
-    <glyph glyph-name="afii10102" unicode="&#x455;" horiz-adv-x="390" 
-d="M48 138c6 6 25 7 31 1c6 -25 17 -69 39 -92c10.3 -10.7 32 -24 71 -24c37 0 85 21 85 70c0 43 -19 64 -102 98c-77 32 -110 63 -110 136c0 64 67 112 141 112c52 0 100 -14 131 -19c-1 -33 -3 -70 -6 -106c-6 -6 -26 -7 -32 -1c-13 85 -71 93 -93 93
-c-34 0 -70 -23 -70 -64c0 -55 39.8 -70.5 100 -92.8c68 -25.2 117 -64.9 117 -133.2c0 -99 -103 -126 -159 -126c-37 0 -64 4 -91 11c-7 2 -13 2 -20 2c-5 0 -15 -1 -25 -3c0 42 -3 89 -7 138z" />
-    <glyph glyph-name="afii10103" unicode="&#x456;" horiz-adv-x="271" 
-d="M90 599c0 24 28 48 52 48c27 0 48 -28 48 -52c0 -21.1 -24 -48 -52 -48c-24 0 -48 26 -48 52zM181 122c0 -83 11 -87 72 -91c6 -6 6 -27 0 -33c-33 1 -71 2 -111 2s-79 -1 -112 -2c-6 6 -6 27 0 33c61 5 72 8 72 91v195c0 57 -10.5 62.9 -65 68c-2 6 -4 22 -2 28
-c69 9 108.5 18 137 29c8 0 13 -3 13 -7c0 0 -4 -64 -4 -113.7v-199.3z" />
-    <glyph glyph-name="afii10104" unicode="&#x457;" horiz-adv-x="271" 
-d="M1 573c0 26 21 48 47 48s47 -22 47 -48s-21 -47 -47 -47s-47 21 -47 47zM170 573c0 26 21 48 47 48s47 -22 47 -48s-21 -47 -47 -47s-47 21 -47 47zM181 122c0 -83 11 -87 72 -91c6 -6 6 -27 0 -33c-33 1 -71 2 -111 2s-79 -1 -112 -2c-6 6 -6 27 0 33c61 5 72 8 72 91
-v195c0 57 -10.5 62.9 -65 68c-2 6 -4 22 -2 28c69 9 108.5 18 137 29c8 0 13 -3 13 -7c0 0 -4 -64 -4 -113.7v-199.3z" />
-    <glyph glyph-name="afii10105" unicode="&#x458;" horiz-adv-x="272" 
-d="M99 599c0 24 28 48 52 48c27 0 48 -28 48 -52c0 -21.1 -24 -48 -52 -48c-24 0 -48 26 -48 52zM113 317c0 57 -11 63 -65 68c-2 6 -4 22 -2 28c69 9 109 18 137 29c8 0 13 -3 13 -7c0 0 -4 -64 -4 -114v-211c0 -189 -28 -261 -75 -299c-37 -31 -89 -34 -110 -34
-c-19 0 -55 14 -55 43c0 18 21 38 32 38c22 0 34 -16 44 -26c7 -7 20 -11 31 -11c50 0 54 123 54 255v241z" />
-    <glyph glyph-name="afii10109" unicode="&#x45c;" horiz-adv-x="502" 
-d="M300 671c3 1 9 2 14 2c6.39999 0 32 -1 55 -23l3 -11l-115 -109c-15 -15 -23 -19 -30 -19s-14 6 -14 13c0 11.2 3.3 15.2 11.4 28zM386 0c-20 1 -40 24 -53 51l-43 90c-18 37 -36 64 -104 68v-87c0 -83 11 -87 62 -91c6 -6 6 -27 0 -33c-22 1 -62 2 -101 2
-c-44 0 -79 -1 -112 -2c-6 6 -6 27 0 33c61 5 72 8 72 91v185c0 83 -11 87 -72 91c-6 6 -6 27 0 33c33 -1 68 -2 111 -2c40 0 78 1 102 2c6 -6 6 -27 0 -33c-51 -5 -62 -8 -62 -91v-63c71 0 98 38 120 93c19 47 46 101 104 101c33 0 57 -23 57 -45c0 -20 -18 -39 -40 -39
-c-13 0 -24 3 -30 7s-14 7 -23 7c-21 0 -33 -19 -45 -50c-15 -40 -32 -75 -71 -86v-3c57 0 92 -24 117 -71l45 -85c17 -32 25 -40 64 -42c6 -6 6 -27 0 -33c-20 1 -98 2 -98 2z" />
-    <glyph glyph-name="uni045D" unicode="&#x45d;" horiz-adv-x="586" 
-d="M268 671l70 -126c5 -10 6 -17 6 -24c0 -5 -7 -11 -15 -11c-6 0 -13 5 -29 20l-114 109l2 11c8 6 31 23 65 23c5 0 11 -1 15 -2zM198 63l156.1 311.5c9 17.9 18.1 38 25.9 56.5c10 -1 37.8 -2 60 -2c30.8 0 71 1 111 2c6 -6 6 -27 0 -33c-61 -3 -77 -12 -77 -95v-177
-c0 -83 16 -92 77 -95c6 -6 6 -27 0 -33c-39 1 -80.2 2 -111 2c-39.8 0 -94 -1 -117 -2c-6 6 -6 27 0 33c51 3 72 12 72 95v227c0 10 -4 12 -7 12l-156.4 -312.8c-10.3 -20.5 -19.6 -40.4 -24.6 -54.2c-11 1 -38.4 2 -61 2c-32 0 -72 -1 -111 -2c-6 6 -6 27 0 33
-c61 3 77 12 77 95v177c0 83 -16 92 -77 95c-6 6 -6 27 0 33c38 -1 78.4 -2 111 -2c37 0 94 1 117 2c6 -6 6 -27 0 -33c-51 -3 -72 -12 -72 -95v-228c0 -10 4 -12 7 -12z" />
-    <glyph glyph-name="afii10110" unicode="&#x45e;" horiz-adv-x="515" 
-d="M393 579c0 -55 -58 -87 -122 -87c-65 0 -120 33 -120 87c0 18 16 33 39 33c22 0 34 -14 34 -30c0 -3 0 -5 -1 -8s-1 -6 -1 -8c0 -22 20 -43 50 -43c29 0 50 20 50 42c0 3 0 6 -1 9c-1 2 -1 4 -1 7c0 17 17 31 35 31c24 0 38 -14 38 -33zM204 -160
-c-36 -64 -76 -72 -97 -72c-27 0 -47 16 -47 37c0 13 15 43 44 43c11 0 15 -3 29 -3c25 0 39 9 50 29c15 31 27.1 58.6 39 92c10 28 -5.3 73.9 -14 94l-113.1 263c-26.2 61 -39.2 70 -78.9 75c-6 6 -6 27 0 33c20 -1 47 -2 81 -2c36 0 76 1 113 2c6 -6 6 -27 0 -33
-c-56 -4.29999 -50.8 -22.8 -32.8 -65l88.7 -208c8.5 -19.8 16.9 -17.1 23.9 -1l99.2 229c16 36 -16.4 42 -48 45c-6 6 -6 27 0 33c30 -1 61 -2 91 -2c28 0 51 1 71 2c6 -6 6 -27 0 -33c-47 -5.70001 -61.3 -21.7 -81 -64c-52.2 -112.4 -97 -215 -177 -408
-c-12.3 -29.6 -25.4 -58.2 -41 -86z" />
-    <glyph glyph-name="uni0470" unicode="&#x470;" horiz-adv-x="687" 
-d="M614 535h29c12 0 23 -2 23 -12c0 -7 -7 -9 -15 -11c-22 -7 -60 -18 -60 -120c0 -193.5 -107.3 -257.4 -210 -269v-52c0 -30 15 -44 55 -44h26c5 0 9 -3 9 -8v-19l-2 -2s-87 2 -126 2c-36 0 -129 -2 -129 -2l-2 2v19c0 5 3 8 8 8h26c41 0 55 16 55 44v52.4
-c-102.1 12 -205 71.3 -205 245.6c0 128 -39 139 -61 145c-8 2 -13 4 -13 9c0 11 9 12 20 12h31c61 0 92 -52 92 -150c0 -159.5 70.8 -214.7 136 -230v419c0 30 -15 44 -55 44h-26c-5 0 -9 3 -9 8v19l2 1s87 -1 126 -1c36 0 129 1 129 1l2 -1v-19c0 -5 -3 -8 -8 -8h-26
-c-41 0 -55 -16 -55 -44v-420.5c133.5 27.1 142 204.7 142 242.5c0 78 18 139 91 139z" />
-    <glyph glyph-name="uni0471" unicode="&#x471;" horiz-adv-x="638" 
-d="M282 20v598c0 28 -9 44 -43 44h-19c-5 0 -8 3 -8 8v18l2 2s68 -2 104 -2c14 0 37 2 37 2l1 -2c0.299988 -222.6 0.5 -445.3 0.799988 -667.9c86.7 10.3 141.2 61.6 141.2 221.9c0 39 -14 83 -14 121c0 36 13 67 56 67h45c11 0 19 -1 19 -12c0 -5 -5 -7 -13 -9
-c-29 -6 -39 -25 -39 -52c0 -34 15 -81 15 -131c0 -165.5 -93.2 -226.3 -210.1 -236.4l0.100006 -116.6c0 -28 10 -44 43 -44h18c5 0 9 -3 9 -8v-19l-2 -2s-68 2 -107 2c-36 0 -104 -2 -104 -2l-2 2v19c0 5 3 8 8 8h19c34 0 43 16 43 44v116.5
-c-116.6 10 -211 70.7 -211 236.5c0 50 16 97 16 131c0 27 -11 46 -40 52c-7 2 -13 4 -13 9c0 11 9 12 20 12h45c43 0 55 -31 55 -67c0 -38 -13 -82 -13 -121c0 -160.5 58.5 -211.8 141 -222z" />
-    <glyph glyph-name="uni1E7A" unicode="&#x1e7a;" horiz-adv-x="661" 
-d="M538 715c-17 0 -41 12 -41 41c0 26 18 42 41 42c20 0 41 -16 41 -42c0 -25 -22 -41 -41 -41zM154 718c-24 0 -41 18 -41 41c0 21 16 41 41 41c23 0 41 -19 41 -41c0 -21 -17 -41 -41 -41zM433.3 743h-190.3c-7.7 0 -11.1 11 -11.1 18c0 12 9.40001 32 18.7 32h191.2
-c8.5 0 11.9 -11 11.9 -17c0 -12 -9.30002 -33 -20.4 -33zM172 523v-257c0 -65 2 -141 51 -188c30.1 -28.9 71 -47 119 -47c169 0 184 134 184 246v246c0 81 -17 84 -92 91c-6 6 -6 27 0 33c46 -1 94.5 -2 116 -2c23.2 0 64 1 102 2c6 -6 6 -27 0 -33
-c-60 -7 -77 -10.7 -77 -91v-228c0 -178 -49 -305 -254 -305c-102.5 0 -234 39 -234 243v290c0 83 -17 88 -77 91c-6 6 -6 27 0 33c39 -1 80 -2 119 -2c39.4 0 88 1 135 2c6 -6 6 -27 0 -33c-77 -3 -92 -8 -92 -91z" />
-    <glyph glyph-name="uni1E7B" unicode="&#x1e7b;" horiz-adv-x="531" 
-d="M132 684c0 26 21 48 47 48s47 -22 47 -48s-21 -47 -47 -47s-47 21 -47 47zM301 684c0 26 21 48 47 48s47 -22 47 -48s-21 -47 -47 -47s-47 21 -47 47zM363 518h-224c-9 0 -13 11 -13 18c0 12 11 32 22 32h225c10 0 14 -11 14 -17c0 -12 -11 -33 -24 -33zM217 -10
-c-99 0 -129 67 -129 136v192c0 65 -14 76 -62 80c-6 6 -6 27 0 33c34 -1 70 -2 102 -2c15 0 30 1 35 2c5 0 8 -3 8 -6c0 0 -4 -73 -4 -103v-182c0 -89 50 -103 80 -103c25 0 63 16 100 48c14 12 16 20 16 39v193c0 66 -13 78 -62 81c-6 6 -6 27 0 33c34 -1 70 -2 102 -2
-c15 0 30 1 35 2c5 0 8 -3 8 -6c0 0 -4 -73 -4 -103v-192c0 -49 9 -68 73 -73c6 -6 6 -21 0 -27c-61 -7 -96 -22 -118 -40c-6.5 -2.5 -11 -3 -19 0c0 0 -8.5 33.5 -11 59c-0.700012 7 -10 5 -15 1c-49 -40 -96 -60 -135 -60z" />
-    <glyph glyph-name="uni1E7C" unicode="&#x1e7c;" horiz-adv-x="652" 
-d="M386 747c22 0 33 10 47 52c11 1 21 -2 27 -6c-12 -60 -41 -99 -87 -99c-22 0 -43 18 -64 32c-18 11 -37 19 -54 19c-26 0 -36 -15 -46 -48c-11 -2 -21 -1 -27 5c14 59 37 98 80 98c30 0 52 -20 72 -34c16 -12 33 -19 52 -19zM448 614c-6 6 -6 27 0 33c41 -1 86 -2 109 -2
-s58 1 88 2c6 -6 6 -27 0 -33c-63 -7 -79.1 -45.7 -98.3 -93l-206.7 -510c-5.79999 -14.3 -13 -23 -24 -23c-10 0 -17 7.4 -23 23l-197.5 512c-26.6 69 -34.5 86 -89.5 91c-6 6 -7 27 -1 33c33 -1 67.7 -2 104 -2c36 0 81 1 121 2c6 -6 6 -27 0 -33
-c-68 -7 -73.8 -20.5 -50.6 -80l159.1 -407h4.60001l157.9 401c21.4 54.4 21 81 -53 86z" />
-    <glyph glyph-name="uni1E7D" unicode="&#x1e7d;" horiz-adv-x="497" 
-d="M325 573c22 0 33 10 47 52c11 1 21 -2 27 -6c-12 -60 -41 -99 -87 -99c-22 0 -43 18 -64 32c-18 11 -37 19 -54 19c-26 0 -36 -15 -46 -48c-11 -2 -21 -1 -27 5c14 59 37 98 80 98c30 0 52 -20 72 -34c16 -12 33 -19 52 -19zM325 398c-6 6 -6 27 0 33c25 -1 59 -2 92 -2
-c26 0 50 1 70 2c6 -6 6 -27 0 -33c-56 -5 -66.9 -30.1 -85.6 -74l-133.4 -313c-7.10001 -16.6 -14 -23 -24 -23c-13 0 -19 6 -25 21l-127.6 316c-20.4 50.6 -27.4 66.7 -80.4 73c-6 6 -6 27 0 33c30 -1 60 -2 93 -2s68 1 101 2c6 -6 6 -27 0 -33c-53.3 -7 -49 -19 -31.1 -67
-l72.1 -193c15.6 -41.8 20.8 -42.5 37 -3l80.7 196c20.9 50.8 15.3 63 -38.7 67z" />
-    <glyph glyph-name="uni1E7E" unicode="&#x1e7e;" horiz-adv-x="652" 
-d="M253 -156c0 24 28 48 52 48c27 0 48 -28 48 -52c0 -21.1 -24 -48 -52 -48c-24 0 -48 26 -48 52zM448 614c-6 6 -6 27 0 33c41 -1 86 -2 109 -2s58 1 88 2c6 -6 6 -27 0 -33c-63 -7 -79.1 -45.7 -98.3 -93l-206.7 -510c-5.79999 -14.3 -13 -23 -24 -23
-c-10 0 -17 7.4 -23 23l-197.5 512c-26.6 69 -34.5 86 -89.5 91c-6 6 -7 27 -1 33c33 -1 67.7 -2 104 -2c36 0 81 1 121 2c6 -6 6 -27 0 -33c-68 -7 -73.8 -20.5 -50.6 -80l159.1 -407h4.60001l157.9 401c21.4 54.4 21 81 -53 86z" />
-    <glyph glyph-name="uni1E7F" unicode="&#x1e7f;" horiz-adv-x="497" 
-d="M192 -156c0 24 28 48 52 48c27 0 48 -28 48 -52c0 -21.1 -24 -48 -52 -48c-24 0 -48 26 -48 52zM325 398c-6 6 -6 27 0 33c25 -1 59 -2 92 -2c26 0 50 1 70 2c6 -6 6 -27 0 -33c-56 -5 -66.9 -30.1 -85.6 -74l-133.4 -313c-7.10001 -16.6 -14 -23 -24 -23
-c-13 0 -19 6 -25 21l-127.6 316c-20.4 50.6 -27.4 66.7 -80.4 73c-6 6 -6 27 0 33c30 -1 60 -2 93 -2s68 1 101 2c6 -6 6 -27 0 -33c-53.3 -7 -49 -19 -31.1 -67l72.1 -193c15.6 -41.8 20.8 -42.5 37 -3l80.7 196c20.9 50.8 15.3 63 -38.7 67z" />
-    <glyph glyph-name="Wgrave" unicode="&#x1e80;" horiz-adv-x="951" 
-d="M367 818l121 -84c11 -8 15 -14 15 -21c0 -8 -7 -15 -15 -15s-22 3 -43 12l-154 63c18.3 17.7 41.8 33.4 76 45zM810 565c15.3 42.6 -25 46 -66 49c-6 6 -6 27 0 33c40 -1 84 -2 110 -2s58 1 87 2c6 -6 6 -27 0 -33c-55 -3 -73.1 -26.3 -86 -61l-201 -539
-c-5 -15 -12 -26 -23 -26c-12 0 -17.1 10 -23 27l-115 332c-5.89999 17.1 -10 28 -14 28c-5 0 -8.10001 -5 -17 -25l-149 -335c-7.39999 -16.6 -13 -27 -26 -27c-11.5 0 -16.6 11.1 -22 27l-188 541c-18.6 53.5 -26 55 -71 58c-6 6 -6 27 0 33c29 -1 58.3 -2 93 -2
-c39 0 83 1 116 2c6 -6 6 -27 0 -33c-35 -2 -61.6 -6.90002 -50 -42l146.2 -442.3l4.29999 -1l129.5 293.3c7.5 16.9 9 24.7 9 35c0 9 -3.10001 19 -7 31l-23 66c-9 25.7 -31 57 -84 60c-6 6 -6 27 0 33c32 -1 67 -2 100 -2c40 0 84 1 125 2c6 -6 6 -27 0 -33
-c-34 -3 -69.5 -6.20001 -52 -60l137.5 -422l3.20001 -1.3z" />
-    <glyph glyph-name="wgrave" unicode="&#x1e81;" horiz-adv-x="747" 
-d="M320 671l70 -126c5 -10 6 -17 6 -24c0 -5 -7 -11 -15 -11c-6 0 -13 5 -29 20l-114 109l2 11c8 6 31 23 65 23c5 0 11 -1 15 -2zM203 398c-48 -3 -49 -19 -30.1 -67l80 -206c12.9 -32.5 15.1 -31 28.1 2l70 177l-6.39999 16c-17.9 44.8 -29.6 73.5 -76.6 78
-c-6 6 -6 27 0 33c30 -1 63 -2 88 -2c30 0 70 1 100 2c6 -6 6 -27 0 -33c-53 -4 -55 -14 -36.5 -61l86.3 -219c8.20001 -20.8 12.2 -21 22.2 4l83.6 208c14.1 35.1 24.4 64 -50.6 68c-6 6 -6 27 0 33c30 -1 72 -2 102 -2s52 1 72 2c6 -6 6 -27 0 -33
-c-51 -3 -68.1 -31.1 -84.5 -72l-130.5 -317c-6 -15 -14 -21 -23 -21c-10 0 -18 6 -24 20l-103 248l-101 -246c-7 -16 -15 -22 -24 -22c-10 0 -18 6 -24 20l-130.9 323c-21.1 52 -32 62.2 -79.1 67c-6 6 -6 27 0 33c26.2 -1 53 -2 91 -2c36 0 71 1 101 2c6 -6 6 -27 0 -33z
-" />
-    <glyph glyph-name="Wacute" unicode="&#x1e82;" horiz-adv-x="951" 
-d="M510 819c28.6 -13.3 49.3 -30.7 62 -52l-144 -58c-21 -9 -33 -12 -42 -12s-15 7 -15 15c0 7 2 12 15 21zM810 565c15.3 42.6 -25 46 -66 49c-6 6 -6 27 0 33c40 -1 84 -2 110 -2s58 1 87 2c6 -6 6 -27 0 -33c-55 -3 -73.1 -26.3 -86 -61l-201 -539
-c-5 -15 -12 -26 -23 -26c-12 0 -17.1 10 -23 27l-115 332c-5.89999 17.1 -10 28 -14 28c-5 0 -8.10001 -5 -17 -25l-149 -335c-7.39999 -16.6 -13 -27 -26 -27c-11.5 0 -16.6 11.1 -22 27l-188 541c-18.6 53.5 -26 55 -71 58c-6 6 -6 27 0 33c29 -1 58.3 -2 93 -2
-c39 0 83 1 116 2c6 -6 6 -27 0 -33c-35 -2 -61.6 -6.90002 -50 -42l146.2 -442.3l4.29999 -1l129.5 293.3c7.5 16.9 9 24.7 9 35c0 9 -3.10001 19 -7 31l-23 66c-9 25.7 -31 57 -84 60c-6 6 -6 27 0 33c32 -1 67 -2 100 -2c40 0 84 1 125 2c6 -6 6 -27 0 -33
-c-34 -3 -69.5 -6.20001 -52 -60l137.5 -422l3.20001 -1.3z" />
-    <glyph glyph-name="wacute" unicode="&#x1e83;" horiz-adv-x="747" 
-d="M418 671c3 1 9 2 14 2c6.39999 0 32 -1 55 -23l3 -11l-115 -109c-15 -15 -23 -19 -30 -19s-14 6 -14 13c0 11.2 3.29999 15.2 11.4 28zM203 398c-48 -3 -49 -19 -30.1 -67l80 -206c12.9 -32.5 15.1 -31 28.1 2l70 177l-6.39999 16c-17.9 44.8 -29.6 73.5 -76.6 78
-c-6 6 -6 27 0 33c30 -1 63 -2 88 -2c30 0 70 1 100 2c6 -6 6 -27 0 -33c-53 -4 -55 -14 -36.5 -61l86.3 -219c8.20001 -20.8 12.2 -21 22.2 4l83.6 208c14.1 35.1 24.4 64 -50.6 68c-6 6 -6 27 0 33c30 -1 72 -2 102 -2s52 1 72 2c6 -6 6 -27 0 -33
-c-51 -3 -68.1 -31.1 -84.5 -72l-130.5 -317c-6 -15 -14 -21 -23 -21c-10 0 -18 6 -24 20l-103 248l-101 -246c-7 -16 -15 -22 -24 -22c-10 0 -18 6 -24 20l-130.9 323c-21.1 52 -32 62.2 -79.1 67c-6 6 -6 27 0 33c26.2 -1 53 -2 91 -2c36 0 71 1 101 2c6 -6 6 -27 0 -33z
-" />
-    <glyph glyph-name="Wdieresis" unicode="&#x1e84;" horiz-adv-x="951" 
-d="M323 758c0 26 21 48 47 48s47 -22 47 -48s-21 -47 -47 -47s-47 21 -47 47zM492 758c0 26 21 48 47 48s47 -22 47 -48s-21 -47 -47 -47s-47 21 -47 47zM810 565c15.3 42.6 -25 46 -66 49c-6 6 -6 27 0 33c40 -1 84 -2 110 -2s58 1 87 2c6 -6 6 -27 0 -33
-c-55 -3 -73.1 -26.3 -86 -61l-201 -539c-5 -15 -12 -26 -23 -26c-12 0 -17.1 10 -23 27l-115 332c-5.89999 17.1 -10 28 -14 28c-5 0 -8.10001 -5 -17 -25l-149 -335c-7.39999 -16.6 -13 -27 -26 -27c-11.5 0 -16.6 11.1 -22 27l-188 541c-18.6 53.5 -26 55 -71 58
-c-6 6 -6 27 0 33c29 -1 58.3 -2 93 -2c39 0 83 1 116 2c6 -6 6 -27 0 -33c-35 -2 -61.6 -6.90002 -50 -42l146.2 -442.3l4.29999 -1l129.5 293.3c7.5 16.9 9 24.7 9 35c0 9 -3.10001 19 -7 31l-23 66c-9 25.7 -31 57 -84 60c-6 6 -6 27 0 33c32 -1 67 -2 100 -2
-c40 0 84 1 125 2c6 -6 6 -27 0 -33c-34 -3 -69.5 -6.20001 -52 -60l137.5 -422l3.20001 -1.3z" />
-    <glyph glyph-name="wdieresis" unicode="&#x1e85;" horiz-adv-x="747" 
-d="M238 573c0 26 21 48 47 48s47 -22 47 -48s-21 -47 -47 -47s-47 21 -47 47zM407 573c0 26 21 48 47 48s47 -22 47 -48s-21 -47 -47 -47s-47 21 -47 47zM203 398c-48 -3 -49 -19 -30.1 -67l80 -206c12.9 -32.5 15.1 -31 28.1 2l70 177l-6.39999 16
-c-17.9 44.8 -29.6 73.5 -76.6 78c-6 6 -6 27 0 33c30 -1 63 -2 88 -2c30 0 70 1 100 2c6 -6 6 -27 0 -33c-53 -4 -55 -14 -36.5 -61l86.3 -219c8.20001 -20.8 12.2 -21 22.2 4l83.6 208c14.1 35.1 24.4 64 -50.6 68c-6 6 -6 27 0 33c30 -1 72 -2 102 -2s52 1 72 2
-c6 -6 6 -27 0 -33c-51 -3 -68.1 -31.1 -84.5 -72l-130.5 -317c-6 -15 -14 -21 -23 -21c-10 0 -18 6 -24 20l-103 248l-101 -246c-7 -16 -15 -22 -24 -22c-10 0 -18 6 -24 20l-130.9 323c-21.1 52 -32 62.2 -79.1 67c-6 6 -6 27 0 33c26.2 -1 53 -2 91 -2c36 0 71 1 101 2
-c6 -6 6 -27 0 -33z" />
-    <glyph glyph-name="uni1E86" unicode="&#x1e86;" horiz-adv-x="951" 
-d="M384 754c0 28 24 52 52 52s52 -24 52 -52s-24 -52 -52 -52s-52 24 -52 52zM810 565c15.3 42.6 -25 46 -66 49c-6 6 -6 27 0 33c40 -1 84 -2 110 -2s58 1 87 2c6 -6 6 -27 0 -33c-55 -3 -73.1 -26.3 -86 -61l-201 -539c-5 -15 -12 -26 -23 -26c-12 0 -17.1 10 -23 27
-l-115 332c-5.89999 17.1 -10 28 -14 28c-5 0 -8.10001 -5 -17 -25l-149 -335c-7.39999 -16.6 -13 -27 -26 -27c-11.5 0 -16.6 11.1 -22 27l-188 541c-18.6 53.5 -26 55 -71 58c-6 6 -6 27 0 33c29 -1 58.3 -2 93 -2c39 0 83 1 116 2c6 -6 6 -27 0 -33
-c-35 -2 -61.6 -6.90002 -50 -42l146.2 -442.3l4.29999 -1l129.5 293.3c7.5 16.9 9 24.7 9 35c0 9 -3.10001 19 -7 31l-23 66c-9 25.7 -31 57 -84 60c-6 6 -6 27 0 33c32 -1 67 -2 100 -2c40 0 84 1 125 2c6 -6 6 -27 0 -33c-34 -3 -69.5 -6.20001 -52 -60l137.5 -422
-l3.20001 -1.3z" />
-    <glyph glyph-name="uni1E87" unicode="&#x1e87;" horiz-adv-x="747" 
-d="M318 599c0 24 28 48 52 48c27 0 48 -28 48 -52c0 -21.1 -24 -48 -52 -48c-24 0 -48 26 -48 52zM203 398c-48 -3 -49 -19 -30.1 -67l80 -206c12.9 -32.5 15.1 -31 28.1 2l70 177l-6.39999 16c-17.9 44.8 -29.6 73.5 -76.6 78c-6 6 -6 27 0 33c30 -1 63 -2 88 -2
-c30 0 70 1 100 2c6 -6 6 -27 0 -33c-53 -4 -55 -14 -36.5 -61l86.3 -219c8.20001 -20.8 12.2 -21 22.2 4l83.6 208c14.1 35.1 24.4 64 -50.6 68c-6 6 -6 27 0 33c30 -1 72 -2 102 -2s52 1 72 2c6 -6 6 -27 0 -33c-51 -3 -68.1 -31.1 -84.5 -72l-130.5 -317
-c-6 -15 -14 -21 -23 -21c-10 0 -18 6 -24 20l-103 248l-101 -246c-7 -16 -15 -22 -24 -22c-10 0 -18 6 -24 20l-130.9 323c-21.1 52 -32 62.2 -79.1 67c-6 6 -6 27 0 33c26.2 -1 53 -2 91 -2c36 0 71 1 101 2c6 -6 6 -27 0 -33z" />
-    <glyph glyph-name="uni1E88" unicode="&#x1e88;" horiz-adv-x="951" 
-d="M404 -156c0 24 28 48 52 48c27 0 48 -28 48 -52c0 -21.1 -24 -48 -52 -48c-24 0 -48 26 -48 52zM810 565c15.3 42.6 -25 46 -66 49c-6 6 -6 27 0 33c40 -1 84 -2 110 -2s58 1 87 2c6 -6 6 -27 0 -33c-55 -3 -73.1 -26.3 -86 -61l-201 -539c-5 -15 -12 -26 -23 -26
-c-12 0 -17.1 10 -23 27l-115 332c-5.89999 17.1 -10 28 -14 28c-5 0 -8.10001 -5 -17 -25l-149 -335c-7.39999 -16.6 -13 -27 -26 -27c-11.5 0 -16.6 11.1 -22 27l-188 541c-18.6 53.5 -26 55 -71 58c-6 6 -6 27 0 33c29 -1 58.3 -2 93 -2c39 0 83 1 116 2c6 -6 6 -27 0 -33
-c-35 -2 -61.6 -6.90002 -50 -42l146.2 -442.3l4.29999 -1l129.5 293.3c7.5 16.9 9 24.7 9 35c0 9 -3.10001 19 -7 31l-23 66c-9 25.7 -31 57 -84 60c-6 6 -6 27 0 33c32 -1 67 -2 100 -2c40 0 84 1 125 2c6 -6 6 -27 0 -33c-34 -3 -69.5 -6.20001 -52 -60l137.5 -422
-l3.20001 -1.3z" />
-    <glyph glyph-name="uni1E89" unicode="&#x1e89;" horiz-adv-x="747" 
-d="M318 -156c0 24 28 48 52 48c27 0 48 -28 48 -52c0 -21.1 -24 -48 -52 -48c-24 0 -48 26 -48 52zM203 398c-48 -3 -49 -19 -30.1 -67l80 -206c12.9 -32.5 15.1 -31 28.1 2l70 177l-6.39999 16c-17.9 44.8 -29.6 73.5 -76.6 78c-6 6 -6 27 0 33c30 -1 63 -2 88 -2
-c30 0 70 1 100 2c6 -6 6 -27 0 -33c-53 -4 -55 -14 -36.5 -61l86.3 -219c8.20001 -20.8 12.2 -21 22.2 4l83.6 208c14.1 35.1 24.4 64 -50.6 68c-6 6 -6 27 0 33c30 -1 72 -2 102 -2s52 1 72 2c6 -6 6 -27 0 -33c-51 -3 -68.1 -31.1 -84.5 -72l-130.5 -317
-c-6 -15 -14 -21 -23 -21c-10 0 -18 6 -24 20l-103 248l-101 -246c-7 -16 -15 -22 -24 -22c-10 0 -18 6 -24 20l-130.9 323c-21.1 52 -32 62.2 -79.1 67c-6 6 -6 27 0 33c26.2 -1 53 -2 91 -2c36 0 71 1 101 2c6 -6 6 -27 0 -33z" />
-    <glyph glyph-name="uni1E8A" unicode="&#x1e8a;" horiz-adv-x="660" 
-d="M277 754c0 28 24 52 52 52s52 -24 52 -52s-24 -52 -52 -52s-52 24 -52 52zM538 102c42.4 -58.3 59 -68 101 -71c6 -6 7 -27 1 -33c-30 1 -63 2 -102 2c-40 0 -77 -1 -114 -2c-6 6 -6 27 0 33c56 3 51.8 13.9 23.5 54.2l-123.5 175.8c-5.60001 8 -10 11 -14 11
-c-3 0 -9.29999 -6 -15 -14l-132 -185c-24.2 -34 -5.3 -39 39 -42c6 -6 6 -27 0 -33c-40 1 -82 2 -105 2s-60 -1 -90 -2c-6 6 -6 27 0 33c44.7 4.3 76.7 16.1 111 62l148 198c5.89999 7.89999 10 17 10 23c0 10 -5.79999 18.3 -14 30l-142.3 203
-c-41.2 58.7 -59.7 64 -101.7 67c-6 6 -7 27 -1 33c30 -1 63 -2 102 -2c40 0 77 1 114 2c6 -6 6 -27 0 -33c-56 -3 -51.7 -14.2 -23.5 -54.2l110.5 -163.8c4.79999 -7 9 -11 12 -11c4 0 10 3.5 16 12l123 175c23.5 33.4 5.29999 39 -39 42c-6 6 -6 27 0 33
-c40 -1 82 -2 105 -2s60 1 90 2c6 -6 6 -27 0 -33c-44.7 -4.29999 -76.3 -17.1 -111 -62l-137 -177c-9.10001 -11.8 -10 -21 -10 -30c0 -10 6.20001 -19.6 16 -33z" />
-    <glyph glyph-name="uni1E8B" unicode="&#x1e8b;" horiz-adv-x="490" 
-d="M202 599c0 24 28 48 52 48c27 0 48 -28 48 -52c0 -21.1 -24 -48 -52 -48c-24 0 -48 26 -48 52zM182 358l61 -90c7.60001 -11.2 11.8 -12 19 -2l65 91c24.2 33.9 12.7 37 -24 41c-6 6 -6 27 0 33c26 -1 54 -2 84 -2s53 1 73 2c6 -6 6 -27 0 -33c-36.5 -3 -60 -8 -97 -55
-l-84 -107c-4.70001 -6 -4.20001 -9.10001 0 -15l90 -127c40.3 -56.9 54.7 -60 100 -63c6 -6 6 -27 0 -33c-24 1 -51 2 -89 2c-36 0 -69 -1 -99 -2c-6 6 -6 27 0 33c31.7 3.3 47.8 5.1 13 53l-58 80c-6.3 8.60001 -9.7 9.89999 -18 -2l-63 -91c-22.5 -32.5 -14 -36.3 22 -40
-c6 -6 6 -27 0 -33c-26 1 -54 2 -84 2s-52 -1 -72 -2c-6 6 -6 27 0 33c35 2 57.4 5.1 97 56l84 108c3.60001 4.60001 3.89999 7.8 -1 15l-87 127c-28 41 -56 58 -90 61c-6 6 -6 27 0 33c26 -1 56 -2 86 -2s74 1 101 2c6 -6 6 -27 0 -33
-c-44.7 -4.70001 -51.9 -6.20001 -29 -40z" />
-    <glyph glyph-name="uni1E8C" unicode="&#x1e8c;" horiz-adv-x="660" 
-d="M380 759c0 26 22 48 48 48s48 -22 48 -48s-22 -48 -48 -48s-48 22 -48 48zM191 759c0 26 22 48 48 48s48 -22 48 -48s-22 -48 -48 -48s-48 22 -48 48zM538 102c42.4 -58.3 59 -68 101 -71c6 -6 7 -27 1 -33c-30 1 -63 2 -102 2c-40 0 -77 -1 -114 -2c-6 6 -6 27 0 33
-c56 3 51.8 13.9 23.5 54.2l-123.5 175.8c-5.60001 8 -10 11 -14 11c-3 0 -9.29999 -6 -15 -14l-132 -185c-24.2 -34 -5.3 -39 39 -42c6 -6 6 -27 0 -33c-40 1 -82 2 -105 2s-60 -1 -90 -2c-6 6 -6 27 0 33c44.7 4.3 76.7 16.1 111 62l148 198c5.89999 7.89999 10 17 10 23
-c0 10 -5.79999 18.3 -14 30l-142.3 203c-41.2 58.7 -59.7 64 -101.7 67c-6 6 -7 27 -1 33c30 -1 63 -2 102 -2c40 0 77 1 114 2c6 -6 6 -27 0 -33c-56 -3 -51.7 -14.2 -23.5 -54.2l110.5 -163.8c4.79999 -7 9 -11 12 -11c4 0 10 3.5 16 12l123 175
-c23.5 33.4 5.29999 39 -39 42c-6 6 -6 27 0 33c40 -1 82 -2 105 -2s60 1 90 2c6 -6 6 -27 0 -33c-44.7 -4.29999 -76.3 -17.1 -111 -62l-137 -177c-9.10001 -11.8 -10 -21 -10 -30c0 -10 6.20001 -19.6 16 -33z" />
-    <glyph glyph-name="uni1E8D" unicode="&#x1e8d;" horiz-adv-x="490" 
-d="M182 358l61 -90c7.60001 -11.2 11.8 -12 19 -2l65 91c24.2 33.9 12.7 37 -24 41c-6 6 -6 27 0 33c26 -1 54 -2 84 -2s53 1 73 2c6 -6 6 -27 0 -33c-36.5 -3 -60 -8 -97 -55l-84 -107c-4.70001 -6 -4.20001 -9.10001 0 -15l90 -127c40.3 -56.9 54.7 -60 100 -63
-c6 -6 6 -27 0 -33c-24 1 -51 2 -89 2c-36 0 -69 -1 -99 -2c-6 6 -6 27 0 33c31.7 3.3 47.8 5.1 13 53l-58 80c-6.3 8.60001 -9.7 9.89999 -18 -2l-63 -91c-22.5 -32.5 -14 -36.3 22 -40c6 -6 6 -27 0 -33c-26 1 -54 2 -84 2s-52 -1 -72 -2c-6 6 -6 27 0 33
-c35 2 57.4 5.1 97 56l84 108c3.60001 4.60001 3.89999 7.8 -1 15l-87 127c-28 41 -56 58 -90 61c-6 6 -6 27 0 33c26 -1 56 -2 86 -2s74 1 101 2c6 -6 6 -27 0 -33c-44.7 -4.70001 -51.9 -6.20001 -29 -40zM122 573c0 26 21 48 47 48s47 -22 47 -48s-21 -47 -47 -47
-s-47 21 -47 47zM291 573c0 26 21 48 47 48s47 -22 47 -48s-21 -47 -47 -47s-47 21 -47 47z" />
-    <glyph glyph-name="uni1E8E" unicode="&#x1e8e;" horiz-adv-x="575" 
-d="M235 754c0 28 24 52 52 52s52 -24 52 -52s-24 -52 -52 -52s-52 24 -52 52zM337 122c0 -83 17 -88 97 -91c6 -6 6 -27 0 -33c-50 1 -100.3 2 -139 2c-38.6 0 -91 -1 -140 -2c-6 6 -6 27 0 33c80 3 97 8 97 91v127c0 37 -3.5 47.5 -21 77l-131.3 221
-c-34.5 58.1 -51.7 64 -93.7 67c-6 6 -7 27 -1 33c30 -1 63 -2 102 -2c40 0 78 1 114 2c6 -6 6 -27 0 -33c-56 -3 -60 -12.6 -35.8 -55.2l116 -204.8c9 -15.9 13.8 -17.2 21.8 -2l110.8 209c21.4 40.4 5.5 50 -38.8 53c-6 6 -6 27 0 33c32 -1 68 -2 91 -2s55 1 83 2
-c6 -6 6 -27 0 -33c-44.7 -4.29999 -67 -13.3 -95 -64l-119.5 -216c-16.4 -29.6 -17.5 -46.5 -17.5 -76.3v-135.7z" />
-    <glyph glyph-name="uni1E8F" unicode="&#x1e8f;" horiz-adv-x="515" 
-d="M218 599c0 24 28 48 52 48c27 0 48 -28 48 -52c0 -21.1 -24 -48 -52 -48c-24 0 -48 26 -48 52zM204 -160c-36 -64 -76 -72 -97 -72c-27 0 -47 16 -47 37c0 13 15 43 44 43c11 0 15 -3 29 -3c25 0 39 9 50 29c15 31 27.1 58.6 39 92c10 28 -5.3 73.9 -14 94l-113.1 263
-c-26.2 61 -39.2 70 -78.9 75c-6 6 -6 27 0 33c20 -1 47 -2 81 -2c36 0 76 1 113 2c6 -6 6 -27 0 -33c-56 -4.29999 -50.8 -22.8 -32.8 -65l88.7 -208c8.5 -19.8 16.9 -17.1 23.9 -1l99.2 229c16 36 -16.4 42 -48 45c-6 6 -6 27 0 33c30 -1 61 -2 91 -2c28 0 51 1 71 2
-c6 -6 6 -27 0 -33c-47 -5.70001 -61.3 -21.7 -81 -64c-52.2 -112.4 -97 -215 -177 -408c-12.3 -29.6 -25.4 -58.2 -41 -86z" />
-    <glyph glyph-name="uni1E90" unicode="&#x1e90;" horiz-adv-x="604" 
-d="M344 808c30 -36 67 -70 103 -97c-2.79999 -9.09998 -6.89999 -17.2 -16 -21c-39 18 -73 36 -106 61c-37 -27 -69 -44 -107 -61c-9 6 -12 12 -14 21c37 28 70 63 101 97c14 8.40002 23.6 7.70001 39 0zM551 -2c0 0 -99.7 2 -126.7 2h-364.3c-14 0 -19 5 -19 15
-c0 7 2 15 8 23c102 152 292 418 389 541c5 7 8 13 8 18c0 6 -4.10001 9.09998 -10 9l-211 -4c-75 -1.40002 -113 -37 -134 -106c-11 0 -20 2 -30 5c8 41 18 98 22 152c37 -3 134 -8 181 -8h221c30 0 61 2 73 2c8 0 13 -4 13 -11c0 -11 -2.90002 -17.8 -24 -45
-c-118 -152 -302 -413 -375 -519c-5 -9 -8 -15 -8 -20c0 -9 8 -14.4 25 -14l193 4c109 2 134 57 165 128c13 0 24 -3 31 -5c-12 -52 -22 -111 -27 -167z" />
-    <glyph glyph-name="uni1E91" unicode="&#x1e91;" horiz-adv-x="424" 
-d="M233 660c29 -47 73 -100 109 -140c-5 -7 -13.6 -15.1 -23 -17c-38 24 -73 52 -103 83c-32 -32 -65 -61 -104 -83c-9 2 -16 8 -22 17c36 40 82 94 111 140c10.7 2.29999 21.3 3 32 0zM71 439c14.5 -5.39999 26.9 -10 59 -10h183c29 0 57 2 62 2c7 0 12 -3 12 -7
-s-2.70001 -11.8 -18 -37c-62 -102 -166 -259 -240 -353h133c52.1 1.2 72.5 23.2 98 76l14 29c12 0 23.5 -2.3 30 -6c-7 -50 -20 -102 -32 -136l-312 3c-15 0 -23 5 -23 12c0 5 0.400002 8.4 9 20c78 105 178 249 246 363l-128 -3c-30 -0.700012 -61 -18 -81 -91
-c-11.6 -2.60001 -24.2 -0.700012 -33 3c9 49 14 84 15 129c0 2.39999 3.6 6 6 6z" />
-    <glyph glyph-name="uni1E92" unicode="&#x1e92;" horiz-adv-x="604" 
-d="M265 -156c0 24 28 48 52 48c27 0 48 -28 48 -52c0 -21.1 -24 -48 -52 -48c-24 0 -48 26 -48 52zM551 -2c0 0 -99.7 2 -126.7 2h-364.3c-14 0 -19 5 -19 15c0 7 2 15 8 23c102 152 292 418 389 541c5 7 8 13 8 18c0 6 -4.10001 9.09998 -10 9l-211 -4
-c-75 -1.40002 -113 -37 -134 -106c-11 0 -20 2 -30 5c8 41 18 98 22 152c37 -3 134 -8 181 -8h221c30 0 61 2 73 2c8 0 13 -4 13 -11c0 -11 -2.90002 -17.8 -24 -45c-118 -152 -302 -413 -375 -519c-5 -9 -8 -15 -8 -20c0 -9 8 -14.4 25 -14l193 4c109 2 134 57 165 128
-c13 0 24 -3 31 -5c-12 -52 -22 -111 -27 -167z" />
-    <glyph glyph-name="uni1E93" unicode="&#x1e93;" horiz-adv-x="424" 
-d="M158 -156c0 24 28 48 52 48c27 0 48 -28 48 -52c0 -21.1 -24 -48 -52 -48c-24 0 -48 26 -48 52zM71 439c14.5 -5.39999 26.9 -10 59 -10h183c29 0 57 2 62 2c7 0 12 -3 12 -7s-2.70001 -11.8 -18 -37c-62 -102 -166 -259 -240 -353h133c52.1 1.2 72.5 23.2 98 76l14 29
-c12 0 23.5 -2.3 30 -6c-7 -50 -20 -102 -32 -136l-312 3c-15 0 -23 5 -23 12c0 5 0.400002 8.4 9 20c78 105 178 249 246 363l-128 -3c-30 -0.700012 -61 -18 -81 -91c-11.6 -2.60001 -24.2 -0.700012 -33 3c9 49 14 84 15 129c0 2.39999 3.6 6 6 6z" />
-    <glyph glyph-name="uni1E94" unicode="&#x1e94;" horiz-adv-x="604" 
-d="M406 -131h-205c-8 0 -12 8 -12 15c0 12 10 29 22 29h205c9 0 13 -7 13 -14c0 -12 -10 -30 -23 -30zM551 -2c0 0 -99.7 2 -126.7 2h-364.3c-14 0 -19 5 -19 15c0 7 2 15 8 23c102 152 292 418 389 541c5 7 8 13 8 18c0 6 -4.10001 9.09998 -10 9l-211 -4
-c-75 -1.40002 -113 -37 -134 -106c-11 0 -20 2 -30 5c8 41 18 98 22 152c37 -3 134 -8 181 -8h221c30 0 61 2 73 2c8 0 13 -4 13 -11c0 -11 -2.90002 -17.8 -24 -45c-118 -152 -302 -413 -375 -519c-5 -9 -8 -15 -8 -20c0 -9 8 -14.4 25 -14l193 4c109 2 134 57 165 128
-c13 0 24 -3 31 -5c-12 -52 -22 -111 -27 -167z" />
-    <glyph glyph-name="uni1E95" unicode="&#x1e95;" horiz-adv-x="424" 
-d="M297 -131h-205c-8 0 -12 8 -12 15c0 12 10 29 22 29h205c9 0 13 -7 13 -14c0 -12 -10 -30 -23 -30zM71 439c14.5 -5.39999 26.9 -10 59 -10h183c29 0 57 2 62 2c7 0 12 -3 12 -7s-2.70001 -11.8 -18 -37c-62 -102 -166 -259 -240 -353h133c52.1 1.2 72.5 23.2 98 76
-l14 29c12 0 23.5 -2.3 30 -6c-7 -50 -20 -102 -32 -136l-312 3c-15 0 -23 5 -23 12c0 5 0.400002 8.4 9 20c78 105 178 249 246 363l-128 -3c-30 -0.700012 -61 -18 -81 -91c-11.6 -2.60001 -24.2 -0.700012 -33 3c9 49 14 84 15 129c0 2.39999 3.6 6 6 6z" />
-    <glyph glyph-name="uni1E96" unicode="&#x1e96;" horiz-adv-x="538" 
-d="M360 -131h-205c-8 0 -12 8 -12 15c0 12 10 29 22 29h205c9 0 13 -7 13 -14c0 -12 -10 -30 -23 -30zM167 285.9v-163.9c0 -83 9 -87 59.8 -91c6 -6 6 -27 0 -33c-28 1 -60.8 2 -98.8 2c-40 0 -76.8 -1 -109.8 -2c-6 6 -6 27 0 33c58 4 69.8 8 69.8 91v437
-c0 84 -12 79 -64 82c-6 6 -8 22 -6 30c40 3 115 17 140 27c9 0 13 -3 13 -10c0 0 -4 -40 -4 -105l-0.800003 -225c0 -14 6.40001 -3.79999 9.8 0c61 68 120.9 81 170 81c35 0 66.2 -12 83 -34c23.3 -30.5 27 -79 27 -134v-149c0 -82 11 -86 67 -91c5 -6 5 -27 0 -33
-c-33 1 -66 2 -106 2s-74 -1 -102 -2c-5 6 -5 27 0 33c52 5 62 9 62 91v152c0 30 -2 57.2 -12 77c-11.6 22.9 -32.6 36 -53 36c-39.4 0 -90 -21.7 -128 -59c-8 -8.70001 -17 -21 -17 -42.1z" />
-    <glyph glyph-name="uni1E97" unicode="&#x1e97;" horiz-adv-x="316" 
-d="M10 669c0 26 21 48 47 48s47 -22 47 -48s-21 -47 -47 -47s-47 21 -47 47zM179 669c0 26 21 48 47 48s47 -22 47 -48s-21 -47 -47 -47s-47 21 -47 47zM43 429l46 0.100006c0 110.9 -3 104.3 -3 115.9c0 6.90002 10 10.3 22 13.7c12.5 3.5 22.7 7.79999 34 14.1
-c9.3 5.10004 17.8 9 22.3 9c4.7 0 7.7 -2.39996 7.7 -8.79999c0 0 -4 -40 -4 -105v-39h120c5 0 8 -2 8 -6v-20c0 -9 -14 -13 -24 -13h-104v-253c0 -62 6 -92 33 -92c26 0 56 8 82 28c10 -1 16 -6.7 18 -17c-39 -44 -89 -66 -135 -66s-77 28 -77 99v301h-59c-4 0 -5 1 -5 6
-v13c0 8 4 20 18 20z" />
-    <glyph glyph-name="uni1E98" unicode="&#x1e98;" horiz-adv-x="747" 
-d="M370 636c-31 0 -48 -23 -48 -53c0 -28 17 -53 48 -53s48 25 48 53c0 31 -18 53 -48 53zM282 583c0 46 42 85 88 85s88 -38 88 -85c0 -45 -40 -85 -88 -85c-46 0 -88 39 -88 85zM203 398c-48 -3 -49 -19 -30.1 -67l80 -206c12.9 -32.5 15.1 -31 28.1 2l70 177l-6.39999 16
-c-17.9 44.8 -29.6 73.5 -76.6 78c-6 6 -6 27 0 33c30 -1 63 -2 88 -2c30 0 70 1 100 2c6 -6 6 -27 0 -33c-53 -4 -55 -14 -36.5 -61l86.3 -219c8.20001 -20.8 12.2 -21 22.2 4l83.6 208c14.1 35.1 24.4 64 -50.6 68c-6 6 -6 27 0 33c30 -1 72 -2 102 -2s52 1 72 2
-c6 -6 6 -27 0 -33c-51 -3 -68.1 -31.1 -84.5 -72l-130.5 -317c-6 -15 -14 -21 -23 -21c-10 0 -18 6 -24 20l-103 248l-101 -246c-7 -16 -15 -22 -24 -22c-10 0 -18 6 -24 20l-130.9 323c-21.1 52 -32 62.2 -79.1 67c-6 6 -6 27 0 33c26.2 -1 53 -2 91 -2c36 0 71 1 101 2
-c6 -6 6 -27 0 -33z" />
-    <glyph glyph-name="uni1E99" unicode="&#x1e99;" horiz-adv-x="515" 
-d="M269 635c-31 0 -48 -23 -48 -53c0 -28 17 -53 48 -53s48 25 48 53c0 31 -18 53 -48 53zM181 582c0 46 42 85 88 85s88 -38 88 -85c0 -45 -40 -85 -88 -85c-46 0 -88 39 -88 85zM204 -160c-36 -64 -76 -72 -97 -72c-27 0 -47 16 -47 37c0 13 15 43 44 43c11 0 15 -3 29 -3
-c25 0 39 9 50 29c15 31 27.1 58.6 39 92c10 28 -5.3 73.9 -14 94l-113.1 263c-26.2 61 -39.2 70 -78.9 75c-6 6 -6 27 0 33c20 -1 47 -2 81 -2c36 0 76 1 113 2c6 -6 6 -27 0 -33c-56 -4.29999 -50.8 -22.8 -32.8 -65l88.7 -208c8.5 -19.8 16.9 -17.1 23.9 -1l99.2 229
-c16 36 -16.4 42 -48 45c-6 6 -6 27 0 33c30 -1 61 -2 91 -2c28 0 51 1 71 2c6 -6 6 -27 0 -33c-47 -5.70001 -61.3 -21.7 -81 -64c-52.2 -112.4 -97 -215 -177 -408c-12.3 -29.6 -25.4 -58.2 -41 -86z" />
-    <glyph glyph-name="uni1E9B" unicode="&#x1e9b;" horiz-adv-x="291" 
-d="M192 826c0 24 28 48 52 48c27 0 48 -28 48 -52c0 -21.1 -24 -48 -52 -48c-24 0 -48 26 -48 52zM172 122c0 -83 11 -88 79 -91c6 -6 6 -27 0 -33c-43 1 -72 2 -118 2c-41 0 -63 -1 -105 -2c-6 6 -6 27 0 33c54 3 65 8 65 91v257c0 12 -1 16 -15 16h-44c-4 0 -5 1 -5 5v9
-c0 8 5 20 23 20c31 0 41 21 41 48c0 158 88 221 155 221c41 0 63 -12 83 -30c15 -13 26 -29 26 -46s-9 -38 -35 -38c-27 0 -41 14 -46 41c-4 20 -11 39 -35 39c-53 0 -69 -70 -69 -190v-352z" />
-    <glyph glyph-name="uni1EA0" unicode="&#x1ea0;" horiz-adv-x="695" 
-d="M288 -156c0 24 28 48 52 48c27 0 48 -28 48 -52c0 -21.1 -24 -48 -52 -48c-24 0 -48 26 -48 52zM263 283h177l-94 272h-6l-102.2 -258.7c-3.8 -10.3 3.2 -13.3 25.2 -13.3zM155 79c-15.6 -41.1 31.4 -45.4 69 -48c6 -6 6 -27 0 -33c-37 1 -87 2 -128 2
-c-30.3 0 -63 -1 -89 -2c-6 6 -6 27 0 33c43.5 3 74 9 100 71l227 536c13 0 40 11 55 20l206 -572c17.4 -48.2 51.2 -51.5 90 -55c6 -6 6 -27 0 -33c-35 1 -73 2 -114 2c-39 0 -94 -1 -131 -2c-6 6 -6 27 0 33c47.6 3.4 85.8 6.5 74 41l-58 169h-211c-24 0 -30 -4 -35 -17z
-" />
-    <glyph glyph-name="uni1EA1" unicode="&#x1ea1;" horiz-adv-x="457" 
-d="M165 -156c0 24 28 48 52 48c27 0 48 -28 48 -52c0 -21.1 -24 -48 -52 -48c-24 0 -48 26 -48 52zM293 233l-79 -21c-74 -19 -95 -65 -95 -110c0 -31 22 -71 72 -71c28 0 62 23 88 44c8 6 14 13 14 26v132zM293 48h-2l-20 -16c-44 -34 -74.2 -42 -109 -42
-c-70 0 -126 26 -126 108c0 68 69 121 165 145l86 21c3 1 6 5 6 12c0 113 -47 130 -81 130c-38 0 -80 -11 -80 -42c0 -11 1 -17 2 -20c2 -4 3 -11 3 -18c0 -13 -18 -34 -47 -34c-23 0 -35 12 -35 36c0 57 83 111 165 111c73 0 151 -27 151 -169v-147c0 -46 1 -85 30 -85
-c12.7 0 29.5 9.8 37 16c11.3 -6.3 15.3 -14.7 17 -27c-20.7 -20 -56.7 -37 -95 -37c-50.4 0 -61 27 -67 58z" />
-    <glyph glyph-name="uni1EA2" unicode="&#x1ea2;" horiz-adv-x="695" 
-d="M440 759c0 -22 -16 -33 -33 -44c-18 -12 -33 -24 -35 -49h-26c0 33 13 47 25 59c9 9 17 17 17 31c0 23 -14 35 -36 35c-19 0 -28 -9 -28 -14c0 -3 1 -6 3 -8c2 -3 6 -8 6 -15c0 -12 -11 -21 -27 -21c-20 0 -27 15 -27 27c0 21 28 55 82 55c64 0 79 -40 79 -56zM263 283
-h177l-94 272h-6l-102.2 -258.7c-3.8 -10.3 3.2 -13.3 25.2 -13.3zM155 79c-15.6 -41.1 31.4 -45.4 69 -48c6 -6 6 -27 0 -33c-37 1 -87 2 -128 2c-30.3 0 -63 -1 -89 -2c-6 6 -6 27 0 33c43.5 3 74 9 100 71l227 536c13 0 40 11 55 20l206 -572
-c17.4 -48.2 51.2 -51.5 90 -55c6 -6 6 -27 0 -33c-35 1 -73 2 -114 2c-39 0 -94 -1 -131 -2c-6 6 -6 27 0 33c47.6 3.4 85.8 6.5 74 41l-58 169h-211c-24 0 -30 -4 -35 -17z" />
-    <glyph glyph-name="uni1EA3" unicode="&#x1ea3;" horiz-adv-x="457" 
-d="M282 599c0 -20 -15 -36 -31 -52c-17 -16 -27 -33 -29 -59h-28c1 34 14 56 25 73c8 12 13 24 13 36c0 23 -8 33 -29 33c-19 0 -24 -6 -24 -11c0 -4 1 -6 2 -8c1 -3 4 -9 4 -17c0 -11 -13 -21 -22 -21c-19 0 -27 15 -27 27c0 22 33 57 75 57c55 0 71 -41 71 -58zM293 233
-l-79 -21c-74 -19 -95 -65 -95 -110c0 -31 22 -71 72 -71c28 0 62 23 88 44c8 6 14 13 14 26v132zM293 48h-2l-20 -16c-44 -34 -74.2 -42 -109 -42c-70 0 -126 26 -126 108c0 68 69 121 165 145l86 21c3 1 6 5 6 12c0 113 -47 130 -81 130c-38 0 -80 -11 -80 -42
-c0 -11 1 -17 2 -20c2 -4 3 -11 3 -18c0 -13 -18 -34 -47 -34c-23 0 -35 12 -35 36c0 57 83 111 165 111c73 0 151 -27 151 -169v-147c0 -46 1 -85 30 -85c12.7 0 29.5 9.8 37 16c11.3 -6.3 15.3 -14.7 17 -27c-20.7 -20 -56.7 -37 -95 -37c-50.4 0 -61 27 -67 58z" />
-    <glyph glyph-name="uni1EA4" unicode="&#x1ea4;" horiz-adv-x="695" 
-d="M556.1 863.4c20.1 -10.7 34.5 -24.5 43.4 -41.6l-100.8 -46.4c-14.7 -7.20001 -23.1 -9.60004 -29.4 -9.60004c-6.29999 0 -10.5 5.60004 -10.5 12c0 5.60004 1.40002 9.60004 10.5 16.8zM377 808c30 -36 67 -70 103 -97c-2.79999 -9.09998 -6.89999 -17.2 -16 -21
-c-39 18 -73 36 -106 61c-37 -27 -69 -44 -107 -61c-9 6 -12 12 -14 21c37 28 70 63 101 97c14 8.40002 23.6 7.70001 39 0zM263 283h177l-94 272h-6l-102.2 -258.7c-3.8 -10.3 3.2 -13.3 25.2 -13.3zM155 79c-15.6 -41.1 31.4 -45.4 69 -48c6 -6 6 -27 0 -33
-c-37 1 -87 2 -128 2c-30.3 0 -63 -1 -89 -2c-6 6 -6 27 0 33c43.5 3 74 9 100 71l227 536c13 0 40 11 55 20l206 -572c17.4 -48.2 51.2 -51.5 90 -55c6 -6 6 -27 0 -33c-35 1 -73 2 -114 2c-39 0 -94 -1 -131 -2c-6 6 -6 27 0 33c47.6 3.4 85.8 6.5 74 41l-58 169h-211
-c-24 0 -30 -4 -35 -17z" />
-    <glyph glyph-name="uni1EA5" unicode="&#x1ea5;" horiz-adv-x="457" 
-d="M382.6 713.4c2.10001 0.799988 6.29999 1.59998 9.79999 1.59998c4.5 0 22.4 -0.799988 38.5 -18.4l2.10001 -8.79999l-80.5 -87.2c-10.5 -12 -16.1 -15.2 -21 -15.2s-9.79999 4.79999 -9.79999 10.4c0 9 2.29999 12.1 8 22.4zM231 660c29 -47 73 -100 109 -140
-c-5 -7 -13.6 -15.1 -23 -17c-38 24 -73 52 -103 83c-32 -32 -65 -61 -104 -83c-9 2 -16 8 -22 17c36 40 82 94 111 140c10.7 2.29999 21.3 3 32 0zM293 233l-79 -21c-74 -19 -95 -65 -95 -110c0 -31 22 -71 72 -71c28 0 62 23 88 44c8 6 14 13 14 26v132zM293 48h-2l-20 -16
-c-44 -34 -74.2 -42 -109 -42c-70 0 -126 26 -126 108c0 68 69 121 165 145l86 21c3 1 6 5 6 12c0 113 -47 130 -81 130c-38 0 -80 -11 -80 -42c0 -11 1 -17 2 -20c2 -4 3 -11 3 -18c0 -13 -18 -34 -47 -34c-23 0 -35 12 -35 36c0 57 83 111 165 111c73 0 151 -27 151 -169
-v-147c0 -46 1 -85 30 -85c12.7 0 29.5 9.8 37 16c11.3 -6.3 15.3 -14.7 17 -27c-20.7 -20 -56.7 -37 -95 -37c-50.4 0 -61 27 -67 58z" />
-    <glyph glyph-name="uni1EA6" unicode="&#x1ea6;" horiz-adv-x="695" 
-d="M167.1 862.8l84.7 -67.2c7.7 -6.39996 10.5 -11.2 10.5 -16.8c0 -6.39996 -4.89999 -12 -10.5 -12c-5.60001 0 -15.4 2.40002 -30.1 9.60004l-107.8 50.4c12.8 14.2 29.3 26.7 53.2 36zM377 808c30 -36 67 -70 103 -97c-2.79999 -9.09998 -6.89999 -17.2 -16 -21
-c-39 18 -73 36 -106 61c-37 -27 -69 -44 -107 -61c-9 6 -12 12 -14 21c37 28 70 63 101 97c14 8.40002 23.6 7.70001 39 0zM263 283h177l-94 272h-6l-102.2 -258.7c-3.8 -10.3 3.2 -13.3 25.2 -13.3zM155 79c-15.6 -41.1 31.4 -45.4 69 -48c6 -6 6 -27 0 -33
-c-37 1 -87 2 -128 2c-30.3 0 -63 -1 -89 -2c-6 6 -6 27 0 33c43.5 3 74 9 100 71l227 536c13 0 40 11 55 20l206 -572c17.4 -48.2 51.2 -51.5 90 -55c6 -6 6 -27 0 -33c-35 1 -73 2 -114 2c-39 0 -94 -1 -131 -2c-6 6 -6 27 0 33c47.6 3.4 85.8 6.5 74 41l-58 169h-211
-c-24 0 -30 -4 -35 -17z" />
-    <glyph glyph-name="uni1EA7" unicode="&#x1ea7;" horiz-adv-x="457" 
-d="M61.8 713.4l49 -100.8c3.5 -8 4.2 -13.6 4.2 -19.2c0 -4 -4.9 -8.80005 -10.5 -8.80005c-4.2 0 -9.1 4 -20.3 16l-79.8 87.2l1.4 8.79999c5.6 4.80005 21.7 18.4 45.5 18.4c3.5 0 7.7 -0.799988 10.5 -1.59998zM231 660c29 -47 73 -100 109 -140
-c-5 -7 -13.6 -15.1 -23 -17c-38 24 -73 52 -103 83c-32 -32 -65 -61 -104 -83c-9 2 -16 8 -22 17c36 40 82 94 111 140c10.7 2.29999 21.3 3 32 0zM293 233l-79 -21c-74 -19 -95 -65 -95 -110c0 -31 22 -71 72 -71c28 0 62 23 88 44c8 6 14 13 14 26v132zM293 48h-2l-20 -16
-c-44 -34 -74.2 -42 -109 -42c-70 0 -126 26 -126 108c0 68 69 121 165 145l86 21c3 1 6 5 6 12c0 113 -47 130 -81 130c-38 0 -80 -11 -80 -42c0 -11 1 -17 2 -20c2 -4 3 -11 3 -18c0 -13 -18 -34 -47 -34c-23 0 -35 12 -35 36c0 57 83 111 165 111c73 0 151 -27 151 -169
-v-147c0 -46 1 -85 30 -85c12.7 0 29.5 9.8 37 16c11.3 -6.3 15.3 -14.7 17 -27c-20.7 -20 -56.7 -37 -95 -37c-50.4 0 -61 27 -67 58z" />
-    <glyph glyph-name="uni1EA8" unicode="&#x1ea8;" horiz-adv-x="695" 
-d="M600 815c0 -22 -16 -33 -33 -44c-18 -12 -33 -24 -35 -49h-26c0 33 13 47 25 59c9 9 17 17 17 31c0 23 -14 35 -36 35c-19 0 -28 -9 -28 -14c0 -3 1 -6 3 -8c2 -3 6 -8 6 -15c0 -12 -11 -21 -27 -21c-20 0 -27 15 -27 27c0 21 28 55 82 55c64 0 79 -40 79 -56zM377 808
-c30 -36 67 -70 103 -97c-2.79999 -9.09998 -6.89999 -17.2 -16 -21c-39 18 -73 36 -106 61c-37 -27 -69 -44 -107 -61c-9 6 -12 12 -14 21c37 28 70 63 101 97c14 8.40002 23.6 7.70001 39 0zM263 283h177l-94 272h-6l-102.2 -258.7c-3.8 -10.3 3.2 -13.3 25.2 -13.3z
-M155 79c-15.6 -41.1 31.4 -45.4 69 -48c6 -6 6 -27 0 -33c-37 1 -87 2 -128 2c-30.3 0 -63 -1 -89 -2c-6 6 -6 27 0 33c43.5 3 74 9 100 71l227 536c13 0 40 11 55 20l206 -572c17.4 -48.2 51.2 -51.5 90 -55c6 -6 6 -27 0 -33c-35 1 -73 2 -114 2c-39 0 -94 -1 -131 -2
-c-6 6 -6 27 0 33c47.6 3.4 85.8 6.5 74 41l-58 169h-211c-24 0 -30 -4 -35 -17z" />
-    <glyph glyph-name="uni1EA9" unicode="&#x1ea9;" horiz-adv-x="457" 
-d="M411 696c0 -20 -15 -36 -31 -52c-17 -16 -27 -33 -29 -59h-28c1 34 14 56 25 73c8 12 13 24 13 36c0 23 -8 33 -29 33c-19 0 -24 -6 -24 -11c0 -4 1 -6 2 -8c1 -3 4 -9 4 -17c0 -11 -13 -21 -22 -21c-19 0 -27 15 -27 27c0 22 33 57 75 57c55 0 71 -41 71 -58zM231 660
-c29 -47 73 -100 109 -140c-5 -7 -13.6 -15.1 -23 -17c-38 24 -73 52 -103 83c-32 -32 -65 -61 -104 -83c-9 2 -16 8 -22 17c36 40 82 94 111 140c10.7 2.29999 21.3 3 32 0zM293 233l-79 -21c-74 -19 -95 -65 -95 -110c0 -31 22 -71 72 -71c28 0 62 23 88 44
-c8 6 14 13 14 26v132zM293 48h-2l-20 -16c-44 -34 -74.2 -42 -109 -42c-70 0 -126 26 -126 108c0 68 69 121 165 145l86 21c3 1 6 5 6 12c0 113 -47 130 -81 130c-38 0 -80 -11 -80 -42c0 -11 1 -17 2 -20c2 -4 3 -11 3 -18c0 -13 -18 -34 -47 -34c-23 0 -35 12 -35 36
-c0 57 83 111 165 111c73 0 151 -27 151 -169v-147c0 -46 1 -85 30 -85c12.7 0 29.5 9.8 37 16c11.3 -6.3 15.3 -14.7 17 -27c-20.7 -20 -56.7 -37 -95 -37c-50.4 0 -61 27 -67 58z" />
-    <glyph glyph-name="uni1EAA" unicode="&#x1eaa;" horiz-adv-x="695" 
-d="M377 782c30 -36 67 -70 103 -97c-2.79999 -9.09998 -6.89999 -17.2 -16 -21c-39 18 -73 36 -106 61c-37 -27 -69 -44 -107 -61c-9 6 -12 12 -14 21c37 28 70 63 101 97c14 8.40002 23.6 7.70001 39 0zM263 283h177l-94 272h-6l-102.2 -258.7
-c-3.8 -10.3 3.2 -13.3 25.2 -13.3zM155 79c-15.6 -41.1 31.4 -45.4 69 -48c6 -6 6 -27 0 -33c-37 1 -87 2 -128 2c-30.3 0 -63 -1 -89 -2c-6 6 -6 27 0 33c43.5 3 74 9 100 71l227 536c13 0 40 11 55 20l206 -572c17.4 -48.2 51.2 -51.5 90 -55c6 -6 6 -27 0 -33
-c-35 1 -73 2 -114 2c-39 0 -94 -1 -131 -2c-6 6 -6 27 0 33c47.6 3.4 85.8 6.5 74 41l-58 169h-211c-24 0 -30 -4 -35 -17zM433.9 844c24.2 0 36.3 9.40002 51.7 49.3c12.1 1 23.1 -1.79999 29.7 -5.59998c-13.2 -57 -45.1 -94.1 -95.7 -94.1c-24.2 0 -47.3 17.1 -70.4 30.4
-c-19.8 10.5 -40.7 18 -59.4 18c-28.6 0 -39.6 -14.2 -50.6 -45.5c-12.1 -1.90002 -23.1 -1 -29.7 4.70001c15.4 56 40.7 93.1 88 93.1c33 0 57.2 -19 79.2 -32.3c17.6 -11.4 36.3 -18 57.2 -18z" />
-    <glyph glyph-name="uni1EAB" unicode="&#x1eab;" horiz-adv-x="457" 
-d="M283 744c22 0 33 10 47 52c11 1 21 -2 27 -6c-12 -60 -41 -99 -87 -99c-22 0 -43 18 -64 32c-18 11 -37 19 -54 19c-26 0 -36 -15 -46 -48c-11 -2 -21 -1 -27 5c14 59 37 98 80 98c30 0 52 -20 72 -34c16 -12 33 -19 52 -19zM231 660c29 -47 73 -100 109 -140
-c-5 -7 -13.6 -15.1 -23 -17c-38 24 -73 52 -103 83c-32 -32 -65 -61 -104 -83c-9 2 -16 8 -22 17c36 40 82 94 111 140c10.7 2.29999 21.3 3 32 0zM293 233l-79 -21c-74 -19 -95 -65 -95 -110c0 -31 22 -71 72 -71c28 0 62 23 88 44c8 6 14 13 14 26v132zM293 48h-2l-20 -16
-c-44 -34 -74.2 -42 -109 -42c-70 0 -126 26 -126 108c0 68 69 121 165 145l86 21c3 1 6 5 6 12c0 113 -47 130 -81 130c-38 0 -80 -11 -80 -42c0 -11 1 -17 2 -20c2 -4 3 -11 3 -18c0 -13 -18 -34 -47 -34c-23 0 -35 12 -35 36c0 57 83 111 165 111c73 0 151 -27 151 -169
-v-147c0 -46 1 -85 30 -85c12.7 0 29.5 9.8 37 16c11.3 -6.3 15.3 -14.7 17 -27c-20.7 -20 -56.7 -37 -95 -37c-50.4 0 -61 27 -67 58z" />
-    <glyph glyph-name="uni1EAC" unicode="&#x1eac;" horiz-adv-x="695" 
-d="M377 807c30 -36 67 -70 103 -97c-2.79999 -9.09998 -6.89999 -17.2 -16 -21c-39 18 -73 36 -106 61c-37 -27 -69 -44 -107 -61c-9 6 -12 12 -14 21c37 28 70 63 101 97c14 8.40002 23.6 7.70001 39 0zM288 -156c0 24 28 48 52 48c27 0 48 -28 48 -52
-c0 -21.1 -24 -48 -52 -48c-24 0 -48 26 -48 52zM263 283h177l-94 272h-6l-102.2 -258.7c-3.8 -10.3 3.2 -13.3 25.2 -13.3zM155 79c-15.6 -41.1 31.4 -45.4 69 -48c6 -6 6 -27 0 -33c-37 1 -87 2 -128 2c-30.3 0 -63 -1 -89 -2c-6 6 -6 27 0 33c43.5 3 74 9 100 71l227 536
-c13 0 40 11 55 20l206 -572c17.4 -48.2 51.2 -51.5 90 -55c6 -6 6 -27 0 -33c-35 1 -73 2 -114 2c-39 0 -94 -1 -131 -2c-6 6 -6 27 0 33c47.6 3.4 85.8 6.5 74 41l-58 169h-211c-24 0 -30 -4 -35 -17z" />
-    <glyph glyph-name="uni1EAD" unicode="&#x1ead;" horiz-adv-x="457" 
-d="M239 659c29 -47 73 -100 109 -140c-5 -7 -13.6 -15.1 -23 -17c-38 24 -73 52 -103 83c-32 -32 -65 -61 -104 -83c-9 2 -16 8 -22 17c36 40 82 94 111 140c10.7 2.29999 21.3 3 32 0zM165 -156c0 24 28 48 52 48c27 0 48 -28 48 -52c0 -21.1 -24 -48 -52 -48
-c-24 0 -48 26 -48 52zM293 233l-79 -21c-74 -19 -95 -65 -95 -110c0 -31 22 -71 72 -71c28 0 62 23 88 44c8 6 14 13 14 26v132zM293 48h-2l-20 -16c-44 -34 -74.2 -42 -109 -42c-70 0 -126 26 -126 108c0 68 69 121 165 145l86 21c3 1 6 5 6 12c0 113 -47 130 -81 130
-c-38 0 -80 -11 -80 -42c0 -11 1 -17 2 -20c2 -4 3 -11 3 -18c0 -13 -18 -34 -47 -34c-23 0 -35 12 -35 36c0 57 83 111 165 111c73 0 151 -27 151 -169v-147c0 -46 1 -85 30 -85c12.7 0 29.5 9.8 37 16c11.3 -6.3 15.3 -14.7 17 -27c-20.7 -20 -56.7 -37 -95 -37
-c-50.4 0 -61 27 -67 58z" />
-    <glyph glyph-name="uni1EAE" unicode="&#x1eae;" horiz-adv-x="695" 
-d="M416.1 890.9c22.1 -11.7 38 -27 47.8 -45.8l-110.9 -51.1c-16.2 -7.90002 -25.5 -10.5 -32.4 -10.5s-11.5 6.20001 -11.5 13.2c0 6.20001 1.5 10.6 11.5 18.5zM494 804c-6 -71 -70 -113 -136 -113c-73 0 -131 43 -136 113h28c8 -39 55 -61 108 -61c49 0 101 22 108 61h28
-zM263 283h177l-94 272h-6l-102.2 -258.7c-3.8 -10.3 3.2 -13.3 25.2 -13.3zM155 79c-15.6 -41.1 31.4 -45.4 69 -48c6 -6 6 -27 0 -33c-37 1 -87 2 -128 2c-30.3 0 -63 -1 -89 -2c-6 6 -6 27 0 33c43.5 3 74 9 100 71l227 536c13 0 40 11 55 20l206 -572
-c17.4 -48.2 51.2 -51.5 90 -55c6 -6 6 -27 0 -33c-35 1 -73 2 -114 2c-39 0 -94 -1 -131 -2c-6 6 -6 27 0 33c47.6 3.4 85.8 6.5 74 41l-58 169h-211c-24 0 -30 -4 -35 -17z" />
-    <glyph glyph-name="uni1EAF" unicode="&#x1eaf;" horiz-adv-x="457" 
-d="M241 740c2.3 0.900024 6.8 1.79999 10.7 1.79999c4.90001 0 24.7 -0.799988 42.4 -20.2l2.29999 -9.69995l-88.6 -95.9c-11.5 -13.2 -17.6 -16.8 -23 -16.8c-5.40001 0 -10.8 5.29999 -10.8 11.5c0 9.89996 2.5 13.3 8.8 24.6zM98 647c11 -53 54 -90 108 -90
-c52 0 98 32 108 90l27 -12c-12 -86 -76 -135 -135 -135c-70 0 -121 50 -135 135zM293 233l-79 -21c-74 -19 -95 -65 -95 -110c0 -31 22 -71 72 -71c28 0 62 23 88 44c8 6 14 13 14 26v132zM293 48h-2l-20 -16c-44 -34 -74.2 -42 -109 -42c-70 0 -126 26 -126 108
-c0 68 69 121 165 145l86 21c3 1 6 5 6 12c0 113 -47 130 -81 130c-38 0 -80 -11 -80 -42c0 -11 1 -17 2 -20c2 -4 3 -11 3 -18c0 -13 -18 -34 -47 -34c-23 0 -35 12 -35 36c0 57 83 111 165 111c73 0 151 -27 151 -169v-147c0 -46 1 -85 30 -85c12.7 0 29.5 9.8 37 16
-c11.3 -6.3 15.3 -14.7 17 -27c-20.7 -20 -56.7 -37 -95 -37c-50.4 0 -61 27 -67 58z" />
-    <glyph glyph-name="uni1EB0" unicode="&#x1eb0;" horiz-adv-x="695" 
-d="M307.9 888.1l93.2 -73.9c8.5 -7 11.5 -12.3 11.5 -18.5c0 -7 -5.30002 -13.2 -11.5 -13.2c-6.20001 0 -16.9 2.59998 -33.1 10.5l-118.6 55.5c14.1 15.6 32.2 29.4 58.5 39.6zM494 804c-6 -71 -70 -113 -136 -113c-73 0 -131 43 -136 113h28c8 -39 55 -61 108 -61
-c49 0 101 22 108 61h28zM263 283h177l-94 272h-6l-102.2 -258.7c-3.8 -10.3 3.2 -13.3 25.2 -13.3zM155 79c-15.6 -41.1 31.4 -45.4 69 -48c6 -6 6 -27 0 -33c-37 1 -87 2 -128 2c-30.3 0 -63 -1 -89 -2c-6 6 -6 27 0 33c43.5 3 74 9 100 71l227 536c13 0 40 11 55 20
-l206 -572c17.4 -48.2 51.2 -51.5 90 -55c6 -6 6 -27 0 -33c-35 1 -73 2 -114 2c-39 0 -94 -1 -131 -2c-6 6 -6 27 0 33c47.6 3.4 85.8 6.5 74 41l-58 169h-211c-24 0 -30 -4 -35 -17z" />
-    <glyph glyph-name="uni1EB1" unicode="&#x1eb1;" horiz-adv-x="457" 
-d="M177.9 749l53.9 -110.8c3.8 -8.79999 4.59999 -15 4.59999 -21.2c0 -4.40002 -5.39999 -9.59998 -11.6 -9.59998c-4.60001 0 -10 4.39996 -22.3 17.6l-87.8 95.9l1.60001 9.69995c6.2 5.30005 23.8 20.2 50 20.2c3.8 0 8.5 -0.899963 11.6 -1.79999zM98 647
-c11 -53 54 -90 108 -90c52 0 98 32 108 90l27 -12c-12 -86 -76 -135 -135 -135c-70 0 -121 50 -135 135zM293 233l-79 -21c-74 -19 -95 -65 -95 -110c0 -31 22 -71 72 -71c28 0 62 23 88 44c8 6 14 13 14 26v132zM293 48h-2l-20 -16c-44 -34 -74.2 -42 -109 -42
-c-70 0 -126 26 -126 108c0 68 69 121 165 145l86 21c3 1 6 5 6 12c0 113 -47 130 -81 130c-38 0 -80 -11 -80 -42c0 -11 1 -17 2 -20c2 -4 3 -11 3 -18c0 -13 -18 -34 -47 -34c-23 0 -35 12 -35 36c0 57 83 111 165 111c73 0 151 -27 151 -169v-147c0 -46 1 -85 30 -85
-c12.7 0 29.5 9.8 37 16c11.3 -6.3 15.3 -14.7 17 -27c-20.7 -20 -56.7 -37 -95 -37c-50.4 0 -61 27 -67 58z" />
-    <glyph glyph-name="uni1EB2" unicode="&#x1eb2;" horiz-adv-x="695" 
-d="M439 837c0 -22 -16 -33 -33 -44c-18 -12 -33 -24 -35 -49h-26c0 33 13 47 25 59c9 9 17 17 17 31c0 23 -14 35 -36 35c-19 0 -28 -9 -28 -14c0 -3 1 -6 3 -8c2 -3 6 -8 6 -15c0 -12 -11 -21 -27 -21c-20 0 -27 15 -27 27c0 21 28 55 82 55c64 0 79 -40 79 -56zM494 804
-c-6 -71 -70 -113 -136 -113c-73 0 -131 43 -136 113h28c8 -39 55 -61 108 -61c49 0 101 22 108 61h28zM263 283h177l-94 272h-6l-102.2 -258.7c-3.8 -10.3 3.2 -13.3 25.2 -13.3zM155 79c-15.6 -41.1 31.4 -45.4 69 -48c6 -6 6 -27 0 -33c-37 1 -87 2 -128 2
-c-30.3 0 -63 -1 -89 -2c-6 6 -6 27 0 33c43.5 3 74 9 100 71l227 536c13 0 40 11 55 20l206 -572c17.4 -48.2 51.2 -51.5 90 -55c6 -6 6 -27 0 -33c-35 1 -73 2 -114 2c-39 0 -94 -1 -131 -2c-6 6 -6 27 0 33c47.6 3.4 85.8 6.5 74 41l-58 169h-211c-24 0 -30 -4 -35 -17z
-" />
-    <glyph glyph-name="uni1EB3" unicode="&#x1eb3;" horiz-adv-x="457" 
-d="M279 692c0 -20 -15 -36 -31 -52c-17 -16 -27 -33 -29 -59h-28c1 34 14 56 25 73c8 12 13 24 13 36c0 23 -8 33 -29 33c-19 0 -24 -6 -24 -11c0 -4 1 -6 2 -8c1 -3 4 -9 4 -17c0 -11 -13 -21 -22 -21c-19 0 -27 15 -27 27c0 22 33 57 75 57c55 0 71 -41 71 -58zM98 647
-c11 -53 54 -90 108 -90c52 0 98 32 108 90l27 -12c-12 -86 -76 -135 -135 -135c-70 0 -121 50 -135 135zM293 233l-79 -21c-74 -19 -95 -65 -95 -110c0 -31 22 -71 72 -71c28 0 62 23 88 44c8 6 14 13 14 26v132zM293 48h-2l-20 -16c-44 -34 -74.2 -42 -109 -42
-c-70 0 -126 26 -126 108c0 68 69 121 165 145l86 21c3 1 6 5 6 12c0 113 -47 130 -81 130c-38 0 -80 -11 -80 -42c0 -11 1 -17 2 -20c2 -4 3 -11 3 -18c0 -13 -18 -34 -47 -34c-23 0 -35 12 -35 36c0 57 83 111 165 111c73 0 151 -27 151 -169v-147c0 -46 1 -85 30 -85
-c12.7 0 29.5 9.8 37 16c11.3 -6.3 15.3 -14.7 17 -27c-20.7 -20 -56.7 -37 -95 -37c-50.4 0 -61 27 -67 58z" />
-    <glyph glyph-name="uni1EB4" unicode="&#x1eb4;" horiz-adv-x="695" 
-d="M494 785c-6 -71 -70 -113 -136 -113c-73 0 -131 43 -136 113h28c8 -39 55 -61 108 -61c49 0 101 22 108 61h28zM263 283h177l-94 272h-6l-102.2 -258.7c-3.8 -10.3 3.2 -13.3 25.2 -13.3zM155 79c-15.6 -41.1 31.4 -45.4 69 -48c6 -6 6 -27 0 -33c-37 1 -87 2 -128 2
-c-30.3 0 -63 -1 -89 -2c-6 6 -6 27 0 33c43.5 3 74 9 100 71l227 536c13 0 40 11 55 20l206 -572c17.4 -48.2 51.2 -51.5 90 -55c6 -6 6 -27 0 -33c-35 1 -73 2 -114 2c-39 0 -94 -1 -131 -2c-6 6 -6 27 0 33c47.6 3.4 85.8 6.5 74 41l-58 169h-211c-24 0 -30 -4 -35 -17z
-M428.9 844c24.2 0 36.3 9.40002 51.7 49.3c12.1 1 23.1 -1.79999 29.7 -5.59998c-13.2 -57 -45.1 -94.1 -95.7 -94.1c-24.2 0 -47.3 17.1 -70.4 30.4c-19.8 10.5 -40.7 18 -59.4 18c-28.6 0 -39.6 -14.2 -50.6 -45.5c-12.1 -1.90002 -23.1 -1 -29.7 4.70001
-c15.4 56 40.7 93.1 88 93.1c33 0 57.2 -19 79.2 -32.3c17.6 -11.4 36.3 -18 57.2 -18z" />
-    <glyph glyph-name="uni1EB5" unicode="&#x1eb5;" horiz-adv-x="457" 
-d="M275 743c22 0 33 10 47 52c11 1 21 -2 27 -6c-12 -60 -41 -99 -87 -99c-22 0 -43 18 -64 32c-18 11 -37 19 -54 19c-26 0 -36 -15 -46 -48c-11 -2 -21 -1 -27 5c14 59 37 98 80 98c30 0 52 -20 72 -34c16 -12 33 -19 52 -19zM98 647c11 -53 54 -90 108 -90
-c52 0 98 32 108 90l27 -12c-12 -86 -76 -135 -135 -135c-70 0 -121 50 -135 135zM293 233l-79 -21c-74 -19 -95 -65 -95 -110c0 -31 22 -71 72 -71c28 0 62 23 88 44c8 6 14 13 14 26v132zM293 48h-2l-20 -16c-44 -34 -74.2 -42 -109 -42c-70 0 -126 26 -126 108
-c0 68 69 121 165 145l86 21c3 1 6 5 6 12c0 113 -47 130 -81 130c-38 0 -80 -11 -80 -42c0 -11 1 -17 2 -20c2 -4 3 -11 3 -18c0 -13 -18 -34 -47 -34c-23 0 -35 12 -35 36c0 57 83 111 165 111c73 0 151 -27 151 -169v-147c0 -46 1 -85 30 -85c12.7 0 29.5 9.8 37 16
-c11.3 -6.3 15.3 -14.7 17 -27c-20.7 -20 -56.7 -37 -95 -37c-50.4 0 -61 27 -67 58z" />
-    <glyph glyph-name="uni1EB6" unicode="&#x1eb6;" horiz-adv-x="695" 
-d="M491 804c-6 -71 -70 -113 -136 -113c-73 0 -131 43 -136 113h28c8 -39 55 -61 108 -61c49 0 101 22 108 61h28zM288 -156c0 24 28 48 52 48c27 0 48 -28 48 -52c0 -21.1 -24 -48 -52 -48c-24 0 -48 26 -48 52zM263 283h177l-94 272h-6l-102.2 -258.7
-c-3.8 -10.3 3.2 -13.3 25.2 -13.3zM155 79c-15.6 -41.1 31.4 -45.4 69 -48c6 -6 6 -27 0 -33c-37 1 -87 2 -128 2c-30.3 0 -63 -1 -89 -2c-6 6 -6 27 0 33c43.5 3 74 9 100 71l227 536c13 0 40 11 55 20l206 -572c17.4 -48.2 51.2 -51.5 90 -55c6 -6 6 -27 0 -33
-c-35 1 -73 2 -114 2c-39 0 -94 -1 -131 -2c-6 6 -6 27 0 33c47.6 3.4 85.8 6.5 74 41l-58 169h-211c-24 0 -30 -4 -35 -17z" />
-    <glyph glyph-name="uni1EB7" unicode="&#x1eb7;" horiz-adv-x="457" 
-d="M106 646c11 -53 54 -90 108 -90c52 0 98 32 108 90l27 -12c-12 -86 -76 -135 -135 -135c-70 0 -121 50 -135 135zM165 -156c0 24 28 48 52 48c27 0 48 -28 48 -52c0 -21.1 -24 -48 -52 -48c-24 0 -48 26 -48 52zM293 233l-79 -21c-74 -19 -95 -65 -95 -110
-c0 -31 22 -71 72 -71c28 0 62 23 88 44c8 6 14 13 14 26v132zM293 48h-2l-20 -16c-44 -34 -74.2 -42 -109 -42c-70 0 -126 26 -126 108c0 68 69 121 165 145l86 21c3 1 6 5 6 12c0 113 -47 130 -81 130c-38 0 -80 -11 -80 -42c0 -11 1 -17 2 -20c2 -4 3 -11 3 -18
-c0 -13 -18 -34 -47 -34c-23 0 -35 12 -35 36c0 57 83 111 165 111c73 0 151 -27 151 -169v-147c0 -46 1 -85 30 -85c12.7 0 29.5 9.8 37 16c11.3 -6.3 15.3 -14.7 17 -27c-20.7 -20 -56.7 -37 -95 -37c-50.4 0 -61 27 -67 58z" />
-    <glyph glyph-name="uni1EB8" unicode="&#x1eb8;" horiz-adv-x="557" 
-d="M241 -156c0 24 28 48 52 48c27 0 48 -28 48 -52c0 -21.1 -24 -48 -52 -48c-24 0 -48 26 -48 52zM281 361c85 0 88 13 91 68c6 6 27 6 33 0c-1 -24 -2 -58 -2 -86c0 -34.3 1 -62 2 -88c-6 -6 -27 -6 -33 0c-3 45 -6 68 -91 68h-91v-221c0 -47 14 -63 56 -63h116
-c76 0 111 59 131 131c13.1 3.2 24.6 1 35 -5c-8 -51 -23 -117 -37 -167c0 0 -80 2 -128 2h-215c-33 0 -93 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c40 -1 98.5 -2 129 -2h255c24 0 32 1 49 4c3 0 4 -1 4 -3
-c2 -8 17 -104 22 -145c-9.79999 -4.70001 -20.6 -6.79999 -33 -5c-22 69 -38 109 -113 109h-75c-54 0 -66 -20 -66 -64v-180h91z" />
-    <glyph glyph-name="uni1EB9" unicode="&#x1eb9;" horiz-adv-x="447" 
-d="M178 -156c0 24 28 48 52 48c27 0 48 -28 48 -52c0 -21.1 -24 -48 -52 -48c-24 0 -48 26 -48 52zM124 282l181 3c11 0.200012 15 5 15 14c0 84 -45 105 -83 105c-24 0 -94 -9 -113 -122zM386 93c12 -1 18 -6 21 -16c-40 -52 -94 -87 -170 -87c-72 0 -119 24 -153 64
-c-33 38 -47 92 -47 148c0 152 113 235 200 235c139 0 169 -90 169 -174c0 -11 -7 -17 -19 -17l-266 2c0 -58 12 -104 32 -137c31 -51 73 -72 109 -72c58 0 87 16 124 54z" />
-    <glyph glyph-name="uni1EBA" unicode="&#x1eba;" horiz-adv-x="557" 
-d="M377 759c0 -22 -16 -33 -33 -44c-18 -12 -33 -24 -35 -49h-26c0 33 13 47 25 59c9 9 17 17 17 31c0 23 -14 35 -36 35c-19 0 -28 -9 -28 -14c0 -3 1 -6 3 -8c2 -3 6 -8 6 -15c0 -12 -11 -21 -27 -21c-20 0 -27 15 -27 27c0 21 28 55 82 55c64 0 79 -40 79 -56zM281 361
-c85 0 88 13 91 68c6 6 27 6 33 0c-1 -24 -2 -58 -2 -86c0 -34.3 1 -62 2 -88c-6 -6 -27 -6 -33 0c-3 45 -6 68 -91 68h-91v-221c0 -47 14 -63 56 -63h116c76 0 111 59 131 131c13.1 3.2 24.6 1 35 -5c-8 -51 -23 -117 -37 -167c0 0 -80 2 -128 2h-215c-33 0 -93 -1 -130 -2
-c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c40 -1 98.5 -2 129 -2h255c24 0 32 1 49 4c3 0 4 -1 4 -3c2 -8 17 -104 22 -145c-9.79999 -4.70001 -20.6 -6.79999 -33 -5c-22 69 -38 109 -113 109h-75c-54 0 -66 -20 -66 -64v-180h91z" />
-    <glyph glyph-name="uni1EBB" unicode="&#x1ebb;" horiz-adv-x="447" 
-d="M298 599c0 -20 -15 -36 -31 -52c-17 -16 -27 -33 -29 -59h-28c1 34 14 56 25 73c8 12 13 24 13 36c0 23 -8 33 -29 33c-19 0 -24 -6 -24 -11c0 -4 1 -6 2 -8c1 -3 4 -9 4 -17c0 -11 -13 -21 -22 -21c-19 0 -27 15 -27 27c0 22 33 57 75 57c55 0 71 -41 71 -58zM124 282
-l181 3c11 0.200012 15 5 15 14c0 84 -45 105 -83 105c-24 0 -94 -9 -113 -122zM386 93c12 -1 18 -6 21 -16c-40 -52 -94 -87 -170 -87c-72 0 -119 24 -153 64c-33 38 -47 92 -47 148c0 152 113 235 200 235c139 0 169 -90 169 -174c0 -11 -7 -17 -19 -17l-266 2
-c0 -58 12 -104 32 -137c31 -51 73 -72 109 -72c58 0 87 16 124 54z" />
-    <glyph glyph-name="uni1EBC" unicode="&#x1ebc;" horiz-adv-x="557" 
-d="M380 736c22 0 33 10 47 52c11 1 21 -2 27 -6c-12 -60 -41 -99 -87 -99c-22 0 -43 18 -64 32c-18 11 -37 19 -54 19c-26 0 -36 -15 -46 -48c-11 -2 -21 -1 -27 5c14 59 37 98 80 98c30 0 52 -20 72 -34c16 -12 33 -19 52 -19zM281 361c85 0 88 13 91 68c6 6 27 6 33 0
-c-1 -24 -2 -58 -2 -86c0 -34.3 1 -62 2 -88c-6 -6 -27 -6 -33 0c-3 45 -6 68 -91 68h-91v-221c0 -47 14 -63 56 -63h116c76 0 111 59 131 131c13.1 3.2 24.6 1 35 -5c-8 -51 -23 -117 -37 -167c0 0 -80 2 -128 2h-215c-33 0 -93 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91
-v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c40 -1 98.5 -2 129 -2h255c24 0 32 1 49 4c3 0 4 -1 4 -3c2 -8 17 -104 22 -145c-9.79999 -4.70001 -20.6 -6.79999 -33 -5c-22 69 -38 109 -113 109h-75c-54 0 -66 -20 -66 -64v-180h91z" />
-    <glyph glyph-name="uni1EBD" unicode="&#x1ebd;" horiz-adv-x="447" 
-d="M289 573c22 0 33 10 47 52c11 1 21 -2 27 -6c-12 -60 -41 -99 -87 -99c-22 0 -43 18 -64 32c-18 11 -37 19 -54 19c-26 0 -36 -15 -46 -48c-11 -2 -21 -1 -27 5c14 59 37 98 80 98c30 0 52 -20 72 -34c16 -12 33 -19 52 -19zM124 282l181 3c11 0.200012 15 5 15 14
-c0 84 -45 105 -83 105c-24 0 -94 -9 -113 -122zM386 93c12 -1 18 -6 21 -16c-40 -52 -94 -87 -170 -87c-72 0 -119 24 -153 64c-33 38 -47 92 -47 148c0 152 113 235 200 235c139 0 169 -90 169 -174c0 -11 -7 -17 -19 -17l-266 2c0 -58 12 -104 32 -137
-c31 -51 73 -72 109 -72c58 0 87 16 124 54z" />
-    <glyph glyph-name="uni1EBE" unicode="&#x1ebe;" horiz-adv-x="557" 
-d="M495.1 861.4c20.1 -10.7 34.5 -24.5 43.4 -41.6l-100.8 -46.4c-14.7 -7.20001 -23.1 -9.60004 -29.4 -9.60004c-6.29999 0 -10.5 5.60004 -10.5 12c0 5.60004 1.40002 9.60004 10.5 16.8zM315 808c30 -36 67 -70 103 -97c-2.79999 -9.09998 -6.89999 -17.2 -16 -21
-c-39 18 -73 36 -106 61c-37 -27 -69 -44 -107 -61c-9 6 -12 12 -14 21c37 28 70 63 101 97c14 8.40002 23.6 7.70001 39 0zM281 361c85 0 88 13 91 68c6 6 27 6 33 0c-1 -24 -2 -58 -2 -86c0 -34.3 1 -62 2 -88c-6 -6 -27 -6 -33 0c-3 45 -6 68 -91 68h-91v-221
-c0 -47 14 -63 56 -63h116c76 0 111 59 131 131c13.1 3.2 24.6 1 35 -5c-8 -51 -23 -117 -37 -167c0 0 -80 2 -128 2h-215c-33 0 -93 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c40 -1 98.5 -2 129 -2h255c24 0 32 1 49 4
-c3 0 4 -1 4 -3c2 -8 17 -104 22 -145c-9.79999 -4.70001 -20.6 -6.79999 -33 -5c-22 69 -38 109 -113 109h-75c-54 0 -66 -20 -66 -64v-180h91z" />
-    <glyph glyph-name="uni1EBF" unicode="&#x1ebf;" horiz-adv-x="447" 
-d="M394.6 713.4c2.10001 0.799988 6.29999 1.59998 9.79999 1.59998c4.5 0 22.4 -0.799988 38.5 -18.4l2.10001 -8.79999l-80.5 -87.2c-10.5 -12 -16.1 -15.2 -21 -15.2s-9.79999 4.79999 -9.79999 10.4c0 9 2.29999 12.1 8 22.4zM249 660c29 -47 73 -100 109 -140
-c-5 -7 -13.6 -15.1 -23 -17c-38 24 -73 52 -103 83c-32 -32 -65 -61 -104 -83c-9 2 -16 8 -22 17c36 40 82 94 111 140c10.7 2.29999 21.3 3 32 0zM124 282l181 3c11 0.200012 15 5 15 14c0 84 -45 105 -83 105c-24 0 -94 -9 -113 -122zM386 93c12 -1 18 -6 21 -16
-c-40 -52 -94 -87 -170 -87c-72 0 -119 24 -153 64c-33 38 -47 92 -47 148c0 152 113 235 200 235c139 0 169 -90 169 -174c0 -11 -7 -17 -19 -17l-266 2c0 -58 12 -104 32 -137c31 -51 73 -72 109 -72c58 0 87 16 124 54z" />
-    <glyph glyph-name="uni1EC0" unicode="&#x1ec0;" horiz-adv-x="557" 
-d="M104.1 862.8l84.7 -67.2c7.7 -6.39996 10.5 -11.2 10.5 -16.8c0 -6.39996 -4.90001 -12 -10.5 -12c-5.60001 0 -15.4 2.40002 -30.1 9.60004l-107.8 50.4c12.8 14.2 29.3 26.7 53.2 36zM315 808c30 -36 67 -70 103 -97c-2.79999 -9.09998 -6.89999 -17.2 -16 -21
-c-39 18 -73 36 -106 61c-37 -27 -69 -44 -107 -61c-9 6 -12 12 -14 21c37 28 70 63 101 97c14 8.40002 23.6 7.70001 39 0zM281 361c85 0 88 13 91 68c6 6 27 6 33 0c-1 -24 -2 -58 -2 -86c0 -34.3 1 -62 2 -88c-6 -6 -27 -6 -33 0c-3 45 -6 68 -91 68h-91v-221
-c0 -47 14 -63 56 -63h116c76 0 111 59 131 131c13.1 3.2 24.6 1 35 -5c-8 -51 -23 -117 -37 -167c0 0 -80 2 -128 2h-215c-33 0 -93 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c40 -1 98.5 -2 129 -2h255c24 0 32 1 49 4
-c3 0 4 -1 4 -3c2 -8 17 -104 22 -145c-9.79999 -4.70001 -20.6 -6.79999 -33 -5c-22 69 -38 109 -113 109h-75c-54 0 -66 -20 -66 -64v-180h91z" />
-    <glyph glyph-name="uni1EC1" unicode="&#x1ec1;" horiz-adv-x="447" 
-d="M84.8 713.4l49 -100.8c3.5 -8 4.2 -13.6 4.2 -19.2c0 -4 -4.89999 -8.80005 -10.5 -8.80005c-4.2 0 -9.1 4 -20.3 16l-79.8 87.2l1.4 8.79999c5.6 4.80005 21.7 18.4 45.5 18.4c3.5 0 7.7 -0.799988 10.5 -1.59998zM249 660c29 -47 73 -100 109 -140
-c-5 -7 -13.6 -15.1 -23 -17c-38 24 -73 52 -103 83c-32 -32 -65 -61 -104 -83c-9 2 -16 8 -22 17c36 40 82 94 111 140c10.7 2.29999 21.3 3 32 0zM124 282l181 3c11 0.200012 15 5 15 14c0 84 -45 105 -83 105c-24 0 -94 -9 -113 -122zM386 93c12 -1 18 -6 21 -16
-c-40 -52 -94 -87 -170 -87c-72 0 -119 24 -153 64c-33 38 -47 92 -47 148c0 152 113 235 200 235c139 0 169 -90 169 -174c0 -11 -7 -17 -19 -17l-266 2c0 -58 12 -104 32 -137c31 -51 73 -72 109 -72c58 0 87 16 124 54z" />
-    <glyph glyph-name="uni1EC2" unicode="&#x1ec2;" horiz-adv-x="557" 
-d="M279 808c30 -36 67 -70 103 -97c-2.79999 -9.09998 -6.89999 -17.2 -16 -21c-39 18 -73 36 -106 61c-37 -27 -69 -44 -107 -61c-9 6 -12 12 -14 21c37 28 70 63 101 97c14 8.40002 23.6 7.70001 39 0zM281 361c85 0 88 13 91 68c6 6 27 6 33 0c-1 -24 -2 -58 -2 -86
-c0 -34.3 1 -62 2 -88c-6 -6 -27 -6 -33 0c-3 45 -6 68 -91 68h-91v-221c0 -47 14 -63 56 -63h116c76 0 111 59 131 131c13.1 3.2 24.6 1 35 -5c-8 -51 -23 -117 -37 -167c0 0 -80 2 -128 2h-215c-33 0 -93 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401
-c0 83 -17 88 -87 91c-6 6 -6 27 0 33c40 -1 98.5 -2 129 -2h255c24 0 32 1 49 4c3 0 4 -1 4 -3c2 -8 17 -104 22 -145c-9.79999 -4.70001 -20.6 -6.79999 -33 -5c-22 69 -38 109 -113 109h-75c-54 0 -66 -20 -66 -64v-180h91zM499 818c0 -22 -16 -33 -33 -44
-c-18 -12 -33 -24 -35 -49h-26c0 33 13 47 25 59c9 9 17 17 17 31c0 23 -14 35 -36 35c-19 0 -28 -9 -28 -14c0 -3 1 -6 3 -8c2 -3 6 -8 6 -15c0 -12 -11 -21 -27 -21c-20 0 -27 15 -27 27c0 21 28 55 82 55c64 0 79 -40 79 -56z" />
-    <glyph glyph-name="uni1EC3" unicode="&#x1ec3;" horiz-adv-x="447" 
-d="M428 696c0 -20 -15 -36 -31 -52c-17 -16 -27 -33 -29 -59h-28c1 34 14 56 25 73c8 12 13 24 13 36c0 23 -8 33 -29 33c-19 0 -24 -6 -24 -11c0 -4 1 -6 2 -8c1 -3 4 -9 4 -17c0 -11 -13 -21 -22 -21c-19 0 -27 15 -27 27c0 22 33 57 75 57c55 0 71 -41 71 -58zM249 660
-c29 -47 73 -100 109 -140c-5 -7 -13.6 -15.1 -23 -17c-38 24 -73 52 -103 83c-32 -32 -65 -61 -104 -83c-9 2 -16 8 -22 17c36 40 82 94 111 140c10.7 2.29999 21.3 3 32 0zM124 282l181 3c11 0.200012 15 5 15 14c0 84 -45 105 -83 105c-24 0 -94 -9 -113 -122zM386 93
-c12 -1 18 -6 21 -16c-40 -52 -94 -87 -170 -87c-72 0 -119 24 -153 64c-33 38 -47 92 -47 148c0 152 113 235 200 235c139 0 169 -90 169 -174c0 -11 -7 -17 -19 -17l-266 2c0 -58 12 -104 32 -137c31 -51 73 -72 109 -72c58 0 87 16 124 54z" />
-    <glyph glyph-name="uni1EC4" unicode="&#x1ec4;" horiz-adv-x="557" 
-d="M315 776c30 -36 67 -70 103 -97c-2.79999 -9.09998 -6.89999 -17.2 -16 -21c-39 18 -73 36 -106 61c-37 -27 -69 -44 -107 -61c-9 6 -12 12 -14 21c37 28 70 63 101 97c14 8.40002 23.6 7.70001 39 0zM281 361c85 0 88 13 91 68c6 6 27 6 33 0c-1 -24 -2 -58 -2 -86
-c0 -34.3 1 -62 2 -88c-6 -6 -27 -6 -33 0c-3 45 -6 68 -91 68h-91v-221c0 -47 14 -63 56 -63h116c76 0 111 59 131 131c13.1 3.2 24.6 1 35 -5c-8 -51 -23 -117 -37 -167c0 0 -80 2 -128 2h-215c-33 0 -93 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401
-c0 83 -17 88 -87 91c-6 6 -6 27 0 33c40 -1 98.5 -2 129 -2h255c24 0 32 1 49 4c3 0 4 -1 4 -3c2 -8 17 -104 22 -145c-9.79999 -4.70001 -20.6 -6.79999 -33 -5c-22 69 -38 109 -113 109h-75c-54 0 -66 -20 -66 -64v-180h91zM367.9 843c24.2 0 36.3 9.40002 51.7 49.3
-c12.1 1 23.1 -1.79999 29.7 -5.59998c-13.2 -57 -45.1 -94.1 -95.7 -94.1c-24.2 0 -47.3 17.1 -70.4 30.4c-19.8 10.5 -40.7 18 -59.4 18c-28.6 0 -39.6 -14.2 -50.6 -45.5c-12.1 -1.90002 -23.1 -1 -29.7 4.70001c15.4 56 40.7 93.1 88 93.1c33 0 57.2 -19 79.2 -32.3
-c17.6 -11.4 36.3 -18 57.2 -18z" />
-    <glyph glyph-name="uni1EC5" unicode="&#x1ec5;" horiz-adv-x="447" 
-d="M303 740c22 0 33 10 47 52c11 1 21 -2 27 -6c-12 -60 -41 -99 -87 -99c-22 0 -43 18 -64 32c-18 11 -37 19 -54 19c-26 0 -36 -15 -46 -48c-11 -2 -21 -1 -27 5c14 59 37 98 80 98c30 0 52 -20 72 -34c16 -12 33 -19 52 -19zM249 660c29 -47 73 -100 109 -140
-c-5 -7 -13.6 -15.1 -23 -17c-38 24 -73 52 -103 83c-32 -32 -65 -61 -104 -83c-9 2 -16 8 -22 17c36 40 82 94 111 140c10.7 2.29999 21.3 3 32 0zM124 282l181 3c11 0.200012 15 5 15 14c0 84 -45 105 -83 105c-24 0 -94 -9 -113 -122zM386 93c12 -1 18 -6 21 -16
-c-40 -52 -94 -87 -170 -87c-72 0 -119 24 -153 64c-33 38 -47 92 -47 148c0 152 113 235 200 235c139 0 169 -90 169 -174c0 -11 -7 -17 -19 -17l-266 2c0 -58 12 -104 32 -137c31 -51 73 -72 109 -72c58 0 87 16 124 54z" />
-    <glyph glyph-name="uni1EC6" unicode="&#x1ec6;" horiz-adv-x="557" 
-d="M298 809c30 -36 67 -70 103 -97c-2.79999 -9.09998 -6.89999 -17.2 -16 -21c-39 18 -73 36 -106 61c-37 -27 -69 -44 -107 -61c-9 6 -12 12 -14 21c37 28 70 63 101 97c14 8.40002 23.6 7.70001 39 0zM241 -156c0 24 28 48 52 48c27 0 48 -28 48 -52
-c0 -21.1 -24 -48 -52 -48c-24 0 -48 26 -48 52zM281 361c85 0 88 13 91 68c6 6 27 6 33 0c-1 -24 -2 -58 -2 -86c0 -34.3 1 -62 2 -88c-6 -6 -27 -6 -33 0c-3 45 -6 68 -91 68h-91v-221c0 -47 14 -63 56 -63h116c76 0 111 59 131 131c13.1 3.2 24.6 1 35 -5
-c-8 -51 -23 -117 -37 -167c0 0 -80 2 -128 2h-215c-33 0 -93 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c40 -1 98.5 -2 129 -2h255c24 0 32 1 49 4c3 0 4 -1 4 -3c2 -8 17 -104 22 -145c-9.79999 -4.70001 -20.6 -6.79999 -33 -5
-c-22 69 -38 109 -113 109h-75c-54 0 -66 -20 -66 -64v-180h91z" />
-    <glyph glyph-name="uni1EC7" unicode="&#x1ec7;" horiz-adv-x="447" 
-d="M244 660c29 -47 73 -100 109 -140c-5 -7 -13.6 -15.1 -23 -17c-38 24 -73 52 -103 83c-32 -32 -65 -61 -104 -83c-9 2 -16 8 -22 17c36 40 82 94 111 140c10.7 2.29999 21.3 3 32 0zM178 -156c0 24 28 48 52 48c27 0 48 -28 48 -52c0 -21.1 -24 -48 -52 -48
-c-24 0 -48 26 -48 52zM124 282l181 3c11 0.200012 15 5 15 14c0 84 -45 105 -83 105c-24 0 -94 -9 -113 -122zM386 93c12 -1 18 -6 21 -16c-40 -52 -94 -87 -170 -87c-72 0 -119 24 -153 64c-33 38 -47 92 -47 148c0 152 113 235 200 235c139 0 169 -90 169 -174
-c0 -11 -7 -17 -19 -17l-266 2c0 -58 12 -104 32 -137c31 -51 73 -72 109 -72c58 0 87 16 124 54z" />
-    <glyph glyph-name="uni1EC8" unicode="&#x1ec8;" horiz-adv-x="297" 
-d="M230 759c0 -22 -16 -33 -33 -44c-18 -12 -33 -24 -35 -49h-26c0 33 13 47 25 59c9 9 17 17 17 31c0 23 -14 35 -36 35c-19 0 -28 -9 -28 -14c0 -3 1 -6 3 -8c2 -3 6 -8 6 -15c0 -12 -11 -21 -27 -21c-20 0 -27 15 -27 27c0 21 28 55 82 55c64 0 79 -40 79 -56zM191 122
-c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-45 1 -93.4 2 -129 2c-36.3 0 -85 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c47 -1 95.5 -2 129 -2c38.5 0 86 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-401z" />
-    <glyph glyph-name="uni1EC9" unicode="&#x1ec9;" horiz-adv-x="271" 
-d="M208 599c0 -20 -15 -36 -31 -52c-17 -16 -27 -33 -29 -59h-28c1 34 14 56 25 73c8 12 13 24 13 36c0 23 -8 33 -29 33c-19 0 -24 -6 -24 -11c0 -4 1 -6 2 -8c1 -3 4 -9 4 -17c0 -11 -13 -21 -22 -21c-19 0 -27 15 -27 27c0 22 33 57 75 57c55 0 71 -41 71 -58zM181 122
-c0 -83 11 -87 72 -91c6 -6 6 -27 0 -33c-33 1 -71 2 -111 2s-79 -1 -112 -2c-6 6 -6 27 0 33c61 5 72 8 72 91v195c0 57 -10.5 62.9 -65 68c-2 6 -4 22 -2 28c69 9 108.5 18 137 29c8 0 13 -3 13 -7c0 0 -4 -64 -4 -113.7v-199.3z" />
-    <glyph glyph-name="uni1ECA" unicode="&#x1eca;" horiz-adv-x="297" 
-d="M101 -156c0 24 28 48 52 48c27 0 48 -28 48 -52c0 -21.1 -24 -48 -52 -48c-24 0 -48 26 -48 52zM191 122c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-45 1 -93.4 2 -129 2c-36.3 0 -85 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33
-c47 -1 95.5 -2 129 -2c38.5 0 86 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-401z" />
-    <glyph glyph-name="uni1ECB" unicode="&#x1ecb;" horiz-adv-x="271" 
-d="M87 -156c0 24 28 48 52 48c27 0 48 -28 48 -52c0 -21.1 -24 -48 -52 -48c-24 0 -48 26 -48 52zM90 599c0 24 28 48 52 48c27 0 48 -28 48 -52c0 -21.1 -24 -48 -52 -48c-24 0 -48 26 -48 52zM181 122c0 -83 11 -87 72 -91c6 -6 6 -27 0 -33c-33 1 -71 2 -111 2
-s-79 -1 -112 -2c-6 6 -6 27 0 33c61 5 72 8 72 91v195c0 57 -10.5 62.9 -65 68c-2 6 -4 22 -2 28c69 9 108.5 18 137 29c8 0 13 -3 13 -7c0 0 -4 -64 -4 -113.7v-199.3z" />
-    <glyph glyph-name="uni1ECC" unicode="&#x1ecc;" horiz-adv-x="702" 
-d="M305 -156c0 24 28 48 52 48c27 0 48 -28 48 -52c0 -21.1 -24 -48 -52 -48c-24 0 -48 26 -48 52zM331 622c-99 0 -198 -85 -198 -295c0 -192 115 -301 237 -301c114 0 200 105 200 284c0 202 -107 312 -239 312zM666 329c0 -84 -22 -156.3 -61.8 -213
-c-54.9 -78.3 -143.4 -126 -254.2 -126c-170 0 -313 123 -313 320c0 193.9 113.3 348 307 348c179 0 322 -122 322 -329z" />
-    <glyph glyph-name="uni1ECD" unicode="&#x1ecd;" horiz-adv-x="504" 
-d="M194 -156c0 24 28 48 52 48c27 0 48 -28 48 -52c0 -21.1 -24 -48 -52 -48c-24 0 -48 26 -48 52zM41 205c0 63.2 19 121.4 55.3 164c36.6 43 90.9 70 156.7 70c153 0 210 -121 210 -225c0 -61.3 -20.3 -124.2 -65.1 -168c-34.1 -33.3 -82.5 -56 -146.9 -56
-c-142 0 -210 113 -210 215zM238 404c-90 0 -111 -89 -111 -176c0 -77 34 -203 138 -203c47 0 112 31 112 157c0 144 -53 222 -139 222z" />
-    <glyph glyph-name="uni1ECE" unicode="&#x1ece;" horiz-adv-x="702" 
-d="M424 783c0 -22 -16 -33 -33 -44c-18 -12 -33 -24 -35 -49h-26c0 33 13 47 25 59c9 9 17 17 17 31c0 23 -14 35 -36 35c-19 0 -28 -9 -28 -14c0 -3 1 -6 3 -8c2 -3 6 -8 6 -15c0 -12 -11 -21 -27 -21c-20 0 -27 15 -27 27c0 21 28 55 82 55c64 0 79 -40 79 -56zM331 622
-c-99 0 -198 -85 -198 -295c0 -192 115 -301 237 -301c114 0 200 105 200 284c0 202 -107 312 -239 312zM666 329c0 -84 -22 -156.3 -61.8 -213c-54.9 -78.3 -143.4 -126 -254.2 -126c-170 0 -313 123 -313 320c0 193.9 113.3 348 307 348c179 0 322 -122 322 -329z" />
-    <glyph glyph-name="uni1ECF" unicode="&#x1ecf;" horiz-adv-x="504" 
-d="M309 599c0 -20 -15 -36 -31 -52c-17 -16 -27 -33 -29 -59h-28c1 34 14 56 25 73c8 12 13 24 13 36c0 23 -8 33 -29 33c-19 0 -24 -6 -24 -11c0 -4 1 -6 2 -8c1 -3 4 -9 4 -17c0 -11 -13 -21 -22 -21c-19 0 -27 15 -27 27c0 22 33 57 75 57c55 0 71 -41 71 -58zM41 205
-c0 63.2 19 121.4 55.3 164c36.6 43 90.9 70 156.7 70c153 0 210 -121 210 -225c0 -61.3 -20.3 -124.2 -65.1 -168c-34.1 -33.3 -82.5 -56 -146.9 -56c-142 0 -210 113 -210 215zM238 404c-90 0 -111 -89 -111 -176c0 -77 34 -203 138 -203c47 0 112 31 112 157
-c0 144 -53 222 -139 222z" />
-    <glyph glyph-name="uni1ED0" unicode="&#x1ed0;" horiz-adv-x="702" 
-d="M541.1 856.4c20.1 -10.7 34.5 -24.5 43.4 -41.6l-100.8 -46.4c-14.7 -7.20001 -23.1 -9.60004 -29.4 -9.60004c-6.29999 0 -10.5 5.60004 -10.5 12c0 5.60004 1.40002 9.60004 10.5 16.8zM366 808c30 -36 67 -70 103 -97c-2.79999 -9.09998 -6.89999 -17.2 -16 -21
-c-39 18 -73 36 -106 61c-37 -27 -69 -44 -107 -61c-9 6 -12 12 -14 21c37 28 70 63 101 97c14 8.40002 23.6 7.70001 39 0zM331 622c-99 0 -198 -85 -198 -295c0 -192 115 -301 237 -301c114 0 200 105 200 284c0 202 -107 312 -239 312zM666 329
-c0 -84 -22 -156.3 -61.8 -213c-54.9 -78.3 -143.4 -126 -254.2 -126c-170 0 -313 123 -313 320c0 193.9 113.3 348 307 348c179 0 322 -122 322 -329z" />
-    <glyph glyph-name="uni1ED1" unicode="&#x1ed1;" horiz-adv-x="504" 
-d="M402.6 713.4c2.10001 0.799988 6.29999 1.59998 9.79999 1.59998c4.5 0 22.4 -0.799988 38.5 -18.4l2.10001 -8.79999l-80.5 -87.2c-10.5 -12 -16.1 -15.2 -21 -15.2s-9.79999 4.79999 -9.79999 10.4c0 9 2.29999 12.1 8 22.4zM268 660c29 -47 73 -100 109 -140
-c-5 -7 -13.6 -15.1 -23 -17c-38 24 -73 52 -103 83c-32 -32 -65 -61 -104 -83c-9 2 -16 8 -22 17c36 40 82 94 111 140c10.7 2.29999 21.3 3 32 0zM41 205c0 63.2 19 121.4 55.3 164c36.6 43 90.9 70 156.7 70c153 0 210 -121 210 -225c0 -61.3 -20.3 -124.2 -65.1 -168
-c-34.1 -33.3 -82.5 -56 -146.9 -56c-142 0 -210 113 -210 215zM238 404c-90 0 -111 -89 -111 -176c0 -77 34 -203 138 -203c47 0 112 31 112 157c0 144 -53 222 -139 222z" />
-    <glyph glyph-name="uni1ED2" unicode="&#x1ed2;" horiz-adv-x="702" 
-d="M158.1 864.8l84.7 -67.2c7.7 -6.39996 10.5 -11.2 10.5 -16.8c0 -6.39996 -4.90001 -12 -10.5 -12c-5.60001 0 -15.4 2.40002 -30.1 9.60004l-107.8 50.4c12.8 14.2 29.3 26.7 53.2 36zM366 808c30 -36 67 -70 103 -97c-2.79999 -9.09998 -6.89999 -17.2 -16 -21
-c-39 18 -73 36 -106 61c-37 -27 -69 -44 -107 -61c-9 6 -12 12 -14 21c37 28 70 63 101 97c14 8.40002 23.6 7.70001 39 0zM331 622c-99 0 -198 -85 -198 -295c0 -192 115 -301 237 -301c114 0 200 105 200 284c0 202 -107 312 -239 312zM666 329
-c0 -84 -22 -156.3 -61.8 -213c-54.9 -78.3 -143.4 -126 -254.2 -126c-170 0 -313 123 -313 320c0 193.9 113.3 348 307 348c179 0 322 -122 322 -329z" />
-    <glyph glyph-name="uni1ED3" unicode="&#x1ed3;" horiz-adv-x="504" 
-d="M84.8 713.4l49 -100.8c3.5 -8 4.2 -13.6 4.2 -19.2c0 -4 -4.89999 -8.80005 -10.5 -8.80005c-4.2 0 -9.1 4 -20.3 16l-79.8 87.2l1.4 8.79999c5.6 4.80005 21.7 18.4 45.5 18.4c3.5 0 7.7 -0.799988 10.5 -1.59998zM268 660c29 -47 73 -100 109 -140
-c-5 -7 -13.6 -15.1 -23 -17c-38 24 -73 52 -103 83c-32 -32 -65 -61 -104 -83c-9 2 -16 8 -22 17c36 40 82 94 111 140c10.7 2.29999 21.3 3 32 0zM41 205c0 63.2 19 121.4 55.3 164c36.6 43 90.9 70 156.7 70c153 0 210 -121 210 -225c0 -61.3 -20.3 -124.2 -65.1 -168
-c-34.1 -33.3 -82.5 -56 -146.9 -56c-142 0 -210 113 -210 215zM238 404c-90 0 -111 -89 -111 -176c0 -77 34 -203 138 -203c47 0 112 31 112 157c0 144 -53 222 -139 222z" />
-    <glyph glyph-name="uni1ED4" unicode="&#x1ed4;" horiz-adv-x="702" 
-d="M578 819c0 -22 -16 -33 -33 -44c-18 -12 -33 -24 -35 -49h-26c0 33 13 47 25 59c9 9 17 17 17 31c0 23 -14 35 -36 35c-19 0 -28 -9 -28 -14c0 -3 1 -6 3 -8c2 -3 6 -8 6 -15c0 -12 -11 -21 -27 -21c-20 0 -27 15 -27 27c0 21 28 55 82 55c64 0 79 -40 79 -56zM366 808
-c30 -36 67 -70 103 -97c-2.79999 -9.09998 -6.89999 -17.2 -16 -21c-39 18 -73 36 -106 61c-37 -27 -69 -44 -107 -61c-9 6 -12 12 -14 21c37 28 70 63 101 97c14 8.40002 23.6 7.70001 39 0zM331 622c-99 0 -198 -85 -198 -295c0 -192 115 -301 237 -301
-c114 0 200 105 200 284c0 202 -107 312 -239 312zM666 329c0 -84 -22 -156.3 -61.8 -213c-54.9 -78.3 -143.4 -126 -254.2 -126c-170 0 -313 123 -313 320c0 193.9 113.3 348 307 348c179 0 322 -122 322 -329z" />
-    <glyph glyph-name="uni1ED5" unicode="&#x1ed5;" horiz-adv-x="504" 
-d="M440 696c0 -20 -15 -36 -31 -52c-17 -16 -27 -33 -29 -59h-28c1 34 14 56 25 73c8 12 13 24 13 36c0 23 -8 33 -29 33c-19 0 -24 -6 -24 -11c0 -4 1 -6 2 -8c1 -3 4 -9 4 -17c0 -11 -13 -21 -22 -21c-19 0 -27 15 -27 27c0 22 33 57 75 57c55 0 71 -41 71 -58zM268 660
-c29 -47 73 -100 109 -140c-5 -7 -13.6 -15.1 -23 -17c-38 24 -73 52 -103 83c-32 -32 -65 -61 -104 -83c-9 2 -16 8 -22 17c36 40 82 94 111 140c10.7 2.29999 21.3 3 32 0zM41 205c0 63.2 19 121.4 55.3 164c36.6 43 90.9 70 156.7 70c153 0 210 -121 210 -225
-c0 -61.3 -20.3 -124.2 -65.1 -168c-34.1 -33.3 -82.5 -56 -146.9 -56c-142 0 -210 113 -210 215zM238 404c-90 0 -111 -89 -111 -176c0 -77 34 -203 138 -203c47 0 112 31 112 157c0 144 -53 222 -139 222z" />
-    <glyph glyph-name="uni1ED6" unicode="&#x1ed6;" horiz-adv-x="702" 
-d="M366 780c30 -36 67 -70 103 -97c-2.79999 -9.09998 -6.89999 -17.2 -16 -21c-39 18 -73 36 -106 61c-37 -27 -69 -44 -107 -61c-9 6 -12 12 -14 21c37 28 70 63 101 97c14 8.40002 23.6 7.70001 39 0zM331 622c-99 0 -198 -85 -198 -295c0 -192 115 -301 237 -301
-c114 0 200 105 200 284c0 202 -107 312 -239 312zM666 329c0 -84 -22 -156.3 -61.8 -213c-54.9 -78.3 -143.4 -126 -254.2 -126c-170 0 -313 123 -313 320c0 193.9 113.3 348 307 348c179 0 322 -122 322 -329zM423.9 843c24.2 0 36.3 9.40002 51.7 49.3
-c12.1 1 23.1 -1.79999 29.7 -5.59998c-13.2 -57 -45.1 -94.1 -95.7 -94.1c-24.2 0 -47.3 17.1 -70.4 30.4c-19.8 10.5 -40.7 18 -59.4 18c-28.6 0 -39.6 -14.2 -50.6 -45.5c-12.1 -1.90002 -23.1 -1 -29.7 4.70001c15.4 56 40.7 93.1 88 93.1c33 0 57.2 -19 79.2 -32.3
-c17.6 -11.4 36.3 -18 57.2 -18z" />
-    <glyph glyph-name="uni1ED7" unicode="&#x1ed7;" horiz-adv-x="504" 
-d="M315 745c22 0 33 10 47 52c11 1 21 -2 27 -6c-12 -60 -41 -99 -87 -99c-22 0 -43 18 -64 32c-18 11 -37 19 -54 19c-26 0 -36 -15 -46 -48c-11 -2 -21 -1 -27 5c14 59 37 98 80 98c30 0 52 -20 72 -34c16 -12 33 -19 52 -19zM268 660c29 -47 73 -100 109 -140
-c-5 -7 -13.6 -15.1 -23 -17c-38 24 -73 52 -103 83c-32 -32 -65 -61 -104 -83c-9 2 -16 8 -22 17c36 40 82 94 111 140c10.7 2.29999 21.3 3 32 0zM41 205c0 63.2 19 121.4 55.3 164c36.6 43 90.9 70 156.7 70c153 0 210 -121 210 -225c0 -61.3 -20.3 -124.2 -65.1 -168
-c-34.1 -33.3 -82.5 -56 -146.9 -56c-142 0 -210 113 -210 215zM238 404c-90 0 -111 -89 -111 -176c0 -77 34 -203 138 -203c47 0 112 31 112 157c0 144 -53 222 -139 222z" />
-    <glyph glyph-name="uni1ED8" unicode="&#x1ed8;" horiz-adv-x="702" 
-d="M367 809c30 -36 67 -70 103 -97c-2.79999 -9.09998 -6.89999 -17.2 -16 -21c-39 18 -73 36 -106 61c-37 -27 -69 -44 -107 -61c-9 6 -12 12 -14 21c37 28 70 63 101 97c14 8.40002 23.6 7.70001 39 0zM305 -156c0 24 28 48 52 48c27 0 48 -28 48 -52
-c0 -21.1 -24 -48 -52 -48c-24 0 -48 26 -48 52zM331 622c-99 0 -198 -85 -198 -295c0 -192 115 -301 237 -301c114 0 200 105 200 284c0 202 -107 312 -239 312zM666 329c0 -84 -22 -156.3 -61.8 -213c-54.9 -78.3 -143.4 -126 -254.2 -126c-170 0 -313 123 -313 320
-c0 193.9 113.3 348 307 348c179 0 322 -122 322 -329z" />
-    <glyph glyph-name="uni1ED9" unicode="&#x1ed9;" horiz-adv-x="504" 
-d="M261 661c29 -47 73 -100 109 -140c-5 -7 -13.6 -15.1 -23 -17c-38 24 -73 52 -103 83c-32 -32 -65 -61 -104 -83c-9 2 -16 8 -22 17c36 40 82 94 111 140c10.7 2.29999 21.3 3 32 0zM194 -156c0 24 28 48 52 48c27 0 48 -28 48 -52c0 -21.1 -24 -48 -52 -48
-c-24 0 -48 26 -48 52zM41 205c0 63.2 19 121.4 55.3 164c36.6 43 90.9 70 156.7 70c153 0 210 -121 210 -225c0 -61.3 -20.3 -124.2 -65.1 -168c-34.1 -33.3 -82.5 -56 -146.9 -56c-142 0 -210 113 -210 215zM238 404c-90 0 -111 -89 -111 -176c0 -77 34 -203 138 -203
-c47 0 112 31 112 157c0 144 -53 222 -139 222z" />
-    <glyph glyph-name="uni1EDA" unicode="&#x1eda;" horiz-adv-x="702" 
-d="M397 820c28.6 -13.3 49.3 -30.7 62 -52l-144 -58c-21 -9 -33 -12 -42 -12s-15 7 -15 15c0 7 2 12 15 21zM331 622c-99 0 -198 -85 -198 -295c0 -192 115 -301 237 -301c114 0 200 105 200 284c0 202 -107 312 -239 312zM666 329c0 -84 -22 -156.3 -61.8 -213
-c-54.9 -78.3 -143.4 -126 -254.2 -126c-170 0 -313 123 -313 320c0 193.9 113.3 348 307 348c58.7 0 113.4 -13.1 160.6 -38c10.7 -2.29999 20.1 -3 31.4 -3c11 0 55 8 55 42c0 13 -17 24 -31 25c-34 4 -47 27 -47 47c0 24 16 39 46 39c38 0 69 -43 69 -91
-c0 -50 -22.3 -85.4 -75.6 -90.4c69.7 -56.2 113.6 -144.8 113.6 -259.6z" />
-    <glyph glyph-name="uni1EDB" unicode="&#x1edb;" horiz-adv-x="501" 
-d="M277 671c3 1 9 2 14 2c6.39999 0 32 -1 55 -23l3 -11l-115 -109c-15 -15 -23 -19 -30 -19s-14 6 -14 13c0 11.2 3.3 15.2 11.4 28zM41 205c0 63.2 19 121.4 55.3 164c36.6 43 90.9 70 156.7 70c41.5 0 75.9 -8.89999 104 -23.9
-c6.39999 -0.800018 12.8 -1.10001 20 -1.10001c11 0 53 6 53 40c0 13 -14 21 -28 23c-34 3 -48 25 -48 45c0 24 17 39 46 39c38 0 64 -41 64 -88c0 -47.7 -24.8 -79.6 -66.7 -87.2c46.4 -44.8 65.7 -111.2 65.7 -171.8c0 -61.3 -20.3 -124.2 -65.1 -168
-c-34.1 -33.3 -82.5 -56 -146.9 -56c-142 0 -210 113 -210 215zM238 404c-90 0 -111 -89 -111 -176c0 -77 34 -203 138 -203c47 0 112 31 112 157c0 144 -53 222 -139 222z" />
-    <glyph glyph-name="uni1EDC" unicode="&#x1edc;" horiz-adv-x="702" 
-d="M291 817l121 -84c11 -8 15 -14 15 -21c0 -8 -7 -15 -15 -15s-22 3 -43 12l-154 63c18.3 17.7 41.8 33.4 76 45zM331 622c-99 0 -198 -85 -198 -295c0 -192 115 -301 237 -301c114 0 200 105 200 284c0 202 -107 312 -239 312zM666 329c0 -84 -22 -156.3 -61.8 -213
-c-54.9 -78.3 -143.4 -126 -254.2 -126c-170 0 -313 123 -313 320c0 193.9 113.3 348 307 348c58.7 0 113.4 -13.1 160.6 -38c10.7 -2.29999 20.1 -3 31.4 -3c11 0 55 8 55 42c0 13 -17 24 -31 25c-34 4 -47 27 -47 47c0 24 16 39 46 39c38 0 69 -43 69 -91
-c0 -50 -22.3 -85.4 -75.6 -90.4c69.7 -56.2 113.6 -144.8 113.6 -259.6z" />
-    <glyph glyph-name="uni1EDD" unicode="&#x1edd;" horiz-adv-x="501" 
-d="M205 671l70 -126c5 -10 6 -17 6 -24c0 -5 -7 -11 -15 -11c-6 0 -13 5 -29 20l-114 109l2 11c8 6 31 23 65 23c5 0 11 -1 15 -2zM41 205c0 63.2 19 121.4 55.3 164c36.6 43 90.9 70 156.7 70c41.5 0 75.9 -8.89999 104 -23.9c6.39999 -0.800018 12.8 -1.10001 20 -1.10001
-c11 0 53 6 53 40c0 13 -14 21 -28 23c-34 3 -48 25 -48 45c0 24 17 39 46 39c38 0 64 -41 64 -88c0 -47.7 -24.8 -79.6 -66.7 -87.2c46.4 -44.8 65.7 -111.2 65.7 -171.8c0 -61.3 -20.3 -124.2 -65.1 -168c-34.1 -33.3 -82.5 -56 -146.9 -56c-142 0 -210 113 -210 215z
-M238 404c-90 0 -111 -89 -111 -176c0 -77 34 -203 138 -203c47 0 112 31 112 157c0 144 -53 222 -139 222z" />
-    <glyph glyph-name="uni1EDE" unicode="&#x1ede;" horiz-adv-x="702" 
-d="M438 759c0 -22 -16 -33 -33 -44c-18 -12 -33 -24 -35 -49h-26c0 33 13 47 25 59c9 9 17 17 17 31c0 23 -14 35 -36 35c-19 0 -28 -9 -28 -14c0 -3 1 -6 3 -8c2 -3 6 -8 6 -15c0 -12 -11 -21 -27 -21c-20 0 -27 15 -27 27c0 21 28 55 82 55c64 0 79 -40 79 -56zM331 622
-c-99 0 -198 -85 -198 -295c0 -192 115 -301 237 -301c114 0 200 105 200 284c0 202 -107 312 -239 312zM666 329c0 -84 -22 -156.3 -61.8 -213c-54.9 -78.3 -143.4 -126 -254.2 -126c-170 0 -313 123 -313 320c0 193.9 113.3 348 307 348c58.7 0 113.4 -13.1 160.6 -38
-c10.7 -2.29999 20.1 -3 31.4 -3c11 0 55 8 55 42c0 13 -17 24 -31 25c-34 4 -47 27 -47 47c0 24 16 39 46 39c38 0 69 -43 69 -91c0 -50 -22.3 -85.4 -75.6 -90.4c69.7 -56.2 113.6 -144.8 113.6 -259.6z" />
-    <glyph glyph-name="uni1EDF" unicode="&#x1edf;" horiz-adv-x="501" 
-d="M312 599c0 -20 -15 -36 -31 -52c-17 -16 -27 -33 -29 -59h-28c1 34 14 56 25 73c8 12 13 24 13 36c0 23 -8 33 -29 33c-19 0 -24 -6 -24 -11c0 -4 1 -6 2 -8c1 -3 4 -9 4 -17c0 -11 -13 -21 -22 -21c-19 0 -27 15 -27 27c0 22 33 57 75 57c55 0 71 -41 71 -58zM41 205
-c0 63.2 19 121.4 55.3 164c36.6 43 90.9 70 156.7 70c41.5 0 75.9 -8.89999 104 -23.9c6.39999 -0.800018 12.8 -1.10001 20 -1.10001c11 0 53 6 53 40c0 13 -14 21 -28 23c-34 3 -48 25 -48 45c0 24 17 39 46 39c38 0 64 -41 64 -88c0 -47.7 -24.8 -79.6 -66.7 -87.2
-c46.4 -44.8 65.7 -111.2 65.7 -171.8c0 -61.3 -20.3 -124.2 -65.1 -168c-34.1 -33.3 -82.5 -56 -146.9 -56c-142 0 -210 113 -210 215zM238 404c-90 0 -111 -89 -111 -176c0 -77 34 -203 138 -203c47 0 112 31 112 157c0 144 -53 222 -139 222z" />
-    <glyph glyph-name="uni1EE0" unicode="&#x1ee0;" horiz-adv-x="702" 
-d="M405 743c22 0 33 10 47 52c11 1 21 -2 27 -6c-12 -60 -41 -99 -87 -99c-22 0 -43 18 -64 32c-18 11 -37 19 -54 19c-26 0 -36 -15 -46 -48c-11 -2 -21 -1 -27 5c14 59 37 98 80 98c30 0 52 -20 72 -34c16 -12 33 -19 52 -19zM331 622c-99 0 -198 -85 -198 -295
-c0 -192 115 -301 237 -301c114 0 200 105 200 284c0 202 -107 312 -239 312zM666 329c0 -84 -22 -156.3 -61.8 -213c-54.9 -78.3 -143.4 -126 -254.2 -126c-170 0 -313 123 -313 320c0 193.9 113.3 348 307 348c58.7 0 113.4 -13.1 160.6 -38c10.7 -2.29999 20.1 -3 31.4 -3
-c11 0 55 8 55 42c0 13 -17 24 -31 25c-34 4 -47 27 -47 47c0 24 16 39 46 39c38 0 69 -43 69 -91c0 -50 -22.3 -85.4 -75.6 -90.4c69.7 -56.2 113.6 -144.8 113.6 -259.6z" />
-    <glyph glyph-name="uni1EE1" unicode="&#x1ee1;" horiz-adv-x="501" 
-d="M282.1 574.1c19.8 0 29.7 11 42.3 57.2c9.89999 1.10004 18.9 -2.20001 24.3 -6.59998c-10.8 -66 -36.9 -108.9 -78.3 -108.9c-19.8 0 -38.7 19.8 -57.6 35.2c-16.2 12.1 -33.3 20.9 -48.6 20.9c-23.4 0 -32.4 -16.5 -41.4 -52.8c-9.9 -2.19995 -18.9 -1.09998 -24.3 5.5
-c12.6 64.9 33.3 107.8 72 107.8c27 0 46.8 -22 64.8 -37.4c14.4 -13.2 29.7 -20.9 46.8 -20.9zM41 205c0 63.2 19 121.4 55.3 164c36.6 43 90.9 70 156.7 70c41.5 0 75.9 -8.89999 104 -23.9c6.39999 -0.800018 12.8 -1.10001 20 -1.10001c11 0 53 6 53 40
-c0 13 -14 21 -28 23c-34 3 -48 25 -48 45c0 24 17 39 46 39c38 0 64 -41 64 -88c0 -47.7 -24.8 -79.6 -66.7 -87.2c46.4 -44.8 65.7 -111.2 65.7 -171.8c0 -61.3 -20.3 -124.2 -65.1 -168c-34.1 -33.3 -82.5 -56 -146.9 -56c-142 0 -210 113 -210 215zM238 404
-c-90 0 -111 -89 -111 -176c0 -77 34 -203 138 -203c47 0 112 31 112 157c0 144 -53 222 -139 222z" />
-    <glyph glyph-name="uni1EE2" unicode="&#x1ee2;" horiz-adv-x="702" 
-d="M305 -156c0 24 28 48 52 48c27 0 48 -28 48 -52c0 -21.1 -24 -48 -52 -48c-24 0 -48 26 -48 52zM331 622c-99 0 -198 -85 -198 -295c0 -192 115 -301 237 -301c114 0 200 105 200 284c0 202 -107 312 -239 312zM666 329c0 -84 -22 -156.3 -61.8 -213
-c-54.9 -78.3 -143.4 -126 -254.2 -126c-170 0 -313 123 -313 320c0 193.9 113.3 348 307 348c58.7 0 113.4 -13.1 160.6 -38c10.7 -2.29999 20.1 -3 31.4 -3c11 0 55 8 55 42c0 13 -17 24 -31 25c-34 4 -47 27 -47 47c0 24 16 39 46 39c38 0 69 -43 69 -91
-c0 -50 -22.3 -85.4 -75.6 -90.4c69.7 -56.2 113.6 -144.8 113.6 -259.6z" />
-    <glyph glyph-name="uni1EE3" unicode="&#x1ee3;" horiz-adv-x="501" 
-d="M192 -156c0 24 28 48 52 48c27 0 48 -28 48 -52c0 -21.1 -24 -48 -52 -48c-24 0 -48 26 -48 52zM41 205c0 63.2 19 121.4 55.3 164c36.6 43 90.9 70 156.7 70c41.5 0 75.9 -8.89999 104 -23.9c6.39999 -0.800018 12.8 -1.10001 20 -1.10001c11 0 53 6 53 40
-c0 13 -14 21 -28 23c-34 3 -48 25 -48 45c0 24 17 39 46 39c38 0 64 -41 64 -88c0 -47.7 -24.8 -79.6 -66.7 -87.2c46.4 -44.8 65.7 -111.2 65.7 -171.8c0 -61.3 -20.3 -124.2 -65.1 -168c-34.1 -33.3 -82.5 -56 -146.9 -56c-142 0 -210 113 -210 215zM238 404
-c-90 0 -111 -89 -111 -176c0 -77 34 -203 138 -203c47 0 112 31 112 157c0 144 -53 222 -139 222z" />
-    <glyph glyph-name="uni1EE4" unicode="&#x1ee4;" horiz-adv-x="661" 
-d="M293 -156c0 24 28 48 52 48c27 0 48 -28 48 -52c0 -21.1 -24 -48 -52 -48c-24 0 -48 26 -48 52zM172 523v-257c0 -65 2 -141 51 -188c30.1 -28.9 71 -47 119 -47c169 0 184 134 184 246v246c0 81 -17 84 -92 91c-6 6 -6 27 0 33c46 -1 94.5 -2 116 -2c23.2 0 64 1 102 2
-c6 -6 6 -27 0 -33c-60 -7 -77 -10.7 -77 -91v-228c0 -178 -49 -305 -254 -305c-102.5 0 -234 39 -234 243v290c0 83 -17 88 -77 91c-6 6 -6 27 0 33c39 -1 80 -2 119 -2c39.4 0 88 1 135 2c6 -6 6 -27 0 -33c-77 -3 -92 -8 -92 -91z" />
-    <glyph glyph-name="uni1EE5" unicode="&#x1ee5;" horiz-adv-x="531" 
-d="M196 -156c0 24 28 48 52 48c27 0 48 -28 48 -52c0 -21.1 -24 -48 -52 -48c-24 0 -48 26 -48 52zM217 -10c-99 0 -129 67 -129 136v192c0 65 -14 76 -62 80c-6 6 -6 27 0 33c34 -1 70 -2 102 -2c15 0 30 1 35 2c5 0 8 -3 8 -6c0 0 -4 -73 -4 -103v-182
-c0 -89 50 -103 80 -103c25 0 63 16 100 48c14 12 16 20 16 39v193c0 66 -13 78 -62 81c-6 6 -6 27 0 33c34 -1 70 -2 102 -2c15 0 30 1 35 2c5 0 8 -3 8 -6c0 0 -4 -73 -4 -103v-192c0 -49 9 -68 73 -73c6 -6 6 -21 0 -27c-61 -7 -96 -22 -118 -40c-6.5 -2.5 -11 -3 -19 0
-c0 0 -8.5 33.5 -11 59c-0.700012 7 -10 5 -15 1c-49 -40 -96 -60 -135 -60z" />
-    <glyph glyph-name="uni1EE6" unicode="&#x1ee6;" horiz-adv-x="661" 
-d="M424 759c0 -22 -16 -33 -33 -44c-18 -12 -33 -24 -35 -49h-26c0 33 13 47 25 59c9 9 17 17 17 31c0 23 -14 35 -36 35c-19 0 -28 -9 -28 -14c0 -3 1 -6 3 -8c2 -3 6 -8 6 -15c0 -12 -11 -21 -27 -21c-20 0 -27 15 -27 27c0 21 28 55 82 55c64 0 79 -40 79 -56zM172 523
-v-257c0 -65 2 -141 51 -188c30.1 -28.9 71 -47 119 -47c169 0 184 134 184 246v246c0 81 -17 84 -92 91c-6 6 -6 27 0 33c46 -1 94.5 -2 116 -2c23.2 0 64 1 102 2c6 -6 6 -27 0 -33c-60 -7 -77 -10.7 -77 -91v-228c0 -178 -49 -305 -254 -305c-102.5 0 -234 39 -234 243
-v290c0 83 -17 88 -77 91c-6 6 -6 27 0 33c39 -1 80 -2 119 -2c39.4 0 88 1 135 2c6 -6 6 -27 0 -33c-77 -3 -92 -8 -92 -91z" />
-    <glyph glyph-name="uni1EE7" unicode="&#x1ee7;" horiz-adv-x="531" 
-d="M322 599c0 -20 -15 -36 -31 -52c-17 -16 -27 -33 -29 -59h-28c1 34 14 56 25 73c8 12 13 24 13 36c0 23 -8 33 -29 33c-19 0 -24 -6 -24 -11c0 -4 1 -6 2 -8c1 -3 4 -9 4 -17c0 -11 -13 -21 -22 -21c-19 0 -27 15 -27 27c0 22 33 57 75 57c55 0 71 -41 71 -58zM217 -10
-c-99 0 -129 67 -129 136v192c0 65 -14 76 -62 80c-6 6 -6 27 0 33c34 -1 70 -2 102 -2c15 0 30 1 35 2c5 0 8 -3 8 -6c0 0 -4 -73 -4 -103v-182c0 -89 50 -103 80 -103c25 0 63 16 100 48c14 12 16 20 16 39v193c0 66 -13 78 -62 81c-6 6 -6 27 0 33c34 -1 70 -2 102 -2
-c15 0 30 1 35 2c5 0 8 -3 8 -6c0 0 -4 -73 -4 -103v-192c0 -49 9 -68 73 -73c6 -6 6 -21 0 -27c-61 -7 -96 -22 -118 -40c-6.5 -2.5 -11 -3 -19 0c0 0 -8.5 33.5 -11 59c-0.700012 7 -10 5 -15 1c-49 -40 -96 -60 -135 -60z" />
-    <glyph glyph-name="uni1EE8" unicode="&#x1ee8;" horiz-adv-x="690" 
-d="M407 820c28.6 -13.3 49.3 -30.7 62 -52l-144 -58c-21 -9 -33 -12 -42 -12s-15 7 -15 15c0 7 2 12 15 21zM616 608.8c-32 -2.79999 -41 -22.6 -41 -85.8v-228c0 -178 -49 -305 -254 -305c-90 0 -234 42 -234 246v287c0 83 -17 88 -77 91c-6 6 -6 27 0 33
-c50 -1 73 -2 119 -2c53 0 86 1 135 2c6 -6 6 -27 0 -33c-77 -3 -92 -8 -92 -91v-254c0 -65 2 -141 51 -188c30.1 -28.9 71 -50 119 -50c169 0 184 134 184 246v246c0 83 -17 84 -92 91c-6 6 -6 27 0 33c50 -1 70 -2 115 -2c83 0 99 5 99 26c0 9 -6.40002 15.8 -20 19
-c-21 5 -34 21 -34 41c0 24 20 39 49 39c38 0 53 -37 53 -84c0 -43 -37.2 -72.8 -80 -77.2z" />
-    <glyph glyph-name="uni1EE9" unicode="&#x1ee9;" horiz-adv-x="531" 
-d="M275 671c3 1 9 2 14 2c6.39999 0 32 -1 55 -23l3 -11l-115 -109c-15 -15 -23 -19 -30 -19s-14 6 -14 13c0 11.2 3.3 15.2 11.4 28zM217 -10c-99 0 -129 67 -129 136v192c0 65 -14 76 -62 80c-6 6 -6 27 0 33c34 -1 70 -2 102 -2c15 0 30 1 35 2c5 0 8 -3 8 -6
-c0 0 -4 -73 -4 -103v-182c0 -89 50 -103 80 -103c25 0 63 16 100 48c14 12 16 20 16 39v193c0 66 -13 78 -62 81c-6 6 -6 27 0 33c34 -1 70 -2 102 -2c10 0 20 0.399994 27 1v1c19 2 41 16 41 27s-8 20 -27 21c-34 1 -48 23 -48 43c0 24 17 39 46 39c38 0 63 -41 63 -88
-c0 -26 -17.7 -59.2 -60.1 -68.7c-1.19998 -23.9 -2.89999 -62.5 -2.89999 -82.3v-192c0 -49 9 -68 73 -73c6 -6 6 -21 0 -27c-61 -7 -96 -22 -118 -40c-6.5 -2.5 -11 -3 -19 0c0 0 -8.5 33.5 -11 59c-0.700012 7 -10 5 -15 1c-49 -40 -96 -60 -135 -60z" />
-    <glyph glyph-name="uni1EEA" unicode="&#x1eea;" horiz-adv-x="690" 
-d="M288 818l121 -84c11 -8 15 -14 15 -21c0 -8 -7 -15 -15 -15s-22 3 -43 12l-154 63c18.3 17.7 41.8 33.4 76 45zM616 608.8c-32 -2.79999 -41 -22.6 -41 -85.8v-228c0 -178 -49 -305 -254 -305c-90 0 -234 42 -234 246v287c0 83 -17 88 -77 91c-6 6 -6 27 0 33
-c50 -1 73 -2 119 -2c53 0 86 1 135 2c6 -6 6 -27 0 -33c-77 -3 -92 -8 -92 -91v-254c0 -65 2 -141 51 -188c30.1 -28.9 71 -50 119 -50c169 0 184 134 184 246v246c0 83 -17 84 -92 91c-6 6 -6 27 0 33c50 -1 70 -2 115 -2c83 0 99 5 99 26c0 9 -6.40002 15.8 -20 19
-c-21 5 -34 21 -34 41c0 24 20 39 49 39c38 0 53 -37 53 -84c0 -43 -37.2 -72.8 -80 -77.2z" />
-    <glyph glyph-name="uni1EEB" unicode="&#x1eeb;" horiz-adv-x="531" 
-d="M214 671l70 -126c5 -10 6 -17 6 -24c0 -5 -7 -11 -15 -11c-6 0 -13 5 -29 20l-114 109l2 11c8 6 31 23 65 23c5 0 11 -1 15 -2zM217 -10c-99 0 -129 67 -129 136v192c0 65 -14 76 -62 80c-6 6 -6 27 0 33c34 -1 70 -2 102 -2c15 0 30 1 35 2c5 0 8 -3 8 -6
-c0 0 -4 -73 -4 -103v-182c0 -89 50 -103 80 -103c25 0 63 16 100 48c14 12 16 20 16 39v193c0 66 -13 78 -62 81c-6 6 -6 27 0 33c34 -1 70 -2 102 -2c10 0 20 0.399994 27 1v1c19 2 41 16 41 27s-8 20 -27 21c-34 1 -48 23 -48 43c0 24 17 39 46 39c38 0 63 -41 63 -88
-c0 -26 -17.7 -59.2 -60.1 -68.7c-1.19998 -23.9 -2.89999 -62.5 -2.89999 -82.3v-192c0 -49 9 -68 73 -73c6 -6 6 -21 0 -27c-61 -7 -96 -22 -118 -40c-6.5 -2.5 -11 -3 -19 0c0 0 -8.5 33.5 -11 59c-0.700012 7 -10 5 -15 1c-49 -40 -96 -60 -135 -60z" />
-    <glyph glyph-name="uni1EEC" unicode="&#x1eec;" horiz-adv-x="690" 
-d="M426 759c0 -22 -16 -33 -33 -44c-18 -12 -33 -24 -35 -49h-26c0 33 13 47 25 59c9 9 17 17 17 31c0 23 -14 35 -36 35c-19 0 -28 -9 -28 -14c0 -3 1 -6 3 -8c2 -3 6 -8 6 -15c0 -12 -11 -21 -27 -21c-20 0 -27 15 -27 27c0 21 28 55 82 55c64 0 79 -40 79 -56zM616 608.8
-c-32 -2.79999 -41 -22.6 -41 -85.8v-228c0 -178 -49 -305 -254 -305c-90 0 -234 42 -234 246v287c0 83 -17 88 -77 91c-6 6 -6 27 0 33c50 -1 73 -2 119 -2c53 0 86 1 135 2c6 -6 6 -27 0 -33c-77 -3 -92 -8 -92 -91v-254c0 -65 2 -141 51 -188c30.1 -28.9 71 -50 119 -50
-c169 0 184 134 184 246v246c0 83 -17 84 -92 91c-6 6 -6 27 0 33c50 -1 70 -2 115 -2c83 0 99 5 99 26c0 9 -6.40002 15.8 -20 19c-21 5 -34 21 -34 41c0 24 20 39 49 39c38 0 53 -37 53 -84c0 -43 -37.2 -72.8 -80 -77.2z" />
-    <glyph glyph-name="uni1EED" unicode="&#x1eed;" horiz-adv-x="531" 
-d="M322 599c0 -20 -15 -36 -31 -52c-17 -16 -27 -33 -29 -59h-28c1 34 14 56 25 73c8 12 13 24 13 36c0 23 -8 33 -29 33c-19 0 -24 -6 -24 -11c0 -4 1 -6 2 -8c1 -3 4 -9 4 -17c0 -11 -13 -21 -22 -21c-19 0 -27 15 -27 27c0 22 33 57 75 57c55 0 71 -41 71 -58zM217 -10
-c-99 0 -129 67 -129 136v192c0 65 -14 76 -62 80c-6 6 -6 27 0 33c34 -1 70 -2 102 -2c15 0 30 1 35 2c5 0 8 -3 8 -6c0 0 -4 -73 -4 -103v-182c0 -89 50 -103 80 -103c25 0 63 16 100 48c14 12 16 20 16 39v193c0 66 -13 78 -62 81c-6 6 -6 27 0 33c34 -1 70 -2 102 -2
-c10 0 20 0.399994 27 1v1c19 2 41 16 41 27s-8 20 -27 21c-34 1 -48 23 -48 43c0 24 17 39 46 39c38 0 63 -41 63 -88c0 -26 -17.7 -59.2 -60.1 -68.7c-1.19998 -23.9 -2.89999 -62.5 -2.89999 -82.3v-192c0 -49 9 -68 73 -73c6 -6 6 -21 0 -27c-61 -7 -96 -22 -118 -40
-c-6.5 -2.5 -11 -3 -19 0c0 0 -8.5 33.5 -11 59c-0.700012 7 -10 5 -15 1c-49 -40 -96 -60 -135 -60z" />
-    <glyph glyph-name="uni1EEE" unicode="&#x1eee;" horiz-adv-x="690" 
-d="M426 746c22 0 33 10 47 52c11 1 21 -2 27 -6c-12 -60 -41 -99 -87 -99c-22 0 -43 18 -64 32c-18 11 -37 19 -54 19c-26 0 -36 -15 -46 -48c-11 -2 -21 -1 -27 5c14 59 37 98 80 98c30 0 52 -20 72 -34c16 -12 33 -19 52 -19zM616 608.8c-32 -2.79999 -41 -22.6 -41 -85.8
-v-228c0 -178 -49 -305 -254 -305c-90 0 -234 42 -234 246v287c0 83 -17 88 -77 91c-6 6 -6 27 0 33c50 -1 73 -2 119 -2c53 0 86 1 135 2c6 -6 6 -27 0 -33c-77 -3 -92 -8 -92 -91v-254c0 -65 2 -141 51 -188c30.1 -28.9 71 -50 119 -50c169 0 184 134 184 246v246
-c0 83 -17 84 -92 91c-6 6 -6 27 0 33c50 -1 70 -2 115 -2c83 0 99 5 99 26c0 9 -6.40002 15.8 -20 19c-21 5 -34 21 -34 41c0 24 20 39 49 39c38 0 53 -37 53 -84c0 -43 -37.2 -72.8 -80 -77.2z" />
-    <glyph glyph-name="uni1EEF" unicode="&#x1eef;" horiz-adv-x="531" 
-d="M297 573c22 0 33 10 47 52c11 1 21 -2 27 -6c-12 -60 -41 -99 -87 -99c-22 0 -43 18 -64 32c-18 11 -37 19 -54 19c-26 0 -36 -15 -46 -48c-11 -2 -21 -1 -27 5c14 59 37 98 80 98c30 0 52 -20 72 -34c16 -12 33 -19 52 -19zM217 -10c-99 0 -129 67 -129 136v192
-c0 65 -14 76 -62 80c-6 6 -6 27 0 33c34 -1 70 -2 102 -2c15 0 30 1 35 2c5 0 8 -3 8 -6c0 0 -4 -73 -4 -103v-182c0 -89 50 -103 80 -103c25 0 63 16 100 48c14 12 16 20 16 39v193c0 66 -13 78 -62 81c-6 6 -6 27 0 33c34 -1 70 -2 102 -2c10 0 20 0.399994 27 1v1
-c19 2 41 16 41 27s-8 20 -27 21c-34 1 -48 23 -48 43c0 24 17 39 46 39c38 0 63 -41 63 -88c0 -26 -17.7 -59.2 -60.1 -68.7c-1.19998 -23.9 -2.89999 -62.5 -2.89999 -82.3v-192c0 -49 9 -68 73 -73c6 -6 6 -21 0 -27c-61 -7 -96 -22 -118 -40c-6.5 -2.5 -11 -3 -19 0
-c0 0 -8.5 33.5 -11 59c-0.700012 7 -10 5 -15 1c-49 -40 -96 -60 -135 -60z" />
-    <glyph glyph-name="uni1EF0" unicode="&#x1ef0;" horiz-adv-x="690" 
-d="M285 -156c0 24 28 48 52 48c27 0 48 -28 48 -52c0 -21.1 -24 -48 -52 -48c-24 0 -48 26 -48 52zM616 608.8c-32 -2.79999 -41 -22.6 -41 -85.8v-228c0 -178 -49 -305 -254 -305c-90 0 -234 42 -234 246v287c0 83 -17 88 -77 91c-6 6 -6 27 0 33c50 -1 73 -2 119 -2
-c53 0 86 1 135 2c6 -6 6 -27 0 -33c-77 -3 -92 -8 -92 -91v-254c0 -65 2 -141 51 -188c30.1 -28.9 71 -50 119 -50c169 0 184 134 184 246v246c0 83 -17 84 -92 91c-6 6 -6 27 0 33c50 -1 70 -2 115 -2c83 0 99 5 99 26c0 9 -6.40002 15.8 -20 19c-21 5 -34 21 -34 41
-c0 24 20 39 49 39c38 0 53 -37 53 -84c0 -43 -37.2 -72.8 -80 -77.2z" />
-    <glyph glyph-name="uni1EF1" unicode="&#x1ef1;" horiz-adv-x="531" 
-d="M193 -156c0 24 28 48 52 48c27 0 48 -28 48 -52c0 -21.1 -24 -48 -52 -48c-24 0 -48 26 -48 52zM217 -10c-99 0 -129 67 -129 136v192c0 65 -14 76 -62 80c-6 6 -6 27 0 33c34 -1 70 -2 102 -2c15 0 30 1 35 2c5 0 8 -3 8 -6c0 0 -4 -73 -4 -103v-182
-c0 -89 50 -103 80 -103c25 0 63 16 100 48c14 12 16 20 16 39v193c0 66 -13 78 -62 81c-6 6 -6 27 0 33c34 -1 70 -2 102 -2c10 0 20 0.399994 27 1v1c19 2 41 16 41 27s-8 20 -27 21c-34 1 -48 23 -48 43c0 24 17 39 46 39c38 0 63 -41 63 -88
-c0 -26 -17.7 -59.2 -60.1 -68.7c-1.19998 -23.9 -2.89999 -62.5 -2.89999 -82.3v-192c0 -49 9 -68 73 -73c6 -6 6 -21 0 -27c-61 -7 -96 -22 -118 -40c-6.5 -2.5 -11 -3 -19 0c0 0 -8.5 33.5 -11 59c-0.700012 7 -10 5 -15 1c-49 -40 -96 -60 -135 -60z" />
-    <glyph glyph-name="Ygrave" unicode="&#x1ef2;" horiz-adv-x="575" 
-d="M227 817l121 -84c11 -8 15 -14 15 -21c0 -8 -7 -15 -15 -15s-22 3 -43 12l-154 63c18.3 17.7 41.8 33.4 76 45zM337 122c0 -83 17 -88 97 -91c6 -6 6 -27 0 -33c-50 1 -100.3 2 -139 2c-38.6 0 -91 -1 -140 -2c-6 6 -6 27 0 33c80 3 97 8 97 91v127
-c0 37 -3.5 47.5 -21 77l-131.3 221c-34.5 58.1 -51.7 64 -93.7 67c-6 6 -7 27 -1 33c30 -1 63 -2 102 -2c40 0 78 1 114 2c6 -6 6 -27 0 -33c-56 -3 -60 -12.6 -35.8 -55.2l116 -204.8c9 -15.9 13.8 -17.2 21.8 -2l110.8 209c21.4 40.4 5.5 50 -38.8 53c-6 6 -6 27 0 33
-c32 -1 68 -2 91 -2s55 1 83 2c6 -6 6 -27 0 -33c-44.7 -4.29999 -67 -13.3 -95 -64l-119.5 -216c-16.4 -29.6 -17.5 -46.5 -17.5 -76.3v-135.7z" />
-    <glyph glyph-name="ygrave" unicode="&#x1ef3;" horiz-adv-x="515" 
-d="M227 671l70 -126c5 -10 6 -17 6 -24c0 -5 -7 -11 -15 -11c-6 0 -13 5 -29 20l-114 109l2 11c8 6 31 23 65 23c5 0 11 -1 15 -2zM204 -160c-36 -64 -76 -72 -97 -72c-27 0 -47 16 -47 37c0 13 15 43 44 43c11 0 15 -3 29 -3c25 0 39 9 50 29c15 31 27.1 58.6 39 92
-c10 28 -5.3 73.9 -14 94l-113.1 263c-26.2 61 -39.2 70 -78.9 75c-6 6 -6 27 0 33c20 -1 47 -2 81 -2c36 0 76 1 113 2c6 -6 6 -27 0 -33c-56 -4.29999 -50.8 -22.8 -32.8 -65l88.7 -208c8.5 -19.8 16.9 -17.1 23.9 -1l99.2 229c16 36 -16.4 42 -48 45c-6 6 -6 27 0 33
-c30 -1 61 -2 91 -2c28 0 51 1 71 2c6 -6 6 -27 0 -33c-47 -5.70001 -61.3 -21.7 -81 -64c-52.2 -112.4 -97 -215 -177 -408c-12.3 -29.6 -25.4 -58.2 -41 -86z" />
-    <glyph glyph-name="uni1EF4" unicode="&#x1ef4;" horiz-adv-x="575" 
-d="M245 -156c0 24 28 48 52 48c27 0 48 -28 48 -52c0 -21.1 -24 -48 -52 -48c-24 0 -48 26 -48 52zM337 122c0 -83 17 -88 97 -91c6 -6 6 -27 0 -33c-50 1 -100.3 2 -139 2c-38.6 0 -91 -1 -140 -2c-6 6 -6 27 0 33c80 3 97 8 97 91v127c0 37 -3.5 47.5 -21 77l-131.3 221
-c-34.5 58.1 -51.7 64 -93.7 67c-6 6 -7 27 -1 33c30 -1 63 -2 102 -2c40 0 78 1 114 2c6 -6 6 -27 0 -33c-56 -3 -60 -12.6 -35.8 -55.2l116 -204.8c9 -15.9 13.8 -17.2 21.8 -2l110.8 209c21.4 40.4 5.5 50 -38.8 53c-6 6 -6 27 0 33c32 -1 68 -2 91 -2s55 1 83 2
-c6 -6 6 -27 0 -33c-44.7 -4.29999 -67 -13.3 -95 -64l-119.5 -216c-16.4 -29.6 -17.5 -46.5 -17.5 -76.3v-135.7z" />
-    <glyph glyph-name="uni1EF5" unicode="&#x1ef5;" horiz-adv-x="515" 
-d="M316 -156c0 24 28 48 52 48c27 0 48 -28 48 -52c0 -21.1 -24 -48 -52 -48c-24 0 -48 26 -48 52zM204 -160c-36 -64 -76 -72 -97 -72c-27 0 -47 16 -47 37c0 13 15 43 44 43c11 0 15 -3 29 -3c25 0 39 9 50 29c15 31 27.1 58.6 39 92c10 28 -5.3 73.9 -14 94l-113.1 263
-c-26.2 61 -39.2 70 -78.9 75c-6 6 -6 27 0 33c20 -1 47 -2 81 -2c36 0 76 1 113 2c6 -6 6 -27 0 -33c-56 -4.29999 -50.8 -22.8 -32.8 -65l88.7 -208c8.5 -19.8 16.9 -17.1 23.9 -1l99.2 229c16 36 -16.4 42 -48 45c-6 6 -6 27 0 33c30 -1 61 -2 91 -2c28 0 51 1 71 2
-c6 -6 6 -27 0 -33c-47 -5.70001 -61.3 -21.7 -81 -64c-52.2 -112.4 -97 -215 -177 -408c-12.3 -29.6 -25.4 -58.2 -41 -86z" />
-    <glyph glyph-name="uni1EF6" unicode="&#x1ef6;" horiz-adv-x="575" 
-d="M382 759c0 -22 -16 -33 -33 -44c-18 -12 -33 -24 -35 -49h-26c0 33 13 47 25 59c9 9 17 17 17 31c0 23 -14 35 -36 35c-19 0 -28 -9 -28 -14c0 -3 1 -6 3 -8c2 -3 6 -8 6 -15c0 -12 -11 -21 -27 -21c-20 0 -27 15 -27 27c0 21 28 55 82 55c64 0 79 -40 79 -56zM337 122
-c0 -83 17 -88 97 -91c6 -6 6 -27 0 -33c-50 1 -100.3 2 -139 2c-38.6 0 -91 -1 -140 -2c-6 6 -6 27 0 33c80 3 97 8 97 91v127c0 37 -3.5 47.5 -21 77l-131.3 221c-34.5 58.1 -51.7 64 -93.7 67c-6 6 -7 27 -1 33c30 -1 63 -2 102 -2c40 0 78 1 114 2c6 -6 6 -27 0 -33
-c-56 -3 -60 -12.6 -35.8 -55.2l116 -204.8c9 -15.9 13.8 -17.2 21.8 -2l110.8 209c21.4 40.4 5.5 50 -38.8 53c-6 6 -6 27 0 33c32 -1 68 -2 91 -2s55 1 83 2c6 -6 6 -27 0 -33c-44.7 -4.29999 -67 -13.3 -95 -64l-119.5 -216c-16.4 -29.6 -17.5 -46.5 -17.5 -76.3v-135.7z
-" />
-    <glyph glyph-name="uni1EF7" unicode="&#x1ef7;" horiz-adv-x="515" 
-d="M341 599c0 -20 -15 -36 -31 -52c-17 -16 -27 -33 -29 -59h-28c1 34 14 56 25 73c8 12 13 24 13 36c0 23 -8 33 -29 33c-19 0 -24 -6 -24 -11c0 -4 1 -6 2 -8c1 -3 4 -9 4 -17c0 -11 -13 -21 -22 -21c-19 0 -27 15 -27 27c0 22 33 57 75 57c55 0 71 -41 71 -58zM204 -160
-c-36 -64 -76 -72 -97 -72c-27 0 -47 16 -47 37c0 13 15 43 44 43c11 0 15 -3 29 -3c25 0 39 9 50 29c15 31 27.1 58.6 39 92c10 28 -5.3 73.9 -14 94l-113.1 263c-26.2 61 -39.2 70 -78.9 75c-6 6 -6 27 0 33c20 -1 47 -2 81 -2c36 0 76 1 113 2c6 -6 6 -27 0 -33
-c-56 -4.29999 -50.8 -22.8 -32.8 -65l88.7 -208c8.5 -19.8 16.9 -17.1 23.9 -1l99.2 229c16 36 -16.4 42 -48 45c-6 6 -6 27 0 33c30 -1 61 -2 91 -2c28 0 51 1 71 2c6 -6 6 -27 0 -33c-47 -5.70001 -61.3 -21.7 -81 -64c-52.2 -112.4 -97 -215 -177 -408
-c-12.3 -29.6 -25.4 -58.2 -41 -86z" />
-    <glyph glyph-name="uni1EF8" unicode="&#x1ef8;" horiz-adv-x="575" 
-d="M359 746c22 0 33 10 47 52c11 1 21 -2 27 -6c-12 -60 -41 -99 -87 -99c-22 0 -43 18 -64 32c-18 11 -37 19 -54 19c-26 0 -36 -15 -46 -48c-11 -2 -21 -1 -27 5c14 59 37 98 80 98c30 0 52 -20 72 -34c16 -12 33 -19 52 -19zM337 122c0 -83 17 -88 97 -91
-c6 -6 6 -27 0 -33c-50 1 -100.3 2 -139 2c-38.6 0 -91 -1 -140 -2c-6 6 -6 27 0 33c80 3 97 8 97 91v127c0 37 -3.5 47.5 -21 77l-131.3 221c-34.5 58.1 -51.7 64 -93.7 67c-6 6 -7 27 -1 33c30 -1 63 -2 102 -2c40 0 78 1 114 2c6 -6 6 -27 0 -33
-c-56 -3 -60 -12.6 -35.8 -55.2l116 -204.8c9 -15.9 13.8 -17.2 21.8 -2l110.8 209c21.4 40.4 5.5 50 -38.8 53c-6 6 -6 27 0 33c32 -1 68 -2 91 -2s55 1 83 2c6 -6 6 -27 0 -33c-44.7 -4.29999 -67 -13.3 -95 -64l-119.5 -216c-16.4 -29.6 -17.5 -46.5 -17.5 -76.3v-135.7z
-" />
-    <glyph glyph-name="uni1EF9" unicode="&#x1ef9;" horiz-adv-x="515" 
-d="M342 573c22 0 33 10 47 52c11 1 21 -2 27 -6c-12 -60 -41 -99 -87 -99c-22 0 -43 18 -64 32c-18 11 -37 19 -54 19c-26 0 -36 -15 -46 -48c-11 -2 -21 -1 -27 5c14 59 37 98 80 98c30 0 52 -20 72 -34c16 -12 33 -19 52 -19zM204 -160c-36 -64 -76 -72 -97 -72
-c-27 0 -47 16 -47 37c0 13 15 43 44 43c11 0 15 -3 29 -3c25 0 39 9 50 29c15 31 27.1 58.6 39 92c10 28 -5.3 73.9 -14 94l-113.1 263c-26.2 61 -39.2 70 -78.9 75c-6 6 -6 27 0 33c20 -1 47 -2 81 -2c36 0 76 1 113 2c6 -6 6 -27 0 -33
-c-56 -4.29999 -50.8 -22.8 -32.8 -65l88.7 -208c8.5 -19.8 16.9 -17.1 23.9 -1l99.2 229c16 36 -16.4 42 -48 45c-6 6 -6 27 0 33c30 -1 61 -2 91 -2c28 0 51 1 71 2c6 -6 6 -27 0 -33c-47 -5.70001 -61.3 -21.7 -81 -64c-52.2 -112.4 -97 -215 -177 -408
-c-12.3 -29.6 -25.4 -58.2 -41 -86z" />
-    <glyph glyph-name="uni1F00" unicode="&#x1f00;" horiz-adv-x="566" 
-d="M244 698c38 0 60 -37 60 -73s-32 -98 -102 -106l-5 17c42 9 63 46 63 69c0 13 -6 21 -14 21c-41 0 -46 22 -46 38s14 34 44 34zM409 191l14 -58c13 -53 33 -82 56 -82c25 0 38 7 55 37c12 0 19 -4 25 -11c-22 -63 -47 -87 -91 -87c-37 0 -63 33 -79 101l-9 39
-c-50 -99 -96 -140 -164 -140c-128 0 -182 82 -182 206c0 184 125 243 216 243c73.5 0 113 -48 132.8 -135c2.30002 -10 3.90002 -5.5 6.70001 2l47.5 128c15 0 33 -5 48 -5s36 5 49 5zM359 222l-5 21c-23 96 -49 162 -109 162c-67 0 -127 -71 -127 -186
-c0 -108 29 -195 103 -195c46 0 88 62 122 157z" />
-    <glyph glyph-name="uni1F02" unicode="&#x1f02;" horiz-adv-x="566" 
-d="M146 698c38 0 60 -37 60 -73s-32 -98 -102 -106l-5 17c42 9 63 46 63 69c0 13 -6 21 -14 21c-41 0 -46 22 -46 38s14 34 44 34zM259 658c-2 4 -3 9 -3 13c0 16 14 33 37 33c18 0 28 -7 31 -18l39 -152s1 -3 1 -4c0 -5 -5 -12 -15 -12c-5 0 -6 2 -8 5zM409 191l14 -58
-c13 -53 33 -82 56 -82c25 0 38 7 55 37c12 0 19 -4 25 -11c-22 -63 -47 -87 -91 -87c-37 0 -63 33 -79 101l-9 39c-50 -99 -96 -140 -164 -140c-128 0 -182 82 -182 206c0 184 125 243 216 243c73.5 0 113 -48 132.8 -135c2.30002 -10 3.90002 -5.5 6.70001 2l47.5 128
-c15 0 33 -5 48 -5s36 5 49 5zM359 222l-5 21c-23 96 -49 162 -109 162c-67 0 -127 -71 -127 -186c0 -108 29 -195 103 -195c46 0 88 62 122 157z" />
-    <glyph glyph-name="uni1F04" unicode="&#x1f04;" horiz-adv-x="566" 
-d="M409 191l14 -58c13 -53 33 -82 56 -82c25 0 38 7 55 37c12 0 19 -4 25 -11c-22 -63 -47 -87 -91 -87c-37 0 -63 33 -79 101l-9 39c-50 -99 -96 -140 -164 -140c-128 0 -182 82 -182 206c0 184 125 243 216 243c73.5 0 113 -48 132.8 -135
-c2.30002 -10 3.90002 -5.5 6.70001 2l47.5 128c15 0 33 -5 48 -5s36 5 49 5zM359 222l-5 21c-23 96 -49 162 -109 162c-67 0 -127 -71 -127 -186c0 -108 29 -195 103 -195c46 0 88 62 122 157zM170 698c38 0 60 -37 60 -73s-32 -98 -102 -106l-5 17c42 9 63 46 63 69
-c0 13 -6 21 -14 21c-41 0 -46 22 -46 38s14 34 44 34zM339 704c29 0 37 -22 37 -33c0 -4 -1 -8 -3 -12l-76 -139c-1 -4 -5 -5 -8 -5c-12 0 -14 10 -14 13v1l33 155c4 16 21 20 31 20z" />
-    <glyph glyph-name="uni1F06" unicode="&#x1f06;" horiz-adv-x="566" 
-d="M409 191l14 -58c13 -53 33 -82 56 -82c25 0 38 7 55 37c12 0 19 -4 25 -11c-22 -63 -47 -87 -91 -87c-37 0 -63 33 -79 101l-9 39c-50 -99 -96 -140 -164 -140c-128 0 -182 82 -182 206c0 184 125 243 216 243c73.5 0 113 -48 132.8 -135
-c2.30002 -10 3.90002 -5.5 6.70001 2l47.5 128c15 0 33 -5 48 -5s36 5 49 5zM359 222l-5 21c-23 96 -49 162 -109 162c-67 0 -127 -71 -127 -186c0 -108 29 -195 103 -195c46 0 88 62 122 157zM238 660c38 0 60 -37 60 -73s-32 -98 -102 -106l-5 17c42 9 63 46 63 69
-c0 13 -6 21 -14 21c-41 0 -46 22 -46 38s14 34 44 34zM304 729c20 0 34 13 47 47l22 -7c-12 -56 -38 -86 -81 -86c-42 0 -73 46 -111 46c-21 0 -35 -16 -46 -46l-22 5c13 55 34 88 75 88c55 0 76 -47 116 -47z" />
-    <glyph glyph-name="uni1F08" unicode="&#x1f08;" horiz-adv-x="695" 
-d="M152 724c38 0 60 -37 60 -73s-32 -98 -102 -106l-5 17c42 9 63 46 63 69c0 13 -6 21 -14 21c-41 0 -46 22 -46 38s14 34 44 34zM263 283h177l-94 272h-6l-102.2 -258.7c-3.8 -10.3 3.2 -13.3 25.2 -13.3zM155 79c-15.6 -41.1 31.4 -45.4 69 -48c6 -6 6 -27 0 -33
-c-37 1 -87 2 -128 2c-30.3 0 -63 -1 -89 -2c-6 6 -6 27 0 33c43.5 3 74 9 100 71l227 536c13 0 40 11 55 20l206 -572c17.4 -48.2 51.2 -51.5 90 -55c6 -6 6 -27 0 -33c-35 1 -73 2 -114 2c-39 0 -94 -1 -131 -2c-6 6 -6 27 0 33c47.6 3.4 85.8 6.5 74 41l-58 169h-211
-c-24 0 -30 -4 -35 -17z" />
-    <glyph glyph-name="uni1F0A" unicode="&#x1f0a;" horiz-adv-x="736" 
-d="M18 721c38 0 60 -37 60 -73s-32 -98 -102 -106l-5 17c42 9 63 46 63 69c0 13 -6 21 -14 21c-41 0 -46 22 -46 38s14 34 44 34zM131 681c-2 4 -3 9 -3 13c0 16 14 33 37 33c18 0 28 -7 31 -18l39 -152s1 -3 1 -4c0 -5 -5 -12 -15 -12c-5 0 -6 2 -8 5zM305 283h177l-94 272
-h-6l-102.2 -258.7c-3.79999 -10.3 3.20001 -13.3 25.2 -13.3zM197 79c-15.6 -41.1 31.4 -45.4 69 -48c6 -6 6 -27 0 -33c-37 1 -87 2 -128 2c-30.3 0 -63 -1 -89 -2c-6 6 -6 27 0 33c43.5 3 74 9 100 71l227 536c13 0 40 11 55 20l206 -572c17.4 -48.2 51.2 -51.5 90 -55
-c6 -6 6 -27 0 -33c-35 1 -73 2 -114 2c-39 0 -94 -1 -131 -2c-6 6 -6 27 0 33c47.6 3.4 85.8 6.5 74 41l-58 169h-211c-24 0 -30 -4 -35 -17z" />
-    <glyph glyph-name="uni1F0C" unicode="&#x1f0c;" horiz-adv-x="702" 
-d="M25 720c38 0 60 -37 60 -73s-32 -98 -102 -106l-5 17c42 9 63 46 63 69c0 13 -6 21 -14 21c-41 0 -46 22 -46 38s14 34 44 34zM194 726c29 0 37 -22 37 -33c0 -4 -1 -8 -3 -12l-76 -139c-1 -4 -5 -5 -8 -5c-12 0 -14 10 -14 13v1l33 155c4 16 21 20 31 20zM270 283h177
-l-94 272h-6l-102.2 -258.7c-3.8 -10.3 3.2 -13.3 25.2 -13.3zM162 79c-15.6 -41.1 31.4 -45.4 69 -48c6 -6 6 -27 0 -33c-37 1 -87 2 -128 2c-30.3 0 -63 -1 -89 -2c-6 6 -6 27 0 33c43.5 3 74 9 100 71l227 536c13 0 40 11 55 20l206 -572c17.4 -48.2 51.2 -51.5 90 -55
-c6 -6 6 -27 0 -33c-35 1 -73 2 -114 2c-39 0 -94 -1 -131 -2c-6 6 -6 27 0 33c47.6 3.4 85.8 6.5 74 41l-58 169h-211c-24 0 -30 -4 -35 -17z" />
-    <glyph glyph-name="uni1F0E" unicode="&#x1f0e;" horiz-adv-x="715" 
-d="M72 607c38 0 60 -37 60 -73s-32 -98 -102 -106l-5 17c42 9 63 46 63 69c0 13 -6 21 -14 21c-41 0 -46 22 -46 38s14 34 44 34zM138 676c20 0 34 13 47 47l22 -7c-12 -56 -38 -86 -81 -86c-42 0 -73 46 -111 46c-21 0 -35 -16 -46 -46l-22 5c13 55 34 88 75 88
-c55 0 76 -47 116 -47zM284 283h177l-94 272h-6l-102.2 -258.7c-3.79999 -10.3 3.20001 -13.3 25.2 -13.3zM176 79c-15.6 -41.1 31.4 -45.4 69 -48c6 -6 6 -27 0 -33c-37 1 -87 2 -128 2c-30.3 0 -63 -1 -89 -2c-6 6 -6 27 0 33c43.5 3 74 9 100 71l227 536c13 0 40 11 55 20
-l206 -572c17.4 -48.2 51.2 -51.5 90 -55c6 -6 6 -27 0 -33c-35 1 -73 2 -114 2c-39 0 -94 -1 -131 -2c-6 6 -6 27 0 33c47.6 3.4 85.8 6.5 74 41l-58 169h-211c-24 0 -30 -4 -35 -17z" />
-    <glyph glyph-name="uni1F10" unicode="&#x1f10;" horiz-adv-x="397" 
-d="M204 698c38 0 60 -37 60 -73s-32 -98 -102 -106l-5 17c42 9 63 46 63 69c0 13 -6 21 -14 21c-41 0 -46 22 -46 38s14 34 44 34zM123 121c0 -53 42 -93 97 -93c47 0 85 16 124 43c8.70001 -2.8 14.6 -10.2 15 -21c-33 -31 -87 -60 -150 -60c-132 0 -165 65 -165 123
-c0 38 19 91 91 116v2c-45.8 19.3 -72 47.7 -72 96c0 40 35 112 153 112c77 0 135 -36 135 -72c0 -29 -19 -37 -32 -37c-22 0 -32 16 -42 33c-11 22 -28 43 -67 43c-31 0 -76 -6 -76 -72c0 -69 36 -91 79 -91c1 0 46 5 51 5c19 0 29 -9 29 -21s-7 -23 -30 -23
-c-8 0 -42 6 -51 6c-56 0 -89 -33 -89 -89z" />
-    <glyph glyph-name="uni1F12" unicode="&#x1f12;" horiz-adv-x="397" 
-d="M125 695c38 0 60 -37 60 -73s-32 -98 -102 -106l-5 17c42 9 63 46 63 69c0 13 -6 21 -14 21c-41 0 -46 22 -46 38s14 34 44 34zM238 655c-2 4 -3 9 -3 13c0 16 14 33 37 33c18 0 28 -7 31 -18l39 -152s1 -3 1 -4c0 -5 -5 -12 -15 -12c-5 0 -6 2 -8 5zM123 121
-c0 -53 42 -93 97 -93c47 0 85 16 124 43c8.70001 -2.8 14.6 -10.2 15 -21c-33 -31 -87 -60 -150 -60c-132 0 -165 65 -165 123c0 38 19 91 91 116v2c-45.8 19.3 -72 47.7 -72 96c0 40 35 112 153 112c77 0 135 -36 135 -72c0 -29 -19 -37 -32 -37c-22 0 -32 16 -42 33
-c-11 22 -28 43 -67 43c-31 0 -76 -6 -76 -72c0 -69 36 -91 79 -91c1 0 46 5 51 5c19 0 29 -9 29 -21s-7 -23 -30 -23c-8 0 -42 6 -51 6c-56 0 -89 -33 -89 -89z" />
-    <glyph glyph-name="uni1F14" unicode="&#x1f14;" horiz-adv-x="397" 
-d="M124 695c38 0 60 -37 60 -73s-32 -98 -102 -106l-5 17c42 9 63 46 63 69c0 13 -6 21 -14 21c-41 0 -46 22 -46 38s14 34 44 34zM293 701c29 0 37 -22 37 -33c0 -4 -1 -8 -3 -12l-76 -139c-1 -4 -5 -5 -8 -5c-12 0 -14 10 -14 13v1l33 155c4 16 21 20 31 20zM123 121
-c0 -53 42 -93 97 -93c47 0 85 16 124 43c8.70001 -2.8 14.6 -10.2 15 -21c-33 -31 -87 -60 -150 -60c-132 0 -165 65 -165 123c0 38 19 91 91 116v2c-45.8 19.3 -72 47.7 -72 96c0 40 35 112 153 112c77 0 135 -36 135 -72c0 -29 -19 -37 -32 -37c-22 0 -32 16 -42 33
-c-11 22 -28 43 -67 43c-31 0 -76 -6 -76 -72c0 -69 36 -91 79 -91c1 0 46 5 51 5c19 0 29 -9 29 -21s-7 -23 -30 -23c-8 0 -42 6 -51 6c-56 0 -89 -33 -89 -89z" />
-    <glyph glyph-name="uni1F18" unicode="&#x1f18;" horiz-adv-x="672" 
-d="M18 724c38 0 60 -37 60 -73s-32 -98 -102 -106l-5 17c42 9 63 46 63 69c0 13 -6 21 -14 21c-41 0 -46 22 -46 38s14 34 44 34zM384 361c85 0 88 13 91 68c6 6 27 6 33 0c-1 -24 -2 -58 -2 -86c0 -34.3 1 -62 2 -88c-6 -6 -27 -6 -33 0c-3 45 -6 68 -91 68h-91v-221
-c0 -47 14 -63 56 -63h116c76 0 111 59 131 131c13.1 3.2 24.6 1 35 -5c-8 -51 -23 -117 -37 -167c0 0 -80 2 -128 2h-215c-33 0 -93 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c40 -1 98.5 -2 129 -2h255c24 0 32 1 49 4
-c3 0 4 -1 4 -3c2 -8 17 -104 22 -145c-9.79999 -4.70001 -20.6 -6.79999 -33 -5c-22 69 -38 109 -113 109h-75c-54 0 -66 -20 -66 -64v-180h91z" />
-    <glyph glyph-name="uni1F1A" unicode="&#x1f1a;" horiz-adv-x="832" 
-d="M15 720c38 0 60 -37 60 -73s-32 -98 -102 -106l-5 17c42 9 63 46 63 69c0 13 -6 21 -14 21c-41 0 -46 22 -46 38s14 34 44 34zM128 680c-2 4 -3 9 -3 13c0 16 14 33 37 33c18 0 28 -7 31 -18l39 -152s1 -3 1 -4c0 -5 -5 -12 -15 -12c-5 0 -6 2 -8 5zM544 361
-c85 0 88 13 91 68c6 6 27 6 33 0c-1 -24 -2 -58 -2 -86c0 -34.3 1 -62 2 -88c-6 -6 -27 -6 -33 0c-3 45 -6 68 -91 68h-91v-221c0 -47 14 -63 56 -63h116c76 0 111 59 131 131c13.1 3.2 24.6 1 35 -5c-8 -51 -23 -117 -37 -167c0 0 -80 2 -128 2h-215c-33 0 -93 -1 -130 -2
-c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c40 -1 98.5 -2 129 -2h255c24 0 32 1 49 4c3 0 4 -1 4 -3c2 -8 17 -104 22 -145c-9.79999 -4.70001 -20.6 -6.79999 -33 -5c-22 69 -38 109 -113 109h-75c-54 0 -66 -20 -66 -64v-180h91z" />
-    <glyph glyph-name="uni1F1C" unicode="&#x1f1c;" horiz-adv-x="817" 
-d="M14 718c38 0 60 -37 60 -73s-32 -98 -102 -106l-5 17c42 9 63 46 63 69c0 13 -6 21 -14 21c-41 0 -46 22 -46 38s14 34 44 34zM183 724c29 0 37 -22 37 -33c0 -4 -1 -8 -3 -12l-76 -139c-1 -4 -5 -5 -8 -5c-12 0 -14 10 -14 13v1l33 155c4 16 21 20 31 20zM529 361
-c85 0 88 13 91 68c6 6 27 6 33 0c-1 -24 -2 -58 -2 -86c0 -34.3 1 -62 2 -88c-6 -6 -27 -6 -33 0c-3 45 -6 68 -91 68h-91v-221c0 -47 14 -63 56 -63h116c76 0 111 59 131 131c13.1 3.2 24.6 1 35 -5c-8 -51 -23 -117 -37 -167c0 0 -80 2 -128 2h-215c-33 0 -93 -1 -130 -2
-c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c40 -1 98.5 -2 129 -2h255c24 0 32 1 49 4c3 0 4 -1 4 -3c2 -8 17 -104 22 -145c-9.79999 -4.70001 -20.6 -6.79999 -33 -5c-22 69 -38 109 -113 109h-75c-54 0 -66 -20 -66 -64v-180h91z" />
-    <glyph glyph-name="uni1F20" unicode="&#x1f20;" horiz-adv-x="528" 
-d="M306 697c38 0 60 -37 60 -73s-32 -98 -102 -106l-5 17c42 9 63 46 63 69c0 13 -6 21 -14 21c-41 0 -46 22 -46 38s14 34 44 34zM174 358c0 -5 0.800003 -8.20001 2.39999 -5.89999c45.6 48.4 86.1 86.9 160.6 86.9c68 0 109 -43 109 -158v-287c0 -51 3 -99 3 -138
-c0 -24 -1 -44 -5 -60l-80 -34l-11 18c13 34 14 100 14 214v275c0 65 -6 118 -67 118c-34.5 0 -78.5 -29 -126 -76.5v-238.5c0 -38 9 -82 -29 -82c-32 0 -46 10 -50 27c-2 10 0 37 0 55v245c0 58 -11 63 -65 68c-2 6 -4 22 -2 28c69 9 98 18 126 29
-c8 0 9.89999 -3.39999 12 -8c4.7 -10.3 8 -36 8 -76z" />
-    <glyph glyph-name="uni1F22" unicode="&#x1f22;" horiz-adv-x="528" 
-d="M226 696c38 0 60 -37 60 -73s-32 -98 -102 -106l-5 17c42 9 63 46 63 69c0 13 -6 21 -14 21c-41 0 -46 22 -46 38s14 34 44 34zM339 656c-2 4 -3 9 -3 13c0 16 14 33 37 33c18 0 28 -7 31 -18l39 -152s1 -3 1 -4c0 -5 -5 -12 -15 -12c-5 0 -6 2 -8 5zM174 358
-c0 -5 0.800003 -8.20001 2.39999 -5.89999c45.6 48.4 86.1 86.9 160.6 86.9c68 0 109 -43 109 -158v-287c0 -51 3 -99 3 -138c0 -24 -1 -44 -5 -60l-80 -34l-11 18c13 34 14 100 14 214v275c0 65 -6 118 -67 118c-34.5 0 -78.5 -29 -126 -76.5v-238.5c0 -38 9 -82 -29 -82
-c-32 0 -46 10 -50 27c-2 10 0 37 0 55v245c0 58 -11 63 -65 68c-2 6 -4 22 -2 28c69 9 98 18 126 29c8 0 9.89999 -3.39999 12 -8c4.7 -10.3 8 -36 8 -76z" />
-    <glyph glyph-name="uni1F24" unicode="&#x1f24;" horiz-adv-x="528" 
-d="M240 695c38 0 60 -37 60 -73s-32 -98 -102 -106l-5 17c42 9 63 46 63 69c0 13 -6 21 -14 21c-41 0 -46 22 -46 38s14 34 44 34zM409 701c29 0 37 -22 37 -33c0 -4 -1 -8 -3 -12l-76 -139c-1 -4 -5 -5 -8 -5c-12 0 -14 10 -14 13v1l33 155c4 16 21 20 31 20zM174 358
-c0 -5 0.800003 -8.20001 2.39999 -5.89999c45.6 48.4 86.1 86.9 160.6 86.9c68 0 109 -43 109 -158v-287c0 -51 3 -99 3 -138c0 -24 -1 -44 -5 -60l-80 -34l-11 18c13 34 14 100 14 214v275c0 65 -6 118 -67 118c-34.5 0 -78.5 -29 -126 -76.5v-238.5c0 -38 9 -82 -29 -82
-c-32 0 -46 10 -50 27c-2 10 0 37 0 55v245c0 58 -11 63 -65 68c-2 6 -4 22 -2 28c69 9 98 18 126 29c8 0 9.89999 -3.39999 12 -8c4.7 -10.3 8 -36 8 -76z" />
-    <glyph glyph-name="uni1F26" unicode="&#x1f26;" horiz-adv-x="528" 
-d="M307 660c38 0 60 -37 60 -73s-32 -98 -102 -106l-5 17c42 9 63 46 63 69c0 13 -6 21 -14 21c-41 0 -46 22 -46 38s14 34 44 34zM373 729c20 0 34 13 47 47l22 -7c-12 -56 -38 -86 -81 -86c-42 0 -73 46 -111 46c-21 0 -35 -16 -46 -46l-22 5c13 55 34 88 75 88
-c55 0 76 -47 116 -47zM174 358c0 -5 0.800003 -8.20001 2.39999 -5.89999c45.6 48.4 86.1 86.9 160.6 86.9c68 0 109 -43 109 -158v-287c0 -51 3 -99 3 -138c0 -24 -1 -44 -5 -60l-80 -34l-11 18c13 34 14 100 14 214v275c0 65 -6 118 -67 118c-34.5 0 -78.5 -29 -126 -76.5
-v-238.5c0 -38 9 -82 -29 -82c-32 0 -46 10 -50 27c-2 10 0 37 0 55v245c0 58 -11 63 -65 68c-2 6 -4 22 -2 28c69 9 98 18 126 29c8 0 9.89999 -3.39999 12 -8c4.7 -10.3 8 -36 8 -76z" />
-    <glyph glyph-name="uni1F28" unicode="&#x1f28;" horiz-adv-x="820" 
-d="M19 724c38 0 60 -37 60 -73s-32 -98 -102 -106l-5 17c42 9 63 46 63 69c0 13 -6 21 -14 21c-41 0 -46 22 -46 38s14 34 44 34zM708 122c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-44 1 -91.7 2 -129 2c-37.1 0 -85 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v199h-342
-v-199c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-44 1 -92.7 2 -129 2c-37.7 0 -86 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c38 -1 79 -2 129 -2c51 0 92 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-160h342v160
-c0 83 -17 88 -87 91c-6 6 -6 27 0 33c44 -1 91.7 -2 129 -2c38 0 89 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-401z" />
-    <glyph glyph-name="uni1F2A" unicode="&#x1f2a;" horiz-adv-x="987" 
-d="M17 718c38 0 60 -37 60 -73s-32 -98 -102 -106l-5 17c42 9 63 46 63 69c0 13 -6 21 -14 21c-41 0 -46 22 -46 38s14 34 44 34zM130 678c-2 4 -3 9 -3 13c0 16 14 33 37 33c18 0 28 -7 31 -18l39 -152s1 -3 1 -4c0 -5 -5 -12 -15 -12c-5 0 -6 2 -8 5zM875 122
-c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-44 1 -91.7 2 -129 2c-37.1 0 -85 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v199h-342v-199c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-44 1 -92.7 2 -129 2c-37.7 0 -86 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401
-c0 83 -17 88 -87 91c-6 6 -6 27 0 33c38 -1 79 -2 129 -2c51 0 92 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-160h342v160c0 83 -17 88 -87 91c-6 6 -6 27 0 33c44 -1 91.7 -2 129 -2c38 0 89 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-401z" />
-    <glyph glyph-name="uni1F2C" unicode="&#x1f2c;" horiz-adv-x="980" 
-d="M8 718c38 0 60 -37 60 -73s-32 -98 -102 -106l-5 17c42 9 63 46 63 69c0 13 -6 21 -14 21c-41 0 -46 22 -46 38s14 34 44 34zM177 724c29 0 37 -22 37 -33c0 -4 -1 -8 -3 -12l-76 -139c-1 -4 -5 -5 -8 -5c-12 0 -14 10 -14 13v1l33 155c4 16 21 20 31 20zM868 122
-c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-44 1 -91.7 2 -129 2c-37.1 0 -85 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v199h-342v-199c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-44 1 -92.7 2 -129 2c-37.7 0 -86 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401
-c0 83 -17 88 -87 91c-6 6 -6 27 0 33c38 -1 79 -2 129 -2c51 0 92 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-160h342v160c0 83 -17 88 -87 91c-6 6 -6 27 0 33c44 -1 91.7 -2 129 -2c38 0 89 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-401z" />
-    <glyph glyph-name="uni1F2E" unicode="&#x1f2e;" horiz-adv-x="954" 
-d="M89 606c38 0 60 -37 60 -73s-32 -98 -102 -106l-5 17c42 9 63 46 63 69c0 13 -6 21 -14 21c-41 0 -46 22 -46 38s14 34 44 34zM155 675c20 0 34 13 47 47l22 -7c-12 -56 -38 -86 -81 -86c-42 0 -73 46 -111 46c-21 0 -35 -16 -46 -46l-22 5c13 55 34 88 75 88
-c55 0 76 -47 116 -47zM842 122c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-44 1 -91.7 2 -129 2c-37.1 0 -85 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v199h-342v-199c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-44 1 -92.7 2 -129 2c-37.7 0 -86 -1 -130 -2c-6 6 -6 27 0 33
-c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c38 -1 79 -2 129 -2c51 0 92 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-160h342v160c0 83 -17 88 -87 91c-6 6 -6 27 0 33c44 -1 91.7 -2 129 -2c38 0 89 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91
-v-401z" />
-    <glyph glyph-name="uni1F30" unicode="&#x1f30;" horiz-adv-x="281" 
-d="M124 688c38 0 60 -37 60 -73s-32 -98 -102 -106l-5 17c42 9 63 46 63 69c0 13 -6 21 -14 21c-41 0 -46 22 -46 38s14 34 44 34zM84 322c0 28 -1 72 -18 107l2 2c6 -1 31 -2 43 -2c19 0 35 2 50 8c0 0 2 -62 2 -94v-244c0 -41 8 -55 23 -55c28 0 48 19 67 43
-c10.6 -2.2 18.4 -7.1 21 -17c-21 -37 -64 -81 -107 -81c-56 0 -83 32.5 -83 92v241z" />
-    <glyph glyph-name="uni1F32" unicode="&#x1f32;" horiz-adv-x="281" 
-d="M45 696c38 0 60 -37 60 -73s-32 -98 -102 -106l-5 17c42 9 63 46 63 69c0 13 -6 21 -14 21c-41 0 -46 22 -46 38s14 34 44 34zM158 656c-2 4 -3 9 -3 13c0 16 14 33 37 33c18 0 28 -7 31 -18l39 -152s1 -3 1 -4c0 -5 -5 -12 -15 -12c-5 0 -6 2 -8 5zM84 322
-c0 28 -1 72 -18 107l2 2c6 -1 31 -2 43 -2c19 0 35 2 50 8c0 0 2 -62 2 -94v-244c0 -41 8 -55 23 -55c28 0 48 19 67 43c10.6 -2.2 18.4 -7.1 21 -17c-21 -37 -64 -81 -107 -81c-56 0 -83 32.5 -83 92v241z" />
-    <glyph glyph-name="uni1F34" unicode="&#x1f34;" horiz-adv-x="281" 
-d="M43 695c38 0 60 -37 60 -73s-32 -98 -102 -106l-5 17c42 9 63 46 63 69c0 13 -6 21 -14 21c-41 0 -46 22 -46 38s14 34 44 34zM212 701c29 0 37 -22 37 -33c0 -4 -1 -8 -3 -12l-76 -139c-1 -4 -5 -5 -8 -5c-12 0 -14 10 -14 13v1l33 155c4 16 21 20 31 20zM84 322
-c0 28 -1 72 -18 107l2 2c6 -1 31 -2 43 -2c19 0 35 2 50 8c0 0 2 -62 2 -94v-244c0 -41 8 -55 23 -55c28 0 48 19 67 43c10.6 -2.2 18.4 -7.1 21 -17c-21 -37 -64 -81 -107 -81c-56 0 -83 32.5 -83 92v241z" />
-    <glyph glyph-name="uni1F36" unicode="&#x1f36;" horiz-adv-x="281" 
-d="M125 659c38 0 60 -37 60 -73s-32 -98 -102 -106l-5 17c42 9 63 46 63 69c0 13 -6 21 -14 21c-41 0 -46 22 -46 38s14 34 44 34zM191 728c20 0 34 13 47 47l22 -7c-12 -56 -38 -86 -81 -86c-42 0 -73 46 -111 46c-21 0 -35 -16 -46 -46l-22 5c13 55 34 88 75 88
-c55 0 76 -47 116 -47zM84 322c0 28 -1 72 -18 107l2 2c6 -1 31 -2 43 -2c19 0 35 2 50 8c0 0 2 -62 2 -94v-244c0 -41 8 -55 23 -55c28 0 48 19 67 43c10.6 -2.2 18.4 -7.1 21 -17c-21 -37 -64 -81 -107 -81c-56 0 -83 32.5 -83 92v241z" />
-    <glyph glyph-name="uni1F38" unicode="&#x1f38;" horiz-adv-x="383" 
-d="M13 725c38 0 60 -37 60 -73s-32 -98 -102 -106l-5 17c42 9 63 46 63 69c0 13 -6 21 -14 21c-41 0 -46 22 -46 38s14 34 44 34zM281 122c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-45 1 -93.4 2 -129 2c-36.3 0 -85 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401
-c0 83 -17 88 -87 91c-6 6 -6 27 0 33c47 -1 95.5 -2 129 -2c38.5 0 86 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-401z" />
-    <glyph glyph-name="uni1F3A" unicode="&#x1f3a;" horiz-adv-x="551" 
-d="M13 719c38 0 60 -37 60 -73s-32 -98 -102 -106l-5 17c42 9 63 46 63 69c0 13 -6 21 -14 21c-41 0 -46 22 -46 38s14 34 44 34zM126 679c-2 4 -3 9 -3 13c0 16 14 33 37 33c18 0 28 -7 31 -18l39 -152s1 -3 1 -4c0 -5 -5 -12 -15 -12c-5 0 -6 2 -8 5zM449 122
-c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-45 1 -93.4 2 -129 2c-36.3 0 -85 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c47 -1 95.5 -2 129 -2c38.5 0 86 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-401z" />
-    <glyph glyph-name="uni1F3C" unicode="&#x1f3c;" horiz-adv-x="533" 
-d="M3 721c38 0 60 -37 60 -73s-32 -98 -102 -106l-5 17c42 9 63 46 63 69c0 13 -6 21 -14 21c-41 0 -46 22 -46 38s14 34 44 34zM172 727c29 0 37 -22 37 -33c0 -4 -1 -8 -3 -12l-76 -139c-1 -4 -5 -5 -8 -5c-12 0 -14 10 -14 13v1l33 155c4 16 21 20 31 20zM431 122
-c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-45 1 -93.4 2 -129 2c-36.3 0 -85 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c47 -1 95.5 -2 129 -2c38.5 0 86 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-401z" />
-    <glyph glyph-name="uni1F3E" unicode="&#x1f3e;" horiz-adv-x="507" 
-d="M70 612c38 0 60 -37 60 -73s-32 -98 -102 -106l-5 17c42 9 63 46 63 69c0 13 -6 21 -14 21c-41 0 -46 22 -46 38s14 34 44 34zM136 681c20 0 34 13 47 47l22 -7c-12 -56 -38 -86 -81 -86c-42 0 -73 46 -111 46c-21 0 -35 -16 -46 -46l-22 5c13 55 34 88 75 88
-c55 0 76 -47 116 -47zM405 122c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-45 1 -93.4 2 -129 2c-36.3 0 -85 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c47 -1 95.5 -2 129 -2c38.5 0 86 1 130 2c6 -6 6 -27 0 -33
-c-70 -3 -87 -8 -87 -91v-401z" />
-    <glyph glyph-name="uni1F40" unicode="&#x1f40;" horiz-adv-x="504" 
-d="M235 688c38 0 60 -37 60 -73s-32 -98 -102 -106l-5 17c42 9 63 46 63 69c0 13 -6 21 -14 21c-41 0 -46 22 -46 38s14 34 44 34zM41 205c0 63.2 19 121.4 55.3 164c36.6 43 90.9 70 156.7 70c153 0 210 -121 210 -225c0 -61.3 -20.3 -124.2 -65.1 -168
-c-34.1 -33.3 -82.5 -56 -146.9 -56c-142 0 -210 113 -210 215zM238 404c-90 0 -111 -89 -111 -176c0 -77 34 -203 138 -203c47 0 112 31 112 157c0 144 -53 222 -139 222z" />
-    <glyph glyph-name="uni1F42" unicode="&#x1f42;" horiz-adv-x="504" 
-d="M154 687c38 0 60 -37 60 -73s-32 -98 -102 -106l-5 17c42 9 63 46 63 69c0 13 -6 21 -14 21c-41 0 -46 22 -46 38s14 34 44 34zM267 647c-2 4 -3 9 -3 13c0 16 14 33 37 33c18 0 28 -7 31 -18l39 -152s1 -3 1 -4c0 -5 -5 -12 -15 -12c-5 0 -6 2 -8 5zM41 205
-c0 63.2 19 121.4 55.3 164c36.6 43 90.9 70 156.7 70c153 0 210 -121 210 -225c0 -61.3 -20.3 -124.2 -65.1 -168c-34.1 -33.3 -82.5 -56 -146.9 -56c-142 0 -210 113 -210 215zM238 404c-90 0 -111 -89 -111 -176c0 -77 34 -203 138 -203c47 0 112 31 112 157
-c0 144 -53 222 -139 222z" />
-    <glyph glyph-name="uni1F44" unicode="&#x1f44;" horiz-adv-x="504" 
-d="M155 684c38 0 60 -37 60 -73s-32 -98 -102 -106l-5 17c42 9 63 46 63 69c0 13 -6 21 -14 21c-41 0 -46 22 -46 38s14 34 44 34zM324 690c29 0 37 -22 37 -33c0 -4 -1 -8 -3 -12l-76 -139c-1 -4 -5 -5 -8 -5c-12 0 -14 10 -14 13v1l33 155c4 16 21 20 31 20zM41 205
-c0 63.2 19 121.4 55.3 164c36.6 43 90.9 70 156.7 70c153 0 210 -121 210 -225c0 -61.3 -20.3 -124.2 -65.1 -168c-34.1 -33.3 -82.5 -56 -146.9 -56c-142 0 -210 113 -210 215zM238 404c-90 0 -111 -89 -111 -176c0 -77 34 -203 138 -203c47 0 112 31 112 157
-c0 144 -53 222 -139 222z" />
-    <glyph glyph-name="uni1F48" unicode="&#x1f48;" horiz-adv-x="734" 
-d="M17 724c38 0 60 -37 60 -73s-32 -98 -102 -106l-5 17c42 9 63 46 63 69c0 13 -6 21 -14 21c-41 0 -46 22 -46 38s14 34 44 34zM367 622c-99 0 -198 -85 -198 -295c0 -192 115 -301 237 -301c114 0 200 105 200 284c0 202 -107 312 -239 312zM702 329
-c0 -84 -22 -156.3 -61.8 -213c-54.9 -78.3 -143.4 -126 -254.2 -126c-170 0 -313 123 -313 320c0 193.9 113.3 348 307 348c179 0 322 -122 322 -329z" />
-    <glyph glyph-name="uni1F4A" unicode="&#x1f4a;" horiz-adv-x="894" 
-d="M6 718c38 0 60 -37 60 -73s-32 -98 -102 -106l-5 17c42 9 63 46 63 69c0 13 -6 21 -14 21c-41 0 -46 22 -46 38s14 34 44 34zM119 678c-2 4 -3 9 -3 13c0 16 14 33 37 33c18 0 28 -7 31 -18l39 -152s1 -3 1 -4c0 -5 -5 -12 -15 -12c-5 0 -6 2 -8 5zM527 622
-c-99 0 -198 -85 -198 -295c0 -192 115 -301 237 -301c114 0 200 105 200 284c0 202 -107 312 -239 312zM862 329c0 -84 -22 -156.3 -61.8 -213c-54.9 -78.3 -143.4 -126 -254.2 -126c-170 0 -313 123 -313 320c0 193.9 113.3 348 307 348c179 0 322 -122 322 -329z" />
-    <glyph glyph-name="uni1F4C" unicode="&#x1f4c;" horiz-adv-x="877" 
-d="M15 720c38 0 60 -37 60 -73s-32 -98 -102 -106l-5 17c42 9 63 46 63 69c0 13 -6 21 -14 21c-41 0 -46 22 -46 38s14 34 44 34zM184 726c29 0 37 -22 37 -33c0 -4 -1 -8 -3 -12l-76 -139c-1 -4 -5 -5 -8 -5c-12 0 -14 10 -14 13v1l33 155c4 16 21 20 31 20zM510 622
-c-99 0 -198 -85 -198 -295c0 -192 115 -301 237 -301c114 0 200 105 200 284c0 202 -107 312 -239 312zM845 329c0 -84 -22 -156.3 -61.8 -213c-54.9 -78.3 -143.4 -126 -254.2 -126c-170 0 -313 123 -313 320c0 193.9 113.3 348 307 348c179 0 322 -122 322 -329z" />
-    <glyph glyph-name="uni1F50" unicode="&#x1f50;" horiz-adv-x="490" 
-d="M245 688c38 0 60 -37 60 -73s-32 -98 -102 -106l-5 17c42 9 63 46 63 69c0 13 -6 21 -14 21c-41 0 -46 22 -46 38s14 34 44 34zM171 321.3v-118.3c0 -101 12 -174 87 -174c92 0 147 110 147 208c0 96 -32 111 -61 127c-20 11 -34 25 -34 48c0 17 17 30 34 30
-c63 0 102 -73 102 -193c0 -174 -99 -259 -197 -259c-134 0 -157 90 -157 197v130c0 57 -10.5 62.9 -65 68c-2 6 -4 22 -2 28c69 9 108.5 18 137 29c8 0 13 -3 13 -7c0 0 -4 -64 -4 -113.7z" />
-    <glyph glyph-name="uni1F52" unicode="&#x1f52;" horiz-adv-x="490" 
-d="M159 687c38 0 60 -37 60 -73s-32 -98 -102 -106l-5 17c42 9 63 46 63 69c0 13 -6 21 -14 21c-41 0 -46 22 -46 38s14 34 44 34zM272 647c-2 4 -3 9 -3 13c0 16 14 33 37 33c18 0 28 -7 31 -18l39 -152s1 -3 1 -4c0 -5 -5 -12 -15 -12c-5 0 -6 2 -8 5zM171 321.3v-118.3
-c0 -101 12 -174 87 -174c92 0 147 110 147 208c0 96 -32 111 -61 127c-20 11 -34 25 -34 48c0 17 17 30 34 30c63 0 102 -73 102 -193c0 -174 -99 -259 -197 -259c-134 0 -157 90 -157 197v130c0 57 -10.5 62.9 -65 68c-2 6 -4 22 -2 28c69 9 108.5 18 137 29
-c8 0 13 -3 13 -7c0 0 -4 -64 -4 -113.7z" />
-    <glyph glyph-name="uni1F54" unicode="&#x1f54;" horiz-adv-x="490" 
-d="M165 684c38 0 60 -37 60 -73s-32 -98 -102 -106l-5 17c42 9 63 46 63 69c0 13 -6 21 -14 21c-41 0 -46 22 -46 38s14 34 44 34zM334 690c29 0 37 -22 37 -33c0 -4 -1 -8 -3 -12l-76 -139c-1 -4 -5 -5 -8 -5c-12 0 -14 10 -14 13v1l33 155c4 16 21 20 31 20zM171 321.3
-v-118.3c0 -101 12 -174 87 -174c92 0 147 110 147 208c0 96 -32 111 -61 127c-20 11 -34 25 -34 48c0 17 17 30 34 30c63 0 102 -73 102 -193c0 -174 -99 -259 -197 -259c-134 0 -157 90 -157 197v130c0 57 -10.5 62.9 -65 68c-2 6 -4 22 -2 28c69 9 108.5 18 137 29
-c8 0 13 -3 13 -7c0 0 -4 -64 -4 -113.7z" />
-    <glyph glyph-name="uni1F56" unicode="&#x1f56;" horiz-adv-x="490" 
-d="M254 661c38 0 60 -37 60 -73s-32 -98 -102 -106l-5 17c42 9 63 46 63 69c0 13 -6 21 -14 21c-41 0 -46 22 -46 38s14 34 44 34zM320 730c20 0 34 13 47 47l22 -7c-12 -56 -38 -86 -81 -86c-42 0 -73 46 -111 46c-21 0 -35 -16 -46 -46l-22 5c13 55 34 88 75 88
-c55 0 76 -47 116 -47zM171 321.3v-118.3c0 -101 12 -174 87 -174c92 0 147 110 147 208c0 96 -32 111 -61 127c-20 11 -34 25 -34 48c0 17 17 30 34 30c63 0 102 -73 102 -193c0 -174 -99 -259 -197 -259c-134 0 -157 90 -157 197v130c0 57 -10.5 62.9 -65 68
-c-2 6 -4 22 -2 28c69 9 108.5 18 137 29c8 0 13 -3 13 -7c0 0 -4 -64 -4 -113.7z" />
-    <glyph glyph-name="uni1F60" unicode="&#x1f60;" horiz-adv-x="658" 
-d="M341 704c38 0 60 -37 60 -73s-32 -98 -102 -106l-5 17c42 9 63 46 63 69c0 13 -6 21 -14 21c-41 0 -46 22 -46 38s14 34 44 34zM624 189c0 -104 -68 -199 -190 -199c-51 0 -91 31 -113 103c-27 -72 -60 -103 -117 -103c-90 0 -170 73 -170 204c0 118 70 200 183 248
-c7.60001 -4 12 -13.7 13 -23c-65 -41 -114 -88 -114 -210c0 -112 27 -182 101 -182c37 0 60 30 91 101c-13 33 -15 70 -15 90c0 31 11 66 37 66c27 0 30 -13 30 -37s-9 -79 -24 -116c30 -69 65 -104 105 -104c72 0 101 37 101 147c0 73 -17 166 -121 245
-c1 8.10001 1.89999 20.1 15 23c94 -45 188 -137 188 -253z" />
-    <glyph glyph-name="uni1F62" unicode="&#x1f62;" horiz-adv-x="658" 
-d="M260 687c38 0 60 -37 60 -73s-32 -98 -102 -106l-5 17c42 9 63 46 63 69c0 13 -6 21 -14 21c-41 0 -46 22 -46 38s14 34 44 34zM373 647c-2 4 -3 9 -3 13c0 16 14 33 37 33c18 0 28 -7 31 -18l39 -152s1 -3 1 -4c0 -5 -5 -12 -15 -12c-5 0 -6 2 -8 5zM624 189
-c0 -104 -68 -199 -190 -199c-51 0 -91 31 -113 103c-27 -72 -60 -103 -117 -103c-90 0 -170 73 -170 204c0 118 70 200 183 248c7.60001 -4 12 -13.7 13 -23c-65 -41 -114 -88 -114 -210c0 -112 27 -182 101 -182c37 0 60 30 91 101c-13 33 -15 70 -15 90c0 31 11 66 37 66
-c27 0 30 -13 30 -37s-9 -79 -24 -116c30 -69 65 -104 105 -104c72 0 101 37 101 147c0 73 -17 166 -121 245c1 8.10001 1.89999 20.1 15 23c94 -45 188 -137 188 -253z" />
-    <glyph glyph-name="uni1F64" unicode="&#x1f64;" horiz-adv-x="658" 
-d="M261 684c38 0 60 -37 60 -73s-32 -98 -102 -106l-5 17c42 9 63 46 63 69c0 13 -6 21 -14 21c-41 0 -46 22 -46 38s14 34 44 34zM430 690c29 0 37 -22 37 -33c0 -4 -1 -8 -3 -12l-76 -139c-1 -4 -5 -5 -8 -5c-12 0 -14 10 -14 13v1l33 155c4 16 21 20 31 20zM624 189
-c0 -104 -68 -199 -190 -199c-51 0 -91 31 -113 103c-27 -72 -60 -103 -117 -103c-90 0 -170 73 -170 204c0 118 70 200 183 248c7.60001 -4 12 -13.7 13 -23c-65 -41 -114 -88 -114 -210c0 -112 27 -182 101 -182c37 0 60 30 91 101c-13 33 -15 70 -15 90c0 31 11 66 37 66
-c27 0 30 -13 30 -37s-9 -79 -24 -116c30 -69 65 -104 105 -104c72 0 101 37 101 147c0 73 -17 166 -121 245c1 8.10001 1.89999 20.1 15 23c94 -45 188 -137 188 -253z" />
-    <glyph glyph-name="uni1F66" unicode="&#x1f66;" horiz-adv-x="658" 
-d="M339 655c38 0 60 -37 60 -73s-32 -98 -102 -106l-5 17c42 9 63 46 63 69c0 13 -6 21 -14 21c-41 0 -46 22 -46 38s14 34 44 34zM405 724c20 0 34 13 47 47l22 -7c-12 -56 -38 -86 -81 -86c-42 0 -73 46 -111 46c-21 0 -35 -16 -46 -46l-22 5c13 55 34 88 75 88
-c55 0 76 -47 116 -47zM624 189c0 -104 -68 -199 -190 -199c-51 0 -91 31 -113 103c-27 -72 -60 -103 -117 -103c-90 0 -170 73 -170 204c0 118 70 200 183 248c7.60001 -4 12 -13.7 13 -23c-65 -41 -114 -88 -114 -210c0 -112 27 -182 101 -182c37 0 60 30 91 101
-c-13 33 -15 70 -15 90c0 31 11 66 37 66c27 0 30 -13 30 -37s-9 -79 -24 -116c30 -69 65 -104 105 -104c72 0 101 37 101 147c0 73 -17 166 -121 245c1 8.10001 1.89999 20.1 15 23c94 -45 188 -137 188 -253z" />
-    <glyph glyph-name="uni1F68" unicode="&#x1f68;" horiz-adv-x="766" 
-d="M50 724c38 0 60 -37 60 -73s-32 -98 -102 -106l-5 17c42 9 63 46 63 69c0 13 -6 21 -14 21c-41 0 -46 22 -46 38s14 34 44 34zM530 117l-3 -48h97c49 0 70 -7 76 50c10 4 18.7 4 26 0c0 -40 -3 -85 -7 -119h-208c-12 0 -17 5 -17 14l8 129c92 53 132 126 132 234
-c0 141 -80 247 -210 247c-139 0 -209 -118 -209 -246c0 -112 39 -173 131 -235l8 -128c0 -9 -6 -15 -17 -15h-213c-4.7 38.2 -7 78 -7 119c8.3 4.3 16.7 3.6 25 0c5 -53 24 -50 77 -50h103l-4 48c-108 37 -195 132 -195 260c0 132 104 281 301 281c199 0 301 -133 301 -281
-c0 -120 -84 -223 -195 -260z" />
-    <glyph glyph-name="uni1F6A" unicode="&#x1f6a;" horiz-adv-x="916" 
-d="M7 718c38 0 60 -37 60 -73s-32 -98 -102 -106l-5 17c42 9 63 46 63 69c0 13 -6 21 -14 21c-41 0 -46 22 -46 38s14 34 44 34zM120 678c-2 4 -3 9 -3 13c0 16 14 33 37 33c18 0 28 -7 31 -18l39 -152s1 -3 1 -4c0 -5 -5 -12 -15 -12c-5 0 -6 2 -8 5zM680 117l-3 -48h97
-c49 0 70 -7 76 50c10 4 18.7 4 26 0c0 -40 -3 -85 -7 -119h-208c-12 0 -17 5 -17 14l8 129c92 53 132 126 132 234c0 141 -80 247 -210 247c-139 0 -209 -118 -209 -246c0 -112 39 -173 131 -235l8 -128c0 -9 -6 -15 -17 -15h-213c-4.70001 38.2 -7 78 -7 119
-c8.29999 4.3 16.7 3.6 25 0c5 -53 24 -50 77 -50h103l-4 48c-108 37 -195 132 -195 260c0 132 104 281 301 281c199 0 301 -133 301 -281c0 -120 -84 -223 -195 -260z" />
-    <glyph glyph-name="uni1F6C" unicode="&#x1f6c;" horiz-adv-x="859" 
-d="M13 720c38 0 60 -37 60 -73s-32 -98 -102 -106l-5 17c42 9 63 46 63 69c0 13 -6 21 -14 21c-41 0 -46 22 -46 38s14 34 44 34zM182 726c29 0 37 -22 37 -33c0 -4 -1 -8 -3 -12l-76 -139c-1 -4 -5 -5 -8 -5c-12 0 -14 10 -14 13v1l33 155c4 16 21 20 31 20zM623 117
-l-3 -48h97c49 0 70 -7 76 50c10 4 18.7 4 26 0c0 -40 -3 -85 -7 -119h-208c-12 0 -17 5 -17 14l8 129c92 53 132 126 132 234c0 141 -80 247 -210 247c-139 0 -209 -118 -209 -246c0 -112 39 -173 131 -235l8 -128c0 -9 -6 -15 -17 -15h-213c-4.7 38.2 -7 78 -7 119
-c8.3 4.3 16.7 3.6 25 0c5 -53 24 -50 77 -50h103l-4 48c-108 37 -195 132 -195 260c0 132 104 281 301 281c199 0 301 -133 301 -281c0 -120 -84 -223 -195 -260z" />
-    <glyph glyph-name="uni1F6E" unicode="&#x1f6e;" horiz-adv-x="850" 
-d="M78 607c38 0 60 -37 60 -73s-32 -98 -102 -106l-5 17c42 9 63 46 63 69c0 13 -6 21 -14 21c-41 0 -46 22 -46 38s14 34 44 34zM144 676c20 0 34 13 47 47l22 -7c-12 -56 -38 -86 -81 -86c-42 0 -73 46 -111 46c-21 0 -35 -16 -46 -46l-22 5c13 55 34 88 75 88
-c55 0 76 -47 116 -47zM614 117l-3 -48h97c49 0 70 -7 76 50c10 4 18.7 4 26 0c0 -40 -3 -85 -7 -119h-208c-12 0 -17 5 -17 14l8 129c92 53 132 126 132 234c0 141 -80 247 -210 247c-139 0 -209 -118 -209 -246c0 -112 39 -173 131 -235l8 -128c0 -9 -6 -15 -17 -15h-213
-c-4.7 38.2 -7 78 -7 119c8.3 4.3 16.7 3.6 25 0c5 -53 24 -50 77 -50h103l-4 48c-108 37 -195 132 -195 260c0 132 104 281 301 281c199 0 301 -133 301 -281c0 -120 -84 -223 -195 -260z" />
-    <glyph glyph-name="uni1F70" unicode="&#x1f70;" horiz-adv-x="566" 
-d="M185 673c5 4 11 5 18 5c5 0 10 -1 15 -3c6 -4 10 -8 12 -13l62 -146c0 -1 1 -2 1 -3c0 -3 -2 -6 -4 -8c-3 -3 -7 -4 -10 -4s-6 1 -8 3l-101 123c-3 4 -5 8 -5 13c0 13 7 24 20 33zM409 191l14 -58c13 -53 33 -82 56 -82c25 0 38 7 55 37c12 0 19 -4 25 -11
-c-22 -63 -47 -87 -91 -87c-37 0 -63 33 -79 101l-9 39c-50 -99 -96 -140 -164 -140c-128 0 -182 82 -182 206c0 184 125 243 216 243c73.5 0 113 -48 132.8 -135c2.30002 -10 3.90002 -5.5 6.70001 2l47.5 128c15 0 33 -5 48 -5s36 5 49 5zM359 222l-5 21
-c-23 96 -49 162 -109 162c-67 0 -127 -71 -127 -186c0 -108 29 -195 103 -195c46 0 88 62 122 157z" />
-    <glyph glyph-name="uni1F71" unicode="&#x1f71;" horiz-adv-x="566" 
-d="M282 682c20 0 42 -15 42 -35c0 -5 -2 -13 -6 -18l-92 -122c-3 -4 -8 -8 -12 -8c-8 0 -14 6 -14 13c0 3 1 7 2 10l52 143c4 11 15 17 28 17zM409 191l14 -58c13 -53 33 -82 56 -82c25 0 38 7 55 37c12 0 19 -4 25 -11c-22 -63 -47 -87 -91 -87c-37 0 -63 33 -79 101l-9 39
-c-50 -99 -96 -140 -164 -140c-128 0 -182 82 -182 206c0 184 125 243 216 243c73.5 0 113 -48 132.8 -135c2.30002 -10 3.90002 -5.5 6.70001 2l47.5 128c15 0 33 -5 48 -5s36 5 49 5zM359 222l-5 21c-23 96 -49 162 -109 162c-67 0 -127 -71 -127 -186
-c0 -108 29 -195 103 -195c46 0 88 62 122 157z" />
-    <glyph glyph-name="uni1F72" unicode="&#x1f72;" horiz-adv-x="397" 
-d="M159 673c5 4 11 5 18 5c5 0 10 -1 15 -3c6 -4 10 -8 12 -13l62 -146c0 -1 1 -2 1 -3c0 -3 -2 -6 -4 -8c-3 -3 -7 -4 -10 -4s-6 1 -8 3l-101 123c-3 4 -5 8 -5 13c0 13 7 24 20 33zM123 121c0 -53 42 -93 97 -93c47 0 85 16 124 43c8.70001 -2.8 14.6 -10.2 15 -21
-c-33 -31 -87 -60 -150 -60c-132 0 -165 65 -165 123c0 38 19 91 91 116v2c-45.8 19.3 -72 47.7 -72 96c0 40 35 112 153 112c77 0 135 -36 135 -72c0 -29 -19 -37 -32 -37c-22 0 -32 16 -42 33c-11 22 -28 43 -67 43c-31 0 -76 -6 -76 -72c0 -69 36 -91 79 -91
-c1 0 46 5 51 5c19 0 29 -9 29 -21s-7 -23 -30 -23c-8 0 -42 6 -51 6c-56 0 -89 -33 -89 -89z" />
-    <glyph glyph-name="uni1F73" unicode="&#x1f73;" horiz-adv-x="397" 
-d="M240 680c20 0 42 -15 42 -35c0 -5 -2 -13 -6 -18l-92 -122c-3 -4 -8 -8 -12 -8c-8 0 -14 6 -14 13c0 3 1 7 2 10l52 143c4 11 15 17 28 17zM123 121c0 -53 42 -93 97 -93c47 0 85 16 124 43c8.70001 -2.8 14.6 -10.2 15 -21c-33 -31 -87 -60 -150 -60
-c-132 0 -165 65 -165 123c0 38 19 91 91 116v2c-45.8 19.3 -72 47.7 -72 96c0 40 35 112 153 112c77 0 135 -36 135 -72c0 -29 -19 -37 -32 -37c-22 0 -32 16 -42 33c-11 22 -28 43 -67 43c-31 0 -76 -6 -76 -72c0 -69 36 -91 79 -91c1 0 46 5 51 5c19 0 29 -9 29 -21
-s-7 -23 -30 -23c-8 0 -42 6 -51 6c-56 0 -89 -33 -89 -89z" />
-    <glyph glyph-name="uni1F74" unicode="&#x1f74;" horiz-adv-x="528" 
-d="M240 678c5 4 11 5 18 5c5 0 10 -1 15 -3c6 -4 10 -8 12 -13l62 -146c0 -1 1 -2 1 -3c0 -3 -2 -6 -4 -8c-3 -3 -7 -4 -10 -4s-6 1 -8 3l-101 123c-3 4 -5 8 -5 13c0 13 7 24 20 33zM174 358c0 -5 0.800003 -8.20001 2.39999 -5.89999c45.6 48.4 86.1 86.9 160.6 86.9
-c68 0 109 -43 109 -158v-287c0 -51 3 -99 3 -138c0 -24 -1 -44 -5 -60l-80 -34l-11 18c13 34 14 100 14 214v275c0 65 -6 118 -67 118c-34.5 0 -78.5 -29 -126 -76.5v-238.5c0 -38 9 -82 -29 -82c-32 0 -46 10 -50 27c-2 10 0 37 0 55v245c0 58 -11 63 -65 68
-c-2 6 -4 22 -2 28c69 9 98 18 126 29c8 0 9.89999 -3.39999 12 -8c4.7 -10.3 8 -36 8 -76z" />
-    <glyph glyph-name="uni1F75" unicode="&#x1f75;" horiz-adv-x="528" 
-d="M330 681c20 0 42 -15 42 -35c0 -5 -2 -13 -6 -18l-92 -122c-3 -4 -8 -8 -12 -8c-8 0 -14 6 -14 13c0 3 1 7 2 10l52 143c4 11 15 17 28 17zM174 358c0 -5 0.800003 -8.20001 2.39999 -5.89999c45.6 48.4 86.1 86.9 160.6 86.9c68 0 109 -43 109 -158v-287
-c0 -51 3 -99 3 -138c0 -24 -1 -44 -5 -60l-80 -34l-11 18c13 34 14 100 14 214v275c0 65 -6 118 -67 118c-34.5 0 -78.5 -29 -126 -76.5v-238.5c0 -38 9 -82 -29 -82c-32 0 -46 10 -50 27c-2 10 0 37 0 55v245c0 58 -11 63 -65 68c-2 6 -4 22 -2 28c69 9 98 18 126 29
-c8 0 9.89999 -3.39999 12 -8c4.7 -10.3 8 -36 8 -76z" />
-    <glyph glyph-name="uni1F76" unicode="&#x1f76;" horiz-adv-x="281" 
-d="M66 675c5 4 11 5 18 5c5 0 10 -1 15 -3c6 -4 10 -8 12 -13l62 -146c0 -1 1 -2 1 -3c0 -3 -2 -6 -4 -8c-3 -3 -7 -4 -10 -4s-6 1 -8 3l-101 123c-3 4 -5 8 -5 13c0 13 7 24 20 33zM84 322c0 28 -1 72 -18 107l2 2c6 -1 31 -2 43 -2c19 0 35 2 50 8c0 0 2 -62 2 -94v-244
-c0 -41 8 -55 23 -55c28 0 48 19 67 43c10.6 -2.2 18.4 -7.1 21 -17c-21 -37 -64 -81 -107 -81c-56 0 -83 32.5 -83 92v241z" />
-    <glyph glyph-name="uni1F77" unicode="&#x1f77;" horiz-adv-x="281" 
-d="M159 683c20 0 42 -15 42 -35c0 -5 -2 -13 -6 -18l-92 -122c-3 -4 -8 -8 -12 -8c-8 0 -14 6 -14 13c0 3 1 7 2 10l52 143c4 11 15 17 28 17zM84 322c0 28 -1 72 -18 107l2 2c6 -1 31 -2 43 -2c19 0 35 2 50 8c0 0 2 -62 2 -94v-244c0 -41 8 -55 23 -55c28 0 48 19 67 43
-c10.6 -2.2 18.4 -7.1 21 -17c-21 -37 -64 -81 -107 -81c-56 0 -83 32.5 -83 92v241z" />
-    <glyph glyph-name="uni1F78" unicode="&#x1f78;" horiz-adv-x="504" 
-d="M177 669c5 4 11 5 18 5c5 0 10 -1 15 -3c6 -4 10 -8 12 -13l62 -146c0 -1 1 -2 1 -3c0 -3 -2 -6 -4 -8c-3 -3 -7 -4 -10 -4s-6 1 -8 3l-101 123c-3 4 -5 8 -5 13c0 13 7 24 20 33zM41 205c0 63.2 19 121.4 55.3 164c36.6 43 90.9 70 156.7 70c153 0 210 -121 210 -225
-c0 -61.3 -20.3 -124.2 -65.1 -168c-34.1 -33.3 -82.5 -56 -146.9 -56c-142 0 -210 113 -210 215zM238 404c-90 0 -111 -89 -111 -176c0 -77 34 -203 138 -203c47 0 112 31 112 157c0 144 -53 222 -139 222z" />
-    <glyph glyph-name="uni1F79" unicode="&#x1f79;" horiz-adv-x="504" 
-d="M271 682c20 0 42 -15 42 -35c0 -5 -2 -13 -6 -18l-92 -122c-3 -4 -8 -8 -12 -8c-8 0 -14 6 -14 13c0 3 1 7 2 10l52 143c4 11 15 17 28 17zM41 205c0 63.2 19 121.4 55.3 164c36.6 43 90.9 70 156.7 70c153 0 210 -121 210 -225c0 -61.3 -20.3 -124.2 -65.1 -168
-c-34.1 -33.3 -82.5 -56 -146.9 -56c-142 0 -210 113 -210 215zM238 404c-90 0 -111 -89 -111 -176c0 -77 34 -203 138 -203c47 0 112 31 112 157c0 144 -53 222 -139 222z" />
-    <glyph glyph-name="uni1F7A" unicode="&#x1f7a;" horiz-adv-x="490" 
-d="M182 667c5 4 11 5 18 5c5 0 10 -1 15 -3c6 -4 10 -8 12 -13l62 -146c0 -1 1 -2 1 -3c0 -3 -2 -6 -4 -8c-3 -3 -7 -4 -10 -4s-6 1 -8 3l-101 123c-3 4 -5 8 -5 13c0 13 7 24 20 33zM171 321.3v-118.3c0 -101 12 -174 87 -174c92 0 147 110 147 208c0 96 -32 111 -61 127
-c-20 11 -34 25 -34 48c0 17 17 30 34 30c63 0 102 -73 102 -193c0 -174 -99 -259 -197 -259c-134 0 -157 90 -157 197v130c0 57 -10.5 62.9 -65 68c-2 6 -4 22 -2 28c69 9 108.5 18 137 29c8 0 13 -3 13 -7c0 0 -4 -64 -4 -113.7z" />
-    <glyph glyph-name="uni1F7B" unicode="&#x1f7b;" horiz-adv-x="490" 
-d="M294 682c20 0 42 -15 42 -35c0 -5 -2 -13 -6 -18l-92 -122c-3 -4 -8 -8 -12 -8c-8 0 -14 6 -14 13c0 3 1 7 2 10l52 143c4 11 15 17 28 17zM171 321.3v-118.3c0 -101 12 -174 87 -174c92 0 147 110 147 208c0 96 -32 111 -61 127c-20 11 -34 25 -34 48c0 17 17 30 34 30
-c63 0 102 -73 102 -193c0 -174 -99 -259 -197 -259c-134 0 -157 90 -157 197v130c0 57 -10.5 62.9 -65 68c-2 6 -4 22 -2 28c69 9 108.5 18 137 29c8 0 13 -3 13 -7c0 0 -4 -64 -4 -113.7z" />
-    <glyph glyph-name="uni1F7C" unicode="&#x1f7c;" horiz-adv-x="658" 
-d="M249 665c5 4 11 5 18 5c5 0 10 -1 15 -3c6 -4 10 -8 12 -13l62 -146c0 -1 1 -2 1 -3c0 -3 -2 -6 -4 -8c-3 -3 -7 -4 -10 -4s-6 1 -8 3l-101 123c-3 4 -5 8 -5 13c0 13 7 24 20 33zM624 189c0 -104 -68 -199 -190 -199c-51 0 -91 31 -113 103c-27 -72 -60 -103 -117 -103
-c-90 0 -170 73 -170 204c0 118 70 200 183 248c7.60001 -4 12 -13.7 13 -23c-65 -41 -114 -88 -114 -210c0 -112 27 -182 101 -182c37 0 60 30 91 101c-13 33 -15 70 -15 90c0 31 11 66 37 66c27 0 30 -13 30 -37s-9 -79 -24 -116c30 -69 65 -104 105 -104
-c72 0 101 37 101 147c0 73 -17 166 -121 245c1 8.10001 1.89999 20.1 15 23c94 -45 188 -137 188 -253z" />
-    <glyph glyph-name="uni1F7D" unicode="&#x1f7d;" horiz-adv-x="658" 
-d="M375 684c20 0 42 -15 42 -35c0 -5 -2 -13 -6 -18l-92 -122c-3 -4 -8 -8 -12 -8c-8 0 -14 6 -14 13c0 3 1 7 2 10l52 143c4 11 15 17 28 17zM624 189c0 -104 -68 -199 -190 -199c-51 0 -91 31 -113 103c-27 -72 -60 -103 -117 -103c-90 0 -170 73 -170 204
-c0 118 70 200 183 248c7.60001 -4 12 -13.7 13 -23c-65 -41 -114 -88 -114 -210c0 -112 27 -182 101 -182c37 0 60 30 91 101c-13 33 -15 70 -15 90c0 31 11 66 37 66c27 0 30 -13 30 -37s-9 -79 -24 -116c30 -69 65 -104 105 -104c72 0 101 37 101 147
-c0 73 -17 166 -121 245c1 8.10001 1.89999 20.1 15 23c94 -45 188 -137 188 -253z" />
-    <glyph glyph-name="uni1FB0" unicode="&#x1fb0;" horiz-adv-x="566" 
-d="M129 648c11 -53 54 -90 108 -90c52 0 98 32 108 90l27 -12c-12 -86 -76 -135 -135 -135c-70 0 -121 50 -135 135zM409 191l14 -58c13 -53 33 -82 56 -82c25 0 38 7 55 37c12 0 19 -4 25 -11c-22 -63 -47 -87 -91 -87c-37 0 -63 33 -79 101l-9 39
-c-50 -99 -96 -140 -164 -140c-128 0 -182 82 -182 206c0 184 125 243 216 243c73.5 0 113 -48 132.8 -135c2.30002 -10 3.90002 -5.5 6.70001 2l47.5 128c15 0 33 -5 48 -5s36 5 49 5zM359 222l-5 21c-23 96 -49 162 -109 162c-67 0 -127 -71 -127 -186
-c0 -108 29 -195 103 -195c46 0 88 62 122 157z" />
-    <glyph glyph-name="uni1FB1" unicode="&#x1fb1;" horiz-adv-x="566" 
-d="M355 518h-224c-9 0 -13 11 -13 18c0 12 11 32 22 32h225c10 0 14 -11 14 -17c0 -12 -11 -33 -24 -33zM409 191l14 -58c13 -53 33 -82 56 -82c25 0 38 7 55 37c12 0 19 -4 25 -11c-22 -63 -47 -87 -91 -87c-37 0 -63 33 -79 101l-9 39c-50 -99 -96 -140 -164 -140
-c-128 0 -182 82 -182 206c0 184 125 243 216 243c73.5 0 113 -48 132.8 -135c2.30002 -10 3.90002 -5.5 6.70001 2l47.5 128c15 0 33 -5 48 -5s36 5 49 5zM359 222l-5 21c-23 96 -49 162 -109 162c-67 0 -127 -71 -127 -186c0 -108 29 -195 103 -195c46 0 88 62 122 157z
-" />
-    <glyph glyph-name="uni1FB6" unicode="&#x1fb6;" horiz-adv-x="566" 
-d="M301 597c20 0 34 13 47 47l22 -7c-12 -56 -38 -86 -81 -86c-42 0 -73 46 -111 46c-21 0 -35 -16 -46 -46l-22 5c13 55 34 88 75 88c55 0 76 -47 116 -47zM409 191l14 -58c13 -53 33 -82 56 -82c25 0 38 7 55 37c12 0 19 -4 25 -11c-22 -63 -47 -87 -91 -87
-c-37 0 -63 33 -79 101l-9 39c-50 -99 -96 -140 -164 -140c-128 0 -182 82 -182 206c0 184 125 243 216 243c73.5 0 113 -48 132.8 -135c2.30002 -10 3.90002 -5.5 6.70001 2l47.5 128c15 0 33 -5 48 -5s36 5 49 5zM359 222l-5 21c-23 96 -49 162 -109 162
-c-67 0 -127 -71 -127 -186c0 -108 29 -195 103 -195c46 0 88 62 122 157z" />
-    <glyph glyph-name="uni1FB8" unicode="&#x1fb8;" horiz-adv-x="695" 
-d="M493 805c-6 -71 -70 -113 -136 -113c-73 0 -131 43 -136 113h28c8 -39 55 -61 108 -61c49 0 101 22 108 61h28zM263 283h177l-94 272h-6l-102.2 -258.7c-3.8 -10.3 3.2 -13.3 25.2 -13.3zM155 79c-15.6 -41.1 31.4 -45.4 69 -48c6 -6 6 -27 0 -33c-37 1 -87 2 -128 2
-c-30.3 0 -63 -1 -89 -2c-6 6 -6 27 0 33c43.5 3 74 9 100 71l227 536c13 0 40 11 55 20l206 -572c17.4 -48.2 51.2 -51.5 90 -55c6 -6 6 -27 0 -33c-35 1 -73 2 -114 2c-39 0 -94 -1 -131 -2c-6 6 -6 27 0 33c47.6 3.4 85.8 6.5 74 41l-58 169h-211c-24 0 -30 -4 -35 -17z
-" />
-    <glyph glyph-name="uni1FB9" unicode="&#x1fb9;" horiz-adv-x="695" 
-d="M458 705h-224c-9 0 -13 11 -13 18c0 12 11 32 22 32h225c10 0 14 -11 14 -17c0 -12 -11 -33 -24 -33zM263 283h177l-94 272h-6l-102.2 -258.7c-3.8 -10.3 3.2 -13.3 25.2 -13.3zM155 79c-15.6 -41.1 31.4 -45.4 69 -48c6 -6 6 -27 0 -33c-37 1 -87 2 -128 2
-c-30.3 0 -63 -1 -89 -2c-6 6 -6 27 0 33c43.5 3 74 9 100 71l227 536c13 0 40 11 55 20l206 -572c17.4 -48.2 51.2 -51.5 90 -55c6 -6 6 -27 0 -33c-35 1 -73 2 -114 2c-39 0 -94 -1 -131 -2c-6 6 -6 27 0 33c47.6 3.4 85.8 6.5 74 41l-58 169h-211c-24 0 -30 -4 -35 -17z
-" />
-    <glyph glyph-name="uni1FBA" unicode="&#x1fba;" horiz-adv-x="695" 
-d="M83 719c5 4 11 5 18 5c5 0 10 -1 15 -3c6 -4 10 -8 12 -13l62 -146c0 -1 1 -2 1 -3c0 -3 -2 -6 -4 -8c-3 -3 -7 -4 -10 -4s-6 1 -8 3l-101 123c-3 4 -5 8 -5 13c0 13 7 24 20 33zM263 283h177l-94 272h-6l-102.2 -258.7c-3.8 -10.3 3.2 -13.3 25.2 -13.3zM155 79
-c-15.6 -41.1 31.4 -45.4 69 -48c6 -6 6 -27 0 -33c-37 1 -87 2 -128 2c-30.3 0 -63 -1 -89 -2c-6 6 -6 27 0 33c43.5 3 74 9 100 71l227 536c13 0 40 11 55 20l206 -572c17.4 -48.2 51.2 -51.5 90 -55c6 -6 6 -27 0 -33c-35 1 -73 2 -114 2c-39 0 -94 -1 -131 -2
-c-6 6 -6 27 0 33c47.6 3.4 85.8 6.5 74 41l-58 169h-211c-24 0 -30 -4 -35 -17z" />
-    <glyph glyph-name="uni1FC0" unicode="&#x1fc0;" horiz-adv-x="421" 
-d="M276 627c20 0 34 13 47 47l22 -7c-12 -56 -38 -86 -81 -86c-42 0 -73 46 -111 46c-21 0 -35 -16 -46 -46l-22 5c13 55 34 88 75 88c55 0 76 -47 116 -47z" />
-    <glyph glyph-name="uni1FC1" unicode="&#x1fc1;" horiz-adv-x="368" 
-d="M243 719c20 0 34 13 47 47l22 -7c-12 -56 -38 -86 -81 -86c-42 0 -73 46 -111 46c-21 0 -35 -16 -46 -46l-22 5c13 55 34 88 75 88c55 0 76 -47 116 -47zM54 575c0 26 21 48 47 48s47 -22 47 -48s-21 -47 -47 -47s-47 21 -47 47zM223 575c0 26 21 48 47 48s47 -22 47 -48
-s-21 -47 -47 -47s-47 21 -47 47z" />
-    <glyph glyph-name="uni1FC6" unicode="&#x1fc6;" horiz-adv-x="528" 
-d="M348 595c20 0 34 13 47 47l22 -7c-12 -56 -38 -86 -81 -86c-42 0 -73 46 -111 46c-21 0 -35 -16 -46 -46l-22 5c13 55 34 88 75 88c55 0 76 -47 116 -47zM174 358c0 -5 0.800003 -8.20001 2.39999 -5.89999c45.6 48.4 86.1 86.9 160.6 86.9c68 0 109 -43 109 -158v-287
-c0 -51 3 -99 3 -138c0 -24 -1 -44 -5 -60l-80 -34l-11 18c13 34 14 100 14 214v275c0 65 -6 118 -67 118c-34.5 0 -78.5 -29 -126 -76.5v-238.5c0 -38 9 -82 -29 -82c-32 0 -46 10 -50 27c-2 10 0 37 0 55v245c0 58 -11 63 -65 68c-2 6 -4 22 -2 28c69 9 98 18 126 29
-c8 0 9.89999 -3.39999 12 -8c4.7 -10.3 8 -36 8 -76z" />
-    <glyph glyph-name="uni1FC8" unicode="&#x1fc8;" horiz-adv-x="690" 
-d="M-6 714c5 4 11 5 18 5c5 0 10 -1 15 -3c6 -4 10 -8 12 -13l62 -146c0 -1 1 -2 1 -3c0 -3 -2 -6 -4 -8c-3 -3 -7 -4 -10 -4s-6 1 -8 3l-101 123c-3 4 -5 8 -5 13c0 13 7 24 20 33zM402 361c85 0 88 13 91 68c6 6 27 6 33 0c-1 -24 -2 -58 -2 -86c0 -34.3 1 -62 2 -88
-c-6 -6 -27 -6 -33 0c-3 45 -6 68 -91 68h-91v-221c0 -47 14 -63 56 -63h116c76 0 111 59 131 131c13.1 3.2 24.6 1 35 -5c-8 -51 -23 -117 -37 -167c0 0 -80 2 -128 2h-215c-33 0 -93 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33
-c40 -1 98.5 -2 129 -2h255c24 0 32 1 49 4c3 0 4 -1 4 -3c2 -8 17 -104 22 -145c-9.79999 -4.70001 -20.6 -6.79999 -33 -5c-22 69 -38 109 -113 109h-75c-54 0 -66 -20 -66 -64v-180h91z" />
-    <glyph glyph-name="uni1FCA" unicode="&#x1fca;" horiz-adv-x="834" 
-d="M-11 719c5 4 11 5 18 5c5 0 10 -1 15 -3c6 -4 10 -8 12 -13l62 -146c0 -1 1 -2 1 -3c0 -3 -2 -6 -4 -8c-3 -3 -7 -4 -10 -4s-6 1 -8 3l-101 123c-3 4 -5 8 -5 13c0 13 7 24 20 33zM722 122c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-44 1 -91.7 2 -129 2
-c-37.1 0 -85 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v199h-342v-199c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-44 1 -92.7 2 -129 2c-37.7 0 -86 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c38 -1 79 -2 129 -2
-c51 0 92 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-160h342v160c0 83 -17 88 -87 91c-6 6 -6 27 0 33c44 -1 91.7 -2 129 -2c38 0 89 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-401z" />
-    <glyph glyph-name="uni1FD0" unicode="&#x1fd0;" horiz-adv-x="281" 
-d="M15 648c11 -53 54 -90 108 -90c52 0 98 32 108 90l27 -12c-12 -86 -76 -135 -135 -135c-70 0 -121 50 -135 135zM84 322c0 28 -1 72 -18 107l2 2c6 -1 31 -2 43 -2c19 0 35 2 50 8c0 0 2 -62 2 -94v-244c0 -41 8 -55 23 -55c28 0 48 19 67 43c10.6 -2.2 18.4 -7.1 21 -17
-c-21 -37 -64 -81 -107 -81c-56 0 -83 32.5 -83 92v241z" />
-    <glyph glyph-name="uni1FD1" unicode="&#x1fd1;" horiz-adv-x="281" 
-d="M232 519h-224c-9 0 -13 11 -13 18c0 12 11 32 22 32h225c10 0 14 -11 14 -17c0 -12 -11 -33 -24 -33zM84 322c0 28 -1 72 -18 107l2 2c6 -1 31 -2 43 -2c19 0 35 2 50 8c0 0 2 -62 2 -94v-244c0 -41 8 -55 23 -55c28 0 48 19 67 43c10.6 -2.2 18.4 -7.1 21 -17
-c-21 -37 -64 -81 -107 -81c-56 0 -83 32.5 -83 92v241z" />
-    <glyph glyph-name="uni1FD2" unicode="&#x1fd2;" horiz-adv-x="281" 
-d="M-2 585c0 26 21 48 47 48s47 -22 47 -48s-21 -47 -47 -47s-47 21 -47 47zM167 585c0 26 21 48 47 48s47 -22 47 -48s-21 -47 -47 -47s-47 21 -47 47zM40 791c5 4 11 5 18 5c5 0 10 -1 15 -3c6 -4 10 -8 12 -13l62 -146c0 -1 1 -2 1 -3c0 -3 -2 -6 -4 -8
-c-3 -3 -7 -4 -10 -4s-6 1 -8 3l-101 123c-3 4 -5 8 -5 13c0 13 7 24 20 33zM84 322c0 28 -1 72 -18 107l2 2c6 -1 31 -2 43 -2c19 0 35 2 50 8c0 0 2 -62 2 -94v-244c0 -41 8 -55 23 -55c28 0 48 19 67 43c10.6 -2.2 18.4 -7.1 21 -17c-21 -37 -64 -81 -107 -81
-c-56 0 -83 32.5 -83 92v241z" />
-    <glyph glyph-name="uni1FD3" unicode="&#x1fd3;" horiz-adv-x="281" 
-d="M189 784c20 0 42 -15 42 -35c0 -5 -2 -13 -6 -18l-92 -122c-3 -4 -8 -8 -12 -8c-8 0 -14 6 -14 13c0 3 1 7 2 10l52 143c4 11 15 17 28 17zM-5 573c0 26 21 48 47 48s47 -22 47 -48s-21 -47 -47 -47s-47 21 -47 47zM164 573c0 26 21 48 47 48s47 -22 47 -48
-s-21 -47 -47 -47s-47 21 -47 47zM84 322c0 28 -1 72 -18 107l2 2c6 -1 31 -2 43 -2c19 0 35 2 50 8c0 0 2 -62 2 -94v-244c0 -41 8 -55 23 -55c28 0 48 19 67 43c10.6 -2.2 18.4 -7.1 21 -17c-21 -37 -64 -81 -107 -81c-56 0 -83 32.5 -83 92v241z" />
-    <glyph glyph-name="uni1FD6" unicode="&#x1fd6;" horiz-adv-x="281" 
-d="M181 597c20 0 34 13 47 47l22 -7c-12 -56 -38 -86 -81 -86c-42 0 -73 46 -111 46c-21 0 -35 -16 -46 -46l-22 5c13 55 34 88 75 88c55 0 76 -47 116 -47zM84 322c0 28 -1 72 -18 107l2 2c6 -1 31 -2 43 -2c19 0 35 2 50 8c0 0 2 -62 2 -94v-244c0 -41 8 -55 23 -55
-c28 0 48 19 67 43c10.6 -2.2 18.4 -7.1 21 -17c-21 -37 -64 -81 -107 -81c-56 0 -83 32.5 -83 92v241z" />
-    <glyph glyph-name="uni1FD7" unicode="&#x1fd7;" horiz-adv-x="281" 
-d="M181 719c20 0 34 13 47 47l22 -7c-12 -56 -38 -86 -81 -86c-42 0 -73 46 -111 46c-21 0 -35 -16 -46 -46l-22 5c13 55 34 88 75 88c55 0 76 -47 116 -47zM-8 575c0 26 21 48 47 48s47 -22 47 -48s-21 -47 -47 -47s-47 21 -47 47zM161 575c0 26 21 48 47 48s47 -22 47 -48
-s-21 -47 -47 -47s-47 21 -47 47zM84 322c0 28 -1 72 -18 107l2 2c6 -1 31 -2 43 -2c19 0 35 2 50 8c0 0 2 -62 2 -94v-244c0 -41 8 -55 23 -55c28 0 48 19 67 43c10.6 -2.2 18.4 -7.1 21 -17c-21 -37 -64 -81 -107 -81c-56 0 -83 32.5 -83 92v241z" />
-    <glyph glyph-name="uni1FD8" unicode="&#x1fd8;" horiz-adv-x="304" 
-d="M289 805c-6 -71 -70 -113 -136 -113c-73 0 -131 43 -136 113h28c8 -39 55 -61 108 -61c49 0 101 22 108 61h28zM196 122c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-45 1 -93.4 2 -129 2c-36.3 0 -85 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91
-c-6 6 -6 27 0 33c47 -1 95.5 -2 129 -2c38.5 0 86 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-401z" />
-    <glyph glyph-name="uni1FD9" unicode="&#x1fd9;" horiz-adv-x="297" 
-d="M253 708h-224c-9 0 -13 11 -13 18c0 12 11 32 22 32h225c10 0 14 -11 14 -17c0 -12 -11 -33 -24 -33zM191 122c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-45 1 -93.4 2 -129 2c-36.3 0 -85 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91
-c-6 6 -6 27 0 33c47 -1 95.5 -2 129 -2c38.5 0 86 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-401z" />
-    <glyph glyph-name="uni1FDA" unicode="&#x1fda;" horiz-adv-x="395" 
-d="M-13 720c5 4 11 5 18 5c5 0 10 -1 15 -3c6 -4 10 -8 12 -13l62 -146c0 -1 1 -2 1 -3c0 -3 -2 -6 -4 -8c-3 -3 -7 -4 -10 -4s-6 1 -8 3l-101 123c-3 4 -5 8 -5 13c0 13 7 24 20 33zM294 122c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-45 1 -93.4 2 -129 2
-c-36.3 0 -85 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c47 -1 95.5 -2 129 -2c38.5 0 86 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-401z" />
-    <glyph glyph-name="uni1FDB" unicode="&#x1fdb;" horiz-adv-x="386" 
-d="M57 725c20 0 42 -15 42 -35c0 -5 -2 -13 -6 -18l-92 -122c-3 -4 -8 -8 -12 -8c-8 0 -14 6 -14 13c0 3 1 7 2 10l52 143c4 11 15 17 28 17zM284 122c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-45 1 -93.4 2 -129 2c-36.3 0 -85 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91
-v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c47 -1 95.5 -2 129 -2c38.5 0 86 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-401z" />
-    <glyph glyph-name="uni1FE0" unicode="&#x1fe0;" horiz-adv-x="490" 
-d="M142 648c11 -53 54 -90 108 -90c52 0 98 32 108 90l27 -12c-12 -86 -76 -135 -135 -135c-70 0 -121 50 -135 135zM171 321.3v-118.3c0 -101 12 -174 87 -174c92 0 147 110 147 208c0 96 -32 111 -61 127c-20 11 -34 25 -34 48c0 17 17 30 34 30c63 0 102 -73 102 -193
-c0 -174 -99 -259 -197 -259c-134 0 -157 90 -157 197v130c0 57 -10.5 62.9 -65 68c-2 6 -4 22 -2 28c69 9 108.5 18 137 29c8 0 13 -3 13 -7c0 0 -4 -64 -4 -113.7z" />
-    <glyph glyph-name="uni1FE1" unicode="&#x1fe1;" horiz-adv-x="490" 
-d="M368 519h-224c-9 0 -13 11 -13 18c0 12 11 32 22 32h225c10 0 14 -11 14 -17c0 -12 -11 -33 -24 -33zM171 321.3v-118.3c0 -101 12 -174 87 -174c92 0 147 110 147 208c0 96 -32 111 -61 127c-20 11 -34 25 -34 48c0 17 17 30 34 30c63 0 102 -73 102 -193
-c0 -174 -99 -259 -197 -259c-134 0 -157 90 -157 197v130c0 57 -10.5 62.9 -65 68c-2 6 -4 22 -2 28c69 9 108.5 18 137 29c8 0 13 -3 13 -7c0 0 -4 -64 -4 -113.7z" />
-    <glyph glyph-name="uni1FE2" unicode="&#x1fe2;" horiz-adv-x="490" 
-d="M124 564c0 26 21 48 47 48s47 -22 47 -48s-21 -47 -47 -47s-47 21 -47 47zM293 564c0 26 21 48 47 48s47 -22 47 -48s-21 -47 -47 -47s-47 21 -47 47zM166 770c5 4 11 5 18 5c5 0 10 -1 15 -3c6 -4 10 -8 12 -13l62 -146c0 -1 1 -2 1 -3c0 -3 -2 -6 -4 -8
-c-3 -3 -7 -4 -10 -4s-6 1 -8 3l-101 123c-3 4 -5 8 -5 13c0 13 7 24 20 33zM171 321.3v-118.3c0 -101 12 -174 87 -174c92 0 147 110 147 208c0 96 -32 111 -61 127c-20 11 -34 25 -34 48c0 17 17 30 34 30c63 0 102 -73 102 -193c0 -174 -99 -259 -197 -259
-c-134 0 -157 90 -157 197v130c0 57 -10.5 62.9 -65 68c-2 6 -4 22 -2 28c69 9 108.5 18 137 29c8 0 13 -3 13 -7c0 0 -4 -64 -4 -113.7z" />
-    <glyph glyph-name="uni1FE3" unicode="&#x1fe3;" horiz-adv-x="490" 
-d="M317 784c20 0 42 -15 42 -35c0 -5 -2 -13 -6 -18l-92 -122c-3 -4 -8 -8 -12 -8c-8 0 -14 6 -14 13c0 3 1 7 2 10l52 143c4 11 15 17 28 17zM123 573c0 26 21 48 47 48s47 -22 47 -48s-21 -47 -47 -47s-47 21 -47 47zM292 573c0 26 21 48 47 48s47 -22 47 -48
-s-21 -47 -47 -47s-47 21 -47 47zM171 321.3v-118.3c0 -101 12 -174 87 -174c92 0 147 110 147 208c0 96 -32 111 -61 127c-20 11 -34 25 -34 48c0 17 17 30 34 30c63 0 102 -73 102 -193c0 -174 -99 -259 -197 -259c-134 0 -157 90 -157 197v130c0 57 -10.5 62.9 -65 68
-c-2 6 -4 22 -2 28c69 9 108.5 18 137 29c8 0 13 -3 13 -7c0 0 -4 -64 -4 -113.7z" />
-    <glyph glyph-name="uni1FE4" unicode="&#x1fe4;" horiz-adv-x="525" 
-d="M269 704c38 0 60 -37 60 -73s-32 -98 -102 -106l-5 17c42 9 63 46 63 69c0 13 -6 21 -14 21c-41 0 -46 22 -46 38s14 34 44 34zM149 -207l-84 -31l-11 18c13 34 24 86 24 210v194c0 138 33 172 60 199c42 43 91 56 138 56c120 0 210 -94 210 -208
-c0 -153 -98 -241 -232 -241c-43 0 -69 10 -97 27v-78c0 -58 0 -106 -8 -146zM400 189c0 158 -64 212 -144 212c-43 0 -99 -27 -99 -173v-153c31 -30 66 -52 111 -52c83 0 132 59 132 166z" />
-    <glyph glyph-name="uni1FE6" unicode="&#x1fe6;" horiz-adv-x="490" 
-d="M315 596c20 0 34 13 47 47l22 -7c-12 -56 -38 -86 -81 -86c-42 0 -73 46 -111 46c-21 0 -35 -16 -46 -46l-22 5c13 55 34 88 75 88c55 0 76 -47 116 -47zM171 321.3v-118.3c0 -101 12 -174 87 -174c92 0 147 110 147 208c0 96 -32 111 -61 127c-20 11 -34 25 -34 48
-c0 17 17 30 34 30c63 0 102 -73 102 -193c0 -174 -99 -259 -197 -259c-134 0 -157 90 -157 197v130c0 57 -10.5 62.9 -65 68c-2 6 -4 22 -2 28c69 9 108.5 18 137 29c8 0 13 -3 13 -7c0 0 -4 -64 -4 -113.7z" />
-    <glyph glyph-name="uni1FE7" unicode="&#x1fe7;" horiz-adv-x="490" 
-d="M311 704c20 0 34 13 47 47l22 -7c-12 -56 -38 -86 -81 -86c-42 0 -73 46 -111 46c-21 0 -35 -16 -46 -46l-22 5c13 55 34 88 75 88c55 0 76 -47 116 -47zM122 560c0 26 21 48 47 48s47 -22 47 -48s-21 -47 -47 -47s-47 21 -47 47zM291 560c0 26 21 48 47 48
-s47 -22 47 -48s-21 -47 -47 -47s-47 21 -47 47zM171 321.3v-118.3c0 -101 12 -174 87 -174c92 0 147 110 147 208c0 96 -32 111 -61 127c-20 11 -34 25 -34 48c0 17 17 30 34 30c63 0 102 -73 102 -193c0 -174 -99 -259 -197 -259c-134 0 -157 90 -157 197v130
-c0 57 -10.5 62.9 -65 68c-2 6 -4 22 -2 28c69 9 108.5 18 137 29c8 0 13 -3 13 -7c0 0 -4 -64 -4 -113.7z" />
-    <glyph glyph-name="uni1FE8" unicode="&#x1fe8;" horiz-adv-x="575" 
-d="M434 805c-6 -71 -70 -113 -136 -113c-73 0 -131 43 -136 113h28c8 -39 55 -61 108 -61c49 0 101 22 108 61h28zM337 122c0 -83 17 -88 97 -91c6 -6 6 -27 0 -33c-50 1 -100.3 2 -139 2c-38.6 0 -91 -1 -140 -2c-6 6 -6 27 0 33c80 3 97 8 97 91v127
-c0 37 -3.5 47.5 -21 77l-131.3 221c-34.5 58.1 -51.7 64 -93.7 67c-6 6 -7 27 -1 33c30 -1 63 -2 102 -2c40 0 78 1 114 2c6 -6 6 -27 0 -33c-56 -3 -60 -12.6 -35.8 -55.2l116 -204.8c9 -15.9 13.8 -17.2 21.8 -2l110.8 209c21.4 40.4 5.5 50 -38.8 53c-6 6 -6 27 0 33
-c32 -1 68 -2 91 -2s55 1 83 2c6 -6 6 -27 0 -33c-44.7 -4.29999 -67 -13.3 -95 -64l-119.5 -216c-16.4 -29.6 -17.5 -46.5 -17.5 -76.3v-135.7z" />
-    <glyph glyph-name="uni1FE9" unicode="&#x1fe9;" horiz-adv-x="575" 
-d="M400 699h-224c-9 0 -13 11 -13 18c0 12 11 32 22 32h225c10 0 14 -11 14 -17c0 -12 -11 -33 -24 -33zM337 122c0 -83 17 -88 97 -91c6 -6 6 -27 0 -33c-50 1 -100.3 2 -139 2c-38.6 0 -91 -1 -140 -2c-6 6 -6 27 0 33c80 3 97 8 97 91v127c0 37 -3.5 47.5 -21 77
-l-131.3 221c-34.5 58.1 -51.7 64 -93.7 67c-6 6 -7 27 -1 33c30 -1 63 -2 102 -2c40 0 78 1 114 2c6 -6 6 -27 0 -33c-56 -3 -60 -12.6 -35.8 -55.2l116 -204.8c9 -15.9 13.8 -17.2 21.8 -2l110.8 209c21.4 40.4 5.5 50 -38.8 53c-6 6 -6 27 0 33c32 -1 68 -2 91 -2
-s55 1 83 2c6 -6 6 -27 0 -33c-44.7 -4.29999 -67 -13.3 -95 -64l-119.5 -216c-16.4 -29.6 -17.5 -46.5 -17.5 -76.3v-135.7z" />
-    <glyph glyph-name="uni1FEA" unicode="&#x1fea;" horiz-adv-x="706" 
-d="M-15 716c5 4 11 5 18 5c5 0 10 -1 15 -3c6 -4 10 -8 12 -13l62 -146c0 -1 1 -2 1 -3c0 -3 -2 -6 -4 -8c-3 -3 -7 -4 -10 -4s-6 1 -8 3l-101 123c-3 4 -5 8 -5 13c0 13 7 24 20 33zM466 122c0 -83 17 -88 97 -91c6 -6 6 -27 0 -33c-50 1 -100.3 2 -139 2
-c-38.6 0 -91 -1 -140 -2c-6 6 -6 27 0 33c80 3 97 8 97 91v127c0 37 -3.5 47.5 -21 77l-131.3 221c-34.5 58.1 -51.7 64 -93.7 67c-6 6 -7 27 -1 33c30 -1 63 -2 102 -2c40 0 78 1 114 2c6 -6 6 -27 0 -33c-56 -3 -60 -12.6 -35.8 -55.2l116 -204.8
-c9 -15.9 13.8 -17.2 21.8 -2l110.8 209c21.4 40.4 5.5 50 -38.8 53c-6 6 -6 27 0 33c32 -1 68 -2 91 -2s55 1 83 2c6 -6 6 -27 0 -33c-44.7 -4.29999 -67 -13.3 -95 -64l-119.5 -216c-16.4 -29.6 -17.5 -46.5 -17.5 -76.3v-135.7z" />
-    <glyph glyph-name="uni1FEB" unicode="&#x1feb;" horiz-adv-x="689" 
-d="M48 725c20 0 42 -15 42 -35c0 -5 -2 -13 -6 -18l-92 -122c-3 -4 -8 -8 -12 -8c-8 0 -14 6 -14 13c0 3 1 7 2 10l52 143c4 11 15 17 28 17zM449 122c0 -83 17 -88 97 -91c6 -6 6 -27 0 -33c-50 1 -100.3 2 -139 2c-38.6 0 -91 -1 -140 -2c-6 6 -6 27 0 33c80 3 97 8 97 91
-v127c0 37 -3.5 47.5 -21 77l-131.3 221c-34.5 58.1 -51.7 64 -93.7 67c-6 6 -7 27 -1 33c30 -1 63 -2 102 -2c40 0 78 1 114 2c6 -6 6 -27 0 -33c-56 -3 -60 -12.6 -35.8 -55.2l116 -204.8c9 -15.9 13.8 -17.2 21.8 -2l110.8 209c21.4 40.4 5.5 50 -38.8 53c-6 6 -6 27 0 33
-c32 -1 68 -2 91 -2s55 1 83 2c6 -6 6 -27 0 -33c-44.7 -4.29999 -67 -13.3 -95 -64l-119.5 -216c-16.4 -29.6 -17.5 -46.5 -17.5 -76.3v-135.7z" />
-    <glyph glyph-name="uni1FED" unicode="&#x1fed;" horiz-adv-x="375" 
-d="M92 781c5 4 11 5 18 5c5 0 10 -1 15 -3c6 -4 10 -8 12 -13l62 -146c0 -1 1 -2 1 -3c0 -3 -2 -6 -4 -8c-3 -3 -7 -4 -10 -4s-6 1 -8 3l-101 123c-3 4 -5 8 -5 13c0 13 7 24 20 33zM50 575c0 26 21 48 47 48s47 -22 47 -48s-21 -47 -47 -47s-47 21 -47 47zM219 575
-c0 26 21 48 47 48s47 -22 47 -48s-21 -47 -47 -47s-47 21 -47 47z" />
-    <glyph glyph-name="uni1FEF" unicode="&#x1fef;" horiz-adv-x="239" 
-d="M73 724c5 4 11 5 18 5c5 0 10 -1 15 -3c6 -4 10 -8 12 -13l62 -146c0 -1 1 -2 1 -3c0 -3 -2 -6 -4 -8c-3 -3 -7 -4 -10 -4s-6 1 -8 3l-101 123c-3 4 -5 8 -5 13c0 13 7 24 20 33z" />
-    <glyph glyph-name="uni1FF6" unicode="&#x1ff6;" horiz-adv-x="658" 
-d="M387 577c20 0 34 13 47 47l22 -7c-12 -56 -38 -86 -81 -86c-42 0 -73 46 -111 46c-21 0 -35 -16 -46 -46l-22 5c13 55 34 88 75 88c55 0 76 -47 116 -47zM624 189c0 -104 -68 -199 -190 -199c-51 0 -91 31 -113 103c-27 -72 -60 -103 -117 -103c-90 0 -170 73 -170 204
-c0 118 70 200 183 248c7.60001 -4 12 -13.7 13 -23c-65 -41 -114 -88 -114 -210c0 -112 27 -182 101 -182c37 0 60 30 91 101c-13 33 -15 70 -15 90c0 31 11 66 37 66c27 0 30 -13 30 -37s-9 -79 -24 -116c30 -69 65 -104 105 -104c72 0 101 37 101 147
-c0 73 -17 166 -121 245c1 8.10001 1.89999 20.1 15 23c94 -45 188 -137 188 -253z" />
-    <glyph glyph-name="uni1FF8" unicode="&#x1ff8;" horiz-adv-x="767" 
-d="M-12 719c5 4 11 5 18 5c5 0 10 -1 15 -3c6 -4 10 -8 12 -13l62 -146c0 -1 1 -2 1 -3c0 -3 -2 -6 -4 -8c-3 -3 -7 -4 -10 -4s-6 1 -8 3l-101 123c-3 4 -5 8 -5 13c0 13 7 24 20 33zM399 622c-99 0 -198 -85 -198 -295c0 -192 115 -301 237 -301c114 0 200 105 200 284
-c0 202 -107 312 -239 312zM734 329c0 -84 -22 -156.3 -61.8 -213c-54.9 -78.3 -143.4 -126 -254.2 -126c-170 0 -313 123 -313 320c0 193.9 113.3 348 307 348c179 0 322 -122 322 -329z" />
-    <glyph glyph-name="uni1FF9" unicode="&#x1ff9;" horiz-adv-x="702" 
-d="M50 725c20 0 42 -15 42 -35c0 -5 -2 -13 -6 -18l-92 -122c-3 -4 -8 -8 -12 -8c-8 0 -14 6 -14 13c0 3 1 7 2 10l52 143c4 11 15 17 28 17zM331 622c-99 0 -198 -85 -198 -295c0 -192 115 -301 237 -301c114 0 200 105 200 284c0 202 -107 312 -239 312zM666 329
-c0 -84 -22 -156.3 -61.8 -213c-54.9 -78.3 -143.4 -126 -254.2 -126c-170 0 -313 123 -313 320c0 193.9 113.3 348 307 348c179 0 322 -122 322 -329z" />
-    <glyph glyph-name="uni1FFA" unicode="&#x1ffa;" horiz-adv-x="770" 
-d="M-22 719c5 4 11 5 18 5c5 0 10 -1 15 -3c6 -4 10 -8 12 -13l62 -146c0 -1 1 -2 1 -3c0 -3 -2 -6 -4 -8c-3 -3 -7 -4 -10 -4s-6 1 -8 3l-101 123c-3 4 -5 8 -5 13c0 13 7 24 20 33zM535 117l-3 -48h97c49 0 70 -7 76 50c10 4 18.7 4 26 0c0 -40 -3 -85 -7 -119h-208
-c-12 0 -17 5 -17 14l8 129c92 53 132 126 132 234c0 141 -80 247 -210 247c-139 0 -209 -118 -209 -246c0 -112 39 -173 131 -235l8 -128c0 -9 -6 -15 -17 -15h-213c-4.7 38.2 -7 78 -7 119c8.3 4.3 16.7 3.6 25 0c5 -53 24 -50 77 -50h103l-4 48c-108 37 -195 132 -195 260
-c0 132 104 281 301 281c199 0 301 -133 301 -281c0 -120 -84 -223 -195 -260z" />
-    <glyph glyph-name="uni1FFB" unicode="&#x1ffb;" horiz-adv-x="715" 
-d="M58 725c20 0 42 -15 42 -35c0 -5 -2 -13 -6 -18l-92 -122c-3 -4 -8 -8 -12 -8c-8 0 -14 6 -14 13c0 3 1 7 2 10l52 143c4 11 15 17 28 17zM479 117l-3 -48h97c49 0 70 -7 76 50c10 4 18.7 4 26 0c0 -40 -3 -85 -7 -119h-208c-12 0 -17 5 -17 14l8 129
-c92 53 132 126 132 234c0 141 -80 247 -210 247c-139 0 -209 -118 -209 -246c0 -112 39 -173 131 -235l8 -128c0 -9 -6 -15 -17 -15h-213c-4.7 38.2 -7 78 -7 119c8.3 4.3 16.7 3.6 25 0c5 -53 24 -50 77 -50h103l-4 48c-108 37 -195 132 -195 260c0 132 104 281 301 281
-c199 0 301 -133 301 -281c0 -120 -84 -223 -195 -260z" />
-    <glyph glyph-name="uni1FFD" unicode="&#x1ffd;" horiz-adv-x="199" 
-d="M121 644c20 0 42 -15 42 -35c0 -5 -2 -13 -6 -18l-92 -122c-3 -4 -8 -8 -12 -8c-8 0 -14 6 -14 13c0 3 1 7 2 10l52 143c4 11 15 17 28 17z" />
-    <glyph glyph-name="enquad" unicode="&#x2000;" horiz-adv-x="499" 
- />
-    <glyph glyph-name="emquad" unicode="&#x2001;" horiz-adv-x="999" 
- />
-    <glyph glyph-name="enspace" unicode="&#x2002;" horiz-adv-x="518" 
- />
-    <glyph glyph-name="emspace" unicode="&#x2003;" horiz-adv-x="756" 
- />
-    <glyph glyph-name="threeperemspace" unicode="&#x2004;" horiz-adv-x="332" 
- />
-    <glyph glyph-name="fourperemspace" unicode="&#x2005;" horiz-adv-x="249" 
- />
-    <glyph glyph-name="sixperemspace" unicode="&#x2006;" horiz-adv-x="166" 
- />
-    <glyph glyph-name="figurespace" unicode="&#x2007;" horiz-adv-x="438" 
- />
-    <glyph glyph-name="punctuationspace" unicode="&#x2008;" horiz-adv-x="219" 
- />
-    <glyph glyph-name="thinspace" unicode="&#x2009;" horiz-adv-x="125" 
- />
-    <glyph glyph-name="hairspace" unicode="&#x200a;" horiz-adv-x="26" 
- />
-    <glyph glyph-name="zerowidthspace" unicode="&#x200b;" 
- />
-    <glyph glyph-name="endash" unicode="&#x2013;" horiz-adv-x="548" 
-d="M66 238c-11 0 -14 9 -14 17c0 12 14 32 26 32h404c11 0 14 -8 14 -17c0 -12 -13 -32 -26 -32h-404z" />
-    <glyph glyph-name="emdash" unicode="&#x2014;" horiz-adv-x="742" 
-d="M49 238c-11 0 -14 9 -14 17c0 12 14 32 26 32h624c11 0 14 -8 14 -17c0 -12 -13 -32 -26 -32h-624z" />
-    <glyph glyph-name="horizontalbar" unicode="&#x2015;" horiz-adv-x="922" 
-d="M49 238c-11 0 -14 9 -14 17c0 12 14 32 26 32h814c11 0 14 -8 14 -17c0 -12 -13 -32 -26 -32h-814z" />
-    <glyph glyph-name="quoteleft" unicode="&#x2018;" horiz-adv-x="268" 
-d="M139 507c-40 0 -66 39 -66 99c0 70 58 118 118 129c7 -7 9 -14 9 -24c-52 -13 -88 -59 -88 -80c0 -23 17 -29 36 -31c18 -3 44 -12.5 44 -44c0 -28 -22 -49 -53 -49z" />
-    <glyph glyph-name="quoteright" unicode="&#x2019;" horiz-adv-x="268" 
-d="M129 698c40 0 66 -39 66 -99c0 -70 -58 -118 -118 -129c-7 7 -9 14 -9 24c52 13 88 59 88 80c0 23 -17 29 -36 31c-18 3 -44 12.5 -44 44c0 28 22 49 53 49z" />
-    <glyph glyph-name="quotesinglbase" unicode="&#x201a;" horiz-adv-x="268" 
-d="M129 95c40 0 66 -39 66 -99c0 -70 -58 -118 -118 -129c-7 7 -9 14 -9 24c52 13 88 59 88 80c0 23 -17 29 -36 31c-18 3 -44 12.5 -44 44c0 28 22 49 53 49z" />
-    <glyph glyph-name="quotereversed" unicode="&#x201b;" horiz-adv-x="268" 
-d="M138.3 698c31 0 53 -21 53 -49c0 -31.5 -26 -41 -44 -44c-19 -2 -36 -8 -36 -31c0 -21 34 -66 86 -79c3.39999 -9.89999 1.8 -19.1 -5 -25c-60 11 -120 59 -120 129c0 60 26 99 66 99z" />
-    <glyph glyph-name="quotedblleft" unicode="&#x201c;" horiz-adv-x="375" 
-d="M271 508c-40 0 -66 39 -66 99c0 70 58 118 118 129c7 -7 9 -14 9 -24c-52 -13 -88 -59 -88 -80c0 -23 17 -29 36 -31c18 -3 44 -12.5 44 -44c0 -28 -22 -49 -53 -49zM114 508c-40 0 -66 39 -66 99c0 70 58 118 118 129c7 -7 9 -14 9 -24c-52 -13 -88 -59 -88 -80
-c0 -23 17 -29 36 -31c18 -3 44 -12.5 44 -44c0 -28 -22 -49 -53 -49z" />
-    <glyph glyph-name="quotedblright" unicode="&#x201d;" horiz-adv-x="375" 
-d="M105 698c40 0 66 -39 66 -99c0 -70 -58 -118 -118 -129c-7 7 -9 14 -9 24c52 13 88 59 88 80c0 23 -17 29 -36 31c-18 3 -44 12.5 -44 44c0 28 22 49 53 49zM262 698c40 0 66 -39 66 -99c0 -70 -58 -118 -118 -129c-7 7 -9 14 -9 24c52 13 88 59 88 80
-c0 23 -17 29 -36 31c-18 3 -44 12.5 -44 44c0 28 22 49 53 49z" />
-    <glyph glyph-name="quotedblbase" unicode="&#x201e;" horiz-adv-x="375" 
-d="M105 94c40 0 66 -39 66 -99c0 -70 -58 -118 -118 -129c-7 7 -9 14 -9 24c52 13 88 59 88 80c0 23 -17 29 -36 31c-18 3 -44 12.5 -44 44c0 28 22 49 53 49zM262 94c40 0 66 -39 66 -99c0 -70 -58 -118 -118 -129c-7 7 -9 14 -9 24c52 13 88 59 88 80c0 23 -17 29 -36 31
-c-18 3 -44 12.5 -44 44c0 28 22 49 53 49z" />
-    <glyph glyph-name="quotedblrev" unicode="&#x201f;" horiz-adv-x="373" 
-d="M271.3 698c31 0 53 -21 53 -49c0 -31.5 -26 -41 -44 -44c-19 -2 -36 -8 -36 -31c0 -21 34 -66 86 -79c3.40002 -9.89999 1.80002 -19.1 -5 -25c-60 11 -120 59 -120 129c0 60 26 99 66 99zM115.3 698c31 0 53 -21 53 -49c0 -31.5 -26 -41 -44 -44c-19 -2 -36 -8 -36 -31
-c0 -21 34 -66 86 -79c3.39999 -9.89999 1.8 -19.1 -5 -25c-60 11 -120 59 -120 129c0 60 26 99 66 99z" />
-    <glyph glyph-name="dagger" unicode="&#x2020;" horiz-adv-x="588" 
-d="M309 697c24 0 44 -28 44 -60c0 -76 -12 -138 -36 -187c43 27 99 41 165 41c30 0 54 -23 54 -51s-24 -49 -54 -49c-66 0 -122 13 -165 39c0 -82 15 -145 47 -185c-31 -92 -47 -243 -47 -452h-17c0 217 -15 368 -46 452c31 34 46 96 46 185c-41 -26 -96 -39 -165 -39
-c-30 0 -53 21 -53 49s24 51 53 51c73 0 126 -17 165 -41c-24 50 -36 112 -36 187c0 31 19 60 45 60z" />
-    <glyph glyph-name="daggerdbl" unicode="&#x2021;" horiz-adv-x="588" 
-d="M536 440c0 -28 -24 -49 -54 -49c-66 0 -122 13 -165 39c0 -83 15 -145 47 -185c-31 -40 -47 -102 -47 -185c45 26 100 39 165 39c28 0 54 -19 54 -49c0 -29 -25 -50 -54 -50c-65 0 -120 13 -165 40c24 -51 36 -113 36 -187c0 -30 -18 -60 -44 -60c-24 0 -45 26 -45 60
-c0 74 12 136 36 187c-43 -27 -98 -40 -165 -40c-28 0 -53 21 -53 50c0 30 28 49 53 49c72 0 127 -16 165 -39c0 86 -15 148 -46 185c31 34 46 96 46 185c-41 -26 -96 -39 -165 -39c-30 0 -53 21 -53 49s24 51 53 51c73 0 126 -17 165 -41c-24 50 -36 112 -36 187
-c0 31 19 60 45 60c24 0 44 -28 44 -60c0 -76 -12 -138 -36 -187c43 27 99 41 165 41c31 0 54 -23 54 -51z" />
-    <glyph glyph-name="bullet" unicode="&#x2022;" horiz-adv-x="351" 
-d="M62 230c0 63 51 114 114 114s114 -51 114 -114s-51 -114 -114 -114s-114 51 -114 114z" />
-    <glyph glyph-name="perthousand" unicode="&#x2030;" horiz-adv-x="911" 
-d="M872 164c0 -64 -44 -176 -128 -176c-54 0 -90 46 -90 108c0 76 56 160 132 160c38 0 86 -18 86 -92zM749 17c58 0 93 94 93 146c0 47 -27 62 -45 62c-45 0 -92 -78 -92 -142c0 -40 18 -66 44 -66zM433 83c0 -52 25 -64 44 -64c55 0 88 89 88 145c0 52 -28 61 -42 61
-c-49 0 -90 -84 -90 -142zM378 98c0 82 60 158 134 158c40 0 86 -18 86 -91c0 -67 -44 -177 -127 -177c-61 0 -93 57 -93 110zM364 521c42 0 119 12 150 54l32 -16l-410 -571l-34 15l359 500c-38 -15 -77 -19 -107 -19c-23 0 -61 10 -80 21c2 -7 3 -16 3 -25
-c0 -64 -44 -177 -128 -177c-62 0 -92 58 -92 109c0 88.1 61 159 133 159c28 0 57 -13 67 -25c54 -25 89 -25 107 -25zM111 398c0 -52 26 -64 44 -64c55 0 89 87 89 145c0 50 -25 61 -43 61c-49 0 -90 -84 -90 -142z" />
-    <glyph glyph-name="guilsinglleft" unicode="&#x2039;" horiz-adv-x="363" 
-d="M156 215c38 -43 75 -91 127 -170c-3 -10 -13 -18 -24 -19c-79 86 -129 134 -185 183v12c56 49 106 97 185 183c11 -1 21 -9 24 -19c-52 -79 -89 -127 -127 -170z" />
-    <glyph glyph-name="guilsinglright" unicode="&#x203a;" horiz-adv-x="363" 
-d="M207 215c-38 43 -75 91 -127 170c3 10 13 18 24 19c79 -86 129 -134 185 -183v-12c-56 -49 -106 -97 -185 -183c-11 1 -21 9 -24 19c52 79 89 127 127 170z" />
-    <glyph glyph-name="uni204B" unicode="&#x204b;" horiz-adv-x="602" 
-d="M235 574c0 27 -17 38 -40 38s-41 -7 -41 -38v-735c0 -31 18 -38 41 -38s40 11 40 38v735zM194 645c27 0 86 2 161 2c132 0 190 -87 190 -166c0 -134 -82 -199 -228 -199c-15 0 -23 1 -32 3v-446c0 -28 12 -39 54 -42l27 -2c4 0 7 -3 7 -8v-19l-2 -2c-49 2 -108 2 -177 2
-s-130 0 -177 -2l-2 2v19c0 5 4 8 8 8l26 2c40 3 55 12 55 42v735c0 30 -15 39 -55 42l-26 2c-4 0 -8 3 -8 8v19l2 2c47 -2 108 -2 177 -2z" />
-    <glyph glyph-name="uni204F" unicode="&#x204f;" horiz-adv-x="219" 
-d="M108.3 95c31 0 53 -21 53 -49c0 -31.5 -26 -41 -44 -44c-19 -2 -36 -8 -36 -31c0 -21 34 -66 86 -79c3.39999 -9.9 1.8 -19.1 -5 -25c-60 11 -120 59 -120 129c0 60 26 99 66 99zM55 355c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" />
-    <glyph glyph-name="zero.superior" unicode="&#x2070;" horiz-adv-x="307" 
-d="M154 664c-62 0 -64 -94 -64 -147c0 -56 8 -134 62 -134c59 0 65 77 65 154c0 54 -15 127 -63 127zM151 359c-69 0 -120 60.1 -120 163c0 94 53.3 166 123 166c64.3 0 122 -40 122 -161c0 -119 -57.7 -168 -125 -168z" />
-    <glyph glyph-name="i.superior" unicode="&#x2071;" horiz-adv-x="194" 
-d="M101 754c16 0 29 -13 29 -29s-13 -29 -29 -29s-29 13 -29 29s13 29 29 29zM128 440c0 -41 17 -44 51 -46c4 -8 4 -22 0 -29c-30 1 -51.3 1 -76 1c-23 0 -46 0 -76 -1c-4 6 -5 21 0 29c40 2 53 5 53 46v109c0 53 -11 48 -43 50c-4 6 -5 13 -4 21c26 2 73 10 89 17
-c6 0 8 -2 8 -7c0 0 -2 -27 -2 -54v-136z" />
-    <glyph glyph-name="four.superior" unicode="&#x2074;" horiz-adv-x="307" 
-d="M180 637.7c-39.2 -48.5 -91.5 -122.2 -98 -139.7h98v139.7zM180 440v24h-118.8c-26.6 0 -21.5 20.2 -18.9 28.2c2.9 6.29999 6.1 11.3 9.5 16.8c33.2 53.8 77 106 112.1 147c9 10.5 20.4 21.7 35.7 30.8c1.09999 0.700012 10.4 1.20001 13.7 1.20001
-c6.3 0 18.7 -1.09998 18.7 -10v-180h56l-6 -34h-50v-24c0 -41 17 -44 51 -46c4 -8 4 -22 0 -29c-30 1 -48.4 1 -78 1c-35.3 0 -48 0 -78 -1c-4 6 -5 21 0 29c40 2 53 5 53 46z" />
-    <glyph glyph-name="five.superior" unicode="&#x2075;" horiz-adv-x="307" 
-d="M203 462c0 30 -3 89 -75 89c-22 0 -43 -7 -57 -14l-6 3l22 143h163l-5 -34v-1h-135l-12 -81c9 6 34 11 48 11c78 0 114 -52 114 -106c0 -60 -49 -113 -118 -113c-34 0 -94 13 -94 37c0 13 12 21 22 21c13 0 21 -7 29 -15c9 -9 20 -16 42 -16c45 0 62 35 62 76z" />
-    <glyph glyph-name="six.superior" unicode="&#x2076;" horiz-adv-x="307" 
-d="M217 455c0 22 -4 77 -61 77c-14 0 -36 -6 -57 -23c-1 -5 -1 -13 -1 -19c0 -84 40 -107 68 -107c44 0 51 34 51 72zM274 460c0 -36 -29 -101 -108 -101c-50 0 -121 29 -121 133c0 82 58 185 211 196v-19c-109 -19 -144 -86 -155 -144c14 14 41 31 66 31
-c97 0 107 -79 107 -96z" />
-    <glyph glyph-name="seven.superior" unicode="&#x2077;" horiz-adv-x="307" 
-d="M111 645c-28 0 -35 -6 -47 -54l-21 3c5 28 12 68 13 94h18c0 -4 5 -5 21 -5h174c-53 -91 -110 -213 -141 -318h-34c35 111 91 235 117 280h-100z" />
-    <glyph glyph-name="eight.superior" unicode="&#x2078;" horiz-adv-x="307" 
-d="M159 662c-24 0 -48 -9 -48 -39c0 -15 3 -38 40 -58l20 -10c16 9 37 37 37 66c0 27 -24 41 -49 41zM255 621c0 -15 -4 -45 -63 -79l39 -21c31 -17 49 -42 49 -73c0 -32 -31 -89 -121 -89c-44 0 -112 16 -112 82c0 36 45 73 83 93l-12 6c-40 19 -56 45 -56 74
-c0 45 48 74 101 74c45 0 92 -27 92 -67zM152 523c-16 -9 -55 -48 -55 -82c0 -45 39 -56 63 -56c36 0 62 12 62 53c0 25 -1 51 -41 71z" />
-    <glyph glyph-name="nine.superior" unicode="&#x2079;" horiz-adv-x="307" 
-d="M96 592c0 -22 5 -76 61 -76c14 0 36 5 58 22v20c0 83 -40 106 -68 106c-44 0 -51 -34 -51 -72zM40 587c0 36 28 101 107 101c50 0 124 -28 124 -132c0 -82 -60 -185 -213 -197v19c109 19 143 86 155 144c-15 -14 -42 -31 -67 -31c-97 0 -106 79 -106 96z" />
-    <glyph glyph-name="plus.superior" unicode="&#x207a;" horiz-adv-x="307" 
-d="M174 527h106v-39h-106v-106h-39v106h-107v39h107v107h39v-107z" />
-    <glyph glyph-name="minus.superior" unicode="&#x207b;" horiz-adv-x="307" 
-d="M273 527v-39h-238v39h238z" />
-    <glyph glyph-name="equal.superior" unicode="&#x207c;" horiz-adv-x="307" 
-d="M269 581v-34h-230v34h230zM269 508v-34h-230v34h230z" />
-    <glyph glyph-name="parenleft.superior" unicode="&#x207d;" horiz-adv-x="197" 
-d="M36 520c0 71 44 148 121 197l15 -11c-64 -67 -83 -112 -83 -186c0 -75 15 -112 83 -184l-15 -10c-90 58 -121 122 -121 194z" />
-    <glyph glyph-name="parenright.superior" unicode="&#x207e;" horiz-adv-x="197" 
-d="M162 522c0 -72 -31 -136 -121 -194l-15 10c68 72 82 109 82 184c0 74 -19 119 -82 186l15 11c77 -49 121 -126 121 -197z" />
-    <glyph glyph-name="n.superior" unicode="&#x207f;" horiz-adv-x="362" 
-d="M127 562c-4 -5 -9 -14 -9 -22v-100c0 -41 3 -44 37 -46c4 -8 4 -22 0 -29c-30 1 -37 1 -62 1c-23 0 -46 0 -76 -1c-4 6 -5 21 0 29c40 2 53 5 53 46v107c0 40 -9 45 -42 48c-1 4 -3 18 -2 22c43 6 64 12 81 20c5 0 6 -3 7 -6c3 -7 5 -20 5 -48c0 -3 0 -8.29999 5 -1
-c24.3 35.3 65 55 101 55c46 0 70 -25 70 -92v-105c0 -41 8 -44 48 -46c5 -8 4 -23 0 -29c-30 1 -35.7 1 -71 1c-23.8 0 -31 0 -61 -1c-4 7 -4 21 0 29c34 2 36 5 36 46v95c0 51 -15 68 -46 68c-21 0 -55 -18 -74 -41z" />
-    <glyph glyph-name="zero.inferior" unicode="&#x2080;" horiz-adv-x="307" 
-d="M154 188c-62 0 -64 -94 -64 -147c0 -56 8 -134 62 -134c59 0 65 77 65 154c0 54 -15 127 -63 127zM151 -117c-69 0 -120 60.1 -120 163c0 94 53.3 166 123 166c64.3 0 122 -40 122 -161c0 -119 -57.7 -168 -125 -168z" />
-    <glyph glyph-name="one.inferior" unicode="&#x2081;" horiz-adv-x="307" 
-d="M135 145c-13 0 -32 -6 -57 -15c-7.9 6.10001 -10 15 -10 27c47 17 73 29 117 56c5.3 2.89999 12.7 5 18 0v-239c0 -51 21 -54 55 -56c4 -8 4 -22 0 -29c-30 1 -51 1 -84 1c-35.3 0 -66 0 -96 -1c-4 6 -5 21 0 29c40 2 71 5 71 56v130c0 32 -2 41 -14 41z" />
-    <glyph glyph-name="two.inferior" unicode="&#x2082;" horiz-adv-x="307" 
-d="M73 111c-12 0 -26 11 -26 24c0 26 28 77 107 77c50 0 108 -19 108 -83c0 -46 -33 -79 -89 -119c-42 -30 -57 -57 -66 -90h83c31 0 45 39 56 67c10.7 0.3 18.7 -1.3 24 -5c-4.29999 -35.7 -10.5 -67.3 -19 -94h-206c0 48 38 90 86 127c45 36 69 59 69 113
-c0 47 -32 54 -50 54c-31 0 -43 -9 -48 -21c-3.5 -8.3 -0.699997 -21.1 -2 -29c-3 -18 -17 -21 -27 -21z" />
-    <glyph glyph-name="three.inferior" unicode="&#x2083;" horiz-adv-x="307" 
-d="M186 148c0 26 -22 34 -38 34c-17 0 -45 -8 -52 -24c-4.8 -11 -4 -29 -27 -29c-19 0 -23 15 -23 18c0 17 27 65 114 65c52 0 85 -22 85 -59c0 -29 -22 -52 -51 -68c33 -3 80 -30 80 -88c0 -69 -59 -115 -139 -115c-26.2 0 -96.8 11.3 -96.8 42.8
-c0 13.3 12.5 22.2 24.8 22.2c14 0 24 -5 30 -17c5.7 -11.5 14 -18 46 -18c29 0 73 13 73 77c0 57 -51 61 -75 61c-7 0 -12 -1 -20 -2c-5.4 6.5 -4.7 17.9 -2 27c44 6 71 32 71 73z" />
-    <glyph glyph-name="four.inferior" unicode="&#x2084;" horiz-adv-x="307" 
-d="M180 161.7c-39.2 -48.5 -91.5 -122.2 -98 -139.7h98v139.7zM180 -36v24h-118.8c-26.6 0 -21.5 20.2 -18.9 28.2c2.9 6.3 6.1 11.3 9.5 16.8c33.2 53.8 77 106 112.1 147c9 10.5 20.4 21.7 35.7 30.8c1.09999 0.699997 10.4 1.2 13.7 1.2c6.3 0 18.7 -1.10001 18.7 -10
-v-180h56l-6 -34h-50v-24c0 -41 17 -44 51 -46c4 -8 4 -22 0 -29c-30 1 -48.4 1 -78 1c-35.3 0 -48 0 -78 -1c-4 6 -5 21 0 29c40 2 53 5 53 46z" />
-    <glyph glyph-name="five.inferior" unicode="&#x2085;" horiz-adv-x="307" 
-d="M203 -14c0 30 -3 89 -75 89c-22 0 -43 -7 -57 -14l-6 3l22 143h163l-5 -34v-1h-135l-12 -81c9 6 34 11 48 11c78 0 114 -52 114 -106c0 -60 -49 -113 -118 -113c-34 0 -94 13 -94 37c0 13 12 21 22 21c13 0 21 -7 29 -15c9 -9 20 -16 42 -16c45 0 62 35 62 76z" />
-    <glyph glyph-name="six.inferior" unicode="&#x2086;" horiz-adv-x="307" 
-d="M210 -21c0 22 -4 77 -61 77c-14 0 -36 -6 -57 -23c-1 -5 -1 -13 -1 -19c0 -84 40 -107 68 -107c44 0 51 34 51 72zM267 -16c0 -36 -29 -101 -108 -101c-50 0 -121 29 -121 133c0 82 58 185 211 196v-19c-109 -19 -144 -86 -155 -144c14 14 41 31 66 31
-c97 0 107 -79 107 -96z" />
-    <glyph glyph-name="seven.inferior" unicode="&#x2087;" horiz-adv-x="307" 
-d="M111 169c-28 0 -35 -6 -47 -54l-21 3c5 28 12 68 13 94h18c0 -4 5 -5 21 -5h174c-53 -91 -110 -213 -141 -318h-34c35 111 91 235 117 280h-100z" />
-    <glyph glyph-name="eight.inferior" unicode="&#x2088;" horiz-adv-x="307" 
-d="M153 186c-24 0 -48 -9 -48 -39c0 -15 3 -38 40 -58l20 -10c16 9 37 37 37 66c0 27 -24 41 -49 41zM249 145c0 -15 -4 -45 -63 -79l39 -21c31 -17 49 -42 49 -73c0 -32 -31 -89 -121 -89c-44 0 -112 16 -112 82c0 36 45 73 83 93l-12 6c-40 19 -56 45 -56 74
-c0 45 48 74 101 74c45 0 92 -27 92 -67zM146 47c-16 -9 -55 -48 -55 -82c0 -45 39 -56 63 -56c36 0 62 12 62 53c0 25 -1 51 -41 71z" />
-    <glyph glyph-name="nine.inferior" unicode="&#x2089;" horiz-adv-x="307" 
-d="M89 116c0 -22 5 -76 61 -76c14 0 36 5 58 22v20c0 83 -40 106 -68 106c-44 0 -51 -34 -51 -72zM33 111c0 36 28 101 107 101c50 0 124 -28 124 -132c0 -82 -60 -185 -213 -197v19c109 19 143 86 155 144c-15 -14 -42 -31 -67 -31c-97 0 -106 79 -106 96z" />
-    <glyph glyph-name="plus.inferior" unicode="&#x208a;" horiz-adv-x="307" 
-d="M173 50h107v-39h-107v-106h-39v106h-106v39h106v107h39v-107z" />
-    <glyph glyph-name="minus.inferior" unicode="&#x208b;" horiz-adv-x="307" 
-d="M273 50v-39h-238v39h238z" />
-    <glyph glyph-name="equal.inferior" unicode="&#x208c;" horiz-adv-x="307" 
-d="M269 104v-35h-230v35h230zM269 31v-34h-230v34h230z" />
-    <glyph glyph-name="parenleft.inferior" unicode="&#x208d;" horiz-adv-x="197" 
-d="M36 47c0 71 44 148 121 197l15 -11c-64 -67 -83 -112 -83 -186c0 -75 15 -112 83 -184l-15 -10c-90 58 -121 122 -121 194z" />
-    <glyph glyph-name="parenright.inferior" unicode="&#x208e;" horiz-adv-x="197" 
-d="M162 47c0 -72 -31 -136 -121 -194l-15 10c68 72 82 109 82 184c0 74 -19 119 -82 186l15 11c77 -49 121 -126 121 -197z" />
-    <glyph glyph-name="uni20A8" unicode="&#x20a8;" horiz-adv-x="464" 
-d="M402 607c0 -21 11 -33 20 -40h-167.2c3.09999 -2.5 6.2 -5.20001 9.2 -8c34.3 -32.4 51.4 -57.5 52.9 -103h85.1c0 -21 11 -33 20 -40h-108.2c-16.5 -80.1 -91.7 -110.6 -129.8 -123l126 -195c27 -42 51 -77 96 -77c4 -8 4.5 -17.1 1 -24c-10 -5 -27 -7 -42 -7
-c-60 0 -101 43 -132 89l-107 159c-14.1 22.9 -51 34 -77 35h-7c-9 7 -20 19 -20 40h27h8c88 0 154.6 8.20001 166.2 103h-181.2c-9 7 -20 19 -20 40h202.9c-3.2 110 -73.3 111 -132.9 111h-50c-9 7 -20 19 -20 40h69h311z" />
-    <glyph glyph-name="dong" unicode="&#x20ab;" horiz-adv-x="506" 
-d="M30 -49h456v-46h-456v46zM345 124v190c0 31 -3 38 -17 54c-20 23 -45 36 -81 36c-20 0 -62 -3 -93 -50c-15 -21 -29 -61 -29 -133c0 -125 56 -184 110 -184c25 0 57 16 94 48c14.1 12.2 16 20 16 39zM334 50.3c-49 -40.3 -86 -60.3 -125 -60.3c-108 0 -170 90 -170 213
-c0 74 26 133 69 176c40 38 84 60 150 60c33 0 74 -17 78 -17c7 0 9 2 9 9v102h-148c-9 2 -12 7.79999 -12 13.4c0 9.59998 9 24.3 21 26.6h138.9c-1.39999 69.4 -15 65.2 -63.9 68c-6 6 -8 22 -6 30c40 3 115 17 140 27c9 0 13 -3 13 -10c0 0 -4 -40 -4 -105v-10h59
-c9.29999 -1.29999 13 -7.79999 13 -12.6c0 -9.60004 -10.7 -25.4 -23 -27.4h-49v-403c0 -49 9 -68 73 -73c6 -6 6 -21 0 -27c-61 -7 -96 -22 -118 -40c-6 -2.5 -11 -3 -19 0c0 0 -8.5 34.5 -11 59c-0.700012 7 -10.2 5.2 -15 1.3z" />
-    <glyph glyph-name="Euro" unicode="&#x20ac;" horiz-adv-x="465" 
-d="M15 322l1 10l20 26h27c19 157 106 253 225 253c55 0 99 -14 134 -16c11 -48 17 -99 21 -154c-11 -5 -21 -6 -32 -5c-17 70 -48 140 -125 140c-82 0 -127 -98 -138 -218h233l-19 -36h-216v-19v-35h198l-19 -36h-177c12 -138 68 -208 146 -208c74 0 96 61 118 132
-c12 -1 24 -3 34 -8c-9 -52 -20 -100 -36 -141c-30 -2 -72 -18 -126 -18c-126 0 -206 91 -222 243h-62v10l21 26h39c-1 7 -1 16 -1 23c0 11 0 20 1 31h-45z" />
-    <glyph glyph-name="uni2100" unicode="&#x2100;" horiz-adv-x="705" 
-d="M667 726l-514 -746l-53 8l513 745zM225 546c14 35 21 79 21 88c0 26 -12 50 -31 50c-52 0 -102 -100 -102 -166c0 -35 0 -74 33 -74c19 0 58 49 79 102zM205 443v10c-29 -28 -61 -41 -83 -41c-68 0 -88 57 -88 94c0 101 104 203 179 203c34 0 48 -15 55 -34l24 34h48
-l-49 -209c-3 -13 -5 -22 -5 -28c0 -7 2 -10 5 -10c7 0 20 10 34 27l20 -17c-40 -41 -71 -60 -105 -60c-33 0 -35 20 -35 31zM511 -12c-65 0 -108 65 -108 106c0 109 92 191 172 191c72 0 95 -37 95 -70c0 -24 -30 -32 -40 -32c-28 0 -35 12 -35 23c0 12 3 11 3 30
-c0 20 -15 24 -21 24c-42 0 -93 -57 -93 -152c0 -74 30 -87 47 -87c15 0 54 21 80 50l26 -22c-31 -32 -66 -61 -126 -61z" />
-    <glyph glyph-name="uni2101" unicode="&#x2101;" horiz-adv-x="705" 
-d="M667 726l-514 -746l-53 8l513 745zM225 546c14 35 21 79 21 88c0 26 -12 50 -31 50c-52 0 -102 -100 -102 -166c0 -35 0 -74 33 -74c19 0 58 49 79 102zM205 443v10c-29 -28 -61 -41 -83 -41c-68 0 -88 57 -88 94c0 101 104 203 179 203c34 0 48 -15 55 -34l24 34h48
-l-49 -209c-3 -13 -5 -22 -5 -28c0 -7 2 -10 5 -10c7 0 20 10 34 27l20 -17c-40 -41 -71 -60 -105 -60c-33 0 -35 20 -35 31zM513 -14c-34 0 -67 8 -97 8l-4 97l35 2c0 -49 25 -83 68 -83c25 0 49 14 49 49c0 30 -32 51 -59 67c-44 25 -60 43 -60 71c0 56 56 86 122 86
-c33 0 58 -8 86 -31l-3 -71l-37 3c0 44 -23 76 -50 76c-31 0 -47 -23 -47 -46c0 -20 8 -35 26 -43c53 -26 98 -56 98 -92c0 -60 -57 -93 -127 -93z" />
-    <glyph glyph-name="uni2102" unicode="&#x2102;" horiz-adv-x="646" 
-d="M212 92.2v466.8c-8.39999 -8.09998 -16.6 -17.2 -24.6 -27c-36.5 -44.9 -59.4 -111.7 -59.4 -198c0 -89.3 27.3 -182.7 84 -241.8zM357 -10c-215 0 -320 164 -320 325c0 104.3 39.6 197.2 106 258c59 54 130 85 215 85c123 0 168 -40 219 -45c9 -55 17 -103 22 -155
-c-11.3 -6 -21 -9 -33 -5c-26 86 -81 168 -219 168c-32.5 0 -67.3 -10.9 -101 -34v-523.5c30.5 -20.5 67.1 -32.5 110 -32.5c93 0 161 31 232 109c11 0 18 -6 23 -15c-68 -89 -157 -135 -254 -135z" />
-    <glyph glyph-name="afii61248" unicode="&#x2105;" horiz-adv-x="755" 
-d="M667 726l-514 -746l-53 8l513 745zM163 407c-65 0 -108 66 -108 107c0 108 91 190 172 190c71 0 95 -37 95 -69c0 -25 -31 -33 -41 -33c-28 0 -34 12 -34 23c0 13 2 11 2 30c0 20 -15 24 -20 24c-43 0 -94 -57 -94 -152c0 -74 31 -87 47 -87c15 0 54 21 80 50l27 -22
-c-32 -31 -67 -61 -126 -61zM500 107c0 -80 32 -92 48 -92c67 0 86 115 86 156c0 40 -8 86 -46 86c-64 0 -88 -93 -88 -150zM418 102c0 78 65 182 183 182c89 0 113 -61 113 -108c0 -103 -93 -189 -183 -189c-93 0 -113 80 -113 115z" />
-    <glyph glyph-name="uni2106" unicode="&#x2106;" horiz-adv-x="755" 
-d="M667 726l-514 -746l-53 8l513 745zM163 407c-65 0 -108 66 -108 107c0 108 91 190 172 190c71 0 95 -37 95 -69c0 -25 -31 -33 -41 -33c-28 0 -34 12 -34 23c0 13 2 11 2 30c0 20 -15 24 -20 24c-43 0 -94 -57 -94 -152c0 -74 31 -87 47 -87c15 0 54 21 80 50l27 -22
-c-32 -31 -67 -61 -126 -61zM533 199l-28 -107c-4 -15 -6 -32 -6 -42c0 -18 2 -26 13 -26c19 0 78 38 98 123c0 0 20 86 30 127c12 0 56 6 76 9l-50 -210c-3 -12 -5 -21 -5 -27c0 -7 3 -10 6 -10c7 0 20 10 34 27l20 -17c-41 -41 -72 -61 -105 -61s-36 21 -36 33
-c0 2 2 11 7 26c-37 -42 -73 -59 -107 -59c-46 0 -60 15 -60 48c0 13 5 40 7 51l29 111c3 12 5 22 5 27c0 7 -3 10 -5 10c-8 0 -20 -9 -35 -27l-20 18c41 41 72 60 105 60c34 0 36 -20 36 -32c0 -11 -4 -32 -9 -52z" />
-    <glyph glyph-name="uni210D" unicode="&#x210d;" horiz-adv-x="752" 
-d="M708 122c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-50 1 -79 2 -129 2c-51 0 -81 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v199h-342v-199c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-50 1 -119 2 -169 2c-51 0 -131 -1 -180 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401
-c0 83 -17 88 -87 91c-6 6 -6 27 0 33c50 -1 132 -2 182 -2c51 0 118 1 167 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-160h342v160c0 83 -17 88 -87 91c-6 6 -6 27 0 33c50 -1 79 -2 129 -2c51 0 81 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-401zM186.3 36
-c60 -1 5.7 1 65.7 0l-1 572h-64.2c0.199997 -120 -0.5 -550.6 -0.5 -572z" />
-    <glyph glyph-name="uni210E" unicode="&#x210e;" horiz-adv-x="539" 
-d="M41 0l134 578c4 16 6 29 6 39c0 19 -7 29 -20 29l-33 -4c-3 0 -5 2 -5 5l4 25c16 0 54 6 71 9c20 4 35 8 57 17h22l-89 -387c91 108 156 131 208 131c38 0 68 -18 68 -78c0 -21 -6 -52 -14 -81l-42 -161c-9 -36 -11 -53 -11 -63s3 -18 10 -18c16 0 36 19 70 59l21 -17
-c-59 -70 -100 -95 -137 -95c-22 0 -44 15 -44 45c0 22 5 44 14 81l42 161c8 31 13 55 13 73c0 31 -18 45 -39 45c-35 0 -95 -42 -173 -141l-56 -240l-73 -24z" />
-    <glyph glyph-name="uni210F" unicode="&#x210f;" horiz-adv-x="539" 
-d="M244.5 556.6c39.5 8.5 79 16.9 118.5 25.4v-40l-128.2 -27.5l-46.8 -203.5c91 108 156 131 208 131c38 0 68 -18 68 -78c0 -21 -6 -52 -14 -81l-42 -161c-9 -36 -11 -53 -11 -63s3 -18 10 -18c16 0 36 19 70 59l21 -17c-59 -70 -100 -95 -137 -95c-22 0 -44 15 -44 45
-c0 22 5 44 14 81l42 161c8 31 13 55 13 73c0 31 -18 45 -39 45c-35 0 -95 -42 -173 -141l-56 -240l-73 -24l-4 12l115.4 497.7l-101.4 -21.7v40l111.1 23.8l8.89999 38.2c4 16 6 29 6 39c0 19 -7 29 -20 29l-33 -4c-3 0 -5 2 -5 5l4 25c16 0 54 6 71 9c20 4 35 8 57 17h22z
-" />
-    <glyph glyph-name="afii61289" unicode="&#x2113;" horiz-adv-x="341" 
-d="M168 342l7 9c51 56 88 108 88 165c0 34 -19.8 58 -44 58c-30.8 0 -51 -24 -51 -114v-118zM208 42c15 0 48 9 81 51c9.29999 -3.5 15.1 -9.9 19 -18c-39 -58 -91 -85 -132 -85c-62 0 -87 30 -87 137v113l-65 -54l-13 22c25 20 53 44 78 66v139c0 159 73.1 197 138 197
-c72.2 0 79 -45 79 -83c0 -79 -50 -142 -126 -212l-12 -11v-142c0 -76 1 -120 40 -120z" />
-    <glyph glyph-name="uni2115" unicode="&#x2115;" horiz-adv-x="1000" 
-d="M682 512c0 91 -17 95 -87 102c-6 6 -6 27 0 33c50 -1 68 -2 111 -2l112 2c6 -6 6 -27 0 -33c-70 -7 -87 -13 -87 -102v-483c0 -19 -9 -31 -23 -31c-16 0 -27.5 11.4 -39 26l-350 440c-17.3 21.8 -33 44 -37 42c-6.5 -3.29999 -5 -22 -5 -62v-311c0 -91 17 -95 87 -102
-c6 -6 6 -27 0 -33c-50 1 -130 2 -173 2c-44 0 -127 -1 -176 -2c-6 6 -6 27 0 33c70 7 87 13 87 102v417c-6 26 -36 61 -79 64c-6 6 -6 27 0 33l261 -2l343 -442c29 -37 40 -55 48 -55c7 0 7 11 7 30v334zM246.9 39c-0.599991 148.6 -0.0999908 509.1 0.100006 566h-65v-566
-h64.9z" />
-    <glyph glyph-name="numero" unicode="&#x2116;" horiz-adv-x="925" 
-d="M198 168c0 -135 -15 -178 -103 -178c-51 0 -91 27 -91 59c0 26 15 38 33 38c22 0 34 -13 43 -31c7 -13 13 -34 27 -34c39 0 46 24 46 125v403c-6 26 -35 68 -68 68h-5c-5 0 -13 3 -13 8v19l2 1h132l263 -441c29 -49 41 -68 48 -68c6 0 8 12 8 41v302
-c0 135 15 178 103 178c51 0 91 -27 91 -59c0 -26 -15 -38 -33 -38c-22 0 -34 13 -43 31c-7 13 -13 34 -27 34c-39 0 -46 -24 -46 -125v-480c0 -19 -18 -33 -32 -33c-16 0 -39 6 -52 26l-262 441c-8 13 -13 21 -16 21c-4 0 -5 -12 -5 -37v-271zM878 59h-206
-c-9 0 -15 7 -15 14c0 13 13 30 25 30h209c10 0 14 -7 14 -15c0 -9 -14 -29 -27 -29zM780 456c92 0 129 -70.9 129 -143c0 -65 -46.9 -135 -130 -135c-81 0 -128 68 -128 132c0 71 40 146 129 146zM850 294c0 79 -34 137 -76 137c-34.2 0 -64 -30 -64 -109
-c0 -78 39 -119 80 -119c29 0 60 30 60 91z" />
-    <glyph glyph-name="uni211A" unicode="&#x211a;" horiz-adv-x="712" 
-d="M666 329c0 -84 -22 -156.3 -61.8 -213c-44.7 -63.7 -111.7 -107.2 -194.9 -121.2c-32.6 -9.2 -81.6 -30 -131.2 -66.3c7.19998 1 13.9 1.5 19.9 1.5c57.8 0 107.9 -21.7 154.5 -44.1c42.5 -20.4 82.7 -37.9 124.5 -37.9c29 0 65 10 87 37l17 -12
-c-39 -56 -81 -82 -144 -82c-70.6 0 -121.4 27 -168 53.6c-38.9 22.2 -75.5 41.4 -118 41.4c-7.60001 0 -21.2 -3.3 -35.3 -12.7c-13.2 -14.1 -25.9 -29.5 -37.7 -46.3l-39 20c4.8 8.3 10.8 16 17.6 23.1c35.9 43.1 91.6 90.4 152.5 122.3
-c-151.4 18.1 -272.1 136.6 -272.1 317.6c0 193.9 113.3 348 307 348c179 0 322 -122 322 -329zM203 107.8v455.2c-41.6 -46.9 -70 -123.5 -70 -236c0 -94 27.6 -168 70 -219.2zM237 74.1c39 -31.5 85.5 -48.1 133 -48.1c114 0 200 105 200 284c0 202 -107 312 -239 312
-c-32.5 0 -65 -9.20001 -94 -28.9v-519z" />
-    <glyph glyph-name="uni211D" unicode="&#x211d;" horiz-adv-x="656" 
-d="M478 478c0 118 -82 148 -143 148c-35 0 -63 -3 -87 -8v-296h51c75 0 122 17 146 51c20 28 33 63 33 105zM559 479c0 -105 -94 -162 -138 -176l107 -205c23 -44 56 -77 93 -77l4 -21c-10 -4 -28 -6 -43 -6c-59 0 -104 38 -129 85l-103 192c-5 7 -34 13 -102 13v-212
-c0 -30 15 -44 55 -44h26c4 0 8 -3 8 -8v-19l-2 -2s-86 2 -126 2c-35 0 -190 -2 -190 -2l-2 2v19c0 5 3 8 8 8h56v589.4l-42 -1.40002c-5 0 -8 3 -8 7v19c21 5 176 12 293 12c63 0 134 -5 182 -50c36 -34 53 -75 53 -125zM115 28h10c41 0 42 16 42 44v502c0 29 -3 46 -29 46
-c-3 0 -5 0 -7 -1l-16 -0.5v-590.5z" />
-    <glyph glyph-name="uni2120" unicode="&#x2120;" horiz-adv-x="750" 
-d="M229 636l10 -80l-29 -4c-9 45 -30 78 -74 78c-29 0 -52 -26 -52 -58c0 -47 48 -65 69 -72c50 -18 105 -42 105 -107c0 -58 -51 -110 -120 -110c-42 0 -58 9 -68 15c-3 1 -4 2 -6 3c1 -2 1 -5 0 -10l-30 -1c0 55 -6 67 -10 104l30 3l1 -8c5 -40 38 -82 73 -82s61 24 61 67
-c0 50 -23 64 -52 75c-42 16 -115 45 -115 108c0 59 66 96 119 96c68 0 63 -16 88 -17zM634 344l-17 197c-33 -81 -98 -243 -98 -243c-3 -6 -7 -10 -17 -10c-4 0 -13 3 -17 10c0 0 -60 143 -99 238c-5 -65 -10 -129 -14 -193v-6c0 -14 1 -23 6 -23h15c7 0 17 -2 17 -7v-8
-l-3 -6s-39 2 -60 2c-19 0 -48 -2 -48 -2l-5 6v8c0 5 6 7 18 7h14c7 0 10 16 11 30c6 85 14 180 20 266v3v2c0 12 -3 17 -9 17h-16c-12 1 -17 3 -17 6v8l5 6h89l112 -265c35 87 73 179 107 265h82l3 -6v-8c0 -5 -12 -6 -17 -6h-15c-6 0 -9 -5 -9 -16v-6l23 -266
-c2 -16 4 -30 12 -30h14c13 0 19 -2 19 -7v-8l-6 -6s-44 2 -65 2c-20 0 -66 -2 -66 -2l-6 6v8c0 5 8 7 17 7h14c5 0 7 12 7 23c0 2 0 5 -1 7z" />
-    <glyph glyph-name="trademark" unicode="&#x2122;" horiz-adv-x="795" 
-d="M207 341c0 -15 7 -24 30 -24h14c3 0 5 -2 5 -5v-13l-1 -1s-63 1 -83 1c-21 0 -82 -1 -82 -1l-1 1v13c0 3 2 5 5 5h14c22 0 31 6 31 24v265c0 16 -4 20 -14 20h-51c-21 0 -28 -6 -39 -51l-22 6l19 90l24 -8c-1 -3 -2 -11 -3 -11h233c-1 0 -2 8 -3 11l25 8l19 -91l-23 -5
-c-12 45 -18 51 -40 51h-43c-11 0 -14 -4 -14 -21v-264zM674 344l-17 197l-99 -243c-2 -6 -6 -10 -16 -10c-4 0 -13 3 -17 10c0 0 -60 143 -100 238c-4 -65 -8 -129 -14 -193v-6c0 -14 2 -23 7 -23h15c7 0 17 -2 17 -7v-8l-3 -6s-39 2 -61 2c-19 0 -47 -2 -47 -2l-5 6v8
-c0 5 6 7 18 7h14c7 0 9 16 11 30c6 85 14 180 20 266v3v2c0 12 -3 17 -9 17h-16c-12 1 -17 3 -17 6v8l5 6h89l112 -265c35 87 73 179 107 265h82l3 -6v-8c0 -5 -12 -6 -17 -6h-15c-6 0 -9 -5 -9 -16v-6l23 -266c2 -16 4 -30 12 -30h14c12 0 19 -2 19 -7v-8l-6 -6
-s-44 2 -65 2c-20 0 -66 -2 -66 -2l-6 6v8c0 5 8 7 17 7h14c5 0 6 12 6 23v7z" />
-    <glyph glyph-name="uni2124" unicode="&#x2124;" horiz-adv-x="684" 
-d="M233 38l405 567h-81l-402 -567h78zM675 0h-618c-14 0 -19 5 -19 15c0 7 3 15 8 23l389 541c5 7 8 14 8 19c0 6 -3 8 -10 8h-223c-75 0 -93 -51 -114 -120l-30 5c8 41 18 113 22 167c37 -3 34 -12 81 -12h440c31 3 50 4 63 4c19 0 22 -3 22 -10c0 -11 -4 -21 -24 -49
-l-374 -519c-6 -9 -9 -15 -9 -20c0 -9 9 -13 25 -13h233c77 0 106 59 126 131l30 -5c-11 -52 -22 -109 -26 -165z" />
-    <glyph glyph-name="uni2126" unicode="&#x2126;" horiz-adv-x="697" 
-d="M457 117l-3 -48h97c49 0 70 -7 76 50c10 4 18.7 4 26 0c0 -40 -3 -85 -7 -119h-208c-12 0 -17 5 -17 14l8 129c92 53 132 126 132 234c0 141 -80 247 -210 247c-139 0 -209 -118 -209 -246c0 -112 39 -173 131 -235l8 -128c0 -9 -6 -15 -17 -15h-213
-c-4.7 38.2 -7 78 -7 119c8.3 4.3 16.7 3.6 25 0c5 -53 24 -50 77 -50h103l-4 48c-108 37 -195 132 -195 260c0 132 104 281 301 281c199 0 301 -133 301 -281c0 -120 -84 -223 -195 -260z" />
-    <glyph glyph-name="Omegainv" unicode="&#x2127;" horiz-adv-x="697" 
-d="M240 534l3 48h-97c-49 0 -70 7 -76 -50c-10 -4 -18.7 -4 -26 0c0 40 3 85 7 119h208c12 0 17 -5 17 -14l-8 -129c-92 -53 -132 -126 -132 -234c0 -141 80 -247 210 -247c139 0 209 118 209 246c0 112 -39 173 -131 235l-8 128c0 9 6 15 17 15h213
-c4.70001 -38.2 7 -78 7 -119c-8.29999 -4.29999 -16.7 -3.59998 -25 0c-5 53 -24 50 -77 50h-103l4 -48c108 -37 195 -132 195 -260c0 -132 -104 -281 -301 -281c-199 0 -301 133 -301 281c0 120 84 223 195 260z" />
-    <glyph glyph-name="uni2139" unicode="&#x2139;" horiz-adv-x="286" 
-d="M211 321.3v-244.3c0 -28 17.4 -37.1 47 -43l10 -2c3.89999 -0.9 8 -3 8 -9v-23l-2 -2s-81 2 -120 2c-36 0 -117 -2 -117 -2l-2 2v23c0 6 3.1 8.3 7 9l12 2c31 5.2 47 15 47 43v244c0 50 -8 61 -22 62l-41 4l-2 30c69.5 9.5 139.5 20 171 30c2.39999 0 7 -0.600006 7 -3
-c0 0 -3 -72.7 -3 -122.7zM95 571c0 33 27 60 60 60s60 -27 60 -60s-27 -60 -60 -60s-60 27 -60 60z" />
-    <glyph glyph-name="onethird" unicode="&#x2153;" horiz-adv-x="660" 
-d="M532 601l42 -8l-459 -655l-41 8zM544 181c0 26 -22 34 -38 34c-17 0 -45 -8 -52 -24c-4.79999 -11 -4 -29 -27 -29c-19 0 -23 15 -23 18c0 17 27 65 114 65c52 0 85 -22 85 -59c0 -29 -22 -52 -51 -68c33 -3 80 -30 80 -88c0 -69 -59 -115 -139 -115
-c-26.2 0 -96.8 11.3 -96.8 42.8c0 13.3 12.5 22.2 24.8 22.2c14 0 24 -5 30 -17c5.70001 -11.5 14 -18 46 -18c29 0 73 13 73 77c0 57 -51 61 -75 61c-7 0 -12 -1 -20 -2c-5.39999 6.5 -4.70001 17.9 -2 27c44 6 71 32 71 73zM121 571c-13 0 -32 -6 -57 -15
-c-7.9 6.09998 -10 15 -10 27c47 17 73 29 117 56c5.3 2.90002 12.7 5 18 0v-239c0 -51 21 -54 55 -56c4 -8 4 -22 0 -29c-30 1 -51 1 -84 1c-35.3 0 -66 0 -96 -1c-4 6 -5 21 0 29c40 2 71 5 71 56v130c0 32 -2 41 -14 41z" />
-    <glyph glyph-name="twothirds" unicode="&#x2154;" horiz-adv-x="660" 
-d="M532 601l42 -8l-459 -655l-41 8zM73 539c-12 0 -26 11 -26 24c0 26 28 77 107 77c50 0 108 -19 108 -83c0 -46 -33 -79 -89 -119c-42 -30 -57 -57 -66 -90h83c31 0 45 39 56 67c10.7 0.299988 18.7 -1.29999 24 -5c-4.29999 -35.7 -10.5 -67.3 -19 -94h-206
-c0 48 38 90 86 127c45 36 69 59 69 113c0 47 -32 54 -50 54c-31 0 -43 -9 -48 -21c-3.5 -8.29999 -0.699997 -21.1 -2 -29c-3 -18 -17 -21 -27 -21zM538 179c0 26 -22 34 -38 34c-17 0 -45 -8 -52 -24c-4.79999 -11 -4 -29 -27 -29c-19 0 -23 15 -23 18c0 17 27 65 114 65
-c52 0 85 -22 85 -59c0 -29 -22 -52 -51 -68c33 -3 80 -30 80 -88c0 -69 -59 -115 -139 -115c-26.2 0 -96.8 11.3 -96.8 42.8c0 13.3 12.5 22.2 24.8 22.2c14 0 24 -5 30 -17c5.70001 -11.5 14 -18 46 -18c29 0 73 13 73 77c0 57 -51 61 -75 61c-7 0 -12 -1 -20 -2
-c-5.39999 6.5 -4.70001 17.9 -2 27c44 6 71 32 71 73z" />
-    <glyph glyph-name="onefifth" unicode="&#x2155;" horiz-adv-x="660" 
-d="M532 601l42 -8l-459 -655l-41 8zM554 17c0 30 -3 89 -75 89c-22 0 -43 -7 -57 -14l-6 3l22 143h163l-5 -34v-1h-135l-12 -81c9 6 34 11 48 11c78 0 114 -52 114 -106c0 -60 -49 -113 -118 -113c-34 0 -94 13 -94 37c0 13 12 21 22 21c13 0 21 -7 29 -15
-c9 -9 20 -16 42 -16c45 0 62 35 62 76zM128 572c-13 0 -32 -6 -57 -15c-7.9 6.09998 -10 15 -10 27c47 17 73 29 117 56c5.3 2.90002 12.7 5 18 0v-239c0 -51 21 -54 55 -56c4 -8 4 -22 0 -29c-30 1 -51 1 -84 1c-35.3 0 -66 0 -96 -1c-4 6 -5 21 0 29c40 2 71 5 71 56v130
-c0 32 -2 41 -14 41z" />
-    <glyph glyph-name="twofifths" unicode="&#x2156;" horiz-adv-x="660" 
-d="M532 601l42 -8l-459 -655l-41 8zM555 18c0 30 -3 89 -75 89c-22 0 -43 -7 -57 -14l-6 3l22 143h163l-5 -34v-1h-135l-12 -81c9 6 34 11 48 11c78 0 114 -52 114 -106c0 -60 -49 -113 -118 -113c-34 0 -94 13 -94 37c0 13 12 21 22 21c13 0 21 -7 29 -15
-c9 -9 20 -16 42 -16c45 0 62 35 62 76zM74 539c-12 0 -26 11 -26 24c0 26 28 77 107 77c50 0 108 -19 108 -83c0 -46 -33 -79 -89 -119c-42 -30 -57 -57 -66 -90h83c31 0 45 39 56 67c10.7 0.299988 18.7 -1.29999 24 -5c-4.29999 -35.7 -10.5 -67.3 -19 -94h-206
-c0 48 38 90 86 127c45 36 69 59 69 113c0 47 -32 54 -50 54c-31 0 -43 -9 -48 -21c-3.5 -8.29999 -0.699997 -21.1 -2 -29c-3 -18 -17 -21 -27 -21z" />
-    <glyph glyph-name="threefifths" unicode="&#x2157;" horiz-adv-x="660" 
-d="M532 601l42 -8l-459 -655l-41 8zM185 575c0 26 -22 34 -38 34c-17 0 -45 -8 -52 -24c-4.8 -11 -4 -29 -27 -29c-19 0 -23 15 -23 18c0 17 27 65 114 65c52 0 85 -22 85 -59c0 -29 -22 -52 -51 -68c33 -3 80 -30 80 -88c0 -69 -59 -115 -139 -115
-c-26.2 0 -96.8 11.3 -96.8 42.8c0 13.3 12.5 22.2 24.8 22.2c14 0 24 -5 30 -17c5.7 -11.5 14 -18 46 -18c29 0 73 13 73 77c0 57 -51 61 -75 61c-7 0 -12 -1 -20 -2c-5.4 6.5 -4.7 17.9 -2 27c44 6 71 32 71 73zM552 18c0 30 -3 89 -75 89c-22 0 -43 -7 -57 -14l-6 3
-l22 143h163l-5 -34v-1h-135l-12 -81c9 6 34 11 48 11c78 0 114 -52 114 -106c0 -60 -49 -113 -118 -113c-34 0 -94 13 -94 37c0 13 12 21 22 21c13 0 21 -7 29 -15c9 -9 20 -16 42 -16c45 0 62 35 62 76z" />
-    <glyph glyph-name="fourfifths" unicode="&#x2158;" horiz-adv-x="660" 
-d="M532 601l42 -8l-459 -655l-41 8zM171 589.7c-39.2 -48.5 -91.5 -122.2 -98 -139.7h98v139.7zM171 392v24h-118.8c-26.6 0 -21.5 20.2 -18.9 28.2c2.9 6.29999 6.1 11.3 9.5 16.8c33.2 53.8 77 106 112.1 147c9 10.5 20.4 21.7 35.7 30.8
-c1.09999 0.700012 10.4 1.20001 13.7 1.20001c6.3 0 18.7 -1.09998 18.7 -10v-180h56l-6 -34h-50v-24c0 -41 17 -44 51 -46c4 -8 4 -22 0 -29c-30 1 -48.4 1 -78 1c-35.3 0 -48 0 -78 -1c-4 6 -5 21 0 29c40 2 53 5 53 46zM556 18c0 30 -3 89 -75 89c-22 0 -43 -7 -57 -14
-l-6 3l22 143h163l-5 -34v-1h-135l-12 -81c9 6 34 11 48 11c78 0 114 -52 114 -106c0 -60 -49 -113 -118 -113c-34 0 -94 13 -94 37c0 13 12 21 22 21c13 0 21 -7 29 -15c9 -9 20 -16 42 -16c45 0 62 35 62 76z" />
-    <glyph glyph-name="oneeighth" unicode="&#x215b;" horiz-adv-x="660" 
-d="M532 601l42 -8l-459 -655l-41 8zM507 216c-24 0 -48 -9 -48 -39c0 -15 3 -38 40 -58l20 -10c16 9 37 37 37 66c0 27 -24 41 -49 41zM603 175c0 -15 -4 -45 -63 -79l39 -21c31 -17 49 -42 49 -73c0 -32 -31 -89 -121 -89c-44 0 -112 16 -112 82c0 36 45 73 83 93l-12 6
-c-40 19 -56 45 -56 74c0 45 48 74 101 74c45 0 92 -27 92 -67zM500 77c-16 -9 -55 -48 -55 -82c0 -45 39 -56 63 -56c36 0 62 12 62 53c0 25 -1 51 -41 71zM128 571c-13 0 -32 -6 -57 -15c-7.9 6.09998 -10 15 -10 27c47 17 73 29 117 56c5.3 2.90002 12.7 5 18 0v-239
-c0 -51 21 -54 55 -56c4 -8 4 -22 0 -29c-30 1 -51 1 -84 1c-35.3 0 -66 0 -96 -1c-4 6 -5 21 0 29c40 2 71 5 71 56v130c0 32 -2 41 -14 41z" />
-    <glyph glyph-name="threeeighths" unicode="&#x215c;" horiz-adv-x="660" 
-d="M532 601l42 -8l-459 -655l-41 8zM188 574c0 26 -22 34 -38 34c-17 0 -45 -8 -52 -24c-4.8 -11 -4 -29 -27 -29c-19 0 -23 15 -23 18c0 17 27 65 114 65c52 0 85 -22 85 -59c0 -29 -22 -52 -51 -68c33 -3 80 -30 80 -88c0 -69 -59 -115 -139 -115
-c-26.2 0 -96.8 11.3 -96.8 42.8c0 13.3 12.5 22.2 24.8 22.2c14 0 24 -5 30 -17c5.7 -11.5 14 -18 46 -18c29 0 73 13 73 77c0 57 -51 61 -75 61c-7 0 -12 -1 -20 -2c-5.4 6.5 -4.7 17.9 -2 27c44 6 71 32 71 73zM506 218c-24 0 -48 -9 -48 -39c0 -15 3 -38 40 -58l20 -10
-c16 9 37 37 37 66c0 27 -24 41 -49 41zM602 177c0 -15 -4 -45 -63 -79l39 -21c31 -17 49 -42 49 -73c0 -32 -31 -89 -121 -89c-44 0 -112 16 -112 82c0 36 45 73 83 93l-12 6c-40 19 -56 45 -56 74c0 45 48 74 101 74c45 0 92 -27 92 -67zM499 79c-16 -9 -55 -48 -55 -82
-c0 -45 39 -56 63 -56c36 0 62 12 62 53c0 25 -1 51 -41 71z" />
-    <glyph glyph-name="fiveeighths" unicode="&#x215d;" horiz-adv-x="660" 
-d="M532 601l42 -8l-459 -655l-41 8zM199 414c0 30 -3 89 -75 89c-22 0 -43 -7 -57 -14l-6 3l22 143h163l-5 -34v-1h-135l-12 -81c9 6 34 11 48 11c78 0 114 -52 114 -106c0 -60 -49 -113 -118 -113c-34 0 -94 13 -94 37c0 13 12 21 22 21c13 0 21 -7 29 -15
-c9 -9 20 -16 42 -16c45 0 62 35 62 76zM501 217c-24 0 -48 -9 -48 -39c0 -15 3 -38 40 -58l20 -10c16 9 37 37 37 66c0 27 -24 41 -49 41zM597 176c0 -15 -4 -45 -63 -79l39 -21c31 -17 49 -42 49 -73c0 -32 -31 -89 -121 -89c-44 0 -112 16 -112 82c0 36 45 73 83 93l-12 6
-c-40 19 -56 45 -56 74c0 45 48 74 101 74c45 0 92 -27 92 -67zM494 78c-16 -9 -55 -48 -55 -82c0 -45 39 -56 63 -56c36 0 62 12 62 53c0 25 -1 51 -41 71z" />
-    <glyph glyph-name="seveneighths" unicode="&#x215e;" horiz-adv-x="660" 
-d="M532 601l42 -8l-459 -655l-41 8zM112 597c-28 0 -35 -6 -47 -54l-21 3c5 28 12 68 13 94h18c0 -4 5 -5 21 -5h174c-53 -91 -110 -213 -141 -318h-34c35 111 91 235 117 280h-100zM511 218c-24 0 -48 -9 -48 -39c0 -15 3 -38 40 -58l20 -10c16 9 37 37 37 66
-c0 27 -24 41 -49 41zM607 177c0 -15 -4 -45 -63 -79l39 -21c31 -17 49 -42 49 -73c0 -32 -31 -89 -121 -89c-44 0 -112 16 -112 82c0 36 45 73 83 93l-12 6c-40 19 -56 45 -56 74c0 45 48 74 101 74c45 0 92 -27 92 -67zM504 79c-16 -9 -55 -48 -55 -82c0 -45 39 -56 63 -56
-c36 0 62 12 62 53c0 25 -1 51 -41 71z" />
-    <glyph glyph-name="onenumerator" unicode="&#x215f;" horiz-adv-x="352" 
-d="M532 601l42 -8l-459 -655l-41 8zM125 572c-13 0 -32 -6 -57 -15c-7.9 6.09998 -10 15 -10 27c47 17 73 29 117 56c5.3 2.90002 12.7 5 18 0v-239c0 -51 21 -54 55 -56c4 -8 4 -22 0 -29c-30 1 -51 1 -84 1c-35.3 0 -66 0 -96 -1c-4 6 -5 21 0 29c40 2 71 5 71 56v130
-c0 32 -2 41 -14 41z" />
-    <glyph glyph-name="Oneroman" unicode="&#x2160;" horiz-adv-x="295" 
-d="M186 78c0 -33 18 -41 57 -47l13 -2c5 -1 8 -4 8 -9v-20l-1 -2s-74 2 -115 2c-38 0 -115 -2 -115 -2l-2 2v20c0 5 3 8 8 9l13 2c43 7 58 17 58 47v445c0 32 -18 39 -58 46l-12 3c-5 1 -9 2 -9 8v20l2 2s74 -2 115 -2c37 0 115 2 115 2l1 -2v-20c0 -6 -2 -7 -7 -8l-14 -3
-c-43 -7 -57 -17 -57 -46v-445z" />
-    <glyph glyph-name="Tworoman" unicode="&#x2161;" horiz-adv-x="517" 
-d="M184 78c0 -33 15 -47 57 -47h35c43 0 58 17 58 47v445c0 32 -16 46 -58 46h-35c-43 0 -57 -17 -57 -46v-445zM410 78c0 -33 17 -40 57 -47l13 -2c4 -1 8 -4 8 -9v-20l-2 -2s-73 2 -114 2h-226c-38 0 -115 -2 -115 -2l-2 2v20c0 5 3 8 8 9l13 2c43 7 58 17 58 47v445
-c0 32 -19 40 -58 46l-13 3c-4 1 -8 2 -8 8v20l2 2s73 -2 114 -2h227c37 0 114 2 114 2l2 -2v-20c0 -6 -3 -7 -8 -8l-13 -3c-43 -7 -57 -17 -57 -46v-445z" />
-    <glyph glyph-name="Threeroman" unicode="&#x2162;" horiz-adv-x="748" 
-d="M186 78c0 -33 16 -47 57 -47h36c43 0 57 17 57 47v445c0 32 -16 46 -57 46h-36c-43 0 -57 -17 -57 -46v-445zM412 78c0 -33 16 -47 58 -47h35c43 0 58 17 58 47v445c0 32 -16 46 -58 46h-35c-43 0 -58 -17 -58 -46v-445zM639 78c0 -33 16 -40 57 -47l13 -2
-c4 -1 8 -4 8 -9v-20l-2 -2s-73 2 -114 2h-453c-38 0 -115 -2 -115 -2l-2 2v20c0 5 3 8 8 9l13 2c42 7 58 17 58 47v445c0 32 -16 38 -58 46l-12 3c-5 1 -9 2 -9 8v20l2 2s74 -2 115 -2h452c38 0 115 2 115 2l2 -2v-20c0 -6 -3 -7 -8 -8l-13 -3c-42 -7 -57 -17 -57 -46v-445z
-" />
-    <glyph glyph-name="Fourroman" unicode="&#x2163;" horiz-adv-x="823" 
-d="M353 600c32 0 134 2 134 2l2 -3v-18c0 -5 -3 -9 -8 -9l-40 -3c-35 -2 -33 -14 -24 -43l128 -390h2l138 390c13 36 -4 41 -33 43l-32 3c-5 0 -6 3 -6 7v20l2 3s99 -2 114 -2c17 0 83 2 83 2l3 -3v-20c0 -5 -6 -6 -11 -7l-18 -3c-40 -5 -45 -19 -58 -53l-183 -504
-c-6 -17 -10 -25 -22 -25c-11 0 -19 9 -24 25l-180 535c-6 19 -29 22 -46 22h-31c-43 0 -57 -17 -57 -46v-445c0 -33 16 -40 57 -47l13 -2c5 -1 8 -4 8 -9v-20l-1 -2s-74 2 -115 2c-38 0 -115 -2 -115 -2l-2 2v20c0 5 3 8 8 9l13 2c44 7 58 17 58 47v445c0 32 -17 38 -58 46
-l-12 3c-5 1 -9 2 -9 8v20l2 2s74 -2 115 -2h205z" />
-    <glyph glyph-name="Fiveroman" unicode="&#x2164;" horiz-adv-x="597" 
-d="M119 600c23 0 136 2 136 2l2 -2v-19c0 -5 -4 -9 -10 -9l-40 -3c-35 -2 -31 -14 -23 -43l130 -390h2l139 390c13 36 -13 41 -39 43l-31 3c-5 0 -7 3 -7 7v21l2 2s106 -2 122 -2c8 0 83 2 83 2l2 -2v-21c0 -5 -7 -7 -11 -7l-18 -3c-38 -5 -44 -16 -58 -55l-182 -502
-c-6 -17 -14 -25 -26 -25c-11 0 -20 9 -25 25l-166 496c-18 53 -23 57 -59 61l-21 3c-5 1 -6 3 -6 7v21l2 2s79 -2 102 -2z" />
-    <glyph glyph-name="Sixroman" unicode="&#x2165;" horiz-adv-x="823" 
-d="M119 600c23 0 136 2 136 2l2 -2v-19c0 -5 -4 -9 -10 -9l-40 -3c-35 -2 -31 -14 -23 -43l130 -390h2l139 390c13 36 -13 41 -39 43l-31 3c-5 0 -7 3 -7 7v21l2 2s106 -2 122 -2h174c37 0 115 2 115 2l1 -2v-20c0 -6 -2 -7 -7 -8l-14 -3c-43 -7 -57 -17 -57 -46v-445
-c0 -33 18 -41 57 -47l13 -2c5 -1 8 -4 8 -9v-20l-1 -2s-74 2 -115 2c-38 0 -115 -2 -115 -2l-2 2v20c0 5 3 8 8 9l13 2c43 7 58 17 58 47v445c0 32 -17 46 -58 46h-22c-39 0 -44 -16 -58 -55l-182 -502c-6 -17 -14 -25 -26 -25c-11 0 -20 9 -25 25l-166 496
-c-18 53 -23 57 -59 61l-21 3c-5 1 -6 3 -6 7v21l2 2s79 -2 102 -2z" />
-    <glyph glyph-name="Sevenroman" unicode="&#x2166;" horiz-adv-x="1047" 
-d="M712 78c0 -33 15 -47 57 -47h35c43 0 58 17 58 47v445c0 32 -16 46 -58 46h-35c-43 0 -57 -17 -57 -46v-445zM119 600c23 0 136 2 136 2l2 -2v-19c0 -5 -4 -9 -10 -9l-40 -3c-35 -2 -31 -14 -23 -43l130 -390h2l139 390c13 36 -13 41 -39 43l-31 3c-5 0 -7 3 -7 7v21l2 2
-s106 -2 122 -2h398c37 0 114 2 114 2l2 -2v-20c0 -6 -3 -7 -8 -8l-13 -3c-43 -7 -57 -17 -57 -46v-445c0 -33 17 -40 57 -47l13 -2c4 -1 8 -4 8 -9v-20l-2 -2s-73 2 -114 2h-226c-38 0 -115 -2 -115 -2l-2 2v20c0 5 3 8 8 9l13 2c43 7 58 17 58 47v445c0 32 -20 46 -58 46
-h-20c-38 0 -44 -16 -58 -55l-182 -502c-6 -17 -14 -25 -26 -25c-11 0 -20 9 -25 25l-166 496c-18 53 -23 57 -59 61l-21 3c-5 1 -6 3 -6 7v21l2 2s79 -2 102 -2z" />
-    <glyph glyph-name="Eightroman" unicode="&#x2167;" horiz-adv-x="1300" 
-d="M794 29h35c43 0 58 17 58 47v449c0 32 -16 47 -58 47h-35c-43 0 -58 -18 -58 -47v-449c0 -33 16 -47 58 -47zM1011 -2c0 0 -45 2 -86 2c-38 0 -117 -2 -117 -2s-68 2 -109 2c-38 0 -115 -2 -115 -2l-2 2v20c0 5 4 9 9 9h12c43 0 57 17 57 47v449c0 32 -16 47 -57 47h-47
-c-36 0 -40 -14 -52 -48l-186 -512c-6 -17 -14 -25 -26 -25c-11 0 -20 9 -25 25l-179 535c-6 19 -29 25 -46 25h-21c-5 0 -6 3 -6 7v19l1 3c7 0 88 -2 103 -2c7 0 120 2 136 2l2 -3v-17c0 -5 -4 -9 -10 -9h-40c-36 0 -31 -17 -23 -46l130 -390l149 390c13 36 -12 46 -39 46
-h-32c-5 0 -6 3 -6 7v19l1 3c8 0 99 -2 115 -2c8 0 67 2 84 2c0 0 71 -2 112 -2c38 0 114 2 114 2s71 -2 112 -2c38 0 91 2 91 2s95 -2 136 -2c37 0 116 2 116 2l2 -2v-19c0 -6 -4 -8 -9 -8h-12c-43 0 -58 -18 -58 -47v-449c0 -33 16 -47 58 -47h11c5 0 10 -4 10 -9v-20
-l-2 -2s-75 2 -116 2c-37 0 -140 -2 -140 -2zM1056 29c43 0 57 17 57 47v449c0 32 -16 47 -57 47h-36c-43 0 -57 -18 -57 -47v-449c0 -33 16 -47 57 -47h36z" />
-    <glyph glyph-name="Nineroman" unicode="&#x2168;" horiz-adv-x="867" 
-d="M349 600c4 0 112 2 112 2s3 -3 4 -3v-20c0 -5 -2 -7 -4 -7l-31 -2c-31 -2 -23 -13 -4 -39l109 -159c4 -6 8 -11 11 -11s8 5 13 12l117 158c18 24 22 37 -5 39l-29 2c-3 1 -6 2 -6 7v21l2 2s82 -2 93 -2c4 0 91 2 91 2l3 -2v-21c0 -3 -1 -6 -8 -7c-57 -1 -79 -25 -104 -59
-l-119 -161c-7 -11 -13 -20 -13 -28c0 -10 6 -18 15 -31l145 -197c25 -37 58 -64 99 -67c5 0 7 -5 7 -7v-22l-2 -2c-25 1 -87 2 -99 2c-5 0 -117 -2 -117 -2l-2 2v22c0 3 1 7 5 7l19 2c37 3 34 6 11 38l-123 176c-5 7 -10 11 -13 11s-9 -7 -15 -14l-123 -170
-c-16 -22 -24 -38 13 -41l18 -2c5 0 6 -5 6 -7v-22l-2 -2s-91 2 -106 2h-169c-38 0 -115 -2 -115 -2l-2 2v20c0 5 3 8 8 9l13 2c43 7 58 17 58 47v445c0 32 -18 39 -58 46l-12 3c-5 1 -9 2 -9 8v20l2 2s74 -2 115 -2h201zM186 78c0 -33 18 -47 57 -47h10c52 6 83 39 103 66
-l128 177c6 7 9 16 9 21c0 10 -5 17 -12 28l-133 187c-39 55 -68 57 -84 59h-21c-43 0 -57 -17 -57 -46v-445z" />
-    <glyph glyph-name="Tenroman" unicode="&#x2169;" horiz-adv-x="641" 
-d="M27 579v20l4 3s85 -2 96 -2c4 0 112 2 112 2s3 -3 4 -3v-20c0 -5 -2 -7 -4 -7l-31 -2c-31 -2 -23 -13 -4 -39l109 -159c4 -6 8 -11 11 -11s8 5 13 12l117 158c18 24 22 37 -5 39l-29 2c-3 1 -6 2 -6 7v21l2 2s82 -2 93 -2c4 0 91 2 91 2l3 -2v-21c0 -3 -1 -6 -8 -7
-c-57 -1 -79 -25 -104 -59l-119 -161c-7 -11 -13 -20 -13 -28c0 -10 5 -18 15 -31l145 -197c25 -37 58 -64 99 -67c5 0 7 -5 7 -7v-22l-2 -2c-25 1 -87 2 -99 2c-5 0 -117 -2 -117 -2l-2 2v22c0 3 1 7 5 7l19 2c37 3 35 6 12 38l-124 176c-5 7 -10 11 -13 11s-9 -7 -15 -14
-l-123 -170c-16 -22 -23 -38 14 -41l18 -2c5 0 5 -5 5 -7v-22l-2 -2s-91 2 -106 2c-4 0 -78 -2 -78 -2l-1 2v22c0 4 4 7 9 7c55 3 88 41 109 68l128 177c6 7 9 16 9 21c0 10 -5 17 -12 28l-133 187c-39 55 -68 60 -84 62c-10 2 -15 3 -15 7z" />
-    <glyph glyph-name="Elevenroman" unicode="&#x216a;" horiz-adv-x="866" 
-d="M595 569c-57 -1 -79 -22 -104 -56l-119 -161c-7 -11 -13 -20 -13 -28c0 -10 6 -18 15 -31l145 -197c24 -35 55 -61 94 -65h9c43 0 58 17 58 47v445c0 32 -18 39 -58 46h-27zM27 579v20l4 3s85 -2 96 -2c4 0 112 2 112 2s3 -3 4 -3v-20c0 -5 -2 -7 -4 -7l-31 -2
-c-31 -2 -23 -13 -4 -39l109 -159c4 -6 8 -11 11 -11s8 5 13 12l117 158c18 24 22 37 -5 39l-29 2c-3 1 -6 2 -6 7v21l2 2s82 -2 93 -2h209c37 0 116 2 116 2l1 -2v-20c0 -6 -3 -7 -8 -8l-14 -3c-43 -7 -57 -17 -57 -46v-445c0 -33 18 -41 57 -47l13 -2c5 -1 9 -4 9 -9v-20
-l-1 -2s-75 2 -116 2h-194c-5 0 -117 -2 -117 -2l-2 2v22c0 3 1 7 5 7l19 2c37 3 35 6 12 38l-124 176c-5 7 -10 11 -13 11s-9 -7 -15 -14l-123 -170c-16 -22 -23 -38 14 -41l18 -2c5 0 5 -5 5 -7v-22l-2 -2s-91 2 -106 2c-4 0 -78 -2 -78 -2l-1 2v22c0 4 4 7 9 7
-c55 3 88 41 109 68l128 177c6 7 9 16 9 21c0 10 -5 17 -12 28l-133 187c-39 55 -68 60 -84 62c-10 2 -15 3 -15 7z" />
-    <glyph glyph-name="Twelveroman" unicode="&#x216b;" horiz-adv-x="1090" 
-d="M595 569c-57 -1 -79 -22 -104 -56l-119 -161c-7 -11 -13 -20 -13 -28c0 -10 6 -18 15 -31l145 -197c24 -35 55 -60 93 -65h8c43 0 58 17 58 47v445c0 32 -19 40 -58 46h-25zM754 78c0 -33 15 -47 57 -47h35c43 0 58 17 58 47v445c0 32 -16 46 -58 46h-35
-c-43 0 -57 -17 -57 -46v-445zM27 579v20l4 3s85 -2 96 -2c4 0 112 2 112 2s3 -3 4 -3v-20c0 -5 -2 -7 -4 -7l-31 -2c-31 -2 -23 -13 -4 -39l109 -159c4 -6 8 -11 11 -11s8 5 13 12l117 158c18 24 22 37 -5 39l-29 2c-3 1 -6 2 -6 7v21l2 2s82 -2 93 -2h433c37 0 114 2 114 2
-l3 -2v-20c0 -6 -4 -7 -9 -8l-13 -3c-43 -7 -57 -17 -57 -46v-445c0 -33 17 -40 57 -47l13 -2c4 -1 9 -4 9 -9v-20l-3 -2s-73 2 -114 2h-418c-25 0 -117 -2 -117 -2l-2 2v22c0 3 1 7 5 7l19 2c37 3 35 6 12 38l-124 176c-5 7 -10 11 -13 11s-9 -7 -15 -14l-123 -170
-c-16 -22 -23 -38 14 -41l18 -2c5 0 5 -5 5 -7v-22l-2 -2s-91 2 -106 2c-4 0 -78 -2 -78 -2l-1 2v22c0 4 4 7 9 7c55 3 88 41 109 68l128 177c6 7 9 16 9 21c0 10 -5 17 -12 28l-133 187c-39 55 -68 60 -84 62c-10 2 -15 3 -15 7z" />
-    <glyph glyph-name="uni216C" unicode="&#x216c;" horiz-adv-x="504" 
-d="M113 523c0 32 -18 39 -58 46l-12 3c-5 1 -9 2 -9 8v20l2 2s74 -2 115 -2c37 0 115 2 115 2l1 -2v-20c0 -6 -2 -7 -7 -8l-14 -3c-43 -7 -57 -17 -57 -46v-447c0 -31 12 -35 37 -35h127c17 0 63 3 107 140l24 -4l-21 -179s-70 2 -102 2h-211c-39 0 -118 -2 -118 -2l-2 2v21
-c0 5 3 8 7 8l33 2c38 2 43 6 43 41v451z" />
-    <glyph glyph-name="uni216D" unicode="&#x216d;" horiz-adv-x="588" 
-d="M325 -10c-85.7 0 -159.2 33.7 -207 82c-55.9 56.5 -84 133.8 -84 212c0 193 125 326 284 326c138 0 168 -32 197 -38c13.3 -51.8 17.4 -101.1 20 -150c-7.90002 -5.5 -18 -6 -29 -4c-26 93 -78 158 -186 158c-79 0 -196 -66 -196 -278c0 -137 83 -265 208 -265
-c85 0 125 22 191 105c12 -1.8 21 -7.39999 25 -15c-60 -88 -126 -133 -223 -133z" />
-    <glyph glyph-name="uni216E" unicode="&#x216e;" horiz-adv-x="687" 
-d="M175 525v-447c0 -36 17 -44 126 -44c204 0 245 116 245 224c0 251 -147 308 -268 308c-85 0 -103 -3 -103 -41zM137 600c56 0 113 2 167 2c181 0 333 -127 333 -319c0 -171 -121 -285 -304 -285c-38 0 -158 2 -196 2s-115 -2 -115 -2l-2 2v20c0 5 4 8 9 9l12 2
-c43 7 58 17 58 47v445c0 32 -18 39 -58 46l-11 3c-5 1 -10 2 -10 8v20l2 2s74 -2 115 -2z" />
-    <glyph glyph-name="uni216F" unicode="&#x216f;" horiz-adv-x="863" 
-d="M213 600l219 -484h3l223 484l132 2l2 -2v-20c-1 -7 -5 -8 -8 -8l-30 -3c-30 -2 -40 -12 -40 -45l44 -451c4 -39 16 -40 43 -42l30 -2c7 -1 10 -6 10 -8v-21l-2 -2s-75 2 -123 2c-42 0 -109 -2 -109 -2l-2 2v21c1 5 4 8 9 8l30 2c35 2 36 13 36 42l-40 410l-223 -482
-c-4 -8 -10 -12 -17 -12c-6 0 -10 8 -13 14l-216 469l-34 -397c-3 -33 2 -42 37 -44l31 -2c6 0 8 -5 8 -8v-21l-2 -2s-59 2 -96 2c-38 0 -97 -2 -97 -2l-2 2v21c0 6 4 8 8 8l32 2c32 2 38 7 41 44l38 450c0 40 -11 43 -39 44l-29 1c-7 0 -9 5 -9 8v22l2 2z" />
-    <glyph glyph-name="oneroman" unicode="&#x2170;" horiz-adv-x="273" 
-d="M85 542c0 24 28 48 52 48c27 0 48 -28 48 -52c0 -21.1 -24 -48 -52 -48c-24 0 -48 26 -48 52zM176 307v-185c0 -83 11 -87 72 -91c6 -6 6 -27 0 -33c-32 1 -68 2 -111 2c-44 0 -79 -1 -112 -2c-6 6 -6 27 0 33c61 5 72 8 72 91v185c0 83 -11 87 -72 91c-6 6 -6 27 0 33
-c33 -1 68 -2 111 -2c44 0 78 1 112 2c6 -6 6 -27 0 -33c-61 -5 -72 -8 -72 -91z" />
-    <glyph glyph-name="tworoman" unicode="&#x2171;" horiz-adv-x="456" 
-d="M295 356c0 28 -10 44 -43 44h-38c-31 0 -42 -16 -42 -44v-282c0 -29 11 -45 42 -45h38c32 0 43 16 43 45v282zM97 356c0 28 -10.1 40.5 -43 44l-19 2c-5 0.5 -8 3 -8 8v19l2 2s69 -2 105 -2h198c36 0 106 2 106 2l2 -2v-19c0 -5 -4 -7.5 -9 -8l-19 -2
-c-30.5 -3.20001 -42 -16 -42 -44v-282c0 -29 10.8 -41.7 42 -45l19 -2c5 -0.5 9 -3 9 -8v-19l-2 -2s-69 2 -105 2h-198c-36 0 -106 -2 -106 -2l-2 2v19c0 5 3 7.5 8 8l19 2c32.2 3.4 43 16 43 45v282zM282 542c0 24 28 48 52 48c27 0 48 -28 48 -52c0 -21.1 -24 -48 -52 -48
-c-24 0 -48 26 -48 52zM84 542c0 24 28 48 52 48c27 0 48 -28 48 -52c0 -21.1 -24 -48 -52 -48c-24 0 -48 26 -48 52z" />
-    <glyph glyph-name="threeroman" unicode="&#x2172;" horiz-adv-x="665" 
-d="M493 356c0 28 -10 44 -43 44h-38c-31 0 -42 -16 -42 -44v-282c0 -29 11 -45 42 -45h38c32 0 43 16 43 45v282zM97 356c0 28 -10.1 40.5 -43 44l-19 2c-5 0.5 -8 3 -8 8v19l2 2s69 -2 105 -2h396c36 0 106 2 106 2l2 -2v-19c0 -5 -4 -7.5 -9 -8l-19 -2
-c-30.5 -3.20001 -42 -16 -42 -44v-282c0 -29 10.8 -41.7 42 -45l19 -2c5 -0.5 9 -3 9 -8v-19l-2 -2s-69 2 -105 2h-396c-36 0 -106 -2 -106 -2l-2 2v19c0 5 3 7.5 8 8l19 2c32.2 3.4 43 16 43 45v282zM295 356c0 28 -10 44 -43 44h-38c-31 0 -42 -16 -42 -44v-282
-c0 -29 11 -45 42 -45h38c32 0 43 16 43 45v282zM481 542c0 24 28 48 52 48c27 0 48 -28 48 -52c0 -21.1 -24 -48 -52 -48c-24 0 -48 26 -48 52zM84 542c0 24 28 48 52 48c27 0 48 -28 48 -52c0 -21.1 -24 -48 -52 -48c-24 0 -48 26 -48 52zM282 542c0 24 28 48 52 48
-c27 0 48 -28 48 -52c0 -21.1 -24 -48 -52 -48c-24 0 -48 26 -48 52z" />
-    <glyph glyph-name="fourroman" unicode="&#x2173;" horiz-adv-x="713" 
-d="M97 356c0 28 -10.1 40.5 -43 44l-19 2c-5 0.5 -8 3 -8 8v19l2 2s69 -2 105 -2h178c39 0 100 2 100 2l4 -2v-19c0 -6.5 -6 -7.60001 -9 -8l-17 -2c-31.6 -3.70001 -29.1 -20.4 -19 -44l86 -218l17 -46l17 43l89 219c17.4 38.3 9 45 -42 48c-5 0.299988 -8 4 -8 7v20l4 2
-s57 -2 94 -2c27 0 68 2 68 2l2 -2v-18c0 -5 -5 -8.39999 -11 -9c-29 -3 -52 -13 -68 -52l-138 -339c-7 -17 -14 -23 -24 -23c-13 0 -19 6 -25 21l-136 345c-14.1 35.7 -35 42 -64 46h-18c-31 0 -42 -16 -42 -44v-282c0 -29 10.8 -41.7 42 -45l19 -2c5 -0.5 9 -3 9 -8v-19
-l-2 -2s-69 2 -105 2s-106 -2 -106 -2l-2 2v19c0 5 3 7.5 8 8l19 2c32.2 3.4 43 16 43 45v282zM85 542c0 24 28 48 52 48c27 0 48 -28 48 -52c0 -21.1 -24 -48 -52 -48c-24 0 -48 26 -48 52z" />
-    <glyph glyph-name="fiveroman" unicode="&#x2174;" horiz-adv-x="497" 
-d="M325 398c-6 6 -6 27 0 33c25 -1 59 -2 92 -2c26 0 50 1 70 2c6 -6 6 -27 0 -33c-56 -5 -66.9 -30.1 -85.6 -74l-133.4 -313c-7.10001 -16.6 -14 -23 -24 -23c-13 0 -19 6 -25 21l-127.6 316c-20.4 50.6 -27.4 66.7 -80.4 73c-6 6 -6 27 0 33c30 -1 60 -2 93 -2
-s68 1 101 2c6 -6 6 -27 0 -33c-53.3 -7 -49 -19 -31.1 -67l72.1 -193c15.6 -41.8 20.8 -42.5 37 -3l80.7 196c20.9 50.8 15.3 63 -38.7 67z" />
-    <glyph glyph-name="sixroman" unicode="&#x2175;" horiz-adv-x="710" 
-d="M536 356c0 28 -10 44 -43 44h-16c-28 -4 -49.5 -12.3 -65 -50l-138 -339c-7 -17 -14 -23 -24 -23c-13 0 -19 6 -25 21l-136 345c-14.2 35.9 -35.5 44.5 -64 48c-5 0.600006 -10 2 -10 7v20l3 2s53 -2 87 -2c39 0 100 2 100 2l4 -2v-19c0 -6.5 -6 -7.60001 -9 -8l-17 -2
-c-31.6 -3.70001 -29.1 -20.4 -19 -44l86 -218l17 -46l17 43l89 219c17.4 38.3 9 45 -42 48c-5 0.299988 -8 4 -8 7v20l4 2s57 -2 94 -2h152c36 0 106 2 106 2l2 -2v-19c0 -5 -4 -7.5 -9 -8l-19 -2c-30.5 -3.20001 -42 -16 -42 -44v-282c0 -29 10.8 -41.7 42 -45l19 -2
-c5 -0.5 9 -3 9 -8v-19l-2 -2s-69 2 -105 2s-106 -2 -106 -2l-2 2v19c0 5 3 7.5 8 8l19 2c32.2 3.4 43 16 43 45v282zM524 542c0 24 28 48 52 48c27 0 48 -28 48 -52c0 -21.1 -24 -48 -52 -48c-24 0 -48 26 -48 52z" />
-    <glyph glyph-name="sevenroman" unicode="&#x2176;" horiz-adv-x="905" 
-d="M731 356c0 28 -10 44 -43 44h-38c-31 0 -42 -16 -42 -44v-282c0 -29 11 -45 42 -45h38c32 0 43 16 43 45v282zM322 402c-5 0.299988 -8 4 -8 7v20l4 2s57 -2 94 -2h356c36 0 106 2 106 2l2 -2v-19c0 -5 -4 -7.5 -9 -8l-19 -2c-30.5 -3.20001 -42 -16 -42 -44v-282
-c0 -29 10.8 -41.7 42 -45l19 -2c5 -0.5 9 -3 9 -8v-19l-2 -2s-69 2 -105 2h-198c-36 0 -106 -2 -106 -2l-2 2v19c0 5 3 7.5 8 8l19 2c32.2 3.4 43 16 43 45v282c0 28 -10 44 -43 44h-19c-29 -3 -52 -11 -68 -50l-138 -339c-7 -17 -14 -23 -24 -23c-13 0 -19 6 -25 21
-l-136 345c-14.2 35.9 -35.5 44.5 -64 48c-5 0.600006 -10 2 -10 7v20l3 2s53 -2 87 -2c39 0 100 2 100 2l4 -2v-19c0 -6.5 -6 -7.60001 -9 -8l-17 -2c-31.6 -3.70001 -29.1 -20.4 -19 -44l86 -218l17 -46l17 43l89 219c17.4 38.3 9 45 -42 48zM520 542c0 24 28 48 52 48
-c27 0 48 -28 48 -52c0 -21.1 -24 -48 -52 -48c-24 0 -48 26 -48 52zM718 542c0 24 28 48 52 48c27 0 48 -28 48 -52c0 -21.1 -24 -48 -52 -48c-24 0 -48 26 -48 52z" />
-    <glyph glyph-name="eightroman" unicode="&#x2177;" horiz-adv-x="1103" 
-d="M731 356c0 28 -10 44 -43 44h-38c-31 0 -42 -16 -42 -44v-282c0 -29 11 -45 42 -45h38c32 0 43 16 43 45v282zM929 356c0 28 -10 44 -43 44h-38c-31 0 -42 -16 -42 -44v-282c0 -29 11 -45 42 -45h38c32 0 43 16 43 45v282zM322 402c-5 0.299988 -8 4 -8 7v20l4 2
-s57 -2 94 -2h554c36 0 106 2 106 2l2 -2v-19c0 -5 -4 -7.5 -9 -8l-19 -2c-30.5 -3.20001 -42 -16 -42 -44v-282c0 -29 10.8 -41.7 42 -45l19 -2c5 -0.5 9 -3 9 -8v-19l-2 -2s-69 2 -105 2h-396c-36 0 -106 -2 -106 -2l-2 2v19c0 5 3 7.5 8 8l19 2c32.2 3.4 43 16 43 45v282
-c0 28 -10 44 -43 44h-19c-29 -3 -52 -11 -68 -50l-138 -339c-7 -17 -14 -23 -24 -23c-13 0 -19 6 -25 21l-136 345c-14.2 35.9 -35.5 44.5 -64 48c-5 0.600006 -10 2 -10 7v20l3 2s53 -2 87 -2c39 0 100 2 100 2l4 -2v-19c0 -6.5 -6 -7.60001 -9 -8l-17 -2
-c-31.6 -3.70001 -29.1 -20.4 -19 -44l86 -218l17 -46l17 43l89 219c17.4 38.3 9 45 -42 48zM718 542c0 24 28 48 52 48c27 0 48 -28 48 -52c0 -21.1 -24 -48 -52 -48c-24 0 -48 26 -48 52zM520 542c0 24 28 48 52 48c27 0 48 -28 48 -52c0 -21.1 -24 -48 -52 -48
-c-24 0 -48 26 -48 52zM917 542c0 24 28 48 52 48c27 0 48 -28 48 -52c0 -21.1 -24 -48 -52 -48c-24 0 -48 26 -48 52z" />
-    <glyph glyph-name="nineroman" unicode="&#x2178;" horiz-adv-x="694" 
-d="M231 29c23 3 46.1 5.4 87 58l84 108c1 2 2 4 2 7s-1 5 -3 8l-87 127c-28.1 41 -47 60 -81 63h-19c-31 0 -42 -16 -42 -44v-282c0 -29 11 -45 42 -45h17zM391 400c-33 -4.39999 -27.2 -13.9 -9 -42l61 -90c3 -6 6 -9 10 -9c3 0 5 2 9 7l65 91c16.3 20.7 29.4 38.8 -4 43
-l-16 2c-3 0.399994 -6 2 -6 7v19l3 3s47 -2 78 -2c32 0 81 2 81 2l1 -2v-19c0 -7 -6 -7.5 -12 -8c-36.5 -3 -52 -12 -89 -59l-84 -107c-2 -3 -3 -5 -3 -7s1 -5 3 -8l90 -127c43.8 -61.8 59.5 -64 91 -67c10 -0.9 14 -2 14 -8v-19l-2 -2s-53 2 -87 2c-41 0 -104 -2 -104 -2
-l-2 2v19c0 5 2.10001 7.2 7 8l12 2c32.2 5.4 18.9 25 -4 55l-58 80c-4 5 -6 7 -9 7c-2 0 -5 -3 -9 -9l-63 -91c-12.4 -17.9 -25 -38 3 -42l14 -2c5 -0.700001 7 -3 7 -8v-19l-2 -2s-51 2 -84 2h-158c-36 0 -106 -2 -106 -2l-2 2v19c0 5 3 7.5 8 8l19 2c32.2 3.4 43 16 43 45
-v282c0 28 -10.1 40.5 -43 44l-19 2c-5 0.5 -8 3 -8 8v19l2 2s69 -2 105 -2h166c30 0 111 2 111 2l3 -3v-18c0 -5 -4 -7.5 -8 -8zM85 542c0 24 28 48 52 48c27 0 48 -28 48 -52c0 -21.1 -24 -48 -52 -48c-24 0 -48 26 -48 52z" />
-    <glyph glyph-name="tenroman" unicode="&#x2179;" horiz-adv-x="504" 
-d="M182 358l61 -90c7.60001 -11.2 11.8 -12 19 -2l65 91c24.2 33.9 12.7 37 -24 41c-6 6 -6 27 0 33c26 -1 54 -2 84 -2s53 1 73 2c6 -6 6 -27 0 -33c-36.5 -3 -60 -8 -97 -55l-84 -107c-4.70001 -6 -4.20001 -9.10001 0 -15l90 -127c40.3 -56.9 54.7 -60 100 -63
-c6 -6 6 -27 0 -33c-24 1 -51 2 -89 2c-36 0 -69 -1 -99 -2c-6 6 -6 27 0 33c31.7 3.3 47.8 5.1 13 53l-58 80c-6.3 8.60001 -9.7 9.89999 -18 -2l-63 -91c-22.5 -32.5 -14 -36.3 22 -40c6 -6 6 -27 0 -33c-26 1 -54 2 -84 2s-52 -1 -72 -2c-6 6 -6 27 0 33
-c35 2 57.4 5.1 97 56l84 108c3.60001 4.60001 3.89999 7.8 -1 15l-87 127c-28 41 -56 58 -90 61c-6 6 -6 27 0 33c26 -1 56 -2 86 -2s74 1 101 2c6 -6 6 -27 0 -33c-44.7 -4.70001 -51.9 -6.20001 -29 -40z" />
-    <glyph glyph-name="elevenroman" unicode="&#x217a;" horiz-adv-x="692" 
-d="M195 400c-33 -4.39999 -27.2 -13.9 -9 -42l61 -90c3 -6 6 -9 10 -9c3 0 5 2 9 7l65 91c16.3 20.7 29.4 38.8 -4 43l-16 2c-3 0.399994 -6 2 -6 7v19l3 3s47 -2 78 -2h169c36 0 106 2 106 2l2 -2v-19c0 -5 -4 -7.5 -9 -8l-19 -2c-30.5 -3.20001 -42 -16 -42 -44v-282
-c0 -29 10.8 -41.7 42 -45l19 -2c5 -0.5 9 -3 9 -8v-19l-2 -2s-69 2 -105 2h-167c-41 0 -104 -2 -104 -2l-2 2v19c0 5 2.10001 7.2 7 8l12 2c32.2 5.4 18.9 25 -4 55l-58 80c-4 5 -6 7 -9 7c-2 0 -5 -3 -9 -9l-63 -91c-12.4 -17.9 -25 -38 3 -42l14 -2
-c4.89999 -0.700001 7 -3 7 -8v-19l-2 -2s-51 2 -84 2c-29 0 -75 -2 -75 -2l-2 2v17c0 6 4.1 8.9 13 10c23.5 3 47 6 89 60l84 108c1 2 2 4 2 7s-1 5 -3 8l-87 127c-28.1 41 -47 62 -81 65c-7 0.600006 -14 3 -14 7v19l2 3s49 -2 79 -2s111 2 111 2l3 -3v-18
-c0 -5 -4 -7.5 -8 -8zM518 356c0 28 -10 44 -43 44h-19c-37 -3 -52 -10 -89 -57l-84 -107c-2 -3 -3 -5 -3 -7s1 -5 3 -8l90 -127c41.8 -59 58 -62 87 -65h15c32 0 43 16 43 45v282zM506 542c0 24 28 48 52 48c27 0 48 -28 48 -52c0 -21.1 -24 -48 -52 -48
-c-24 0 -48 26 -48 52z" />
-    <glyph glyph-name="twelveroman" unicode="&#x217b;" horiz-adv-x="870" 
-d="M195 400c-33 -4.39999 -27.2 -13.9 -9 -42l61 -90c3 -6 6 -9 10 -9c3 0 5 2 9 7l65 91c16.3 20.7 29.4 38.8 -4 43l-16 2c-3 0.399994 -6 2 -6 7v19l3 3s47 -2 78 -2h347c36 0 106 2 106 2l2 -2v-19c0 -5 -4 -7.5 -9 -8l-19 -2c-30.5 -3.20001 -42 -16 -42 -44v-282
-c0 -29 10.8 -41.7 42 -45l19 -2c5 -0.5 9 -3 9 -8v-19l-2 -2s-69 2 -105 2h-345c-41 0 -104 -2 -104 -2l-2 2v19c0 5 2.10001 7.2 7 8l12 2c32.2 5.4 18.9 25 -4 55l-58 80c-4 5 -6 7 -9 7c-2 0 -5 -3 -9 -9l-63 -91c-12.4 -17.9 -25 -38 3 -42l14 -2
-c4.89999 -0.700001 7 -3 7 -8v-19l-2 -2s-51 2 -84 2c-29 0 -75 -2 -75 -2l-2 2v17c0 6 4.1 8.9 13 10c23.5 3 47 6 89 60l84 108c1 2 2 4 2 7s-1 5 -3 8l-87 127c-28.1 41 -47 62 -81 65c-7 0.600006 -14 3 -14 7v19l2 3s49 -2 79 -2s111 2 111 2l3 -3v-18
-c0 -5 -4 -7.5 -8 -8zM498 356c0 28 -10 44 -43 44h-9c-30 -4 -45.5 -14.5 -79 -57l-84 -107c-2 -3 -3 -5 -3 -7s1 -5 3 -8l90 -127c37.1 -52.3 54 -62 78 -65h4c32.2 3.4 43 16 43 45v282zM696 356c0 28 -10 44 -43 44h-38c-31 0 -42 -16 -42 -44v-282c0 -29 11 -45 42 -45
-h38c32 0 43 16 43 45v282zM485 542c0 24 28 48 52 48c27 0 48 -28 48 -52c0 -21.1 -24 -48 -52 -48c-24 0 -48 26 -48 52zM683 542c0 24 28 48 52 48c27 0 48 -28 48 -52c0 -21.1 -24 -48 -52 -48c-24 0 -48 26 -48 52z" />
-    <glyph glyph-name="uni217C" unicode="&#x217c;" horiz-adv-x="264" 
-d="M95 122v437c0 75 -6 78 -64 82c-6 6 -8 22 -6 30c40 3 115 17 140 27c9 0 13 -3 13 -10c0 0 -4 -40 -4 -105v-461c0 -83 11 -88 72 -91c6 -6 6 -27 0 -33c-33 1 -71 2 -111 2s-77 -1 -112 -2c-6 6 -6 27 0 33c61 3 72 8 72 91z" />
-    <glyph glyph-name="uni217D" unicode="&#x217d;" horiz-adv-x="428" 
-d="M398 91c-50 -82 -103 -101 -163 -101c-126 0 -198 89 -198 218c0 142 106 231 205 231c96 0 153 -40 153 -95c0 -31 -28 -44 -49 -44s-35 9 -38 36c-4 35 -12 70 -71 70c-66 0 -114 -66 -114 -176c0 -117 61 -191 134 -191c43 0 86 22 120 66c9 -1 17 -5 21 -14z" />
-    <glyph glyph-name="uni217E" unicode="&#x217e;" horiz-adv-x="506" 
-d="M345 124v190c0 31 -3 38 -17 54c-20 23 -45 36 -81 36c-20 0 -62 -3 -93 -50c-15 -21 -29 -61 -29 -133c0 -125 56 -184 110 -184c25 0 57 16 94 48c14.1 12.2 16 20 16 39zM334 50.3c-49 -40.3 -86 -60.3 -125 -60.3c-108 0 -170 90 -170 213c0 74 26 133 69 176
-c40 38 84 60 150 60c33 0 74 -17 78 -17c7 0 9 2 9 9v128c0 84 -12 79 -64 82c-6 6 -8 22 -6 30c40 3 115 17 140 27c9 0 13 -3 13 -10c0 0 -4 -40 -4 -105v-453c0 -49 9 -68 73 -73c6 -6 6 -21 0 -27c-61 -7 -96 -22 -118 -40c-6 -2.5 -11 -3 -19 0c0 0 -8.5 34.5 -11 59
-c-0.700012 7 -10.2 5.2 -15 1.3z" />
-    <glyph glyph-name="uni217F" unicode="&#x217f;" horiz-adv-x="790" 
-d="M170 358c0.5 -12 7.39999 -5.10001 12 0c41.7 46.6 94 81 152 81c52 0 90.5 -32.4 100 -73.4c2 -8.60001 8 -3.60001 11 -0.399994c52.1 55 113.8 73.8 165 73.8c88 0 103 -70 103 -159v-158c0 -82 9 -87 64 -91c5 -6 5 -27 0 -33c-28 1 -63 2 -103 2s-77 -1 -102 -2
-c-5 6 -5 27 0 33c52 4 62 9 62 91v176c0 67 -22 89 -60 89c-39 0 -84 -13 -132 -66c1 -12 1 -26 1 -40v-159c0 -82 9 -87 59 -91c5 -6 5 -27 0 -33c-25 1 -58 2 -98 2s-77 -1 -102 -2c-5 6 -5 27 0 33c54 4 62 9 62 91v174c0 67 -28 91 -66 91c-30.9 0 -68.4 -20.3 -108 -59
-c-8 -8.70001 -17 -21 -17 -42v-164c0 -82 11 -86 61.8 -91c6 -6 6 -27 0 -33c-30 1 -60.8 2 -100.8 2s-78 -1 -108 -2c-6 6 -6 27 0 33c55 4 68 9 68 91v195c0 58 -11 63 -65 68c-2 6 -4 22 -2 28c69 9 95 18 123 29c8 0 9.89999 -3.39999 12 -8c4.7 -10.3 6.7 -46.3 8 -76z
-" />
-    <glyph glyph-name="arrowleft" unicode="&#x2190;" horiz-adv-x="1130" 
-d="M275 448h38c-30 -72 -79 -126 -111 -157h870v-52h-870c33 -27 74 -73 113 -157h-40c0 1 -108 129 -216 173v23c49 17 130 73 216 170z" />
-    <glyph glyph-name="arrowup" unicode="&#x2191;" horiz-adv-x="441" 
-d="M405 567v-38c-72 30 -126 79 -157 111v-870h-52v870c-27 -33 -73 -74 -157 -113v40c1 0 129 108 173 216h23c17 -49 73 -130 170 -216z" />
-    <glyph glyph-name="arrowright" unicode="&#x2192;" horiz-adv-x="1130" 
-d="M856 82h-38c30 72 79 126 111 157h-870v52h870c-33 27 -74 73 -113 157h40c0 -1 108 -129 216 -173v-23c-49 -17 -130 -73 -216 -170z" />
-    <glyph glyph-name="arrowdown" unicode="&#x2193;" horiz-adv-x="462" 
-d="M49 -13v38c72 -30 126 -79 157 -111v870h52v-870c27 33 73 74 157 113v-40c-1 0 -129 -108 -173 -216h-23c-17 49 -73 130 -170 216z" />
-    <glyph glyph-name="arrowboth" unicode="&#x2194;" horiz-adv-x="1098" 
-d="M895 291c-26 33 -44 58 -54 74c-21 32 -36 60 -46 83h39c40 -45 79 -82 118 -111c38 -29 70 -48 98 -58v-23c-40 -17 -74 -38 -103 -63c-63 -57 -101 -94 -114 -110h-40c32 67 65 120 102 156h-691c37 -37 70 -89 102 -157h-40c-13 16 -51 53 -114 110
-c-28 26 -63 47 -103 63v23c28 10 60 30 98 58c39 29 78 66 118 112h39c-10 -23 -25 -51 -46 -84c-10 -16 -28 -41 -54 -73h691z" />
-    <glyph glyph-name="arrowupdn" unicode="&#x2195;" horiz-adv-x="463" 
-d="M206 611c-33 -26 -58 -44 -74 -54c-32 -21 -60 -36 -83 -46v39c45 40 82 79 111 118c29 38 48 70 58 98h23c17 -40 38 -74 63 -103c57 -63 94 -101 110 -114v-40c-67 32 -120 65 -156 102v-691c37 37 89 70 157 102v-40c-16 -13 -53 -51 -110 -114
-c-26 -28 -47 -63 -63 -103h-23c-10 28 -30 60 -58 98c-29 39 -66 78 -112 118v39c23 -10 51 -25 84 -46c16 -10 41 -28 73 -54v691z" />
-    <glyph glyph-name="uni2196" unicode="&#x2196;" horiz-adv-x="838" 
-d="M338.2 600.3l26.9 -26.8c-72.1 -29.7 -145 -33.3 -189.5 -32.6l615.2 -615.2l-36.8 -36.7l-615.2 615.2c4.2 -42.4 0.699997 -104 -31.1 -191l-28.3 28.3c0.699997 0.700012 14.9 167.6 -30.4 275.1l16.3 16.3c46.7 -22.6 143.5 -40.4 272.9 -32.6z" />
-    <glyph glyph-name="uni2197" unicode="&#x2197;" horiz-adv-x="841" 
-d="M760.3 340.8l-26.8 -26.9c-29.7 72.1 -33.3 145 -32.6 189.5l-615.2 -615.2l-36.7 36.8l615.2 615.2c-42.4 -4.20001 -104 -0.700012 -191 31.1l28.3 28.3c0.700012 -0.699951 167.6 -14.9 275.1 30.4l16.3 -16.3c-22.6 -46.7 -40.4 -143.5 -32.6 -272.9z" />
-    <glyph glyph-name="uni2198" unicode="&#x2198;" horiz-adv-x="838" 
-d="M501.8 -70.3l-26.9 26.8c72.1 29.7 145 33.3 189.5 32.6l-615.2 615.2l36.8 36.7l615.2 -615.2c-4.20001 42.4 -0.700012 104 31.1 191l28.3 -28.3c-0.699951 -0.699997 -14.9 -167.6 30.4 -275.1l-16.3 -16.3c-46.7 22.6 -143.5 40.4 -272.9 32.6z" />
-    <glyph glyph-name="uni2199" unicode="&#x2199;" horiz-adv-x="841" 
-d="M81.7 189.2l26.8 26.9c29.7 -72.1 33.3 -145 32.6 -189.5l615.2 615.2l36.7 -36.8l-615.2 -615.2c42.4 4.2 104 0.7 191 -31.1l-28.3 -28.3c-0.700012 0.699997 -167.6 14.9 -275.1 -30.4l-16.3 16.3c22.6 46.7 40.4 143.5 32.6 272.9z" />
-    <glyph glyph-name="uni219A" unicode="&#x219a;" horiz-adv-x="1130" 
-d="M275 448h38c-30 -72 -79 -126 -111 -157h374.8l97.2 289h41l-97.2 -289h454.2v-52h-471.6l-122.4 -364h-41l122.4 364h-357.4c33 -27 74 -73 113 -157h-40c0 1 -108 129 -216 173v23c49 17 130 73 216 170z" />
-    <glyph glyph-name="uni219B" unicode="&#x219b;" horiz-adv-x="1130" 
-d="M856 82h-38c30 72 79 126 111 157h-328.6l-122.4 -364h-41l122.4 364h-500.4v52h517.8l97.2 289h41l-97.2 -289h311.2c-33 27 -74 73 -113 157h40c0 -1 108 -129 216 -173v-23c-49 -17 -130 -73 -216 -170z" />
-    <glyph glyph-name="uni21AE" unicode="&#x21ae;" horiz-adv-x="1098" 
-d="M895 291c-26 33 -44 58 -54 74c-21 32 -36 60 -46 83h39c40 -45 79 -82 118 -111c38 -29 70 -48 98 -58v-23c-40 -17 -74 -38 -103 -63c-63 -57 -101 -94 -114 -110h-40c32 67 65 120 102 156h-310.6l-122.4 -364h-41l122.4 364h-339.4c37 -37 70 -89 102 -157h-40
-c-13 16 -51 53 -114 110c-28 26 -63 47 -103 63v23c28 10 60 30 98 58c39 29 78 66 118 112h39c-10 -23 -25 -51 -46 -84c-10 -16 -28 -41 -54 -73h356.8l97.2 289h41l-97.2 -289h293.2z" />
-    <glyph glyph-name="uni21BC" unicode="&#x21bc;" horiz-adv-x="1087" 
-d="M59 397v36c33 16 66 37 98 63c32 25 70 62 114 111h39c-32 -68 -66 -121 -101 -158h818v-52h-968z" />
-    <glyph glyph-name="uni21BD" unicode="&#x21bd;" horiz-adv-x="1087" 
-d="M61 291h968v-52h-817c35 -37 68 -90 101 -158h-40c-44 49 -82 86 -114 111c-31 26 -65 47 -98 63v36z" />
-    <glyph glyph-name="uni21C0" unicode="&#x21c0;" horiz-adv-x="1087" 
-d="M1027 397h-968v52h817c-35 37 -68 90 -101 158h40c44 -49 82 -86 114 -111c31 -26 65 -47 98 -63v-36z" />
-    <glyph glyph-name="uni21C1" unicode="&#x21c1;" horiz-adv-x="1087" 
-d="M1029 291v-36c-33 -16 -66 -37 -98 -63c-32 -25 -70 -62 -114 -111h-39c32 68 66 121 101 158h-818v52h968z" />
-    <glyph glyph-name="uni21CB" unicode="&#x21cb;" horiz-adv-x="1087" 
-d="M1029 291v-36c-33 -16 -66 -37 -98 -63c-32 -25 -70 -62 -114 -111h-39c32 68 66 121 101 158h-818v52h968zM59 397v36c33 16 66 37 98 63c32 25 70 62 114 111h39c-32 -68 -66 -121 -101 -158h818v-52h-968z" />
-    <glyph glyph-name="uni21CC" unicode="&#x21cc;" horiz-adv-x="1087" 
-d="M1027 397h-968v52h817c-35 37 -68 90 -101 158h40c44 -49 82 -86 114 -111c31 -26 65 -47 98 -63v-36zM61 291h968v-52h-817c35 -37 68 -90 101 -158h-40c-44 49 -82 86 -114 111c-31 26 -65 47 -98 63v36z" />
-    <glyph glyph-name="uni21CD" unicode="&#x21cd;" horiz-adv-x="1074" 
-d="M544.5 156l-94.5 -281h-41l94.5 281h-225.5c13 -22 25 -46 37 -72h-40c-60 71 -146 146 -216 171v23c67 24 130 74 216 171h38c-11 -26 -23 -50 -36 -72h300.8l68.2 203h41l-68.2 -203h398.2v-49h-414.7l-41.4 -123h456.1v-49h-472.5zM519.9 205l41.4 123h-319.3
-c-18 -23 -39 -43 -62 -61c25 -18 46 -39 64 -62h275.9z" />
-    <glyph glyph-name="uni21CE" unicode="&#x21ce;" horiz-adv-x="1243" 
-d="M242 328c-18 -23 -39 -43 -62 -61c25 -18 46 -39 64 -62h360.9l41.4 123h-404.3zM687.3 328l-41.4 -123h358.1c18 23 39 44 64 62c-23 18 -44 38 -62 61h-318.7zM629.5 156l-94.5 -281h-41l94.5 281h-310.5c13 -22 25 -46 37 -72h-40c-60 71 -146 146 -216 171v23
-c67 24 130 74 216 171h38c-11 -26 -23 -50 -36 -72h385.8l68.2 203h41l-68.2 -203h267.2c-13 22 -25 46 -36 72h38c86 -97 149 -147 216 -171v-23c-70 -25 -156 -100 -216 -171h-40c12 26 24 50 37 72h-340.5z" />
-    <glyph glyph-name="uni21CF" unicode="&#x21cf;" horiz-adv-x="1074" 
-d="M594.7 374h180.3c-13 22 -25 46 -37 72h40c60 -71 146 -146 216 -171v-23c-67 -24 -130 -74 -216 -171h-38c11 26 23 50 36 72h-255.5l-93.5 -278h-41l93.5 278h-443.5v49h459.9l41.4 123h-501.3v49h517.7l69.3 206h41zM578.3 325l-41.4 -123h274.1c18 23 39 43 62 61
-c-25 18 -46 39 -64 62h-230.7z" />
-    <glyph glyph-name="arrowdblleft" unicode="&#x21d0;" horiz-adv-x="1074" 
-d="M277 377h740v-49h-775c-18 -23 -39 -43 -62 -61c25 -18 46 -39 64 -62h773v-49h-739c13 -22 25 -46 37 -72h-40c-60 71 -146 146 -216 171v23c67 24 130 74 216 171h38c-11 -26 -23 -50 -36 -72z" />
-    <glyph glyph-name="arrowdblup" unicode="&#x21d1;" horiz-adv-x="462" 
-d="M344 526v-740h-49v775c-23 18 -43 39 -61 62c-18 -25 -39 -46 -62 -64v-773h-49v739c-22 -13 -46 -25 -72 -37v40c71 60 146 146 171 216h23c24 -67 74 -130 171 -216v-38c-26 11 -50 23 -72 36z" />
-    <glyph glyph-name="arrowdblright" unicode="&#x21d2;" horiz-adv-x="1074" 
-d="M776 153h-740v49h775c18 23 39 43 62 61c-25 18 -46 39 -64 62h-773v49h739c-13 22 -25 46 -37 72h40c60 -71 146 -146 216 -171v-23c-67 -24 -130 -74 -216 -171h-38c11 26 23 50 36 72z" />
-    <glyph glyph-name="arrowdbldown" unicode="&#x21d3;" horiz-adv-x="462" 
-d="M120 -14v740h49v-775c23 -18 43 -39 61 -62c18 25 39 46 62 64v773h49v-739c22 13 46 25 72 37v-40c-71 -60 -146 -146 -171 -216h-23c-24 67 -74 130 -171 216v38c26 -11 50 -23 72 -36z" />
-    <glyph glyph-name="arrowdblboth" unicode="&#x21d4;" horiz-adv-x="1248" 
-d="M242 328c-18 -23 -39 -43 -62 -61c25 -18 46 -39 64 -62h760c18 23 39 44 64 62c-23 18 -44 38 -62 61h-764zM277 377h694c-13 22 -25 46 -36 72h38c86 -97 149 -147 216 -171v-23c-70 -25 -156 -100 -216 -171h-40c12 26 24 50 37 72h-692c13 -22 25 -46 37 -72h-40
-c-60 71 -146 146 -216 171v23c67 24 130 74 216 171h38c-11 -26 -23 -50 -36 -72z" />
-    <glyph glyph-name="uni21D5" unicode="&#x21d5;" horiz-adv-x="463" 
-d="M295 537c-23 18 -43 39 -61 62c-18 -25 -39 -46 -62 -64v-582c23 -18 44 -39 62 -64c18 23 38 44 61 62v586zM344 502v-516c22 13 46 25 72 36v-38c-97 -86 -147 -149 -171 -216h-23c-25 70 -100 156 -171 216v40c26 -12 50 -24 72 -37v514c-22 -13 -46 -25 -72 -37v40
-c71 60 146 146 171 216h23c24 -67 74 -130 171 -216v-38c-26 11 -50 23 -72 36z" />
-    <glyph glyph-name="Nwarrow" unicode="&#x21d6;" horiz-adv-x="862" 
-d="M289.4 528.7l523.3 -523.2l-34.6 -34.7l-548 548c-29 -3.5 -58 -2.79999 -87 0.700012c4.89999 -30.4 4.89999 -60.1 1.39999 -89.1l546.6 -546.6l-34.7 -34.6l-522.5 522.5c-6.39999 -24.7 -14.9 -50.1 -24.8 -77l-28.2 28.2c7.8 92.6 -0.0999985 206.5 -31.9 273.7
-l16.3 16.3c64.3 -30.4 144.2 -39.7 273.6 -31.9l26.9 -26.8c-26.2 -10.6 -51.7 -19.1 -76.4 -25.5z" />
-    <glyph glyph-name="Nearrow" unicode="&#x21d7;" horiz-adv-x="866" 
-d="M734.7 370.6l-523.2 -523.3l-34.7 34.6l548 548c-3.5 29 -2.79999 58 0.700012 87c-30.4 -4.90002 -60.1 -4.90002 -89.1 -1.40002l-546.6 -546.6l-34.6 34.7l522.5 522.5c-24.7 6.40002 -50.1 14.9 -77 24.8l28.2 28.2c92.6 -7.79999 206.5 0.100037 273.7 31.9
-l16.3 -16.3c-30.4 -64.3 -39.7 -144.2 -31.9 -273.6l-26.8 -26.9c-10.6 26.2 -19.1 51.7 -25.5 76.4z" />
-    <glyph glyph-name="Searrow" unicode="&#x21d8;" horiz-adv-x="862" 
-d="M574.6 1.3l-523.3 523.2l34.6 34.7l548 -548c29 3.5 58 2.8 87 -0.7c-4.90002 30.4 -4.90002 60.1 -1.40002 89.1l-546.6 546.6l34.7 34.6l522.5 -522.5c6.40002 24.7 14.9 50.1 24.8 77l28.2 -28.2c-7.79999 -92.6 0.100037 -206.5 31.9 -273.7l-16.3 -16.3
-c-64.3 30.4 -144.2 39.7 -273.6 31.9l-26.9 26.8c26.2 10.6 51.7 19.1 76.4 25.5z" />
-    <glyph glyph-name="Swarrow" unicode="&#x21d9;" horiz-adv-x="866" 
-d="M133.3 159.4l523.2 523.3l34.7 -34.6l-548 -548c3.5 -29 2.8 -58 -0.699997 -87c30.4 4.9 60.1 4.9 89.1 1.4l546.6 546.6l34.6 -34.7l-522.5 -522.5c24.7 -6.4 50.1 -14.9 77 -24.8l-28.2 -28.2c-92.6 7.8 -206.5 -0.100002 -273.7 -31.9l-16.3 16.3
-c30.4 64.3 39.7 144.2 31.9 273.6l26.8 26.9c10.6 -26.2 19.1 -51.7 25.5 -76.4z" />
-    <glyph glyph-name="emptyset" unicode="&#x2205;" horiz-adv-x="642" 
-d="M321 538c-134 0 -244 -117 -244 -252c0 -86.8 45.5 -166.2 113.6 -211.8l247.6 432.4c-34.7 19.9 -74.6 31.4 -117.2 31.4zM167.5 34c-84.9 51.8 -141.5 145.2 -141.5 252c0 163 132 295 295 295c50.6 0 98.1 -12.7 139.7 -35.1l37.3 65.1l34 -17l-39.1 -68.2
-c74.6 -53.5 123.1 -141 123.1 -239.8c0 -162 -131 -295 -295 -295c-42.8 0 -83.4 9.1 -120.1 25.5l-47.9 -83.5l-33 18zM223.4 55.7c29.9 -13.9 63 -21.7 97.6 -21.7c136 0 244 118 244 252c0 79.2 -37.2 152.3 -95.4 199.1z" />
-    <glyph glyph-name="uni2206" unicode="&#x2206;" horiz-adv-x="584" 
-d="M270 536l-205 -510h418zM260 616h58c99 -234 253 -601 253 -601c3 -6 4 -9 4 -11s-1 -3 -4 -4h-12h-533c-11 0 -16 1 -16 4c0 2 1 5 4 11c0 0 150 367 246 601z" />
-    <glyph glyph-name="gradient" unicode="&#x2207;" horiz-adv-x="584" 
-d="M317 80l205 510h-418zM327 0h-58c-99 234 -253 601 -253 601c-3 6 -4 9 -4 11s1 3 4 4h12h533c11 0 16 -1 16 -4c0 -2 -1 -5 -4 -11c0 0 -150 -367 -246 -601z" />
-    <glyph glyph-name="product" unicode="&#x220f;" horiz-adv-x="733" 
-d="M525 -33v535c0 28 -5 44 -39 44h-239c-33 0 -38 -11 -38 -45v-534c0 -30 16 -44 57 -44h28c4 0 9 -2 9 -8v-23l-2 -2s-91 2 -132 2c-37 0 -136 -2 -136 -2l-2 2v23c0 6 3 8 8 8h27c43 0 58 17 58 44v549c0 37 -19 40 -53 40h-32c-6 0 -8 4 -8 7v24c8 0 119 -2 134 -2
-c65 -1 124 -1 199 -1c65 0 125 0 200 1c6 0 139 2 140 2v-23c0 -4 -4 -8 -9 -8h-30c-30 -1 -55 -10 -55 -40v-549c0 -30 16 -44 58 -44h27c5 0 9 -2 9 -8v-23l-1 -2s-92 2 -133 2c-38 0 -136 -2 -136 -2l-3 2v23c0 6 4 8 9 8h27c43 0 58 17 58 44z" />
-    <glyph glyph-name="uni2210" unicode="&#x2210;" horiz-adv-x="667" 
-d="M146 1c-27 0 -79 -1 -129 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c38 -1 91.3 -2 130 -2c36.4 0 91 1 129 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-409c0 -62 22 -74 46 -74h197c24 0 46 12 46 74v409c0 83 -17 88 -87 91
-c-6 6 -6 27 0 33c40 -1 91 -2 129 -2c39.7 0 91 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-401c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-50 1 -106 2 -129 2h-375z" />
-    <glyph glyph-name="summation" unicode="&#x2211;" horiz-adv-x="592" 
-d="M491 583l14 -139l-22 -3c-5 19 -36 100 -93 100h-228l172 -272l-1 -1l-204 -272h280c70 0 101 114 102 119l22 -2l-28 -175h-481v22c12 0 22 2 36 19l202 269l-169 266c-27 36 -53 46 -68 46v23h466z" />
-    <glyph glyph-name="minus" unicode="&#x2212;" horiz-adv-x="550" 
-d="M463 226h-388c-9 0 -15 8 -15 16c0 15 13 34 25 34h391c10 0 14 -9 14 -17c0 -10 -14 -33 -27 -33z" />
-    <glyph glyph-name="uni2213" unicode="&#x2213;" horiz-adv-x="550" 
-d="M300 31c0 -13 -23 -27 -33 -27c-8 0 -17 4 -17 14v172h-176c-10 0 -14 9 -14 17c0 10 14 33 27 33h163v160c0 12 19 25 34 25c8 0 16 -6 16 -15v-170h175c9 0 15 -8 15 -16c0 -15 -13 -34 -25 -34h-165v-159zM87 514h388c9 0 15 -8 15 -16c0 -15 -13 -34 -25 -34h-391
-c-10 0 -14 9 -14 17c0 10 14 33 27 33z" />
-    <glyph glyph-name="uni2215" unicode="&#x2215;" horiz-adv-x="527" 
-d="M66 0h-49l449 573h50z" />
-    <glyph glyph-name="uni2216" unicode="&#x2216;" horiz-adv-x="527" 
-d="M466 0l-449 573h49l450 -573h-50z" />
-    <glyph glyph-name="asteriskmath" unicode="&#x2217;" horiz-adv-x="341" 
-d="M125 214c-13 3 -27 4 -42 4c-49 0 -81 7 -81 37c0 14 9 30 33 30c34 0 52 -33 96 -51c-4 39 -23 66 -23 92c0 21 12 39 30 39s33 -11 33 -35c0 -27 -17 -67 -19 -97c46 20 62 52 95 52c27 0 34 -20 34 -30c0 -30 -35 -37 -69 -37c-19 0 -37 -1 -55 -4
-c34 -37 83 -47 83 -87c0 -18 -15 -29 -29 -29c-39 0 -46 65 -71 104c-25 -45 -32 -104 -70 -104c-17 0 -29 13 -29 28c0 43 51 51 84 88z" />
-    <glyph glyph-name="uni2218" unicode="&#x2218;" horiz-adv-x="341" 
-d="M236 240c0 33 -20 72 -65 72c-43 0 -66 -36 -66 -72c0 -35 24 -69 66 -69c41 0 65 35 65 69zM71 241c0 56 45 101 100 101s99 -45 99 -101c0 -55 -44 -100 -99 -100s-100 45 -100 100z" />
-    <glyph glyph-name="uni2219" unicode="&#x2219;" horiz-adv-x="253" 
-d="M127 198c-28 0 -54 26 -54 54s26 54 54 54s54 -26 54 -54s-26 -54 -54 -54z" />
-    <glyph glyph-name="infinity" unicode="&#x221e;" horiz-adv-x="785" 
-d="M358 241c-26 51 -101 153 -162 153c-64 0 -96 -48 -96 -111c0 -66 37 -148 108 -148c51 0 125 65 150 106zM688 234c0 60 -37 149 -110 149c-51 0 -123 -68 -149 -109c33 -46 106 -149 164 -149c64 0 95 48 95 109zM749 277c0 -96 -66 -198 -169 -198
-c-85 0 -154 69 -199 135c-41 -58 -126 -136 -200 -136c-73 0 -144 50 -144 160c0 95 66 198 171 198c79 0 157 -67 198 -133c47 57 122 133 201 133c92 0 142 -70 142 -159z" />
-    <glyph glyph-name="uni2223" unicode="&#x2223;" horiz-adv-x="204" 
-d="M124 -12h-44v590h44v-590z" />
-    <glyph glyph-name="uni2224" unicode="&#x2224;" horiz-adv-x="256" 
-d="M212 414l24 -25l-91 -91.5v-309.5h-44v265.3l-59 -59.3l-24 24l83 83.9v276.1h44v-231.7z" />
-    <glyph glyph-name="uni2225" unicode="&#x2225;" horiz-adv-x="336" 
-d="M256 -12h-44v590h44v-590zM124 -12h-44v590h44v-590z" />
-    <glyph glyph-name="uni2226" unicode="&#x2226;" horiz-adv-x="349" 
-d="M305 428l24 -25l-73 -73.8v-341.2h-44v296.8l-88 -89v-207.8h-44v163.4l-36 -36.4l-24 24l60 60.8v378.2h44v-333.5l88 89.2v244.3h44v-199.7z" />
-    <glyph glyph-name="uni2236" unicode="&#x2236;" horiz-adv-x="527" 
-d="M216 390c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53zM216 107c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" />
-    <glyph glyph-name="similar" unicode="&#x223c;" horiz-adv-x="527" 
-d="M56 209c13 65 67 128 128 128c23 0 50.5 -13.8 75 -32c27 -20 50 -33 72 -33c28 0 77 17 99 67c8 0 13.7 -1.89999 17 -6c-31 -107 -96 -120 -120 -120c-23 0 -52 15 -76 33c-24.2 18.1 -48 32 -73 32c-35 0 -82 -29 -105 -73c-6 0 -11.3 1 -17 4z" />
-    <glyph glyph-name="uni2241" unicode="&#x2241;" horiz-adv-x="527" 
-d="M56 209c13 65 67 128 128 128c21.3 0 46.3 -11.8 69.4 -28l86.6 258l38 -10l-90.6 -271c15.4 -8.89999 29.7 -14 43.6 -14c28 0 77 17 99 67c8 0 13.7 -1.89999 17 -6c-31 -107 -96 -120 -120 -120c-17.3 0 -37.9 8.5 -57.3 20.3l-95.7 -286.3l-38 12l99.9 297.7
-c-19.1 12.6 -38.1 21.3 -57.9 21.3c-35 0 -82 -29 -105 -73c-6 0 -11.3 1 -17 4z" />
-    <glyph glyph-name="notequal" unicode="&#x2260;" horiz-adv-x="527" 
-d="M324.5 359h152.5c10 0 14 -9 14 -17c0 -10 -14 -33 -27 -33h-156.3l-39 -116h208.3c10 0 14 -9 14 -17c0 -10 -14 -33 -27 -33h-212.1l-65.9 -196l-38 12l62 184h-135c-9 0 -15 8 -15 16c0 15 13 34 25 34h141.9l39.1 116h-191c-9 0 -15 8 -15 16c0 15 13 34 25 34h197.9
-l70.1 208l38 -10z" />
-    <glyph glyph-name="lessequal" unicode="&#x2264;" horiz-adv-x="527" 
-d="M68 11v47h390v-47h-390zM158 252l317 -116c13 -14 14 -44 0 -50l-390 142c-9.3 14.7 -9.3 30.7 0 48l390 141c14 -6 13 -36 0 -50z" />
-    <glyph glyph-name="greaterequal" unicode="&#x2265;" horiz-adv-x="527" 
-d="M68 11v47h390v-47h-390zM432 251l-317 116c-13 14 -14 44 0 50l390 -142c9.29999 -14.7 9.29999 -30.7 0 -48l-390 -141c-14 6 -13 36 0 50z" />
-    <glyph glyph-name="uni226A" unicode="&#x226a;" horiz-adv-x="784" 
-d="M435 235l317 -116c13 -14 14 -44 0 -50l-390 142c-9.29999 14.7 -9.29999 30.7 0 48l390 141c14 -6 13 -36 0 -50zM138 239l317 -116c13 -14 14 -44 0 -50l-390 142c-9.3 14.7 -9.3 30.7 0 48l390 141c14 -6 13 -36 0 -50z" />
-    <glyph glyph-name="uni226B" unicode="&#x226b;" horiz-adv-x="784" 
-d="M350 198l-317 116c-13 14 -14 44 0 50l390 -142c9.29999 -14.7 9.29999 -30.7 0 -48l-390 -141c-14 6 -13 36 0 50zM647 194l-317 116c-13 14 -14 44 0 50l390 -142c9.29999 -14.7 9.29999 -30.7 0 -48l-390 -141c-14 6 -13 36 0 50z" />
-    <glyph glyph-name="uni226E" unicode="&#x226e;" horiz-adv-x="527" 
-d="M344.2 306.6l-40.4 -121l171.2 -62.6c13 -14 14 -44 0 -50l-186.2 67.8l-64.8 -193.8l-38 12l65.5 195.4l-166.5 60.6c-9.3 14.7 -9.3 30.7 0 48l231 83.5l74 220.5l38 -10l-64.7 -193.4l111.7 40.4c14 -6 13 -36 0 -50zM296.8 289.4l-138.8 -50.4l108.6 -39.7z" />
-    <glyph glyph-name="uni226F" unicode="&#x226f;" horiz-adv-x="527" 
-d="M248.4 169.4l183.6 66.6l-143.8 52.6zM200.8 152.1l50.3 150.1l-136.1 49.8c-13 14 -14 44 0 50l151.2 -55l73.8 220l38 -10l-74.8 -223.5l201.8 -73.5c9.29999 -14.7 9.29999 -30.7 0 -48l-275.7 -99.7l-55.3 -165.3l-38 12l45.7 136.1l-66.7 -24.1c-14 6 -13 36 0 50z
-" />
-    <glyph glyph-name="uni2270" unicode="&#x2270;" horiz-adv-x="527" 
-d="M68 11v47h131.6l38.4 114.3l-153 55.7c-9.3 14.7 -9.3 30.7 0 48l213.7 77.3l57.3 170.7l38 -10l-48 -143.7l129 46.7c14 -6 13 -36 0 -50l-148.1 -53.7l-36.7 -109.7l184.8 -67.6c13 -14 14 -44 0 -50l-199.8 72.7l-33.7 -100.7h216.5v-47h-232.2l-35.8 -107l-38 12
-l31.9 95h-115.9zM279.5 296.1l-121.5 -44.1l95.1 -34.8z" />
-    <glyph glyph-name="uni2271" unicode="&#x2271;" horiz-adv-x="527" 
-d="M68 11v47h91.6l16.9 50.2l-61.5 -22.2c-14 6 -13 36 0 50l80.6 29.2l51.5 153.5l-132.1 48.3c-13 14 -14 44 0 50l147.1 -53.6l55.9 166.6l38 -10l-56.9 -170l205.9 -75c9.29999 -14.7 9.29999 -30.7 0 -48l-281 -101.6l-22.5 -67.4h256.5v-47h-272.2l-33.8 -101l-38 12
-l29.9 89h-75.9zM243.1 182.5l188.9 68.5l-147.9 54.1z" />
-    <glyph glyph-name="dotmath" unicode="&#x22c5;" horiz-adv-x="250" 
-d="M125 199c-28 0 -54 26 -54 54s26 54 54 54s54 -26 54 -54s-26 -54 -54 -54z" />
-    <glyph glyph-name="uni22EF" unicode="&#x22ef;" horiz-adv-x="657" 
-d="M533 199c-28 0 -54 26 -54 54s26 54 54 54s54 -26 54 -54s-26 -54 -54 -54zM330 199c-28 0 -54 26 -54 54s26 54 54 54s54 -26 54 -54s-26 -54 -54 -54zM125 199c-28 0 -54 26 -54 54s26 54 54 54s54 -26 54 -54s-26 -54 -54 -54z" />
-    <glyph glyph-name="uni2303" unicode="&#x2303;" horiz-adv-x="679" 
-d="M332 646l-172 -284h-48l200 340h42l199 -340h-48z" />
-    <glyph glyph-name="filledbox" unicode="&#x25a0;" horiz-adv-x="576" 
-d="M73 430h430v-430h-430v430z" />
-    <glyph glyph-name="H22073" unicode="&#x25a1;" horiz-adv-x="576" 
-d="M112 396v-362h352v362h-352zM73 430h430v-430h-430v430z" />
-    <glyph glyph-name="triagup" unicode="&#x25b2;" horiz-adv-x="541" 
-d="M498 36h-454l226 394z" />
-    <glyph glyph-name="uni25B3" unicode="&#x25b3;" horiz-adv-x="541" 
-d="M453 62l-182 315l-182 -315h364zM498 37h-454l227 393z" />
-    <glyph glyph-name="uni25B6" unicode="&#x25b6;" horiz-adv-x="510" 
-d="M73 -9v454l394 -226z" />
-    <glyph glyph-name="uni25B7" unicode="&#x25b7;" horiz-adv-x="510" 
-d="M99 36l315 182l-315 182v-364zM74 -9v454l393 -227z" />
-    <glyph glyph-name="triagdn" unicode="&#x25bc;" horiz-adv-x="541" 
-d="M44 429h454l-226 -394z" />
-    <glyph glyph-name="uni25BD" unicode="&#x25bd;" horiz-adv-x="541" 
-d="M89 405l182 -315l182 315h-364zM44 430h454l-227 -393z" />
-    <glyph glyph-name="uni25C0" unicode="&#x25c0;" horiz-adv-x="510" 
-d="M438 447v-454l-394 226z" />
-    <glyph glyph-name="uni25C1" unicode="&#x25c1;" horiz-adv-x="510" 
-d="M412 402l-315 -182l315 -182v364zM437 447v-454l-393 227z" />
-    <glyph glyph-name="bigcircle" unicode="&#x25cb;" horiz-adv-x="564" 
-d="M282 -15c-129 0 -233 105 -233 234s104 233 233 233s234 -104 234 -233s-105 -234 -234 -234zM282 426c-115 0 -207 -93 -207 -207c0 -115 92 -208 207 -208c114 0 208 93 208 208s-93 207 -208 207z" />
-    <glyph glyph-name="H18533" unicode="&#x25cf;" horiz-adv-x="564" 
-d="M282 -15c-129 0 -233 105 -233 234s104 233 233 233s234 -104 234 -233s-105 -234 -234 -234z" />
-    <glyph glyph-name="uni25D0" unicode="&#x25d0;" horiz-adv-x="564" 
-d="M282 -15c-129 0 -233 105 -233 234s104 233 233 233s234 -104 234 -233s-105 -234 -234 -234zM282 11c114 0 208 93 208 208s-93 207 -208 207v-415z" />
-    <glyph glyph-name="uni25D1" unicode="&#x25d1;" horiz-adv-x="564" 
-d="M282 453c129 0 233 -105 233 -234s-104 -233 -233 -233s-234 104 -234 233s105 234 234 234zM282 427c-114 0 -208 -93 -208 -208s93 -207 208 -207v415z" />
-    <glyph glyph-name="uni25D2" unicode="&#x25d2;" horiz-adv-x="564" 
-d="M48 226c0 129 105 233 234 233s233 -104 233 -233s-104 -234 -233 -234s-234 105 -234 234zM74 226c0 -114 93 -208 208 -208s207 93 207 208h-415z" />
-    <glyph glyph-name="uni25D3" unicode="&#x25d3;" horiz-adv-x="564" 
-d="M516 212c0 -129 -105 -233 -234 -233s-233 104 -233 233s104 234 233 234s234 -105 234 -234zM490 212c0 114 -93 208 -208 208s-207 -93 -207 -208h415z" />
-    <glyph glyph-name="uni25D4" unicode="&#x25d4;" horiz-adv-x="564" 
-d="M282 -15c-129 0 -233 105 -233 234s104 233 233 233s234 -104 234 -233s-105 -234 -234 -234zM282 426c-115 0 -207 -93 -207 -207c0 -115 92 -208 207 -208c114 0 208 93 208 208h-208v207z" />
-    <glyph glyph-name="uni25D5" unicode="&#x25d5;" horiz-adv-x="564" 
-d="M282 -15c-129 0 -233 105 -233 234s104 233 233 233s234 -104 234 -233s-105 -234 -234 -234zM282 11c114 0 208 93 208 208s-93 207 -208 207v-208s-142 1 -207 1c0 -115 92 -208 207 -208z" />
-    <glyph glyph-name="uni25D6" unicode="&#x25d6;" horiz-adv-x="355" 
-d="M282 -15c-129 0 -233 105 -233 234s104 233 233 233v-467z" />
-    <glyph glyph-name="uni25D7" unicode="&#x25d7;" horiz-adv-x="355" 
-d="M73 453c129 0 233 -105 233 -234s-104 -233 -233 -233v467z" />
-    <glyph glyph-name="uni2605" unicode="&#x2605;" horiz-adv-x="610" 
-d="M194 194l-155 113h195l70 193l63 -193h205l-167 -116l65 -196l-170 123l-178 -124z" />
-    <glyph glyph-name="uni2669" unicode="&#x2669;" horiz-adv-x="400" 
-d="M307 698l-40 -9l3 -524c-20.5 9.5 -55 14 -89 14c-49.5 0 -137 -49.5 -137 -127c0 -38.9 35.6 -62 100 -62c92 0 160.8 66 161 131z" />
-    <glyph glyph-name="musicalnote" unicode="&#x266a;" horiz-adv-x="534" 
-d="M44 52c0 78 87 127 137 127c34 0 69 -4 89 -14l-3 524l40 9c5 -47 62 -85 129 -129c56 -37 72 -88.7 72 -138c0 -56 -37 -121 -118 -145c-6 7 -8 13 -9 21c52 16 70 60 70 97c0 67.3 -47 103 -83 121c-27 13 -47.4 36.2 -61 55l-2 -459c0 -65 -69 -131 -161 -131
-c-64 0 -100 23 -100 62z" />
-    <glyph glyph-name="musicalnotedbl" unicode="&#x266b;" horiz-adv-x="830" 
-d="M670 400l-363 190l-2 -469c-0.299988 -65 -69 -131 -161 -131c-64.4 0 -100 23.1 -100 62c0 77.5 87.5 127 137 127c34 0 68.5 -4.5 89 -14l-3 524l40 9l403 -205l-2 -573c-0.200012 -65 -69 -131 -161 -131c-64.4 0 -100 23.1 -100 62c0 77.5 87.5 127 137 127
-c34 0 68.5 -4.5 89 -14z" />
-    <glyph glyph-name="parenleft.sc" unicode="&#xf6ae;" horiz-adv-x="298" 
-d="M44 324.7c0 160 93 303.6 212 391.3c11.4 -0.700012 17.6 -6.70001 21 -15.5c-32 -31 -150 -149.6 -150 -375.8s117 -344.8 150 -377.5c-3 -6.9 -11 -12.9 -21 -14.6c-208 154.8 -212 353.4 -212 392.1z" />
-    <glyph glyph-name="parenright.sc" unicode="&#xf6af;" horiz-adv-x="298" 
-d="M254 324.7c0 -160 -93 -303.6 -212 -391.3c-11.4 0.699997 -17.6 6.7 -21 15.5c32 31 150 149.6 150 375.8s-117 344.9 -150 377.6c3 6.90002 11 12.9 21 14.6c208 -154.8 212 -353.5 212 -392.2z" />
-    <glyph glyph-name="bracketleft.sc" unicode="&#xf6b0;" horiz-adv-x="356" 
-d="M108 -59v770.6h212c6 -5.19995 6 -20.6 0 -25.8c-137 -8.59998 -145 -21.5 -145 -96.3v-525.5c0 -74.8 7 -87.7 145 -97.2c6 -5.2 6 -20.6 0 -25.8h-212z" />
-    <glyph glyph-name="bracketright.sc" unicode="&#xf6b1;" horiz-adv-x="356" 
-d="M248 712.4v-770.5h-212c-6 5.2 -6 20.6 0 25.8c137 8.6 145 21.5 145 96.3v525.5c0 74.8 -7 87.6 -145 97.1c-6 5.20001 -6 20.6 0 25.8h212z" />
-    <glyph glyph-name="braceleft.sc" unicode="&#xf6b2;" horiz-adv-x="277" 
-d="M178 581.7l8 -142.7c4.3 -76.5 -37.8 -101.3 -105 -117.9v-3.39999c67.8 -24.3 109.4 -58.2 105 -129l-8 -128.1c-4.5 -72.2 36 -115.3 80 -115.3c6 -5.2 6 -15.4 0 -20.6c-101 0 -157 28.4 -152 140.2l6 146.2c2 52.5 -24.5 90.3 -98 98c-8 6.89999 -9 12.9 0 20.6
-c74 6 98 52.5 98 95.5l-6 158.2c-4 97.2 62 131.6 152 131.6c6 -5.20001 6 -15.4 0 -20.6c-38 -9.5 -85 -24.2 -80 -112.7z" />
-    <glyph glyph-name="braceright.sc" unicode="&#xf6b3;" horiz-adv-x="277" 
-d="M95 57.1l-8 142.8c-4.3 76.5 37.8 101.2 105 117.8v3.39999c-67.8 24.3 -109.4 58.2 -105 129l8 128.2c4.5 72.2 -36 115.2 -80 115.2c-6 5.20001 -6 15.4 0 20.6c101 0 157 -28.3 152 -140.1l-6 -146.2c-2 -52.5 24.5 -90.4 98 -98.1c8 -6.90002 9 -12.9 0 -20.6
-c-74 -6 -98 -52.5 -98 -95.5l6 -158.2c4 -97.2 -62 -131.6 -152 -131.6c-6 5.2 -6 15.4 0 20.6c38 9.5 85 24.2 80 112.7z" />
-    <glyph glyph-name="exclamdown.sc" unicode="&#xf6b4;" horiz-adv-x="288" 
-d="M144 -13c-24 0 -53 19 -53 73c0 65 14 107 24 193c13 108 13 168 15 182c1 11 4 20 14 20s13 -7 14 -13c2 -21 8 -111 16 -189c9 -88 23 -123 23 -193c0 -54 -29 -73 -53 -73zM197 602c0 -29 -24 -53 -53 -53s-53 24 -53 53s24 53 53 53s53 -24 53 -53z" />
-    <glyph glyph-name="questiondown.sc" unicode="&#xf6b5;" horiz-adv-x="435" 
-d="M321 74c0 15 -2 21 -6 26s-6 11 -6 24c0 23 20 35 39 35c16 0 41 -8 41 -43c0 -38 -21 -66 -51 -90c-29 -25 -71 -39 -124 -39c-102 0 -168 60 -168 151c0 79 62 123 109 157c23 17 43 33 52 50c13 25 14 49 14 73v44c0 7 9 10 17 10s16 -3 16 -10v-46
-c0 -43 -5 -102 -70 -161c-40 -37 -55 -66 -55 -113c0 -65 38 -122 95 -122s97 24 97 54zM291 603c0 -29 -24 -53 -53 -53s-53 24 -53 53s24 53 53 53s53 -24 53 -53z" />
-    <glyph glyph-name="guillemotleft.sc" unicode="&#xf6b6;" horiz-adv-x="543" 
-d="M156 237c37.5 -42.5 75 -91 127 -170c-2.5 -10 -13.5 -17.8 -24 -19c-79.5 85.5 -129.5 134 -185 183v12c55.5 49 105.5 97.5 185 183c10.5 -1.20001 21.5 -9 24 -19c-52 -79 -89.5 -127.5 -127 -170zM336 237c37.5 -42.5 75 -91 127 -170c-2.5 -10 -13.5 -17.8 -24 -19
-c-79.5 85.5 -129.5 134 -185 183v12c55.5 49 105.5 97.5 185 183c10.5 -1.20001 21.5 -9 24 -19c-52 -79 -89.5 -127.5 -127 -170z" />
-    <glyph glyph-name="guillemotright.sc" unicode="&#xf6b7;" horiz-adv-x="543" 
-d="M308 237c-37.5 42.5 -75 91 -127 170c2.5 10 13.5 17.8 24 19c79.5 -85.5 129.5 -134 185 -183v-12c-55.5 -49 -105.5 -97.5 -185 -183c-10.5 1.2 -21.5 9 -24 19c52 79 89.5 127.5 127 170zM128 237c-37.5 42.5 -75 91 -127 170c2.5 10 13.5 17.8 24 19
-c79.5 -85.5 129.5 -134 185 -183v-12c-55.5 -49 -105.5 -97.5 -185 -183c-10.5 1.2 -21.5 9 -24 19c52 79 89.5 127.5 127 170z" />
-    <glyph glyph-name="guilsinglleft.sc" unicode="&#xf6b8;" horiz-adv-x="363" 
-d="M156 237c38 -43 75 -91 127 -170c-3 -10 -13 -18 -24 -19c-79 86 -129 134 -185 183v12c56 49 106 97 185 183c11 -1 21 -9 24 -19c-52 -79 -89 -127 -127 -170z" />
-    <glyph glyph-name="guilsinglright.sc" unicode="&#xf6b9;" horiz-adv-x="363" 
-d="M144 237c-38 43 -75 91 -127 170c3 10 13 18 24 19c79 -86 129 -134 185 -183v-12c-56 -49 -106 -97 -185 -183c-11 1 -21 9 -24 19c52 79 89 127 127 170z" />
-    <glyph glyph-name="uniF6BE" unicode="&#xf6be;" horiz-adv-x="272" 
-d="M113 317c0 57 -11 63 -65 68c-2 6 -4 22 -2 28c69 9 109 18 137 29c8 0 13 -3 13 -7c0 0 -4 -64 -4 -114v-211c0 -189 -28 -261 -75 -299c-37 -31 -89 -34 -110 -34c-19 0 -55 14 -55 43c0 18 21 38 32 38c22 0 34 -16 44 -26c7 -7 20 -11 31 -11c50 0 54 123 54 255v241
-z" />
-    <glyph glyph-name=".notdef" horiz-adv-x="500" 
-d="M50 603v-508l170 254zM80 50h340l-170 254zM280 349l170 -254v508zM250 394l170 253h-340zM0 0v698h500v-698h-500z" />
-    <glyph glyph-name="male" unicode="&#x2642;" horiz-adv-x="667" 
-d="M279 367c-96 0 -171 -78 -171 -172c0 -92 72 -171 171 -171s171 79 171 171s-73 172 -171 172zM500 195c0 -119 -102 -217 -223 -217c-120 0 -219 95 -219 217s93 221 222 221c22 0 39 0 64 -8l118 215c-56 -32 -93 -49 -161 -64l-30 34c97 28 147 48 238 104l21 -10
-c12 -99 25 -151 59 -245l-44 4c-28 60 -37 97 -46 158l-109 -216c68 -35 110 -103 110 -193z" />
-    <glyph glyph-name="female" unicode="&#x2640;" horiz-adv-x="557" 
-d="M249 111c-126 18 -191 124 -191 219c0 119 93 220 222 220c137 0 220 -112 220 -220c0 -105 -75 -203 -192 -219l-3 -110h106v-46h-107l-3 -122h-47l-2 122h-107v46h106zM279 500c-96 0 -171 -77 -171 -170s72 -172 171 -172s171 79 171 172c0 91 -73 170 -171 170z" />
-    <glyph glyph-name="uni2641" unicode="&#x2641;" horiz-adv-x="557" 
-d="M307 417c126 -18 191 -124 191 -219c0 -119 -93 -220 -222 -220c-137 0 -220 112 -220 220c0 105 75 203 192 219l3 110h-106v46h107l3 122h47l2 -122h107v-46h-106zM277 28c96 0 171 77 171 170s-72 172 -171 172s-171 -79 -171 -172c0 -91 73 -170 171 -170z" />
-    <glyph glyph-name="uni0180" unicode="&#x180;" horiz-adv-x="493" 
-d="M174 363c-12.9 -11.4 -17 -21 -17 -42v-250c20 -25 41 -47 72 -47c95 0 141 86 141 200c0 97 -50 171 -111 171c-29 0 -59 -9 -85 -32zM167 394c31 28 69.1 45 112 45c87 0 177 -75 177 -197c0 -159 -119 -252 -221 -252c-35.3 0 -65.1 5.5 -88 24.8
-c-11 9.2 -17 9.2 -27.3 -2.8c-7.7 -8.9 -17.6 -18.2 -23.7 -24c-12 0 -17 4 -22 12c3 14 4 32 4 71v444h-61c-8 0 -11 8 -11 14c0 10 10 25 19 25h53v5c0 84 -12 79 -64 82c-6 6 -8 22 -6 30c40 3 115 17 140 27c9 0 13 -3 13 -10c0 0 -4 -40 -4 -105v-29h98
-c9 0 12 -8 12 -13c0 -11 -9 -26 -21 -26h-89v-116c0 -9 3.7 -10.7 10 -5z" />
-    <glyph glyph-name="uni0181" unicode="&#x181;" horiz-adv-x="642" 
-d="M123.6 615.3c-31.6 -0.299988 -54.6 -32 -54.6 -61.3c0 -16.3 7 -28.3 7 -45c0 -26 -19 -36 -35 -36c-21 0 -36 17 -36 37c0 56 53 137 151 137c17.3 0 11 -2 50 -2c40 0 86 2 121 2c186 0 215 -87 215 -154c0 -54.3 -42.9 -105.6 -93 -131v-2c87 -25 152 -80 152 -176
-c0 -86 -53 -186 -252 -186c-89 0 -103 2 -143 2c-39 0 -80 -1 -127 -2l-2 2v19c0 5 2 7.7 7 8l30 2c41.7 2.8 52 7 52 42v503c0 31.3 -19 41 -42.4 41.3zM247 332v-254c0 -33 13 -46 83 -46c152 0 182 60 182 133c0 90 -59 167 -196 167h-69zM247 570v-204h74
-c83 0 144 30 144 115c0 102 -75 132 -131 132c-87 0 -87 -10 -87 -43z" />
-    <glyph glyph-name="uni0182" unicode="&#x182;" horiz-adv-x="583" 
-d="M187 333v-252c0 -36 13 -50 72 -50c157 0 188 85 188 147c0 57 -28 155 -163 155h-97zM145 0c-51 0 -81 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c50 -1 79 -2 129 -2h233c20 0 101 2 101 2l2 -2
-c12.2 -60 17.4 -116.4 19 -171c-8.20001 -5.29999 -21.5 -6.5 -35 -5c-21 84 -43 136 -116 136h-125c-24 0 -36 -7 -36 -31v-201h109c204 0 241 -109 241 -185c0 -64.8 -37.5 -119.4 -79 -147c-57 -38 -123 -43 -204 -43c-45 0 -76 2 -109 2z" />
-    <glyph glyph-name="uni0183" unicode="&#x183;" horiz-adv-x="491" 
-d="M153 54c20 -25 41 -30 72 -30c95 0 143 85 143 199c0 102 -52 172 -113 172c-11 0 -63 -2 -102 -42v-299zM194 688h201l14 -140l-31 -3c-12 46 -37 109 -90 109h-135v-270c34 37 74 55 122 55c87 0 175 -81 175 -203c0 -159 -117 -246 -219 -246c-43 0 -75 10 -104 35
-c-9 -13 -26 -27 -35 -37l-21 5c3 23 3 39 3 78v507c0 57 -10 62.7 -30 64l-32 2c-3 0 -5 1 -5 5l-2 23c48 8 108 16 189 16z" />
-    <glyph glyph-name="uni0184" unicode="&#x184;" horiz-adv-x="572" 
-d="M187 333v-252c0 -36 13 -50 72 -50c157 0 188 85 188 147c0 57 -28 155 -163 155h-97zM106 471c0 62 -22 80 -70 94c-10.7 11.3 -10.7 22.7 0 34c52 11 81 23 134 59c9 0 20 -3 20 -10c0 0 -3 -40 -3 -105v-170h109c204 0 241 -109 241 -185
-c0 -64.8 -37.5 -119.4 -79 -147c-57 -38 -123 -43 -204 -43c-45 0 -76 2 -106 2c-35 0 -128 -2 -128 -2l-2 2v23c0 5 3 7.7 7 8l27 2c41.3 3.1 54 17 54 45v393z" />
-    <glyph glyph-name="uni0185" unicode="&#x185;" horiz-adv-x="485" 
-d="M156 65c20 -24 42 -41 73 -41c94 0 143 87 143 201c0 102 -52 171 -114 171c-10 0 -62 -1 -102 -42v-289zM146 698c9 0 13 -3 13 -10c0 0 -3 -40 -3 -105v-198c34 37 74 54 123 54c87 0 170 -79 170 -201c0 -159 -113 -248 -215 -248c-43 0 -74 11 -104 36
-c-8 -12 -22 -27 -31 -37c-7 0 -13.3 1.3 -20 5c2 24 3 40 3 79v438c0 62 -22 80 -70 94c-10.7 11.3 -10.7 22.7 0 34c52 11 81 23 134 59z" />
-    <glyph glyph-name="uni0187" unicode="&#x187;" horiz-adv-x="646" 
-d="M665 743c28 0 36 -24 36 -36c0 -31 -27 -35 -50 -35c-30.2 0 -67.9 -59 -74.1 -59h0.0999756c10 -55 17 -103 22 -155c-11.3 -6 -21 -9 -33 -5c-26 86 -81 168 -219 168c-52 0 -110 -28 -159.6 -89c-36.5 -44.9 -59.4 -116.7 -59.4 -203c0 -146 93.4 -298 228 -298
-c93 0 161 31 232 109c11 0 18 -6 23 -15c-68 -89 -157 -135 -254 -135c-215 0 -320 146.2 -320 320c0 104.3 39.6 202.2 106 263c59 54 130 85 215 85c101.1 0 149.5 -27 191.9 -39.4c8.59998 84.9 78.5 124.4 115.1 124.4z" />
-    <glyph glyph-name="uni0188" unicode="&#x188;" horiz-adv-x="493" 
-d="M456 428c-16 0 -35 9 -52 9c-20.4 0 -35.2 -11.7 -45.3 -27.7c23.5 -16.7 36.3 -39.3 36.3 -65.3c0 -31 -28 -44 -49 -44s-35 9 -38 36c-4 35 -12 70 -71 70c-66 0 -114 -66 -114 -176c0 -117 61 -191 134 -191c43 0 86 22 120 66c9 -1 17 -5 21 -14
-c-50 -82 -103 -101 -163 -101c-126 0 -198 89 -198 218c0 142 106 231 205 231c36.1 0 66.6 -5.60001 90.7 -15.6c28 54.1 80.8 75.6 115.3 75.6c34 0 42 -22 42 -36c0 -21 -13 -35 -34 -35z" />
-    <glyph glyph-name="uni018A" unicode="&#x18a;" horiz-adv-x="778" 
-d="M268 77c0 -32 11 -45 109 -45c141 0 266 50 266 252c0 154 -75 329 -291 329c-49 0 -84 -8 -84 -43v-493zM98 22c0 5 3 8.7 7 9l30 2c34.9 2.3 52 13 52 45v490c0 38 -29 47 -56.6 44.3c-33.4 -2.29999 -65.4 -19 -65.4 -54.3c0 -19.6 8 -29.4 8 -49
-c0 -21 -14 -34 -34 -34c-16 0 -37 8 -37 41c0 43 39.1 130.7 153 131c14.4 0 36 -2 72 -2c40 0 99 2 163 2c192 0 345 -153 345 -339c0 -246 -186 -310 -327 -310c-103 0 -142 2 -181 2c-40 0 -80 -1 -127 -2l-2 2v22z" />
-    <glyph glyph-name="uni018B" unicode="&#x18b;" horiz-adv-x="563" 
-d="M388 78v269h-89c-138 0 -168 -76 -168 -149c0 -115 68 -166 174 -166c70 0 83 13 83 46zM301 607h-81c-48 0 -85 -16 -111 -105l-26 3l14 153c31 -8 68 -13 113 -13h218l115 2v-25c0 -3 -1 -4 -4 -4l-30 -3c-31 -3 -40 -5 -40 -42v-496c0 -32 12 -44 40 -47l30 -3
-c3 0 4 -2 4 -5v-24c-44 1 -70 2 -114 2c-66 0 -104 -2 -170 -2c-109 0 -217 55 -217 178c0 156 103 205 284 205h62v189c0 33 0 37 -87 37z" />
-    <glyph glyph-name="uni018C" unicode="&#x18c;" horiz-adv-x="511" 
-d="M350 124v190c0 31 -3 38 -17 54c-20 23 -45 36 -81 36c-20 0 -62 -3 -93 -50c-15 -21 -29 -61 -29 -133c0 -125 56 -184 110 -184c25 0 57 16 94 48c14.1 12.2 16 20 16 39zM420 698c9 0 13 -3 13 -10c0 0 -4 -40 -4 -105v-453c0 -49 9 -68 73 -73c6 -6 6 -21 0 -27
-c-61 -7 -99 -22 -121 -40c-8 -2 -11 -3 -19 0c0 0 -11 35 -11 59c0 7 -7.20001 5.2 -12 1.3c-49 -40.3 -86 -60.3 -125 -60.3c-108 0 -170 90 -170 213c0 74 26 133 69 176c40 38 84 60 150 60c33 0 74 -17 78 -17c7 0 9 2 9 9v199c0 19 -5 24 -23 24h-122
-c-52 0 -82 -63 -94 -109l-26 3l14 150c27 -6 46 -10 106 -10h159c11 1 34 1 56 10z" />
-    <glyph glyph-name="uni018D" unicode="&#x18d;" horiz-adv-x="490" 
-d="M232 24l17 -13l-8 16c67 24 139 73 139 187c0 81 -42 191 -135 191c-51 0 -132 -25 -132 -188c0 -51 34 -124 89 -168zM260 2l18 -15c38 -30 93 -77 93 -119c0 -76 -67 -103 -137 -103c-99 0 -163 59 -163 92c0 29 24 37 38 37c10 0 32 -8 51 -44c20 -38 49 -52 75 -52
-c52 0 84 17 84 60c0 22 -48 62 -84 90l-71 56c-81 63 -130 115 -130 202c0 163 116 233 222 233c123 0 201 -91 201 -208c0 -134 -108 -198 -197 -229z" />
-    <glyph glyph-name="uni0190" unicode="&#x190;" horiz-adv-x="517" 
-d="M295 658c71 0 93 -25 144 -30l19 -143l-31 -5c-18 80 -41 144 -140 144c-80 0 -141 -41 -141 -124c0 -50 29 -135 144 -135h68c11 0 17 -9 17 -20c0 -13 -6 -19 -17 -19h-97c-107 0 -137 -75 -137 -140c0 -120 66 -164 144 -164c69 0 153 39 177 148l30 -3l-17 -144
-c-56 -9 -101 -35 -181 -35c-103 0 -239 33 -239 178c0 108 76 166 144 185c-30 11 -107 51 -107 141c0 113 115 166 220 166z" />
-    <glyph glyph-name="uni0191" unicode="&#x191;" horiz-adv-x="477" 
-d="M101 81v490c0 31 -12.6 42.4 -51 45l-30 2c-7 0.5 -8 4 -8 7v20l2 2c47 -1 88 -2 127 -2h253.3c24.2 0 29.5 0.599976 47 4c2.40002 0 3.60001 -0.700012 4 -3c1.40002 -7.59998 16.5 -104 21.7 -145l-29 -5c-22 69 -40 109 -115 109h-105c-24 0 -36 -10 -36 -34v-210
-h127c35 0 47 14 50 42l3 25c0 4 3 8 7 8h22l4 -4c-3 -40 -4 -70 -4 -90s1 -47 4 -87l-4 -3h-22c-5 0 -7 5 -7 8l-3 25c-3 29 -16 38 -50 38h-127v-220c0 -128 -47 -190 -105 -236c-45 -38 -89 -39 -114 -39c-22 0 -64 18 -64 54c0 22 24 36 38 36c31 0 42.3 -13.8 52 -27
-c7.3 -10 14 -18 28 -18c33 0 84 28 84 208z" />
-    <glyph glyph-name="uni0193" unicode="&#x193;" horiz-adv-x="721" 
-d="M670 743c28 0 36 -24 36 -36c0 -31 -27 -35 -50 -35c-7 0 -15 1 -20 1c-3 0 -6 0 -8 -1c-28.6 -4.90002 -41.8 -31.1 -45.7 -58.5c0.900024 -0.200012 1.79999 -0.299988 2.70001 -0.5c16 -72 20.5 -112 23 -154c-11.3 -4.70001 -21.7 -6.70001 -33 -6
-c-26 86 -67 169 -212 169c-116.5 0 -230 -120 -230 -295c0 -132 84 -301 242 -301c54 0 121 6 155 38v153c0 40.1 -27.1 43.8 -82 48c-6 6 -6 30 0 36c44 -1 90.5 -2 124 -2c40 0 65 1 89 2c6 -6 6 -30 0 -36c-29 -3 -46 -12.8 -46 -48v-116c0 -11 5 -19 16 -28
-c-68 -58 -161 -83 -279 -83c-191 0 -315 137.2 -315 317c0 220 173 351 340 351c91.5 0 132.8 -23.8 178.1 -37.8c9.30005 83.7 78.6 122.8 114.9 122.8z" />
-    <glyph glyph-name="uni0194" unicode="&#x194;" horiz-adv-x="617" 
-d="M291 -20c-30 -45 -51 -114 -51 -130c0 -27 10 -39 28 -39c23 0 38 34 38 65c0 22 0 65 -15 104zM488 572c11.8 31.4 1.5 38.5 -48 44l-18 2c-4 0 -8 3 -8 8v19l2 2s73 -2 112 -2c35 0 87 2 87 2l2 -2v-19c0 -5 -3 -7.70001 -8 -8c-43 -3 -60 -11 -73 -46l-192 -511
-c25 -74 35 -131 35 -170c0 -69 -46 -123 -112 -123c-54 0 -75 39 -75 72c0 50 31 108 78 196l-189 534c-14 40 -39 45 -73 48c-4 0.400024 -8 3 -8 8v19l2 2s68 -2 107 -2c35 0 124 2 124 2l2 -2v-19c0 -5 -3 -7 -8 -8l-17 -2c-34.6 -4.09998 -48 -10 -48 -26
-c0 -6 1 -12 4 -20l154 -441h3z" />
-    <glyph glyph-name="uni0195" unicode="&#x195;" horiz-adv-x="714" 
-d="M298 387c-39.4 0 -78 -21.7 -116 -59c-8 -8.70001 -17 -21 -17 -42.1v-163.9c0 -83 9 -87 59.8 -91c6 -6 6 -27 0 -33c-42.1 1 -59.8 2 -98.8 2c-43 0 -68.6 -1 -109.8 -2c-6 6 -6 27 0 33c58 4 69.8 8 69.8 91v437c0 84 -12 79 -64 82c-6 6 -8 22 -6 30
-c40 3 115 17 140 27c9 0 13 -3 13 -10c0 0 -4 -40 -4 -105l-0.800003 -225c0 -14 6.40001 -3.79999 9.8 0c61 68 105.9 81 155 81c71 0 109 -52 109 -155v-152c0 -66 26 -95 73 -95c75 0 126 102 126 200c0 96 -30 123 -59 128c-12 1 -42 6 -42 37c0 18 14 37 41 37
-c69 0 98 -70 98 -190c0 -183 -84 -259 -164 -259c-104 0 -151 53 -152 145v160c0 80 -20 92 -61 92z" />
-    <glyph glyph-name="uni0196" unicode="&#x196;" horiz-adv-x="290" 
-d="M90 563c0 65 -10 78 -30 78l-32 2c-3.2 0.200012 -6 2 -6 5l-2 24c40.5 3 109.9 16 135 26c9 0 13 -3 13 -10c0 0 -3 -40 -3 -105v-446c0 -62 6 -92 33 -92c26 0 41 8 67 28c8.70001 -2.4 14.7 -8 18 -17c-39 -44 -75 -66 -120 -66c-46 0 -73 28 -73 99v474z" />
-    <glyph glyph-name="uni0197" unicode="&#x197;" horiz-adv-x="297" 
-d="M191 122c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-45 1 -93.4 2 -129 2c-36.3 0 -85 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v199h-77c-8 0 -11 8 -11 14c0 10 10 25 19 25h69v163c0 83 -17 88 -87 91c-6 6 -6 27 0 33c47 -1 95.5 -2 129 -2c38.5 0 86 1 130 2
-c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-163h76c9 0 12 -8 12 -13c0 -11 -9 -26 -21 -26h-67v-199z" />
-    <glyph glyph-name="uni0198" unicode="&#x198;" horiz-adv-x="637" 
-d="M398 479l-56 -72c-30.2 -38.8 -35 -42 -35 -49c0 -8 5 -16 13 -25l219 -260c34 -42 70 -39 88 -42c6 -6 6 -27 0 -33c-47 1 -62 2 -101 2c-30 0 -34 -1 -54 -2c-4 0 -5 3 -5 6c-2 16 -16 43 -36 69l-157 198c-20 25.7 -49.1 36.9 -83 37.9v-186.9c0 -83 17 -88 87 -91
-c6 -6 6 -27 0 -33c-45 1 -93.4 2 -129 2c-36.3 0 -85 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c47 -1 95.5 -2 129 -2c38.5 0 86 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-175.7c35.1 2.60001 57.3 12.5 79 38.7
-l106 128c60.4 73 99 144 173 144c67 0 115 -41 115 -77c0 -22 -20 -39 -40 -39c-46 0 -32 79 -87 79c-28 0 -84.9 -72.4 -139 -142z" />
-    <glyph glyph-name="uni0199" unicode="&#x199;" horiz-adv-x="512" 
-d="M86 476c0 158 88 222 155 222c41 0 63 -12 83 -30c15 -13 26 -29 26 -46s-9 -38 -35 -38c-27 0 -41 14 -46 41c-4 20 -11 39 -35 39c-53 0 -69 -70 -69 -190v-239.8c18.9 2.60001 45.8 14.4 68 30.8c25.7 19 57 53 80 82c9.29999 11.7 33 47 -23 51c-6 6 -6 27 0 33
-c37 -1 60 -2 98 -2c36 0 50 1 87 2c6 -6 6 -27 0 -33c-40 -4 -75 -12 -105 -44l-88 -91c-4 -4 -4 -6 -4 -10c0 -5 3.39999 -9.5 7 -14l132 -166c26.7 -33.6 52 -38 86 -42c6 -6 6 -27 0 -33c-30 1 -51 2 -82 2c-30 0 -42 -1 -62 -2c-3 0 -3.20001 2.1 -4 5
-c-4 15 -12.6 30.5 -42 70l-73 98c-11.9 16 -21 25 -32 32.5c-9.7 3.39999 -23.8 4.89999 -43 5.39999v-86.9c0 -83 11 -88 79 -91c6 -6 6 -27 0 -33c-43 1 -72 2 -118 2c-41 0 -63 -1 -105 -2c-6 6 -6 27 0 33c54 3 65 8 65 91v354z" />
-    <glyph glyph-name="uni019A" unicode="&#x19a;" horiz-adv-x="264" 
-d="M174 321v-199c0 -83 11 -88 72 -91c6 -6 6 -27 0 -33c-33 1 -71 2 -111 2s-77 -1 -112 -2c-6 6 -6 27 0 33c61 3 72 8 72 91v199h-83c-8 0 -11 8 -11 14c0 10 10 25 19 25h75v199c0 75 -6 78 -64 82c-6 6 -8 22 -6 30c40 3 115 17 140 27c9 0 13 -3 13 -10
-c0 0 -4 -40 -4 -105v-223h76c9 0 12 -8 12 -13c0 -11 -9 -26 -21 -26h-67z" />
-    <glyph glyph-name="uni019B" unicode="&#x19b;" horiz-adv-x="531" 
-d="M348 616l17 -30l-100.4 -58.9l94.4 -313.1c39 -132 51 -164 83 -164c21 0 41 5 62 31c11.3 -2.4 16.7 -7 20 -16c-18 -39 -57 -76 -86 -76c-50 0 -74 44 -102 137l-71 237l-143 -363c-27 -2 -52 -6 -75 -12l-25 12l221 435l-13 43
-c-2.5 8.60001 -5.10001 16.7 -7.60001 24.4l-94.4 -55.4l-17 30l99.6 58.4c-33.7 86.7 -65.1 101.6 -88.6 101.6c-25 0 -51 -10 -71 -25c-7.3 2.40002 -14.9 4.20001 -17 17c26 38 58 69 97 69c30 0 86 -11 121 -129l2.39999 -7.90002z" />
-    <glyph glyph-name="uni019C" unicode="&#x19c;" horiz-adv-x="872" 
-d="M766 116c0 -50 3.59998 -55.8 25 -58l48 -5l3 -23c-62 -11 -112 -24 -134 -42h-23l2 85l-2 1c-51 -49 -110 -86 -177 -86c-59 0 -98 39 -108 86c-62 -60 -125 -86 -184 -86c-94 0 -115 73 -115 162v424c0 30 -14.7 39.1 -54 42l-27 2c-4 0.299988 -8 3 -8 8v19l2 2
-c50 -1 77 -2 127 -2c48 0 74 1 123 2l2 -2v-19c0 -5 -3 -7.59998 -8 -8l-21 -2c-41 -3.90002 -55 -14 -55 -42v-447c0 -66 32 -91 73 -91c43 0 87 20 139 72c-1 14 -1 26 -1 41v425c0 30 -16.1 38.6 -54 42l-22 2c-4 0.299988 -8 3 -8 8v19l2 2c50 -1 74 -2 122 -2
-s74 1 123 2l2 -2v-19c0 -5 -3 -7.59998 -8 -8l-21 -2c-39.9 -3.79999 -55 -14 -55 -42v-445c0 -66 32 -93 73 -93c38 0 87 25 138 74v464c0 30 -14.1 38.4 -54 42l-22 2c-4 0.299988 -8 3 -8 8v19l2 2c50 -1 74 -2 122 -2c50 0 79 1 128 2l2 -2v-19c0 -5 -3 -7.59998 -8 -8
-l-26 -2c-39.8 -3.09998 -55 -14 -55 -42v-458z" />
-    <glyph glyph-name="uni019D" unicode="&#x19d;" horiz-adv-x="695" 
-d="M104 88v462c-2 12 -24 68 -73 68c-5 0 -12 3 -12 8v18l3 2h130l349 -441c29 -37 43 -65 52 -65c5 0 5 19 5 38v379c0 27 -13 61 -54 61h-26c-5 0 -14 3 -14 8v19l5 1s74 -1 110 -1c39 0 111 1 111 1l2 -1v-19c0 -5 -4 -8 -8 -8h-27c-39 0 -54 -31 -54 -61v-536
-c0 -19 -7 -29 -21 -29c-16 1 -29 7 -40 22l-349 441c-17 22 -28 33 -34 33c-8 0 -10 -15 -10 -49v-350c0 -134 -2 -276 -114 -276c-47 0 -79 29 -79 49c0 32 24 35 32 35c14 0 29 -20 34 -40c3 -10 9 -14 20 -14c62 0 62 185 62 245z" />
-    <glyph glyph-name="uni01A2" unicode="&#x1a2;" horiz-adv-x="893" 
-d="M338 624c-96 0 -206 -87 -206 -297c0 -192 108 -303 239 -303c41 0 75 12 106 37v508c-40 36 -86 55 -139 55zM810 -56c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-50 1 -79 2 -129 2c-51 0 -81 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v589c0 67 -7 69 -69 69
-c-84.5 0 -94 -2.5 -94 -52v-490c-53 -46 -128 -70 -210 -70c-172 0 -316 123 -316 320c0 196 136 348 315 348c50 0 100 -12 143 -35c17 6 35 25 46 35c12 0 19 -2.5 19 -12c11 -5.5 65 -7 108 -7c62 0 92 2 131 19c8.5 0 15 -3 15 -10c0 0 -3 -48 -3 -96v-608z" />
-    <glyph glyph-name="uni01A3" unicode="&#x1a3;" horiz-adv-x="710" 
-d="M354 336c-27 45 -67 69 -109 69c-80 0 -123 -74 -123 -178c0 -151 88 -193 146 -193c19 0 60 2 86 22v280zM632 -111c0 -83 11 -87 72 -90c6 -6 6 -27 0 -33c-43 1 -68 2 -111 2c-44 0 -70 -1 -112 -2c-6 6 -6 27 0 33c61 3 72 6 72 89v439c0 44 -34 44 -67 44
-c-10 0 -34 -4 -53 -12v-308c-45 -31 -132 -61 -189 -61c-144 0 -208 124 -208 217c0 132 91 232 213 232c34 0 66 -4 94 -19c29 -15 110 -16 140 -16c72 0 110 38 132 38h17v-553z" />
-    <glyph glyph-name="uni01A4" unicode="&#x1a4;" horiz-adv-x="654" 
-d="M312 554v-233c11 -3 51 -5 76 -5c97 0 149 44 149 152c0 127 -69 150 -138 150c-72 0 -87 -35 -87 -64zM167.5 645h101.5s111 7 137 7c185 0 224 -107 224 -166c0 -85 -55 -204 -237 -204c-35 0 -59 3 -81 10v-170c0 -83 24 -87 102 -91c6 -6 6 -27 0 -33
-c-50 1 -88 2 -144 2c-51 0 -81 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -20 83 -60.5 83c-36.5 0 -83.7 -8 -83.7 -41.8c0 -10.8 2.39999 -16.8 6 -27.6c2.39999 -9.59998 7.2 -19.2 7.2 -28.8c0 -25.2 -20.4 -42 -44.4 -42c-19.2 0 -45.6 10.8 -45.6 50.4
-c0 51.6 47 128.8 161.5 128.8z" />
-    <glyph glyph-name="uni01A5" unicode="&#x1a5;" horiz-adv-x="519" 
-d="M175 335c-12.8 -13.2 -16 -23 -16 -44v-186c0 -36.1 3.89999 -41.9 24 -59.9c18 -16.1 53 -21.1 71 -21.1c112 0 141 102 141 184c0 113 -55 185 -119 185c-29.2 0 -70 -26 -101 -58zM159 486v-115c0 -7.10001 4.89999 -6.20001 8 -3c45 46 100 71 137 71
-c102 0 177 -98 177 -204c0 -81 -27 -143 -74 -189c-41 -39 -91 -56 -147 -56c-31.6 0 -62.5 5.6 -87 15.5c-10.2 4.2 -14 5.5 -14 -7.5v-108c0 -83 11 -87 82 -91c6 -6 6 -27 0 -33c-43 1 -74 2 -121 2c-44 0 -70 -1 -112 -2c-6 6 -6 27 0 33c61 3 72 8 72 91v581
-c0 155 53 227 137 227c38 0 64 -3 90 -21c21 -16 32 -34 32 -51c0 -20 -24 -41 -41 -41c-21 0 -32 14 -40 32c-14 35 -20 47 -50 47c-33 0 -49 -24 -49 -178z" />
-    <glyph glyph-name="uni01A6" unicode="&#x1a6;" horiz-adv-x="564" 
-d="M497 388c0 -85 -88 -137 -135 -148l104 -239c23 -43 54 -77 94 -77l3 -20c-10 -4 -27 -7 -42 -7c-60 0 -104 39 -130 86l-103 233c-6 14 -11 16 -101 16v-162c0 -30 15 -43 55 -43h26c4 0 8 -3 8 -8v-19l-2 -2s-86 2 -126 2c-35 0 -128 -2 -128 -2l-2 2v19c0 5 3 8 7 8
-h27c41 0 54 15 54 43v504c0 30 -15 44 -54 44h-27c-4 0 -8 3 -8 8v19l2 1s87 -1 126 -1c36 0 129 1 129 1l2 -1v-19c0 -5 -3 -8 -8 -8h-26c-41 0 -55 -16 -55 -44v-25c21 1 44 1 76 1c120 0 234 -36 234 -162zM416 387c0 101 -82 128 -142 128c-36 0 -63 -3 -87 -8v-240h50
-c97 0 179 18 179 120z" />
-    <glyph glyph-name="uni01AA" unicode="&#x1aa;" horiz-adv-x="305" 
-d="M2 601c0 60 47 97 107 97c71 0 112 -40 112 -184v-501c0 -123 10 -154 21 -170c10 -18 24 -26 37 -26s19 13 24 26c6 13 14 29 31 29c13 0 31 -6 31 -35c0 -22 -34 -49 -89 -49c-19 0 -58 13 -81 34c-49 45 -49 122 -49 222v385c0 26 4 70 10 92c-11 -7 -34 -16 -48 -16
-c-66 0 -106 40 -106 96zM174 601c0 32 -21 70 -66 70c-43 0 -66 -35 -66 -70c0 -36 24 -69 66 -69c41 0 66 34 66 69z" />
-    <glyph glyph-name="uni01AB" unicode="&#x1ab;" horiz-adv-x="316" 
-d="M164 -145c-22 0 -36 18 -36 38c0 45 58 28 84 44c19 11 27 35 27 59c0 3.9 -0.100006 7.9 -0.399994 11.7c-23.9 -11.8 -48.8 -17.7 -72.6 -17.7c-46 0 -77 28 -77 99v301h-59c-4 0 -5 1 -5 6v13c0 8 4 20 18 20l46 0.100006c0 110.9 -3 104.3 -3 115.9
-c0 6.90002 10 10.3 22 13.7c12.5 3.5 22.7 7.79999 34 14.1c9.3 5.10004 17.8 9 22.3 9c4.7 0 7.7 -2.39996 7.7 -8.79999c0 0 -4 -40 -4 -105v-39h120c5 0 8 -2 8 -6v-20c0 -9 -14 -13 -24 -13h-104v-253c0 -62 6 -92 33 -92c26 0 56 8 82 28c10 -1 16 -6.7 18 -17
-c-11.4 -12.9 -23.8 -23.9 -36.7 -33c1.90002 -11.4 2.70001 -22.2 2.70001 -33c0 -90 -74 -135 -103 -135z" />
-    <glyph glyph-name="uni01AC" unicode="&#x1ac;" horiz-adv-x="617" 
-d="M239.5 606h-76c-38 0 -83.7 -8 -83.7 -41.8c0 -10.8 2.39999 -16.8 6 -27.6c2.39999 -9.59998 7.2 -19.2 7.2 -28.8c0 -25.2 -20.4 -42 -44.4 -42c-19.2 0 -45.6 10.8 -45.6 50.4c0 51.6 46.5 128.8 161.5 128.8h208c79 0 190 5 224 8c1 0 3 -2 3 -3c1 -45 6 -96 13 -142
-c-9 -4 -23 -5 -34 -5c-17 77 -64 103 -139 103h-22c-36 0 -46 -38 -46 -102v-382c0 -83 17 -88 97 -91c6 -6 6 -27 0 -33c-50 1 -85 2 -139 2c-55 0 -91 -1 -140 -2c-6 6 -6 27 0 33c80 3 97 8 97 91v385c0 61 -10 99 -47 99z" />
-    <glyph glyph-name="uni01AD" unicode="&#x1ad;" horiz-adv-x="355" 
-d="M89 471c0 155 53 227 137 227c38 0 64 -3 90 -21c21 -16 32 -34 32 -51c0 -20 -24 -41 -41 -41c-21 0 -32 14 -40 32c-14 35 -20 47 -50 47c-33 0 -49 -24 -49 -178v-57h120c5 0 8 -2 8 -6v-20c0 -9 -14 -13 -24 -13h-104v-253c0 -62 6 -92 33 -92c26 0 56 8 82 28
-c10 -1 16 -7 18 -17c-39 -44 -89 -66 -135 -66s-77 28 -77 99v301h-59c-4 0 -5 1 -5 6v13c0 8 4 20 18 20h46v42z" />
-    <glyph glyph-name="uni01AE" unicode="&#x1ae;" horiz-adv-x="597" 
-d="M350 52c0 -139 24 -191 55 -191c32 0 39 12 54 50c9 19 20 35 43 35c18 0 44 -22 44 -44c0 -18 -11 -38 -34 -55c-28 -19 -66 -23 -107 -23c-92 0 -140 79 -140 247v436c0 61 -10 99 -47 99h-49c-66 0 -112 -26 -132 -106c-12 0 -24 1 -34 5c11 48 21 100 25 145
-c0 1 2 3 4 3c38 -3 156 -8 233 -8h86c79 0 190 5 224 8c1 0 3 -2 3 -3c1 -45 6 -96 13 -142c-9 -4 -23 -5 -34 -5c-17 77 -64 103 -139 103h-22c-36 0 -46 -38 -46 -102v-452z" />
-    <glyph glyph-name="uni01B1" unicode="&#x1b1;" horiz-adv-x="666" 
-d="M126 587c-48 0 -70 -4 -76 -60h-26l7 118h96c67 0 89 -24 89 -62c0 -80 -96 -218 -96 -314c0 -142 77 -247 207 -247c138 0 206 117 206 246c0 146 -104 261 -104 324c0 34 31 53 128 53h70l7 -118h-26c-4 52 -24 60 -76 60c-33 0 -46 -8 -46 -22
-c0 -46 135 -161 135 -296c0 -133 -97 -281 -294 -281c-200 0 -295 132 -295 281c0 133 137 250 137 296c0 14 -11 22 -43 22z" />
-    <glyph glyph-name="uni01B2" unicode="&#x1b2;" horiz-adv-x="655" 
-d="M89 220v354c0 30 -15 44 -54 44h-27c-4 0 -8 3 -8 8v19l2 1s91 -1 130 -1c36 0 129 1 129 1l2 -1v-19c0 -5 -3 -8 -8 -8h-26c-41 0 -55 -16 -55 -44v-325c0 -122 20 -223 150 -223c146 0 240 111 240 327c0 51 -7 272 -102 272c-18 0 -30 -7 -33 -24
-c-1 -8 -8 -42 -39 -42c-12 0 -33 7 -33 33c0 53 72 66 106 66c110 0 150 -133 150 -286c0 -330 -137 -382 -289 -382c-128 0 -235 42 -235 230z" />
-    <glyph glyph-name="uni01B3" unicode="&#x1b3;" horiz-adv-x="641" 
-d="M231 435c-62 108 -109 189 -144 189c-8 0 -28 -4 -28 -21c0 -7 2 -15 2 -25c0 -17 -6 -36 -30 -36c-22 0 -31 19 -31 33c0 33 46 84 116 84c59 0 112 -60 192 -193l74 -125l127 235c8 14 11 23 11 28c0 11 -5 14 -25 14h-30c-5 0 -6 4 -6 7v20l2 1s79 -1 92 -1
-c9 0 87 1 87 1l2 -1v-20c0 -5 -3 -7 -10 -7h-21c-30 0 -44 -12 -61 -44l-149 -281v-222c0 -31 16 -44 55 -44h26c5 0 9 -3 9 -8v-19l-2 -2s-87 2 -126 2c-36 0 -129 -2 -129 -2l-2 2v19c0 5 3 8 8 8h26c41 0 55 16 55 44v210z" />
-    <glyph glyph-name="uni01B4" unicode="&#x1b4;" horiz-adv-x="626" 
-d="M418 334c0 0 -97 -215 -177 -408c-30 -72 -66 -156 -137 -156c-19 0 -58 11 -58 47c0 30 22 39 38 39c15 0 25 -6 31 -14c10 -10 17 -17 27 -17c15 0 50 86 75 147c6 12 8 22 8 31c0 10 -9 37 -17 57l-126 293c-16 38 -27 49 -61 49c-6 0 -10 3 -10 7v20l2 2s44 -2 74 -2
-c47 0 119 2 119 2l2 -3v-18c0 -5 -6 -8 -11 -8c-30 0 -43 -6 -43 -22c0 -6 2 -14 6 -23l110 -258c13 30 111 254 111 254c53 120 106 204 170 204c55 0 71 -23 71 -47c0 -20 -18 -39 -39 -39c-14 0 -31 4 -41 14c-4 5 -16 7 -24 7c-32 0 -72 -93 -100 -158z" />
-    <glyph glyph-name="uni01BA" unicode="&#x1ba;" horiz-adv-x="448" 
-d="M260 217c86 -4 142 -59 142 -153c0 -141 -123 -141 -161 -166c-38 -24 -39 -44 -39 -49c0 -15 7 -26 7 -37c0 -26 -22 -43 -37 -43c-17 0 -36 12 -36 37c0 56 37 85 94 122c40 26 94 7 94 128c0 52 -15 128 -100 128c-18 0 -48 -9 -70 -14l153 217h-178
-c-42 0 -53 -7 -65 -71l-20 2l16 123c35 -5 24 -12 55 -12h262c9 0 14 -3 14 -8c0 -12 -3 -21 -12 -34z" />
-    <glyph glyph-name="uni01BB" unicode="&#x1bb;" horiz-adv-x="438" 
-d="M61 468c0 60 69 142 180 142c81 0 169 -44 169 -152c0 -75.5 -42.5 -119.5 -99 -174h37c9 0 12 -8 12 -13c0 -11 -9 -26 -21 -26h-68.6l-61.4 -59c-5 -5 -74 -73 -74 -121h178c36 0 53 25 70 96c10 2 23 0 29 -5c-1 -30 -11 -105 -24 -158c0 0 -46 2 -78 2h-175
-c-32 0 -83 -2 -83 -2c0 59 16 107 114 207l40.5 40h-96.5c-8 0 -11 8 -11 14c0 10 10 25 19 25h127.8c54.7 57.5 76.2 108.1 76.2 170c0 96 -51 121 -87 121c-73 0 -99 -36 -99 -61c0 -8 6 -17 8 -24s4 -13 4 -21c0 -22.1 -30 -40 -47 -40c-21 0 -40 18 -40 39z" />
-    <glyph glyph-name="uni01BC" unicode="&#x1bc;" horiz-adv-x="429" 
-d="M305 180c0 94 -86 154 -150 154c-28 0 -50 -1 -77 -11l22 190l-78 54h324l-8 -58v-2h-196l-16 -129l51 2c134 0 198 -94 198 -184c0 -136 -90 -208 -192 -208c-57 0 -135 32 -135 71c0 19 16 32 34 32c20 0 32 -12 41 -28c10 -19 25 -41 57 -41c76 0 125 64 125 158z" />
-    <glyph glyph-name="uni01BD" unicode="&#x1bd;" horiz-adv-x="429" 
-d="M297 138c0 60 -47 130 -111 130c-28 0 -90 -5 -120 -14l34 120l-59 55h305l-8 -58v-2h-196l-17 -62c14 1 65 5 87 5c99 0 155 -82 155 -158s-43 -166 -173 -166c-57 0 -146 32 -146 71c0 19 16 32 34 32c20 0 31 -14 40 -30c11 -20 37 -39 69 -39c59 0 106 34 106 116z
-" />
-    <glyph glyph-name="uni01BE" unicode="&#x1be;" horiz-adv-x="368" 
-d="M74 390h-50c-3 0 -4 1 -4 4v31c0 3 1 4 3 4c57 1 71 40 71 116v19l57 20v-155h110c5 0 8 -2 8 -6v-20c0 -9 -14 -13 -23 -13h-98v-48c0 -40 14 -60 68 -80c81 -30 124 -66 124 -146c0 -99 -113 -128 -161 -128c-34 0 -72 4 -97 11c-7 1 -12 2 -19 2c-5 0 -14 -1 -23 -3
-l-7 142l27 1c1 -22 10 -70 36 -96c10 -11 44 -29 81 -29c35 0 95 28 95 77c0 43 0 72 -80 106c-72 32 -118 53 -118 128v63z" />
-    <glyph glyph-name="uni01BF" unicode="&#x1bf;" horiz-adv-x="520" 
-d="M305 396c-39 0 -77 -21 -151 -81v-366c147 84 249 187 249 302c0 90 -25 145 -98 145zM79 321c0 50 -7.6 60.3 -22 62l-43 4l-2 24c70.5 11 109.5 20 138 31c2.39999 0 4 -0.600006 4 -3l-3 -89h3c62 56 124 89 176 89c125 0 156 -80 156 -152
-c0 -148 -127 -262 -332 -374v-106l-133 -36l-4 25c-1 5 0 8 5 9l17 5c30 9 40 27 40 60v451z" />
-    <glyph glyph-name="uni021C" unicode="&#x21c;" horiz-adv-x="479" 
-d="M132 -145c-19 0 -38 15 -38 42c0 37 39 105 141 143c70 26 115 97 115 168c0 120 -89 159 -185 159l-5 30c70 0 145 73 145 130c0 77 -56 97 -96 97c-54 0 -101 -42 -110 -108l-24 2l8 128c28 0 83 12 153 12c47 0 137 -30 137 -121c0 -74 -68 -117 -97 -130
-c108 -19 163 -86 163 -200c0 -91 -79 -170 -193 -203c-53 -15 -77 -40 -77 -75c0 -13 5 -28 5 -34c0 -23 -24 -40 -42 -40z" />
-    <glyph glyph-name="uni021D" unicode="&#x21d;" horiz-adv-x="383" 
-d="M89 -229c-10 0 -32 7 -32 35c0 36 57 111 136 143c47 19 80 57 80 120c0 101 -80 112 -128 112c-10 0 -20 -2 -32 -4v25c78 13 125 78 125 124c0 58 -45 82 -84 82c-64 0 -90 -31 -99 -97l-21 2l8 117c27 0 61 12 131 12c47 0 128 -37 128 -106c0 -60 -54 -101 -72 -112
-c75 -17 118 -73 118 -141c0 -107 -94 -153 -143 -170c-52 -18 -81 -38 -81 -73c0 -13 2 -22 2 -29c0 -23 -16 -40 -36 -40z" />
-    <glyph glyph-name="uni0224" unicode="&#x224;" horiz-adv-x="618" 
-d="M191 605c-76 0 -93 -50 -115 -119l-30 5c8 41 18 113 22 167c37 -3 34 -13 82 -13h389c21 0 24 -3 24 -9c0 -11 -9 -26 -22 -45l-386 -546h329c97 0 124 -59 124 -97c0 -62 -31 -91 -66 -120l-20 9c18 23 28 47 28 63c0 80 -40 100 -114 100h-376c-17 0 -20 9 -20 16
-c0 6 3 13 9 21l400 568h-258z" />
-    <glyph glyph-name="uni0225" unicode="&#x225;" horiz-adv-x="456" 
-d="M150 390c-30 0 -64 -16 -84 -89l-26 3c8 49 14 93 15 138h25c2 -6 11 -13 26 -13h248c11 0 17 -3 17 -11c0 -6 -8 -18 -17 -32l-230 -347h196c69 0 123 -51 123 -101c0 -53 -27 -87 -58 -111l-21 10c11 18 22 46 22 62c0 80 -76 101 -115 101h-203c-18 0 -34 0 -34 11
-c0 6 2 12 8 21l236 358h-128z" />
-    <glyph glyph-name="dieresistonos" unicode="&#x385;" horiz-adv-x="368" 
-d="M244 786c20 0 42 -15 42 -35c0 -5 -2 -13 -6 -18l-92 -122c-3 -4 -8 -8 -12 -8c-8 0 -14 6 -14 13c0 3 1 7 2 10l52 143c4 11 15 17 28 17zM50 575c0 26 21 48 47 48s47 -22 47 -48s-21 -47 -47 -47s-47 21 -47 47zM219 575c0 26 21 48 47 48s47 -22 47 -48
-s-21 -47 -47 -47s-47 21 -47 47z" />
-    <glyph glyph-name="Alphatonos" unicode="&#x386;" horiz-adv-x="695" 
-d="M263 283h177l-94 272h-6l-102.2 -258.7c-3.8 -10.3 3.2 -13.3 25.2 -13.3zM155 79c-15.6 -41.1 31.4 -45.4 69 -48c6 -6 6 -27 0 -33c-37 1 -87 2 -128 2c-30.3 0 -63 -1 -89 -2c-6 6 -6 27 0 33c43.5 3 74 9 100 71l227 536c13 0 40 11 55 20l206 -572
-c17.4 -48.2 51.2 -51.5 90 -55c6 -6 6 -27 0 -33c-35 1 -73 2 -114 2c-39 0 -94 -1 -131 -2c-6 6 -6 27 0 33c47.6 3.4 85.8 6.5 74 41l-58 169h-211c-24 0 -30 -4 -35 -17zM193 725c20 0 42 -15 42 -35c0 -5 -2 -13 -6 -18l-92 -122c-3 -4 -8 -8 -12 -8c-8 0 -14 6 -14 13
-c0 3 1 7 2 10l52 143c4 11 15 17 28 17z" />
-    <glyph glyph-name="anoteleia" unicode="&#x387;" horiz-adv-x="253" 
-d="M127 238c-35 0 -58 28 -58 57c0 31 26 59 58 59c29 0 58 -26 58 -59c0 -30 -25 -57 -58 -57z" />
-    <glyph glyph-name="uni03F3" unicode="&#x3f3;" horiz-adv-x="259" 
-d="M99 599c0 24 28 48 52 48c27 0 48 -28 48 -52c0 -21.1 -24 -48 -52 -48c-24 0 -48 26 -48 52zM113 317c0 57 -11 63 -65 68c-2 6 -4 22 -2 28c69 9 109 18 137 29c8 0 13 -3 13 -7c0 0 -4 -64 -4 -114v-211c0 -189 -28 -261 -75 -299c-37 -31 -89 -34 -110 -34
-c-19 0 -55 14 -55 43c0 18 21 38 32 38c22 0 34 -16 44 -26c7 -7 20 -11 31 -11c50 0 54 123 54 255v241z" />
-    <glyph glyph-name="uni0400" unicode="&#x400;" horiz-adv-x="557" 
-d="M238 818l121 -84c11 -8 15 -14 15 -21c0 -8 -7 -15 -15 -15s-22 3 -43 12l-154 63c18.3 17.7 41.8 33.4 76 45zM276 361c85 0 88 13 91 68c6 6 27 6 33 0c-1 -24 -2 -58 -2 -86c0 -34.3 1 -62 2 -88c-6 -6 -27 -6 -33 0c-3 45 -6 68 -91 68h-91v-221c0 -47 14 -63 56 -63
-h116c76 0 111 59 131 131c13.1 3.2 24.6 1 35 -5c-8 -51 -23 -117 -37 -167c0 0 -80 2 -128 2h-215c-33 0 -93 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c40 -1 98.5 -2 129 -2h255c24 0 32 1 49 4c3 0 4 -1 4 -3
-c2 -8 17 -104 22 -145c-9.79999 -4.70001 -20.6 -6.79999 -33 -5c-22 69 -38 109 -113 109h-75c-54 0 -66 -20 -66 -64v-180h91z" />
-    <glyph glyph-name="afii10023" unicode="&#x401;" horiz-adv-x="557" 
-d="M329 757c0 26 22 48 48 48s48 -22 48 -48s-22 -48 -48 -48s-48 22 -48 48zM140 757c0 26 22 48 48 48s48 -22 48 -48s-22 -48 -48 -48s-48 22 -48 48zM276 361c85 0 88 13 91 68c6 6 27 6 33 0c-1 -24 -2 -58 -2 -86c0 -34.3 1 -62 2 -88c-6 -6 -27 -6 -33 0
-c-3 45 -6 68 -91 68h-91v-221c0 -47 14 -63 56 -63h116c76 0 111 59 131 131c13.1 3.2 24.6 1 35 -5c-8 -51 -23 -117 -37 -167c0 0 -80 2 -128 2h-215c-33 0 -93 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c40 -1 98.5 -2 129 -2
-h255c24 0 32 1 49 4c3 0 4 -1 4 -3c2 -8 17 -104 22 -145c-9.79999 -4.70001 -20.6 -6.79999 -33 -5c-22 69 -38 109 -113 109h-75c-54 0 -66 -20 -66 -64v-180h91z" />
-    <glyph glyph-name="afii10052" unicode="&#x403;" horiz-adv-x="497" 
-d="M345 820c28.6 -13.3 49.3 -30.7 62 -52l-144 -58c-21 -9 -33 -12 -42 -12s-15 7 -15 15c0 7 2 12 15 21zM147 645h205s81 1 120 2c5.5 -33.8 10.9 -72.7 15 -157c-9.70001 -4.29999 -19.3 -5.20001 -29 -4c-21 69 -37 119 -112 119h-120c-24 0 -36 -10 -36 -34v-449
-c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-40 1 -91.2 2 -129 2s-91 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c50 -1 129 -2 129 -2z" />
-
-<!--
-In Times anders
--->
-    <glyph glyph-name="afii10058" unicode="&#x409;" horiz-adv-x="889" 
-d="M522 333v-231c0 -54 15 -71 69 -71c152 0 177 90 177 152c0 60 -30 150 -159 150h-87zM437 122v402c0 69 -9 90 -52 90h-75c-43 0 -49 -16 -49 -91c0 -164 -11 -355 -48 -447c-21 -52 -57 -88 -115 -88c-37 0 -92 14 -92 67c0 32 19 52 46 52c26 0 39 -15 45 -33
-c8 -23 19 -26 31 -26c21 0 39 25 51 66c19 62 38 182 38 385c0 110.5 -14.2 113.3 -78 115c-5.7 8.5 -6.2 23 0 33c0 0 38 -2 103 -2h237s81 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-150h100c213.7 0 235 -105 235 -179c0 -167 -147 -196 -268 -196
-c-36 0 -80 2 -109 2c-37.7 0 -91 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91z" />
-    <glyph glyph-name="afii10059" unicode="&#x40a;" horiz-adv-x="923" 
-d="M556 340v-218c0 -83 0 -91 55 -91c152 0 186 90 186 152c0 60 -30 157 -158 157h-83zM556 523v-141h56c245 0 275 -110 275 -199c0 -167 -157 -185 -278 -185c-36 0 -66 2 -95 2c-37.1 0 -85 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v218h-281v-218
-c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-44 1 -92.7 2 -129 2c-37.7 0 -86 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c38 -1 79 -2 129 -2c51 0 92 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-141h281v141
-c0 83 -17 88 -87 91c-6 6 -6 27 0 33c44 -1 91.7 -2 129 -2c38 0 89 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91z" />
-    <glyph glyph-name="afii10060" unicode="&#x40b;" horiz-adv-x="755" 
-d="M668 123c0 -84 11 -89 72 -92c6 -6 6 -27 0 -33c-33 1 -78.5 2 -114 2c-30.5 0 -83 -1 -115 -2c-6 6 -6 27 0 33c61 3 72 8 72 92v131c0 81 -36 119 -82 119c-29 0 -92 -17 -151 -73v-178c0 -83 17 -88 77 -91c6 -6 6 -27 0 -33c-30 1 -80.6 2 -119 2
-c-40.1 0 -91 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v385c0 61 -10 99 -47 99h-49c-66 0 -112 -26 -132 -106c-12 0 -24 1 -34 5c11 48 21 100 25 145c0 1 2 3 4 3c38 -3 156 -8 233 -8h86c79 0 210 5 244 8c1 0 3 -2 3 -3c1 -45 6 -96 13 -142c-9 -4 -23 -5 -34 -5
-c-17 77 -64 103 -139 103h-42c-36 0 -46 -38 -46 -102v-167c67 67 146 83 185 83c88.8 0 133 -55 133 -158v-139z" />
-    <glyph glyph-name="afii10145" unicode="&#x40f;" horiz-adv-x="700" 
-d="M148 0c-35.6 0 -84 -1 -129 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c44 -1 91.5 -2 130 -2c33.5 0 82 1 129 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-401c0 -74 8 -83 37 -83h246c30 0 36 15 36 83v401c0 83 -17 88 -87 91
-c-6 6 -6 27 0 33c47 -1 95.5 -2 129 -2c38.5 0 86 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-401c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-45 1 -93.4 2 -129 2h-106c-63 0 -69 -41 -77 -141h-38c-8 101 -17 141 -77 141h-107z" />
-    <glyph glyph-name="uni04DC" unicode="&#x4dc;" horiz-adv-x="889" 
-d="M298 751c0 26 21 48 47 48s47 -22 47 -48s-21 -47 -47 -47s-47 21 -47 47zM467 751c0 26 21 48 47 48s47 -22 47 -48s-21 -47 -47 -47s-47 21 -47 47zM487 122c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-45 1 -93.4 2 -129 2c-36.3 0 -85 -1 -130 -2c-6 6 -6 27 0 33
-c70 3 87 8 87 91v201.8c-102.4 -2.5 -120.5 -36.7 -158 -132.8c-43 -110 -80 -191 -158 -192l-79 -1c-5.5 10.2 -5.8 23.2 0 33c65.8 2.9 101.4 50.9 160 203c27 70 65 113 134 113v5c-76 28 -99 114 -108 176c-4.2 29.1 -10 62 -40 62c-13 0 -21 -5 -32 -16
-c-10 -10 -24 -15 -37 -15c-21 0 -44 11 -44 40c0 23 18 52 71 52c79 0 109 -56 119 -118c9 -56 23 -120 82 -152c21.2 -12.3 57.1 -14.5 90 -14.9v156.9c0 83 -17 88 -87 91c-6 6 -6 27 0 33c47 -1 95.5 -2 129 -2c38.5 0 86 1 130 2c6 -6 6 -27 0 -33
-c-70 -3 -87 -8 -87 -91v-156.9c32.9 0.399994 68.8 2.60001 90 14.9c59 32 73 96 82 152c10 62 40 118 119 118c53 0 71 -29 71 -52c0 -29 -23 -40 -44 -40c-13 0 -27 5 -37 15c-11 11 -19 16 -32 16c-30 0 -35.8 -32.9 -40 -62c-9 -62 -32 -148 -108 -176v-5
-c69 0 107 -43 134 -113c58.6 -152.1 94.2 -200.1 160 -203c5.79999 -9.8 5.5 -22.8 0 -33l-79 1c-78 1 -115 82 -158 192c-37.5 96.1 -55.6 130.3 -158 132.8v-201.8z" />
-    <glyph glyph-name="uni04DD" unicode="&#x4dd;" horiz-adv-x="706" 
-d="M109 0c0 0 -74 -1 -94 -2c-6 6 -6 27 0 33c39 2 49 10 66 42l45 85c25 47 58 71 115 71v3c-39 11 -56 46 -71 86c-12 31 -24 50 -45 50c-9 0 -17 -3 -23 -7s-17 -7 -30 -7c-22 0 -40 19 -40 39c0 22 24 45 57 45c58 0 85 -54 104 -101c22 -55 52 -93 123 -93v63
-c0 83 -12 87 -63 91c-6 6 -6 27 0 33c23 -1 59.6 -2 99 -2c39.8 0 76 1 100 2c6 -6 6 -27 0 -33c-51 -5 -63 -8 -63 -91v-63c71 0 101 38 123 93c19 47 46 101 104 101c33 0 57 -23 57 -45c0 -20 -18 -39 -40 -39c-13 0 -24 3 -30 7s-14 7 -23 7c-21 0 -33 -19 -45 -50
-c-15 -40 -32 -75 -71 -86v-3c57 0 90 -24 115 -71l45 -85c17 -32 27 -40 66 -42c6 -6 6 -27 0 -33c-20 1 -94 2 -94 2c-20 1 -37 24 -50 51l-43 90c-18 37 -46 64 -114 68v-87c0 -83 12 -87 63 -91c6 -6 6 -27 0 -33c-22 1 -59.6 2 -99 2c-39.8 0 -77 -1 -100 -2
-c-6 6 -6 27 0 33c51 5 63 8 63 91v87c-68 -4 -96 -31 -114 -68l-43 -90c-13 -27 -30 -50 -50 -51zM199 574c0 26 21 48 47 48s47 -22 47 -48s-21 -47 -47 -47s-47 21 -47 47zM368 574c0 26 21 48 47 48s47 -22 47 -48s-21 -47 -47 -47s-47 21 -47 47z" />
-    <glyph glyph-name="uni04DE" unicode="&#x4de;" horiz-adv-x="558" 
-d="M44 115c0 24 13 40 33 40c28 0 43 -26 56 -52c25 -47 66 -77 144 -77c99 0 148 64 148 155c0 73 -44.5 147 -158 147c-33 0 -42 -6 -69 -6c-12 0 -29 5 -29 25s17 24 29 24c27 0 43 -6 70 -6c89.5 0 133 69 133 138c0 70 -29 121 -115 121c-114 0 -161 -73 -187 -161
-c-11.7 -2.29999 -22 -1.29999 -31 3c5.6 52.9 12.6 105.8 24 160c72 10.5 127 32 202 32c139 0 195 -66 195 -148c0 -84 -61 -133 -131 -153v-5c98.5 -7.79999 160 -82 160 -167c0 -131 -113 -195 -240 -195c-100 0 -158 22 -188 49c-27 24 -46 43 -46 76zM135 756
-c0 26 21 48 47 48s47 -22 47 -48s-21 -47 -47 -47s-47 21 -47 47zM304 756c0 26 21 48 47 48s47 -22 47 -48s-21 -47 -47 -47s-47 21 -47 47z" />
-    <glyph glyph-name="uni04DF" unicode="&#x4df;" horiz-adv-x="436" 
-d="M43 83c0 16 23 31 41 31c26 0 36.6 -13.6 45 -32c16.5 -36 27 -57 84 -57c70.5 0 93 32 93 91c0 44 -14 95 -88 95c-25 0 -36 -6 -55 -6c-9 0 -20 5 -20 21s10 22 19 22c19 0 36 -6 55 -6c64 0 71 47.5 71 89c0 40 -18 73 -73 73c-84 0 -109 -58 -128 -116
-c-9.4 -1.5 -18.9 0.399994 -27 4l13 119c54 9 100.5 28 154 28c101 0 141 -44 141 -102c0 -52 -16.5 -80 -77 -103v-3c70.5 -12 101 -52 101 -112c0 -99 -78 -129 -178 -129c-79 0 -112 21 -137 39c-21 16 -34 32 -34 54zM70 573c0 26 21 48 47 48s47 -22 47 -48
-s-21 -47 -47 -47s-47 21 -47 47zM239 573c0 26 21 48 47 48s47 -22 47 -48s-21 -47 -47 -47s-47 21 -47 47z" />
-    <glyph glyph-name="uni04E2" unicode="&#x4e2;" horiz-adv-x="710" 
-d="M598 122c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-45 1 -93.4 2 -129 2c-36.3 0 -85 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v356c-7.5 -2.5 -12.6 -7 -17.5 -13l-273.1 -340c-11.7 -14.9 -21.7 -23 -28.6 -46.7c7.09999 -41.3 29.4 -45 84.2 -47.3c6 -6 6 -27 0 -33
-c-45 1 -93.4 2 -129 2c-36.3 0 -85 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c47 -1 95.5 -2 129 -2c38.5 0 86 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-356c4.60001 0.300003 10.4 3.7 17.7 11l274.8 342
-c11.3 14.2 20.6 32.3 26.4 48.5c-7.39999 39.6 -29.9 43.2 -83.9 45.5c-6 6 -6 27 0 33c47 -1 95.5 -2 129 -2c38.5 0 86 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-401zM457 713h-224c-9 0 -13 11 -13 18c0 12 11 32 22 32h225c10 0 14 -11 14 -17
-c0 -12 -11 -33 -24 -33z" />
-    <glyph glyph-name="uni04E3" unicode="&#x4e3;" horiz-adv-x="586" 
-d="M198 63l156.1 311.5c9 17.9 18.1 38 25.9 56.5c10 -1 37.8 -2 60 -2c30.8 0 71 1 111 2c6 -6 6 -27 0 -33c-61 -3 -77 -12 -77 -95v-177c0 -83 16 -92 77 -95c6 -6 6 -27 0 -33c-39 1 -80.2 2 -111 2c-39.8 0 -94 -1 -117 -2c-6 6 -6 27 0 33c51 3 72 12 72 95v227
-c0 10 -4 12 -7 12l-156.4 -312.8c-10.3 -20.5 -19.6 -40.4 -24.6 -54.2c-11 1 -38.4 2 -61 2c-32 0 -72 -1 -111 -2c-6 6 -6 27 0 33c61 3 77 12 77 95v177c0 83 -16 92 -77 95c-6 6 -6 27 0 33c38 -1 78.4 -2 111 -2c37 0 94 1 117 2c6 -6 6 -27 0 -33
-c-51 -3 -72 -12 -72 -95v-228c0 -10 4 -12 7 -12zM398 518h-224c-9 0 -13 11 -13 18c0 12 11 32 22 32h225c10 0 14 -11 14 -17c0 -12 -11 -33 -24 -33z" />
-    <glyph glyph-name="uni04E4" unicode="&#x4e4;" horiz-adv-x="710" 
-d="M395 760c0 26 22 48 48 48s48 -22 48 -48s-22 -48 -48 -48s-48 22 -48 48zM206 760c0 26 22 48 48 48s48 -22 48 -48s-22 -48 -48 -48s-48 22 -48 48zM598 122c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-45 1 -93.4 2 -129 2c-36.3 0 -85 -1 -130 -2c-6 6 -6 27 0 33
-c70 3 87 8 87 91v356c-7.5 -2.5 -12.6 -7 -17.5 -13l-273.1 -340c-11.7 -14.9 -21.7 -23 -28.6 -46.7c7.09999 -41.3 29.4 -45 84.2 -47.3c6 -6 6 -27 0 -33c-45 1 -93.4 2 -129 2c-36.3 0 -85 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91
-c-6 6 -6 27 0 33c47 -1 95.5 -2 129 -2c38.5 0 86 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-356c4.60001 0.300003 10.4 3.7 17.7 11l274.8 342c11.3 14.2 20.6 32.3 26.4 48.5c-7.39999 39.6 -29.9 43.2 -83.9 45.5c-6 6 -6 27 0 33c47 -1 95.5 -2 129 -2
-c38.5 0 86 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-401z" />
-    <glyph glyph-name="uni04E5" unicode="&#x4e5;" horiz-adv-x="586" 
-d="M198 63l156.1 311.5c9 17.9 18.1 38 25.9 56.5c10 -1 37.8 -2 60 -2c30.8 0 71 1 111 2c6 -6 6 -27 0 -33c-61 -3 -77 -12 -77 -95v-177c0 -83 16 -92 77 -95c6 -6 6 -27 0 -33c-39 1 -80.2 2 -111 2c-39.8 0 -94 -1 -117 -2c-6 6 -6 27 0 33c51 3 72 12 72 95v227
-c0 10 -4 12 -7 12l-156.4 -312.8c-10.3 -20.5 -19.6 -40.4 -24.6 -54.2c-11 1 -38.4 2 -61 2c-32 0 -72 -1 -111 -2c-6 6 -6 27 0 33c61 3 77 12 77 95v177c0 83 -16 92 -77 95c-6 6 -6 27 0 33c38 -1 78.4 -2 111 -2c37 0 94 1 117 2c6 -6 6 -27 0 -33
-c-51 -3 -72 -12 -72 -95v-228c0 -10 4 -12 7 -12zM166 574c0 26 21 48 47 48s47 -22 47 -48s-21 -47 -47 -47s-47 21 -47 47zM335 574c0 26 21 48 47 48s47 -22 47 -48s-21 -47 -47 -47s-47 21 -47 47z" />
-    <glyph glyph-name="uni04EC" unicode="&#x4ec;" horiz-adv-x="622" 
-d="M327 759c0 26 22 48 48 48s48 -22 48 -48s-22 -48 -48 -48s-48 22 -48 48zM138 759c0 26 22 48 48 48s48 -22 48 -48s-22 -48 -48 -48s-48 22 -48 48zM271 -10c-97 0 -225 60 -225 134c0 20 9 39 34 39c29 0 44 -27 57 -64c14 -40 54 -74 130 -74c148 0 220 118 230 276
-c-33 15 -62 22 -100 22c-58 0 -87 -32 -154 -32c-59 0 -122 29 -122 54c0 8 5 12 9 12c8 0 24 -16 62 -16c59 0 102 38 165 38c13 0 79 -12 140 -46l1 1c0 213 -115 287 -194 287c-138 0 -195 -81 -221 -167l-30 4c10 52 18 101 22 155c57 3 97 45 224 45
-c166 0 286 -124 286 -333c0 -185 -99 -335 -314 -335z" />
-    <glyph glyph-name="uni04ED" unicode="&#x4ed;" horiz-adv-x="454" 
-d="M47 82c0 16 14 29 33 29c18 0 32 -5 47 -37c13 -27 37 -49 79 -49c89 0 126 57 126 176c-13 5 -26 9 -40 9c-19.2 0 -33.6 -4 -48.5 -10.3c-15.8 -6.59999 -33.1 -11.7 -57.5 -11.7c-45 0 -94 18 -94 32c0 4 2 14 8 14c7 0 20 -6 34 -6c17.7 0 33.9 5.60001 50.2 13.1
-c18.2 8.29999 37.3 14.9 60.8 14.9c31 0 59 -12 86 -28l3 2c0 92 -41.5 174 -125 174c-78 0 -111 -44 -129 -108c-10.2 -1.60001 -17.7 -0.700012 -26 4c1.7 40.7 3.7 81.7 9 120c52 4 104 19 154 19c145.5 0 201 -97 201 -218c0 -161 -96 -231 -200 -231
-c-96 0 -171 39 -171 92zM83 573c0 26 21 48 47 48s47 -22 47 -48s-21 -47 -47 -47s-47 21 -47 47zM252 573c0 26 21 48 47 48s47 -22 47 -48s-21 -47 -47 -47s-47 21 -47 47z" />
-    <glyph glyph-name="uni04EE" unicode="&#x4ee;" horiz-adv-x="590" 
-d="M104.5 523c-32.5 71 -42.5 86 -99.5 91c-6 6 -7 27 -1 33c34 -1 72 -2 104 -2c35.2 0 84 1 121 2c6 -6 6 -27 0 -33c-68 -7 -67 -23 -40.6 -80l138.6 -305h2l109 299c20 56 23 81 -51 86c-6 6 -6 27 0 33c37 -1 86 -2 109 -2s58 1 88 2c6 -6 6 -27 0 -33
-c-66 -8 -82 -45 -100.3 -93l-141.7 -360c-43 -109 -98 -183 -188 -183c-42 0 -90 23 -90 55c0 28 19 48 49 48c14 0 36 -7 46 -19c7 -9 22 -22 36 -22c32 0 57 21 88 96zM414 713h-224c-9 0 -13 11 -13 18c0 12 11 32 22 32h225c10 0 14 -11 14 -17c0 -12 -11 -33 -24 -33z
-" />
-    <glyph glyph-name="uni04F0" unicode="&#x4f0;" horiz-adv-x="590" 
-d="M362 760c0 26 22 48 48 48s48 -22 48 -48s-22 -48 -48 -48s-48 22 -48 48zM173 760c0 26 22 48 48 48s48 -22 48 -48s-22 -48 -48 -48s-48 22 -48 48zM104.5 523c-32.5 71 -42.5 86 -99.5 91c-6 6 -7 27 -1 33c34 -1 72 -2 104 -2c35.2 0 84 1 121 2c6 -6 6 -27 0 -33
-c-68 -7 -67 -23 -40.6 -80l138.6 -305h2l109 299c20 56 23 81 -51 86c-6 6 -6 27 0 33c37 -1 86 -2 109 -2s58 1 88 2c6 -6 6 -27 0 -33c-66 -8 -82 -45 -100.3 -93l-141.7 -360c-43 -109 -98 -183 -188 -183c-42 0 -90 23 -90 55c0 28 19 48 49 48c14 0 36 -7 46 -19
-c7 -9 22 -22 36 -22c32 0 57 21 88 96z" />
-    <glyph glyph-name="uni04F2" unicode="&#x4f2;" horiz-adv-x="590" 
-d="M471 795c0 -9 -3 -16 -7 -20l-99 -84c-2 -2 -5 -3 -8 -3c-5 0 -13 5 -13 13c0 3 1.20001 6.40002 3.70001 11l59.3 109c5 8 12 12 23 12c29 0 41 -21.8 41 -38zM340 800c0 -8 -2 -15 -7 -19l-88 -80.5c-4.39999 -4 -8.39999 -7.5 -14 -7.5c-7 0 -13 5 -13 12
-c0 2 0.600006 7.20001 2.5 11l54.5 110c5 8 12 12 27 12c15.7 0 38 -14.7 38 -38zM104.5 523c-32.5 71 -42.5 86 -99.5 91c-6 6 -7 27 -1 33c34 -1 72 -2 104 -2c35.2 0 84 1 121 2c6 -6 6 -27 0 -33c-68 -7 -67 -23 -40.6 -80l138.6 -305h2l109 299c20 56 23 81 -51 86
-c-6 6 -6 27 0 33c37 -1 86 -2 109 -2s58 1 88 2c6 -6 6 -27 0 -33c-66 -8 -82 -45 -100.3 -93l-141.7 -360c-43 -109 -98 -183 -188 -183c-42 0 -90 23 -90 55c0 28 19 48 49 48c14 0 36 -7 46 -19c7 -9 22 -22 36 -22c32 0 57 21 88 96z" />
-    <glyph glyph-name="uni04F4" unicode="&#x4f4;" horiz-adv-x="650" 
-d="M378 760c0 26 22 48 48 48s48 -22 48 -48s-22 -48 -48 -48s-48 22 -48 48zM189 760c0 26 22 48 48 48s48 -22 48 -48s-22 -48 -48 -48s-48 22 -48 48zM102 523c0 83 -17 88 -87 91c-6 6 -6 27 0 33c40 -1 93 -2 129 -2c36.3 0 91 1 130 2c6 -6 6 -27 0 -33
-c-70 -3 -87 -8 -87 -91v-106c0 -82 40 -109 112 -109c28.5 0 91 3.89999 154 45v170c0 83 -17 88 -87 91c-6 6 -6 27 0 33c38 -1 93.3 -2 129 -2c36.7 0 92 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-401c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33
-c-39 1 -92.9 2 -129 2c-35.7 0 -91 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v192.9c-71.9 -49.4 -138.8 -64.9 -196 -64.9c-114 0 -155 79 -155 178v95z" />
-    <glyph glyph-name="uni04F5" unicode="&#x4f5;" horiz-adv-x="539" 
-d="M162 307v-17c0 -78 3 -112 68 -112c52 0 88 27 122 57v72c0 83 -11 87 -62 91c-6 6 -6 27 0 33c23 -1 63 -2 102 -2c44 0 78 1 112 2c6 -6 6 -27 0 -33c-61 -5 -72 -8 -72 -91v-185c0 -83 11 -87 72 -91c6 -6 6 -27 0 -33c-32 1 -69 2 -112 2c-44 0 -79 -1 -112 -2
-c-6 6 -6 27 0 33c61 5 72 8 72 91v77c-41 -30 -91 -66 -154 -66c-93 0 -114 37 -114 131v43c0 83 -11 87 -72 91c-6 6 -6 27 0 33c33 -1 67 -2 110 -2c40 0 78 1 102 2c6 -6 6 -27 0 -33c-51 -5 -62 -8 -62 -91zM118.5 573c0 26 21 48 47 48s47 -22 47 -48s-21 -47 -47 -47
-s-47 21 -47 47zM287.5 573c0 26 21 48 47 48s47 -22 47 -48s-21 -47 -47 -47s-47 21 -47 47z" />
-    <glyph glyph-name="uni04F8" unicode="&#x4f8;" horiz-adv-x="798" 
-d="M442 759c0 26 22 48 48 48s48 -22 48 -48s-22 -48 -48 -48s-48 22 -48 48zM253 759c0 26 22 48 48 48s48 -22 48 -48s-22 -48 -48 -48s-48 22 -48 48zM693 123c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-45 1 -93.4 2 -129 2c-36.3 0 -85 -1 -130 -2c-6 6 -6 27 0 33
-c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c47 -1 95.5 -2 129 -2c38.5 0 86 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-401zM267 31c132 0 163 79 163 162c0 104.7 -51.7 152.9 -180.3 152.9c-18.3 0 -38.2 -1 -59.7 -2.89999v-245
-c0 -33 9 -67 77 -67zM105 122v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c40 -1 93.7 -2 129 -2c38.3 0 91 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-140c29.7 2.5 57.1 3.79999 82.3 3.79999c183.3 0 250.7 -66.7 250.7 -193.8c0 -125.5 -86.5 -195 -258 -195
-c-36 0 -88 2 -117 2c-37.7 0 -91 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91z" />
-    <glyph glyph-name="uni04F9" unicode="&#x4f9;" horiz-adv-x="724" 
-d="M617 307v-185c0 -83 11 -87 72 -91c6 -6 6 -27 0 -33c-32 1 -68 2 -111 2c-44 0 -79 -1 -112 -2c-6 6 -6 27 0 33c61 5 72 8 72 91v185c0 83 -11 87 -72 91c-6 6 -6 27 0 33c33 -1 68 -2 111 -2c44 0 78 1 112 2c6 -6 6 -27 0 -33c-61 -5 -72 -8 -72 -91zM355 126
-c0 53 -23 98 -98 98h-71v-148c0 -35 17 -45 66 -45c53 0 103 13 103 95zM186 306v-49h72c101 0 183 -27 183 -121c0 -107 -67 -138 -190 -138c-40.6 0 -63.4 2 -104 2c-43.7 0 -79 -1 -112 -2c-6 6 -6 27 0 33c61 5 72 8 72 91v185c0 83 -11 87 -72 91c-6 6 -6 27 0 33
-c33 -1 67.7 -2 111 -2c43.7 0 78 1 112 2c6 -6 6 -27 0 -33c-61 -5 -72 -8 -72 -92zM232 573c0 26 21 48 47 48s47 -22 47 -48s-21 -47 -47 -47s-47 21 -47 47zM401 573c0 26 21 48 47 48s47 -22 47 -48s-21 -47 -47 -47s-47 21 -47 47z" />
-    <glyph glyph-name="element" unicode="&#x2208;" horiz-adv-x="506" 
-d="M462 0h-150c-159 0 -283 132 -283 286c0 155 126 286 283 286h150v-57h-155c-116 0 -195 -93 -208 -201h354v-56h-354c15 -114 104 -201 208 -201h155v-57z" />
-    <glyph glyph-name="notelement" unicode="&#x2209;" horiz-adv-x="506" 
-d="M462 0h-150c-25.3 0 -49.7 3.4 -72.8 9.6l-32.2 -89.6l-37 12l32.5 90.2c-102.9 43.9 -173.5 147.6 -173.5 263.8c0 155 126 286 283 286h88.6l27.4 76l37 -11l-23.4 -65h20.4v-57h-40.9l-72.3 -201h104.2v-56h-124.4l-70 -194.6c15.6 -4.2 31.8 -6.4 48.4 -6.4h155v-57z
-M222.3 77.2l65.2 180.8h-188.5c10.7 -81.2 58.9 -148.7 123.3 -180.8zM307.6 314l72.5 201h-73.1c-116 0 -195 -93 -208 -201h208.6z" />
-    <glyph glyph-name="uni220A" unicode="&#x220a;" horiz-adv-x="375" 
-d="M234 60c-131 0 -205 58 -205 186c0 111 57 186 205 186h98v-55h-98c-120 -1 -142 -51 -153 -104h251v-54h-251c11 -48 27 -105 153 -105h98v-54h-98z" />
-    <glyph glyph-name="radical" unicode="&#x221a;" horiz-adv-x="565" 
-d="M488 733l-180 -733l-38 -20l-140 241l-64 -26l-13 28c37 19 79 45 113 71l122 -211l165 684v5h113v-39h-78z" />
-    <glyph glyph-name="uni2214" unicode="&#x2214;" horiz-adv-x="550" 
-d="M226 525c0 27 22 49 49 49c24 0 48 -21 48 -49c0 -26 -20 -48 -48 -48c-30 0 -49 22 -49 48zM250 401c0 13 23 27 33 27c8 0 17 -4 17 -14v-172h176c10 0 14 -9 14 -17c0 -10 -14 -33 -27 -33h-163v-160c0 -12 -19 -25 -34 -25c-8 0 -16 6 -16 15v170h-175
-c-9 0 -15 8 -15 16c0 15 13 34 25 34h165v159z" />
-
-<!--
-Solte Semikolon sein?
--->
-    <glyph glyph-name="uni037E" unicode="&#x37e;" horiz-adv-x="236" 
-d="M70 355c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53zM123 95c40 0 66 -39 66 -99c0 -70 -58 -118 -118 -129c-7 7 -9 14 -9 24c52 13 88 59 88 80c0 23 -17 29 -36 31c-18 3 -44 12.5 -44 44c0 28 22 49 53 49z" />
-    <glyph glyph-name="uni0374" unicode="&#x374;" horiz-adv-x="222" 
-d="M162 768c20 0 40 -15 40 -35c0 -15 -5.3 -28 -14 -40l-112 -155c-11 2 -17 5 -24 13l58 161c8.6 23.8 20 56 52 56z" />
-    <glyph glyph-name="uni0375" unicode="&#x375;" horiz-adv-x="192" 
-d="M64 -131c-20 0 -40 15 -40 35c0 15 5 28 14 40l112 155c11 -2 17 -5 24 -13l-58 -161c-9 -24 -20 -56 -52 -56z" />
-    <glyph glyph-name="Epsilontonos" unicode="&#x388;" horiz-adv-x="657" 
-d="M45 725c20 0 42 -15 42 -35c0 -5 -2 -13 -6 -18l-92 -122c-3 -4 -8 -8 -12 -8c-8 0 -14 6 -14 13c0 3 1 7 2 10l52 143c4 11 15 17 28 17zM369 361c85 0 88 13 91 68c6 6 27 6 33 0c-1 -24 -2 -58 -2 -86c0 -34.3 1 -62 2 -88c-6 -6 -27 -6 -33 0c-3 45 -6 68 -91 68h-91
-v-221c0 -47 14 -63 56 -63h116c76 0 111 59 131 131c13.1 3.2 24.6 1 35 -5c-8 -51 -23 -117 -37 -167c0 0 -80 2 -128 2h-215c-33 0 -93 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c40 -1 98.5 -2 129 -2h255c24 0 32 1 49 4
-c3 0 4 -1 4 -3c2 -8 17 -104 22 -145c-9.79999 -4.70001 -20.6 -6.79999 -33 -5c-22 69 -38 109 -113 109h-75c-54 0 -66 -20 -66 -64v-180h91z" />
-    <glyph glyph-name="Etatonos" unicode="&#x389;" horiz-adv-x="795" 
-d="M58 725c20 0 42 -15 42 -35c0 -5 -2 -13 -6 -18l-92 -122c-3 -4 -8 -8 -12 -8c-8 0 -14 6 -14 13c0 3 1 7 2 10l52 143c4 11 15 17 28 17zM713 122c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-44 1 -91.7 2 -129 2c-37.1 0 -85 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91
-v199h-342v-199c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-44 1 -92.7 2 -129 2c-37.7 0 -86 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c38 -1 79 -2 129 -2c51 0 92 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-160h342v160
-c0 83 -17 88 -87 91c-6 6 -6 27 0 33c44 -1 91.7 -2 129 -2c38 0 89 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-401z" />
-    <glyph glyph-name="hyphentwo" unicode="&#x2010;" horiz-adv-x="338" 
-d="M271 223h-216c-9 0 -15 9 -15 19c0 18 13 41 25 41h219c10 0 14 -10 14 -20c0 -12 -14 -40 -27 -40z" />
-    <glyph glyph-name="hyphennobreak" unicode="&#x2011;" horiz-adv-x="338" 
-d="M271 223h-216c-9 0 -15 9 -15 19c0 18 13 41 25 41h219c10 0 14 -10 14 -20c0 -12 -14 -40 -27 -40z" />
-    <glyph glyph-name="figuredash" unicode="&#x2012;" horiz-adv-x="438" 
-d="M378 287h-330c-9 0 -15 6 -15 15c0 16 13 33 25 33h332c11 0 14 -6 14 -15c0 -12 -13 -33 -26 -33z" />
-    <glyph glyph-name="Yen.fitted" unicode="&#xe01b;" horiz-adv-x="536" 
-d="M307 122c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-50 1 -78.1 2 -128 2c-50.7 0 -81 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v12h-142c-4 0 -5 2 -5 7v13c0 8 5 21 24 21h123v67h-142c-4 0 -5 1 -5 6v15c0 8 5 21 24 21h121.4l-9.39999 17l-133 208
-c-22.9 36.5 -40 61 -66 61c-3 0 -11 2 -11 8v23l1 2c12 -2 81 -3 95 -3c6 0 75 1 90 3l2 -2v-22c0 -4 -2 -9 -7 -9h-14c-17 0 -24 -5 -24 -16c0 -8 3.8 -21.1 10 -31l132 -207l126 207c7.60001 12.8 12 24 12 32c0 10 -8 16 -28 16h-14c-5 0 -6 4 -6 7v23l2 2
-c8 -1 67 -3 81 -3c8 0 49 1 70 3l1 -2v-22c0 -4 1 -8 -9 -8c-37 0 -47.6 -19.4 -71 -60l-132.9 -227h128.9c5 0 8 -2 8 -6v-22c0 -10 -14 -14 -25 -14h-123v-67h140c5 0 8 -2 8 -6v-21c0 -10 -14 -14 -25 -14h-123v-12z" />
-    <glyph glyph-name="a.alt" unicode="&#xe01d;" horiz-adv-x="451" 
-d="M291 233l-79 -21c-74 -19 -97 -60 -97 -105c0 -31 24 -76 74 -76c28 0 62 22 88 43c8 6 14 13 14 26v133zM355 -10c-38 0 -60 33 -64 58h-2l-20 -16c-44 -34 -63 -42 -109 -42c-70 0 -124 38 -124 113c0 68 67 116 163 140l86 21c3 1 6 5 6 12c0 113 -47 133 -81 133
-c-38 0 -83 -14 -83 -45c0 -11 1 -17 2 -20c2 -4 3 -11 3 -18c0 -13 -15 -33 -44 -33c-23 0 -35 11 -35 35c0 54 83 111 165 111c73 0 147 -27 147 -169v-145c0 -61 1 -87 24 -87c22 0 28 28 29 50l25 -5c-6 -73 -37 -93 -88 -93z" />
-    <glyph glyph-name="pertenthousand" unicode="&#x2031;" horiz-adv-x="1201" 
-d="M1134 164c0 -64 -44 -176 -128 -176c-54 0 -90 46 -90 108c0 76 56 160 131 160c39 0 87 -18 87 -92zM1011 17c57 0 93 94 93 146c0 47 -27 62 -45 62c-45 0 -92 -78 -92 -142c0 -40 17 -66 44 -66zM872 164c0 -64 -44 -176 -128 -176c-54 0 -90 46 -90 108
-c0 76 56 160 132 160c38 0 86 -18 86 -92zM749 17c58 0 93 94 93 146c0 47 -27 62 -45 62c-45 0 -92 -78 -92 -142c0 -40 18 -66 44 -66zM433 83c0 -52 25 -64 44 -64c55 0 88 89 88 145c0 52 -28 61 -42 61c-49 0 -90 -84 -90 -142zM378 98c0 82 60 158 134 158
-c40 0 86 -18 86 -91c0 -67 -44 -177 -127 -177c-61 0 -93 57 -93 110zM364 521c42 0 119 12 150 54l32 -16l-410 -571l-34 15l359 500c-38 -15 -77 -19 -107 -19c-23 0 -61 10 -80 21c2 -7 3 -16 3 -25c0 -64 -44 -177 -128 -177c-62 0 -92 58 -92 109
-c0 88.1 61 159 133 159c28 0 57 -13 67 -25c54 -25 89 -25 107 -25zM111 398c0 -52 26 -64 44 -64c55 0 89 87 89 145c0 50 -25 61 -43 61c-49 0 -90 -84 -90 -142z" />
-    <glyph glyph-name="minute" unicode="&#x2032;" horiz-adv-x="249" 
-d="M155 658c20 0 42 -15 42 -35c0 -5 -2 -13 -6 -18l-92 -122c-3 -4 -8 -8 -12 -8c-8 0 -14 6 -14 13c0 3 1 7 2 10l52 143c4 11 15 17 28 17z" />
-    <glyph glyph-name="second" unicode="&#x2033;" horiz-adv-x="381" 
-d="M287 658c20 0 42 -15 42 -35c0 -5 -2 -13 -6 -18l-92 -122c-3 -4 -8 -8 -12 -8c-8 0 -14 6 -14 13c0 3 1 7 2 10l52 143c4 11 15 17 28 17zM155 658c20 0 42 -15 42 -35c0 -5 -2 -13 -6 -18l-92 -122c-3 -4 -8 -8 -12 -8c-8 0 -14 6 -14 13c0 3 1 7 2 10l52 143
-c4 11 15 17 28 17z" />
-    <glyph glyph-name="perthousandzero" unicode="&#xe01f;" horiz-adv-x="271" 
-d="M66 83c0 -52 27 -66 45 -66c56 0 91 91 91 147c0 52 -31 61 -45 61c-49 0 -91 -84 -91 -142zM15 98c0 75 58 158 131 158c41 0 86 -18 86 -91c0 -67 -44 -177 -127 -177c-61 0 -90 57 -90 110z" />
-    <glyph glyph-name="zero.oldstyle" unicode="&#xe020;" horiz-adv-x="540" 
-d="M270 399c-93 0 -139 -78 -139 -180c0 -106 56 -189 139 -189c94 0 139 77 139 189c0 99 -43 180 -139 180zM270 439c153 0 226 -101 226 -220c0 -124 -84 -229 -226 -229s-226 111 -226 229c0 113 81 220 226 220z" />
-    <glyph glyph-name="one.oldstyle" unicode="&#xe021;" horiz-adv-x="338" 
-d="M152 122v190c0 52 -4 63 -20 63c-22 0 -48 -3 -77 -6c-7.1 8.89999 -10.7 19.4 -12 31c84 18 126 26 175 42c9 0 14 -2 14 -10c0 0 -3 -51 -3 -111v-199c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-50 1 -74 2 -122 2c-50 0 -80 -1 -129 -2c-6 6 -6 27 0 33c70 3 87 8 87 91
-z" />
-    <glyph glyph-name="uni2619" unicode="&#x2619;" horiz-adv-x="1106" 
-d="M830 123c0 80 -47 85 -56 109c-32.3 0 -39.3 -2 -52 -25c8 3 18 5 27 5c10 0 26 -2 26 -31c0 -33 -43 -54 -43 -95c0 -19 7.29999 -40.3 15 -59c11.7 3.3 48 14 76 61c5 10 7 22 7 35zM488 239c61 47 99 72 151 72c9 0 28 -2 45 -10c-8 10 -15 23 -15 39
-c0 47 22 90 37 117l-10 2c-43 0 -81 -16 -81 -79c0 -6 0 -11 1 -16c-29 19 -58 32 -74 32c-31 0 -50 -16 -55 -24c10 3 23 7 35 7c21 0 27 -10 27 -22c0 -23 -18 -29 -33 -29c-32 0 -79 -43 -79 -43c-17 -20 -41 -46 -54 -49c6.5 -6 20 -18 37 -31c38.9 -29.7 60 -39 95 -39
-c12 0 31 -6 31 -29c0 -13 -6 -21 -26 -21c-9 0 -18 1 -26 3c10 -8 19 -14 26 -14c29 0 81 33 97 49c-1 -4 -2 -10 -2 -15c0 -37.5 23.9 -119 95 -119c-10 17 -36 67 -36 120c0 16 6 27 13 37c-12 -5 -28 -9 -46 -9c-54 0 -92 27 -153 71zM771 298c0 -29 -16 -31 -28 -31
-c-7 0 -15 2 -22 4c15 -17.5 18.5 -18 53 -18c4.90002 13.5 52.8 42 52.8 99.7c0 60.4 -54.1 87.9 -84.8 97.3c-7 -19 -14 -39 -14 -58c0 -40 43 -61 43 -94zM200 241c16 -17 35 -28 53 -28c23 0 44 11 61 27c-19 14 -37 22 -58 22c-23 0 -41 -7 -56 -21zM521 -7
-c-16 -7 -57 -20 -92 -20c-87 0 -176.9 49.1 -217 87l-188 178l185 181c31.4 30.7 124 101 213 101c42 0 81 -13.5 103 -23c39 85 99 161 171 218c4 -42 49 -113 85 -134c24 -14.8 59.6 -30.6 89.3 -39.6c55.4 -16.8 124.7 -57.8 124.7 -144.4c0 -62.5 -38 -100 -56 -117
-c-7 -8 -19 -17 -37 -30h1l41 5l138 40v-35l-56 -21l57 -22v-36l-139 45l-40 6c43 -30 89 -81 89 -145c0 -111 -59 -133.7 -137 -163c-35.3 -13.3 -77 -37 -90 -50c-28 -28 -50 -62 -52 -116c-43 26 -86 54 -127 112c-16 23 -52 88 -66 123zM638 273c-39 0 -58 -14 -85 -34
-c26 -22 51 -34 87 -34c37 0 59 27 59 36c0 6 -22 32 -61 32zM690 500c-19 0 -27 15 -27 28c0 4 0.700012 7.29999 2 12l-26 -2c8.29999 13.7 22 30 50 30c27 0 65 -11 65 -64c0 -9 -1 -17 -4 -27c50 -12 82 -40 97 -60c13 12 41 25 49 25c22 0 35 -20 35 -47
-c0 -17 -13 -34 -35 -34c-18.1 0 -3.5 16 -34 16c1 -6 1 -11 1 -17c0 -62 -46 -104 -50 -107h20c82.8 33.9 128 85.6 128 142c0 46.8 -31 91 -98.3 117c-37.1 14.4 -89.7 36.5 -115.7 57c-28 23 -47 55.5 -64 92c-57 -47 -120 -150 -141 -205c-38 24 -68 29 -117 29
-c-52 0 -118.3 -17.7 -195 -94l-155 -154l159 -150c50.4 -47.6 122 -80 199 -80c67 0 65 17 102 28c9.70001 -40 41 -93.8 74 -147c13.7 -22 51 -60 85 -82c6 21 24 55 50 84c25.2 27.3 62.2 44.3 100.3 57.6c34.7 12.1 67.7 27 91.7 49.4c21 20 29 55 29 90
-c0 80 -80 124 -134 145h-22c53 -49 53 -99 53 -113v-11c1 1 4 2 7 2c2 0 6 -1 10 -1c13.7 0 8 17 24 17c23 0 35 -20 35 -34c0 -27 -13 -47 -35 -47c-9 0 -40 14 -52 27c-31.3 -54.3 -81.7 -72 -95 -76c1 -8 2 -16 2 -24c0 -35 -13 -68 -65 -68c-28 0 -40.3 15.3 -50 30
-l26 -2c-1 4 -1 9 -1 12c0 14 8 28 27 28c10 0 29 -6 29 -32v-6c6 8 10 18 10 27c0 11 -5 18 -9 29c-5.29999 -1 -7 -1 -11 -1c-54 0 -84.3 32.4 -90 39c-14 16 -29 49 -29 74v6c-25 -16 -52 -28 -82 -28c-16 0 -30 9 -41 21l-26 1
-c0.799988 -4.8 0.899994 -9.5 0.899994 -14.2c0 -14.2 -8.69998 -23.8 -21.9 -23.8c-7 0 -35 9 -35 37c0 25 20 28 43 28h16c-45.2 59.2 -69 91 -89 91c-6 0 -20 -3 -33 -6c-0.799988 -6.2 -1 -14 -1 -24c0 -20.5 0.600006 -21.9 8.5 -21.9c9.5 0 11.5 20.5 11.5 20.9
-c0 4 -0.799988 7 -2 11c4.79999 1.5 7.20001 2 12 2c5 0 23 -7 23 -25c0 -31 -45 -34 -45 -58c0 -10 3.5 -26.5 7 -41c-55.2 25.8 -58 80.2 -58 117c-12 -6 -18 -8 -35 -8c-37 0 -69 29 -95 54c25.2 26 49 49 93 49c11 0 25 -3 37 -6c0 42.2 0.5 84 57 114
-c-3.5 -13.5 -6 -28 -6 -37c0 -24 45 -28 45 -57c0 -21 -21 -27 -25 -27c-3 0 -7.20001 0.5 -11 1c1 5 1 8 1 12c0 19 -3 22 -10 22c-5 0 -9 -3 -9 -22c0 -12 0 -18 1 -24c13 -6 30 -13 36 -13c14 0 42 26 59 53c8 11 25.5 45.2 37 70h-22c-14 0 -25 0 -29 3
-c-7 4 -13 12 -13 24c0 29 24 36 35 36c10 0 22 -4 22 -22c0 -5 0 -9 -1 -15l28 1c14 12 35 21 54 21c18 0 43 -3 60 -13c4 23 20 73 99 73c9 0 19.3 -0.700012 28 -2c8 13 10 19 10 29c0 9 -3 19 -10 27v-7c0 -25 -18 -31 -29 -31z" />
-    <glyph glyph-name="uniE001" unicode="&#xe001;" horiz-adv-x="1157" 
-d="M440 -36c-128 0 -194 108 -198 172c-12 -2 -22 -2 -34 -2c-68 0 -153 22 -153 110c0 36 5 66 23 98c19 33 71 84 93 84c30 0 45 -41 45 -72c0 -36 -15 -38 -35 -38c-49 0 -77 -27 -77 -66c0 -63 60 -77 110 -77c10 0 19 1 27 3c0 157 108 237 147 262
-c42 26 112 44 179 44c50 0 117 -7 166 -14c30 -5 55 -7 66 -7c34 0 78 17 78 51c0 35 -21 51 -47 51c-12 0 -24 -3 -37 -8c21 52 60 82 100 82c60 0 105 -53 105 -102c0 -43 -25 -101 -102 -121c86 -35 138 -87 204 -164c-52 -20 -116 -35 -162 -35c-38 0 -78 6 -87 10
-c11 -24 16 -61 16 -89c0 -70 -68 -102 -100 -102c-40 0 -106 23 -106 116c0 11 2 23 7 38c23 -19 34 -43 64 -43c27 0 43 23 43 43c0 27 -25 64 -60 95c-33 29 -92 64 -182 64c-73 0 -121 -16 -141 -27c-33 -17 -88 -57 -95 -132c15 6 105 39 170 39c104 0 142 -72 142 -120
-c0 -101 -114 -143 -169 -143zM433 -1c76 0 135 49 135 97c0 58 -27 97 -116 97c-49 0 -105 -20 -154 -38c-1 -4 -1 -9 -1 -14c0 -30 8 -71 29 -93c27 -27 68 -49 107 -49z" />
-    <glyph glyph-name="uniE002" unicode="&#xe002;" horiz-adv-x="1157" 
-d="M746 518c123 0 196 -100 196 -199c0 -22 -3 -41 -9 -57c29 -10 134 -53 134 -133c0 -39 -32 -94 -73 -123c-27 -19 -80 -39 -108 -39c-24 0 -32 23 -32 42c0 28 16 70 37 70c15 0 30 -16 61 -16c43 0 65 41 65 69c0 56 -81 90 -100 94c-70 -149 -214 -177 -269 -177
-c-153 0 -294 125 -357 155c-14 6 -31 10 -47 10c-46 0 -52 -35 -52 -50c0 -31 30 -47 64 -48c-28 -27 -60 -40 -89 -40c-57 0 -97 53 -97 106c0 55 51 108 122 108c9 0 19 0 30 -3c-62 68 -88 137 -115 235c56 -4 120 -17 162 -37c34 -16 67 -38 75 -46c0 29 10 62 22 87
-c20 44 62 58 96 58c59 0 100 -49 100 -99c0 -17 -6 -57 -37 -89c-11 23 -17 70 -58 70c-12 0 -45 -7 -45 -55c0 -44 29 -156 158 -217c62 -28 109 -36 134 -36c34 0 107 12 147 80c-17 1 -111 9 -171 37c-66 31 -87 80 -87 121c0 68 55 122 143 122zM897 352
-c0 48 -52 131 -150 131c-85 0 -105 -60 -105 -94s21 -64 76 -90c45 -20 104 -26 156 -31c9 14 23 50 23 84z" />
-    <glyph glyph-name="uniE003" unicode="&#xe003;" horiz-adv-x="1157" 
-d="M714 -36c-54 0 -169 42 -169 143c0 48 38 120 143 120c64 0 154 -33 169 -39c-6 75 -62 115 -94 132c-21 11 -69 27 -142 27c-90 0 -149 -35 -182 -64c-35 -31 -60 -68 -60 -95c0 -20 17 -43 43 -43c30 0 41 24 64 43c5 -15 7 -27 7 -38c0 -93 -65 -116 -105 -116
-c-33 0 -101 32 -101 102c0 28 5 65 17 89c-10 -4 -50 -10 -87 -10c-47 0 -111 15 -162 35c65 77 117 129 203 164c-76 20 -102 78 -102 121c0 49 46 102 106 102c40 0 78 -30 99 -82c-12 5 -25 8 -37 8c-26 0 -47 -16 -47 -51c0 -34 44 -51 78 -51c12 0 36 2 66 7
-c50 7 117 14 166 14c68 0 138 -18 179 -44c40 -25 147 -105 147 -262c8 -2 18 -3 27 -3c50 0 110 14 110 77c0 39 -28 66 -76 66c-20 0 -36 2 -36 38c0 31 15 72 45 72c22 0 74 -51 93 -84c19 -32 24 -62 24 -98c0 -88 -86 -110 -154 -110c-11 0 -22 0 -34 2
-c-3 -64 -70 -172 -198 -172zM722 -1c39 0 80 22 106 49c21 22 29 63 29 93c0 5 0 10 -1 14c-48 18 -105 38 -154 38c-88 0 -116 -39 -116 -97c0 -48 59 -97 136 -97z" />
-    <glyph glyph-name="uni2767" unicode="&#x2767;" horiz-adv-x="1106" 
-d="M276 350c0 -80 47 -85 56 -109c32.3 0 39.3 2 52 25c-8 -3 -18 -5 -27 -5c-10 0 -26 2 -26 31c0 33 43 54 43 95c0 19 -7.29999 40.3 -15 59c-11.7 -3.29999 -48 -14 -76 -61c-5 -10 -7 -22 -7 -35zM618 234c-61 -47 -99 -72 -151 -72c-9 0 -28 2 -45 10
-c8 -10 15 -23 15 -39c0 -47 -22 -90 -37 -117l10 -2c43 0 81 16 81 79c0 6 0 11 -1 16c29 -19 58 -32 74 -32c31 0 50 16 55 24c-10 -3 -23 -7 -35 -7c-21 0 -27 10 -27 22c0 23 18 29 33 29c32 0 79 43 79 43c17 20 41 46 54 49c-6.5 6 -20 18 -37 31
-c-38.9 29.7 -60 39 -95 39c-12 0 -31 6 -31 29c0 13 6 21 26 21c9 0 18 -1 26 -3c-10 8 -19 14 -26 14c-29 0 -81 -33 -97 -49c1 4 2 10 2 15c0 37.5 -23.9 119 -95 119c10 -17 36 -67 36 -120c0 -16 -6 -27 -13 -37c12 5 28 9 46 9c54 0 92 -27 153 -71zM335 175
-c0 29 16 31 28 31c7 0 15 -2 22 -4c-15 17.5 -18.5 18 -53 18c-4.89999 -13.5 -52.8 -42 -52.8 -99.7c0 -60.4 54.1 -87.9 84.8 -97.3c7 19 14 39 14 58c0 40 -43 61 -43 94zM906 232c-16 17 -35 28 -53 28c-23 0 -44 -11 -61 -27c19 -14 37 -22 58 -22c23 0 41 7 56 21z
-M585 480c16 7 57 20 92 20c87 0 176.9 -49.1 217 -87l188 -178l-185 -181c-31.4 -30.7 -124 -101 -213 -101c-42 0 -81 13.5 -103 23c-39 -85 -99 -161 -171 -218c-4 42 -49 113 -85 134c-24 14.8 -59.6 30.6 -89.3 39.6c-55.4 16.8 -124.7 57.8 -124.7 144.4
-c0 62.5 38 100 56 117c7 8 19 17 37 30h-1l-41 -5l-138 -40v35l56 21l-57 22v36l139 -45l40 -6c-43 30 -89 81 -89 145c0 111 59 133.7 137 163c35.3 13.3 77 37 90 50c28 28 50 62 52 116c43 -26 86 -54 127 -112c16 -23 52 -88 66 -123zM468 200c39 0 58 14 85 34
-c-26 22 -51 34 -87 34c-37 0 -59 -27 -59 -36c0 -6 22 -32 61 -32zM416 -27c19 0 27 -15 27 -28c0 -4 -0.700012 -7.3 -2 -12l26 2c-8.29999 -13.7 -22 -30 -50 -30c-27 0 -65 11 -65 64c0 9 1 17 4 27c-50 12 -82 40 -97 60c-13 -12 -41 -25 -49 -25c-22 0 -35 20 -35 47
-c0 17 13 34 35 34c18.1 0 3.5 -16 34 -16c-1 6 -1 11 -1 17c0 62 46 104 50 107h-20c-82.8 -33.9 -128 -85.6 -128 -142c0 -46.8 31 -91 98.3 -117c37.1 -14.4 89.7 -36.5 115.7 -57c28 -23 47 -55.5 64 -92c57 47 120 150 141 205c38 -24 68 -29 117 -29
-c52 0 118.3 17.7 195 94l155 154l-159 150c-50.4 47.6 -122 80 -199 80c-67 0 -65 -17 -102 -28c-9.70001 40 -41 93.8 -74 147c-13.7 22 -51 60 -85 82c-6 -21 -24 -55 -50 -84c-25.2 -27.3 -62.2 -44.3 -100.3 -57.6c-34.7 -12.1 -67.7 -27 -91.7 -49.4
-c-21 -20 -29 -55 -29 -90c0 -80 80 -124 134 -145h22c-53 49 -53 99 -53 113v11c-1 -1 -4 -2 -7 -2c-2 0 -6 1 -10 1c-13.7 0 -8 -17 -24 -17c-23 0 -35 20 -35 34c0 27 13 47 35 47c9 0 40 -14 52 -27c31.3 54.3 81.7 72 95 76c-1 8 -2 16 -2 24c0 35 13 68 65 68
-c28 0 40.3 -15.3 50 -30l-26 2c1 -4 1 -9 1 -12c0 -14 -8 -28 -27 -28c-10 0 -29 6 -29 32v6c-6 -8 -10 -18 -10 -27c0 -11 5 -18 9 -29c5.29999 1 7 1 11 1c54 0 84.3 -32.4 90 -39c14 -16 29 -49 29 -74v-6c25 16 52 28 82 28c16 0 30 -9 41 -21l26 -1
-c-0.799988 4.79999 -0.900024 9.5 -0.900024 14.2c0 14.2 8.70001 23.8 21.9 23.8c7 0 35 -9 35 -37c0 -25 -20 -28 -43 -28h-16c45.2 -59.2 69 -91 89 -91c6 0 20 3 33 6c0.799988 6.20001 1 14 1 24c0 20.5 -0.599976 21.9 -8.5 21.9c-9.5 0 -11.5 -20.5 -11.5 -20.9
-c0 -4 0.799988 -7 2 -11c-4.79999 -1.5 -7.20001 -2 -12 -2c-5 0 -23 7 -23 25c0 31 45 34 45 58c0 10 -3.5 26.5 -7 41c55.2 -25.8 58 -80.2 58 -117c12 6 18 8 35 8c37 0 69 -29 95 -54c-25.2 -26 -49 -49 -93 -49c-11 0 -25 3 -37 6c0 -42.2 -0.5 -84 -57 -114
-c3.5 13.5 6 28 6 37c0 24 -45 28 -45 57c0 21 21 27 25 27c3 0 7.20001 -0.5 11 -1c-1 -5 -1 -8 -1 -12c0 -19 3 -22 10 -22c5 0 9 3 9 22c0 12 0 18 -1 24c-13 6 -30 13 -36 13c-14 0 -42 -26 -59 -53c-8 -11 -25.5 -45.2 -37 -70h22c14 0 25 0 29 -3c7 -4 13 -12 13 -24
-c0 -29 -24 -36 -35 -36c-10 0 -22 4 -22 22c0 5 0 9 1 15l-28 -1c-14 -12 -35 -21 -54 -21c-18 0 -43 3 -60 13c-4 -23 -20 -73 -99 -73c-9 0 -19.3 0.7 -28 2c-8 -13 -10 -19 -10 -29c0 -9 3 -19 10 -27v7c0 25 18 31 29 31z" />
-    <glyph glyph-name="uniE004" unicode="&#xe004;" horiz-adv-x="802" 
-d="M765 410v-40h-401v40h401zM717 268v-39h-626v39h626zM765 126v-39h-401v39h401z" />
-    <glyph glyph-name="uni26A2" unicode="&#x26a2;" horiz-adv-x="837" 
-d="M249 111c-126 18 -191 124 -191 219c0 119 93 220 222 220c53.4 0 98.5 -17 133.8 -44.1c36.6 27.6 83 44.1 135.2 44.1c137 0 220 -112 220 -220c0 -105 -75 -203 -192 -219l-3 -110h106v-46h-107l-3 -122h-47l-2 122h-107v46h106l-2 110
-c-41.6 5.9 -76.6 21.5 -104.8 43.1c-29.1 -22.1 -64.6 -37.6 -105.2 -43.1l-3 -110h106v-46h-107l-3 -122h-47l-2 122h-107v46h106zM279 500c-96 0 -171 -77 -171 -170s72 -172 171 -172c37.6 0 71.4 11.4 98.7 30.6c-33.6 41.1 -50.7 92.7 -50.7 141.4
-c0 52.6 18.1 101.6 49.5 140c-27.2 18.8 -60.6 30 -97.5 30zM449.2 188.7c27.4 -19.3 61.1 -30.7 98.8 -30.7c99 0 171 79 171 172c0 91 -73 170 -171 170c-36.6 0 -70 -11.1 -97.5 -30.1c32.1 -40 49.5 -90.4 49.5 -139.9c0 -51.8 -18.3 -101.9 -50.8 -141.3zM413.5 435.2
-c-22.9 -29.1 -36.5 -65.7 -36.5 -105.2c0 -40.1 13.4 -77.5 36.5 -107.2c23.1 29.7 36.5 67.1 36.5 107.2c0 39 -13.4 75.9 -36.5 105.2z" />
-    <glyph glyph-name="uni26A3" unicode="&#x26a3;" horiz-adv-x="924" 
-d="M720 53c0 -119 -102 -217 -223 -217c-94.1 0 -175.2 58.4 -205.9 142.4c-4.70001 -0.299999 -9.39999 -0.4 -14.1 -0.4c-120 0 -219 95 -219 217s93 221 222 221c22 0 39 0 64 -8l118 215c-56 -32 -93 -49 -161 -64l-30 34c97 28 147 48 238 104l21 -10
-c10.4 -85.6 21.5 -136 46.3 -208.8c50 18.3 92.3 39.6 152.7 76.8l21 -10c12 -99 25 -151 59 -245l-44 4c-28 60 -37 97 -46 158l-109 -216c68 -35 110 -103 110 -193zM279 367c-96 0 -171 -78 -171 -172c0 -92 72 -171 171 -171h0.899994
-c-1.29999 9.5 -1.89999 19.1 -1.89999 29c0 100.4 63 185.2 157.2 212.1c-26.1 59 -84.5 101.9 -156.2 101.9zM448.5 217.5c-70.6 -21.7 -120.5 -87.8 -120.5 -164.5c0 -7.4 0.5 -14.6 1.39999 -21.8c72.1 21.5 120.6 88.3 120.6 163.8c0 7.60001 -0.5 15.1 -1.5 22.5z
-M487.8 273.7c4 0.199982 8.10001 0.299988 12.2 0.299988c22 0 39 0 64 -8l118 215c-56 -32 -93 -49 -161 -64l-30 34c16.4 4.70001 31.5 9.20001 45.6 13.7c-21.5 49.6 -29.6 84.9 -37.6 139.3l-109 -216c46.4 -23.9 80.7 -63.2 97.8 -114.3zM498.4 225
-c1.10001 -9.7 1.60001 -19.7 1.60001 -30c0 -97.3 -68.1 -180.6 -159.1 -207.7c24.9 -61 83.9 -105.3 158.1 -105.3c99 0 171 79 171 171s-73 172 -171 172h-0.600006z" />
-    <glyph glyph-name="uni26A4" unicode="&#x26a4;" horiz-adv-x="802" 
-d="M676 258c0 -119 -102 -217 -223 -217c-29.5 0 -57.8 5.7 -83.6 16.2c-18.8 -8.3 -39.4 -14.2 -61.4 -17.2l-3 -110h106v-46h-107l-3 -122h-47l-2 122h-107v46h106l-2 110c-126 18 -191 124 -191 219c0 119 93 220 222 220c32.3 0 61.6 -6.20001 87.5 -17.1
-c26.7 11 56.5 17.1 88.5 17.1c22 0 39 0 64 -8l118 215c-56 -32 -93 -49 -161 -64l-30 34c97 28 147 48 238 104l21 -10c12 -99 25 -151 59 -245l-44 4c-28 60 -37 97 -46 158l-109 -216c68 -35 110 -103 110 -193zM279 429c-96 0 -171 -77 -171 -170s72 -172 171 -172
-c11.9 0 23.4 1.1 34.5 3.3c-48.4 39.4 -79.5 99.3 -79.5 167.7c0 67.4 28.4 127.9 75.6 168.4c-9.89999 1.70001 -20.1 2.60001 -30.6 2.60001zM421.9 90.1c10.6 -2 21.7 -3.1 33.1 -3.1c99 0 171 79 171 171s-73 172 -171 172c-10.9 0 -21.5 -1 -31.7 -2.89999
-c49.3 -42.7 76.7 -106.1 76.7 -168.1c0 -64.9 -28.6 -127.1 -78.1 -168.9zM366.5 405.4c-49.8 -30.3 -82.5 -85.4 -82.5 -147.4c0 -61.5 32.2 -117.1 83 -147.3c50.9 30.2 83 86.2 83 148.3c0 60.8 -32.6 116.3 -83.5 146.4z" />
-    <glyph glyph-name="uniE005" unicode="&#xe005;" horiz-adv-x="802" 
-d="M38 410h401v-40h-401v40zM86 268h626v-39h-626v39zM38 126h401v-39h-401v39z" />
-    <glyph glyph-name="uniE006" unicode="&#xe006;" horiz-adv-x="1065" 
-d="M650 278c54 0 291 -16 391 -17v-6c-90 0 -341 -17 -391 -17h-235c-65 0 -322 17 -391 17v6c76 0 320 17 391 17h235z" />
-    <glyph glyph-name="uniE007" unicode="&#xe007;" horiz-adv-x="2082" 
-d="M1276 283c108 0 582 -19 782 -20v-7c-180 0 -682 -20 -782 -20h-470c-131 0 -645 20 -782 20v7c151 0 639 20 782 20h470z" />
-    <glyph glyph-name="uniE008" unicode="&#xe008;" horiz-adv-x="6272" 
-d="M59 617c0 16 13 28 26 28c27 0 203 -119 599 -119c461 0 496 71 761 71c326 0 407 -71 564 -71c305 0 628 102 961 102c296 0 462 -86 763 -86c336 0 447 92 742 92c317 0 553 -113 780 -113c284 0 545 107 890 107c14 0 26 -12 26 -26c0 -15 -12 -27 -26 -27
-c-340 0 -593 -108 -890 -108c-244 0 -463 113 -780 113c-300 0 -387 -91 -742 -91c-327 0 -470 85 -763 85c-317 0 -659 -101 -961 -101c-157 0 -242 70 -564 70c-269 0 -293 -70 -761 -70c-239 0 -405 31 -609 120c-10 5 -16 14 -16 24zM1552 223c-233 0 -361 -62 -655 -62
-c-15 0 -27 12 -27 27s12 27 27 27c291 0 421 61 658 61c254 0 429 -47 679 -47c328 0 576 72 758 72c256 0 451 -70 735 -70c238 0 503 75 667 75c235 0 648 -92 821 -92c299 0 251 49 290 49c16 0 27 -13 27 -27c0 -61 -127 -76 -317 -76c-176 0 -602 92 -821 92
-c-155 0 -426 -75 -667 -75c-290 0 -485 70 -735 70c-58 0 -544 -77 -774 -77c-202 0 -385 53 -666 53zM2186 -83c376 0 629 98 815 98c247 0 470 -98 827 -98c325 0 400 68 643 68c94 0 193 -4 276 -60c8 -5 12 -13 12 -22c0 -14 -12 -27 -27 -27c-5 0 -10 2 -15 5
-c-52 36 -107 53 -243 53c-235 0 -373 -71 -646 -71c-380 0 -584 98 -827 98c-185 0 -421 -98 -810 -98c-212 0 -374 13 -517 30c-15 1 -25 13 -25 26c0 15 13 27 27 27s314 -29 510 -29z" />
-    <glyph glyph-name="s_t" unicode="&#xfb06;" horiz-adv-x="680" 
-d="M157 558c0 72 70 140 190 140c125 0 185 -65 190 -174l5 -95h109c5 0 8 -2 8 -6v-20c0 -9 -13 -13 -23 -13h-94v-255c0 -62 6 -92 33 -92c26 0 45 8 71 28l18 -17c-39 -44 -79 -66 -124 -66c-47 0 -73 28 -73 99v303h-65c-3 0 -5 1 -5 4v31c0 3 1 4 4 4c67 0 88 55 88 95
-c0 89 -50 146 -152 146c-83 0 -148 -51 -148 -107c0 -51.7 21.1 -95.1 85.2 -131.2c23.3 -4.19998 43.8 -9.19998 59.8 -11.8c-1 -33 -3 -70 -6 -106c-6 -6 -26 -7 -32 -1c-13 85 -71 93 -93 93c-34 0 -70 -23 -70 -64c0 -55 39.8 -70.5 100 -92.8
-c68 -25.2 117 -64.9 117 -133.2c0 -99 -103 -126 -159 -126c-37 0 -64 4 -91 11c-7 2 -13 2 -20 2c-5 0 -15 -1 -25 -3c0 42 -3 89 -7 138c6 6 25 7 31 1c6 -25 17 -69 39 -92c10.3 -10.7 32 -24 71 -24c37 0 85 21 85 70c0 43 -19 64 -102 98c-77 32 -110 63 -110 136
-c0 64 67 112 141 112h4.60001c-39.8 36 -50.6 72.3 -50.6 119z" />
-
-<!--
-Anfang{Spacing modifying letters}
--->
-    <glyph glyph-name="h.superior" unicode="&#x2b0;" horiz-adv-x="307" 
-d="M104 664v-84c14 16 49 51 85 51c45 0 75 -25 75 -92v-124c0 -19 6.20001 -23.7 26 -27l6 -1c4 -1 5 -3 5 -5v-18s-38 1 -62 1c-25 0 -65 -1 -65 -1v18c0 2 1 5 5 5l11 1c18.8 1.70001 25 6 25 27v114c0 51 -20 68 -50 68c-21 0 -42 -22 -61 -45v-137
-c0 -21 7.1 -25.4 25 -27l11 -1c2 0 5 -1 5 -5v-18s-40 1 -66 1c-24 0 -61 -1 -61 -1v18c0 2 0 5 4 5l8 1c23.6 3 25 6 25 27v236c0 42 -6 49 -19 49l-21 1c-2 0 -4 1 -4 3l-1 18c26 2 72 10 88 17c6 0 8 -2 8 -7c0 0 -2 -26 -2 -68z" />
-    <glyph glyph-name="j.superior" unicode="&#x2b2;" horiz-adv-x="207" 
-d="M117 739c22 0 30 -15 30 -29c0 -15 -13 -28 -30 -28s-30 13 -30 28c0 16 11 29 30 29zM96 549c0 42 -6 49 -19 49l-21 1c-2 0 -4 1 -4 3l-1 18c26 2 72 10 88 17c6 0 8 -2 8 -7c0 0 -2 -27 -2 -54v-146c0 -85 -5 -112 -32 -142c-16 -18 -36 -25 -52 -25
-c-27 0 -61 13 -61 33c0 16 9 25 21 25c15 0 23 -15 27 -29c1 -6 5 -10 10 -10c29 0 38 35 38 128v139z" />
-    <glyph glyph-name="r.superior" unicode="&#x2b3;" horiz-adv-x="246" 
-d="M170 593c-7 0 -23 -8 -39 -31c-4 -5 -9 -14 -9 -22v-100c0 -41 17 -44 51 -46c4 -8 4 -22 0 -29c-30 1 -51 1 -76 1c-23 0 -46 0 -76 -1c-4 6 -5 21 0 29c40 2 53 5 53 46v107c0 40 -9 45 -42 48c-1 4 -3 18 -2 22c43 6 63 12 80 20c5 0 6 -3 7 -6c3 -7 5 -20 5 -48
-c0 -3 1 -9 5 -1c14 27 42 55 74 55c26 0 37 -21 37 -34c0 -17 -14 -35 -29 -35c-13 0 -20 14 -26 21c-4 4 -9 4 -13 4z" />
-    <glyph glyph-name="rturned.superior" unicode="&#x2b4;" horiz-adv-x="246" 
-d="M126 456v125c0 24 -8 25 -25 25h-18c-2 0 -5 2 -5 5v19l74 -1l73 1v-19c0 -3 -1 -5 -6 -5h-18c-24 0 -25 -5 -25 -25v-158c0 -14 3 -27 14 -27c13 0 24 3 36 7l2 -20c-39 -8 -63 -14 -87 -25h-15l2 59h-2c-17 -25 -45 -59 -76 -59c-27 0 -37 14 -37 31s11 27 29 27
-c12 0 20 -5 26 -12c4 -4 9 -6 13 -6c7 0 22 12 38 35c4 5 7 14 7 23z" />
-    <glyph glyph-name="w.superior" unicode="&#x2b7;" horiz-adv-x="458" 
-d="M347 609c-4 4 -4 19 0 23c23 -1 37 -2 60 -2c16 0 27 1 41 2c4 -4 4 -19 0 -23c-31.5 -3.5 -39.1 -21.4 -53 -52l-83.2 -182.8c-5 -11 -8.69998 -16.1 -14.9 -16.1c-8.10001 0 -11.5 4.69998 -15.5 14.7l-52.6 131l-59 -129.6c-5 -11 -8.7 -16.1 -14.9 -16.1
-c-8.09999 0 -11.2 4.79999 -15.5 14.7l-79.4 185.2c-15.1 35.1 -17 47 -50 51c-4 4 -4 19 0 23c23 -1 33 -2 55 -2c25.8 0 43 1 66 2c4 -4 4 -19 0 -23c-32.5 -3 -31.7 -15.4 -19 -47l42.1 -105.3c11.4 -28.5 13.9 -28.8 26 -2.10001l35.6 81.6l-8.7 21.8
-c-14.2 35.5 -16.8 46.5 -45 51c-4 4 -4 19 0 23c23 -1 28 -2 50 -2c25.8 0 43 1 66 2c4 -4 4 -19 0 -23c-32.5 -3 -30.5 -14.3 -19 -47l37.1 -105.3c10.2 -28.9 13.9 -28.8 26 -2.10001l46.9 107.4c14.2 32.4 11 44 -22 47z" />
-    <glyph glyph-name="y.superior" unicode="&#x2b8;" horiz-adv-x="338" 
-d="M241 562c14 32.5 10 44 -23 47c-4 4 -4 19 0 23c23 -1 37 -2 60 -2c16 0 27 1 41 2c4 -4 4 -19 0 -23c-31.5 -3.5 -36.2 -19.8 -49.2 -50.8c-29.8 -70.9 -50.5 -117.2 -102.8 -238.2c-19 -44 -42 -82 -86 -82c-12 0 -43 10 -43 33c0 18 19 27 29 27c9 0 15 -3 19 -8
-c6 -6 11 -11 17 -11c9 0 28 31 44 69c3 8 4 13 4 19c0 7 -4.39999 24.3 -10 37l-68 154c-15.4 35 -17 47 -50 51c-4 4 -4 19 0 23c23 -1 33 -2 55 -2c25.8 0 43 1 66 2c4 -4 4 -19 0 -23c-32.5 -3 -32.9 -15.9 -19 -47l57 -128l4.3 1z" />
-    <glyph glyph-name="uni02B9" unicode="&#x2b9;" horiz-adv-x="190" 
-d="M128 713c11 -6 17 -17 17 -29c0 -5 -1 -11 -5 -16l-102 -121c-2 -2 -5 -3 -8 -3c-2 0 -5 1 -8 2c-3 3 -6 7 -6 11c0 1 0 2 1 3l64 146c3 9 10 13 22 14h4c8 0 14 -2 21 -7z" />
-    <glyph glyph-name="uni02BA" unicode="&#x2ba;" horiz-adv-x="350" 
-d="M315 691c0 -6 -1 -13 -7 -19l-114 -110c-2 -2 -4 -2 -6 -2c-5 0 -14 5 -14 13c0 1 0 3 1 4l78 139c5 9 12 12 24 12c21 0 38 -18.4 38 -37zM183 697c0 -5 -1 -11 -5 -16l-102 -121c-2 -2 -5 -3 -8 -3c-6 0 -14 5 -14 13c0 1 0 2 1 3l64 146c6 13 22 14 26 14
-c20.9 0 38 -15.5 38 -36z" />
-    <glyph glyph-name="afii64937" unicode="&#x2bd;" horiz-adv-x="168" 
-d="M87 659c36 0 47 -18 47 -34c0 -17 -5 -42 -46 -42c-7 0 -11 -7 -11 -18c0 -23 18 -60 60 -68l-4 -17c-91 4 -106 80 -106 106c0 35 22 73 60 73z" />
-    <glyph glyph-name="uni02BE" unicode="&#x2be;" horiz-adv-x="243" 
-d="M202 526c0 -77 -57 -115 -116 -115c-15 0 -24 3 -31 6l5 41c8 -3 17 -4 26 -4c47 0 72 18 72 72c0 50 -29 82 -72 82c-6 0 -22 -2 -28 -3l-9 41c9 2 28 5 37 5c67 0 116 -50 116 -125z" />
-    <glyph glyph-name="uni02BF" unicode="&#x2bf;" horiz-adv-x="243" 
-d="M46 536c0 77 53 115 112 115c14 0 24 -3 30 -6l-4 -41c-8 3 -17 4 -26 4c-47 0 -73 -18 -73 -72c0 -50 30 -82 73 -82c6 0 22 2 28 3l9 -41c-9 -2 -28 -5 -37 -5c-67 0 -112 50 -112 125z" />
-    <glyph glyph-name="uni02D2" unicode="&#x2d2;" horiz-adv-x="192" 
-d="M125 -136c0 31 -23 59 -59 59c-8 0 -15 -1 -22 -4l-12 31c10 4 22 6 34 6c52 0 93 -41 93 -92c0 -50 -41 -91 -93 -91c-8 0 -16 1 -24 3l9 31c5 -1 10 -2 15 -2c33 0 59 25 59 59z" />
-    <glyph glyph-name="uni02D3" unicode="&#x2d3;" horiz-adv-x="192" 
-d="M34 -125c0 50 41 92 92 92c13 0 24 -2 35 -7l-12 -30c-7 3 -14 4 -23 4c-34 0 -59 -28 -59 -59c0 -33 25 -59 59 -59c6 0 11 0 16 2l8 -31c-7 -2 -15 -3 -24 -3c-50 0 -92 40 -92 91z" />
-    <glyph glyph-name="uni02D4" unicode="&#x2d4;" horiz-adv-x="259" 
-d="M48 -228c-6 9 -9 17 -9 24s2 13 5 20h65v111c6 4 14 7 21 7c8 0 16 -3 22 -10v-108h62c5 -10 7 -19 7 -26s-2 -13 -5 -18h-168z" />
-    <glyph glyph-name="uni02D5" unicode="&#x2d5;" horiz-adv-x="259" 
-d="M212 -66c6 -9 9 -17 9 -24s-2 -13 -5 -20h-65v-111c-6 -4 -14 -7 -21 -7c-8 0 -16 3 -22 10v108h-62c-5 10 -7 19 -7 26s2 13 5 18h168z" />
-    <glyph glyph-name="uni02D6" unicode="&#x2d6;" horiz-adv-x="274" 
-d="M160 -209c-9 -8 -16 -11 -23 -11s-13 2 -21 6v65h-70c-4 8 -6 15 -6 22c0 8 2 15 9 22h67v61c10 7 17 10 24 10c6 0 12 -3 20 -7v-64h68c5 -8 8 -14 8 -21s-3 -14 -9 -23h-67v-60z" />
-    <glyph glyph-name="uni02D7" unicode="&#x2d7;" horiz-adv-x="274" 
-d="M223 -81c5 -8 8 -14 8 -22c0 -6 -3 -13 -9 -22h-181c-4 8 -7 15 -7 22c0 8 3 15 10 22h179z" />
-    <glyph glyph-name="uni02DE" unicode="&#x2de;" horiz-adv-x="318" 
-d="M39 381c60 22 123 50 169 88l14 -11c-17 -25 -32 -47 -32 -83c0 -22 5 -38 24 -38c22 0 33 5 55 17l11 -20c-49 -36 -71 -48 -97 -48c-16 0 -38 14 -38 59c0 14 3 30 8 39c-26 -5 -74 -26 -100 -41z" />
-    <glyph glyph-name="uni02DF" unicode="&#x2df;" horiz-adv-x="359" 
-d="M224 610l87 -74c-3 -9 -3 -9 -8 -16c-4 -7 -4 -7 -11 -13l-111 71l-111 -71c-6 6 -6 6 -10 13l-10 16l87 73l-88 74c3 7 3 7 9 16c5 9 5 9 10 14l113 -72l110 72c5 -5 5 -5 10 -13s5 -8 9 -17z" />
-    <glyph glyph-name="gammalatin.superior" unicode="&#x2e0;" horiz-adv-x="305" 
-d="M147 358c-35 0 -60 16 -60 45c0 16 10 34 17 46l33 50l-75 139c-8 16 -27 21 -43 21c-2 0 -4 0 -4 3v19l1 2c15 -1 27 -2 45 -2c15 0 42 0 71 2l1 -2v-22c-22 0 -29 -3 -29 -8c0 -3 2 -6 4 -10l54 -100l59 99c1 4 2 6 2 8c0 10 -13 11 -34 11v22l1 2c17 -1 40 -2 55 -2
-c17 0 49 2 49 2l1 -2v-22c-15 0 -29 -3 -36 -14l-76 -125l-2 -6c41 -63 41 -89 41 -98c0 -16 -17 -58 -75 -58zM122 411c0 -19 12 -29 29 -29c20 0 31 15 31 34c0 9 -3 23 -23 52l-5 8c-19 -31 -32 -53 -32 -65z" />
-    <glyph glyph-name="glottalstopreversed.superior" unicode="&#x2e4;" horiz-adv-x="247" 
-d="M185 387h11c2 0 5 -1 5 -5v-18s-39 1 -64 1s-64 -1 -64 -1v18c0 3 1 5 5 5h11c23 1 24 11 24 29v80c0 39 -21 57 -42 75c-22 20 -45 40 -45 86c0 50 36 82 99 82c53 0 111 -29 111 -81c0 -17 -17 -27 -29 -27c-10 0 -27 4 -27 23c0 4 1 7 1 10c1 3 2 7 2 11
-c0 25 -26 42 -56 42c-37 0 -53 -30 -53 -60c0 -32 19 -54 39 -75c24 -25 49 -53 49 -99v-69c0 -18 0 -27 23 -27z" />
-    <glyph glyph-name="uni02EC" unicode="&#x2ec;" horiz-adv-x="312" 
-d="M13 127h53l94 -182l88 182h45l-122 -256h-31z" />
-    <glyph glyph-name="uni02ED" unicode="&#x2ed;" horiz-adv-x="486" 
-d="M482 583h-477v43h477v-43zM482 719h-477v44h477v-44z" />
-    <glyph glyph-name="uni02EE" unicode="&#x2ee;" horiz-adv-x="378" 
-d="M102 633c39 0 62 -37 62 -73c0 -24 -7 -46 -23 -66c-16.9 -21.1 -45 -38 -83 -43c-4 4 -5 13 -5 20c57 12 77 44 77 67c0 19.6 -4.8 13 -29 13c-40 0 -50 24 -50 41c0 16 16 41 51 41zM257 635c39 0 62 -37 62 -73c0 -24 -7 -46 -23 -66c-16.9 -21.1 -45 -38 -83 -43
-c-4 4 -5 13 -5 20c57 12 77 44 77 67c0 19.6 -4.79999 13 -29 13c-40 0 -50 24 -50 41c0 16 16 41 51 41z" />
-    <glyph glyph-name="uni030A" unicode="&#x30a;" 
-d="M-182 706c-31 0 -48 -23 -48 -53c0 -28 17 -53 48 -53s48 25 48 53c0 31 -18 53 -48 53zM-270 653c0 46 42 85 88 85s88 -38 88 -85c0 -45 -40 -85 -88 -85c-46 0 -88 39 -88 85z" />
-    <glyph glyph-name="uni030B" unicode="&#x30b;" 
-d="M-39 691c0 -6 -1 -13 -7 -19l-114 -110c-2 -2 -4 -2 -6 -2c-5 0 -14 5 -14 13c0 1 0 3 1 4l78 139c5 9 12 12 24 12c21 0 38 -18.4 38 -37zM-171 697c0 -5 -1 -11 -5 -16l-102 -121c-2 -2 -5 -3 -8 -3c-6 0 -14 5 -14 13c0 1 0 2 1 3l64 146c6 13 22 14 26 14
-c20.9 0 38 -15.5 38 -36z" />
-    <glyph glyph-name="uni030D" unicode="&#x30d;" 
-d="M-127 703c-1 -17 -1 -40 -1 -63s0 -53 1 -82c-9 -7 -25 -10 -31 -10c-7 0 -16 2 -23 6c1 20 1 45 1 66c0 24 0 53 -1 79c10 6 25 11 31 11c7 0 15 -2 23 -7z" />
-    <glyph glyph-name="uni030E" unicode="&#x30e;" 
-d="M-170 539h-44v180h44v-180zM-274 540h-45v179h45v-179z" />
-    <glyph glyph-name="brevecomb" unicode="&#x306;" 
-d="M-269 676c11 -53 54 -90 108 -90c52 0 98 32 108 90l27 -12c-12 -86 -76 -135 -135 -135c-70 0 -121 50 -135 135z" />
-    <glyph glyph-name="macroncomb" unicode="&#x304;" 
-d="M-105 535h-224c-9 0 -13 11 -13 18c0 12 11 32 22 32h225c10 0 14 -11 14 -17c0 -12 -11 -33 -24 -33z" />
-    <glyph glyph-name="uni0305" unicode="&#x305;" 
-d="M-39 601h-340c-9 0 -13 8 -13 15c0 12 11 29 22 29h341c9 0 13 -8 13 -14c0 -12 -10 -30 -23 -30z" />
-    <glyph glyph-name="uni0310" unicode="&#x310;" 
-d="M-296 699c0 25 20 46 45 46s45 -21 45 -46s-20 -45 -45 -45s-45 20 -45 45zM-359 676c11 -53 54 -90 108 -90c52 0 98 32 108 90l27 -12c-12 -86 -76 -135 -135 -135c-70 0 -121 50 -135 135z" />
-    <glyph glyph-name="uni0311" unicode="&#x311;" 
-d="M-100 498c-11 53 -54 90 -108 90c-52 0 -98 -32 -108 -90l-27 12c12 86 76 135 135 135c70 0 121 -50 135 -135z" />
-    <glyph glyph-name="uni0316" unicode="&#x316;" 
-d="M-339 -119c11 18 34 41 63 41c4 0 9 -1 10 -2l98 -103c8 -9 11 -15 11 -22c0 -6 -7 -14 -14 -14c-6 0 -14.3 3.2 -30 12l-138 78v10z" />
-    <glyph glyph-name="uni0317" unicode="&#x317;" 
-d="M-296 -214c-13 0 -14 11 -14 14c0 9 11 18 23 29l120 103l10 -4c8 -10 18 -29 18 -57c0 -8 -3 -21 -6 -24l-131 -56c-8 -4 -15 -5 -20 -5z" />
-    <glyph glyph-name="uni031A" unicode="&#x31a;" horiz-adv-x="193" 
-d="M170 437c-5 -9 -14 -13 -19 -13c-6 0 -16 1 -25 9v122h-120c-10 5 -12 16 -12 21s5 12 19 20h146l11 -12v-147z" />
-    <glyph glyph-name="uni0312" unicode="&#x312;" 
-d="M-96 468c-39 0 -62 37 -62 73c0 24 7 46 23 66c16.9 21.1 45 38 83 43c4 -4 5 -13 5 -20c-57 -12 -77 -44 -77 -67c0 -19.6 4.8 -13 29 -13c40 0 50 -24 50 -41c0 -16 -16 -41 -51 -41z" />
-    <glyph glyph-name="uni0313" unicode="&#x313;" 
-d="M-83 652c39 0 62 -37 62 -73c0 -24 -7 -46 -23 -66c-16.9 -21.1 -45 -38 -83 -43c-4 4 -5 13 -5 20c57 12 77 44 77 67c0 19.6 -4.8 13 -29 13c-40 0 -50 24 -50 41c0 16 16 41 51 41z" />
-    <glyph glyph-name="uni0314" unicode="&#x314;" 
-d="M-67 657c35 0 51 -25 51 -41c0 -17 -10 -41 -50 -41c-24.2 0 -29 6.59998 -29 -13c0 -23 20 -55 77 -67c0 -7 -1 -16 -5 -20c-38 5 -66.1 21.9 -83 43c-16 20 -23 42 -23 66c0 36 23 73 62 73z" />
-    <glyph glyph-name="uni0315" unicode="&#x315;" 
-d="M-91 640c39 0 62 -37 62 -73c0 -24 -7 -46 -23 -66c-16.9 -21.1 -45 -38 -83 -43c-4 4 -5 13 -5 20c57 12 77 44 77 67c0 19.6 -4.8 13 -29 13c-40 0 -50 24 -50 41c0 16 16 41 51 41z" />
-    <glyph glyph-name="uni0318" unicode="&#x318;" 
-d="M-168 -229c-9 -6 -17 -9 -24 -9s-13 2 -20 5v65h-111c-4 6 -7 14 -7 21c0 8 3 16 10 22h108v62c10 5 19 7 26 7s13 -2 18 -5v-168z" />
-    <glyph glyph-name="uni0319" unicode="&#x319;" 
-d="M-330 -64c9 6 17 9 24 9s13 -2 20 -5v-65h111c4 -6 7 -14 7 -21c0 -8 -3 -16 -10 -22h-108v-62c-10 -5 -19 -7 -26 -7s-13 2 -18 5v168z" />
-    <glyph glyph-name="uni031D" unicode="&#x31d;" 
-d="M-331 -228c-6 9 -9 17 -9 24s2 13 5 20h65v111c6 4 14 7 21 7c8 0 16 -3 22 -10v-108h62c5 -10 7 -19 7 -26s-2 -13 -5 -18h-168z" />
-    <glyph glyph-name="uni031E" unicode="&#x31e;" 
-d="M-167 -66c6 -9 9 -17 9 -24s-2 -13 -5 -20h-65v-111c-6 -4 -14 -7 -21 -7c-8 0 -16 3 -22 10v108h-62c-5 10 -7 19 -7 26s2 13 5 18h168z" />
-    <glyph glyph-name="uni031F" unicode="&#x31f;" 
-d="M-229 -228c-9 -7 -17 -10 -23 -10c-7 0 -14 2 -21 6v65h-70c-4 7 -7 15 -7 22s3 15 10 21h67v62c10 6 17 9 23 9c7 0 13 -2 21 -7v-64h68c5 -7 8 -14 8 -21c0 -6 -3 -13 -9 -22h-67v-61z" />
-    <glyph glyph-name="uni031C" unicode="&#x31c;" 
-d="M-277 -149c0 -31 17 -56 62 -56c3 0 6 1 8 1l-1 -39c-5 -1 -10 -1 -15 -1c-53 0 -94 42 -94 95c0 55 44 97 99 97c4 0 8 0 11 -1l-2 -41c-3 0 -6 1 -8 1c-44 0 -60 -27 -60 -56z" />
-    <glyph glyph-name="uni0320" unicode="&#x320;" 
-d="M-161 -124c5 -7 8 -14 8 -21c0 -6 -3 -13 -9 -22h-181c-4 7 -7 15 -7 22s3 15 10 21h179z" />
-    <glyph glyph-name="uni0321" unicode="&#x321;" 
-d="M-152 -201c38 0 47 49 47 108v107h20h19v-132c0 -68 -16 -119 -78 -119c-57 0 -109 44 -109 85c0 13 10 26 26 26c14 0 31 -13 31 -31c0 -20 19 -44 44 -44z" />
-    <glyph glyph-name="uni0322" unicode="&#x322;" 
-d="M0 -237c-62 0 -78 51 -78 119v130h19h20v-105c0 -60 9 -108 47 -108c25 0 44 24 44 44c0 18 17 31 31 31c16 0 26 -13 26 -26c0 -43 -55 -85 -109 -85z" />
-    <glyph glyph-name="uni0324" unicode="&#x324;" 
-d="M-172 -113c0 31 23 54 54 54s54 -23 54 -54s-23 -54 -54 -54s-54 23 -54 54zM-370 -113c0 31 23 54 54 54s54 -23 54 -54s-23 -54 -54 -54s-54 23 -54 54z" />
-    <glyph glyph-name="uni0325" unicode="&#x325;" 
-d="M-217 -64c-31 0 -48 -23 -48 -53c0 -28 17 -53 48 -53s48 25 48 53c0 31 -18 53 -48 53zM-305 -117c0 46 42 85 88 85s88 -38 88 -85c0 -45 -40 -85 -88 -85c-46 0 -88 39 -88 85z" />
-    <glyph glyph-name="uni0328" unicode="&#x328;" 
-d="M-146 -135c-29 -45 -69 -65 -110 -65c-50 0 -88 20 -88 74c0 56 64 108 144 157l14 -17c-62 -51 -96 -83 -96 -129c0 -26 13 -47 50 -47c29 0 45 16 67 38c9 0 15 -4 19 -11z" />
-    <glyph glyph-name="uni0329" unicode="&#x329;" 
-d="M-229 -229c-11 -6 -19 -8 -26 -8c-8 0 -16 2 -28 6v165c10 4 17 6 24 6c9 0 18 -2 30 -6v-163z" />
-    <glyph glyph-name="uni032A" unicode="&#x32a;" 
-d="M-331 -197c-8 -7 -15 -10 -22 -10c-8 0 -15 4 -22 7v88c0 11 15 24 31 24h185c20 0 24 -8 24 -22v-87c-10 -8 -17 -12 -24 -12c-6 0 -13 3 -20 9v68h-152v-65z" />
-    <glyph glyph-name="uni032B" unicode="&#x32b;" 
-d="M-120 -76c5 -3 20 -13 24 -18c-17 -76 -47 -131 -82 -131c-14 0 -49 10 -73 81c-26 -70 -59 -81 -73 -81c-33 0 -64 46 -83 131c3 4 21 17 23 18c14 -52 31 -85 59 -85c13 0 43 7 64 87c3 1 6 1 9 1c4 0 8 0 10 -1c14 -53 36 -87 63 -87c36 0 52 56 59 85z" />
-    <glyph glyph-name="uni032E" unicode="&#x32e;" 
-d="M-360 -83c11 -53 54 -90 108 -90c52 0 98 32 108 90l27 -12c-12 -86 -76 -135 -135 -135c-70 0 -121 50 -135 135z" />
-    <glyph glyph-name="uni032F" unicode="&#x32f;" 
-d="M-143 -226c-11 53 -54 90 -108 90c-52 0 -98 -32 -108 -90l-27 12c12 86 76 135 135 135c70 0 121 -50 135 -135z" />
-    <glyph glyph-name="afii10101" unicode="&#x454;" horiz-adv-x="440" 
-d="M39 211c0 121 78 228 211 228c47 0 82 -15 131 -19c3.5 -41.5 5.29999 -71.4 8 -120c-7.89999 -3.20001 -16.2 -4 -25 -4c-17 64 -48 112 -122 112c-89 0 -119 -86 -119 -178l3 -2c26 16 53 28 82 28c22.6 0 41.2 -6.89999 58 -15.1c15.6 -7.59999 30.4 -12.9 47 -12.9
-c13 0 25 6 32 6c6 0 8 -10 8 -14c0 -14 -46 -32 -89 -32c-23.3 0 -39.4 4.89999 -54.7 11.6c-14 6.09999 -28 10.4 -46.3 10.4c-13 0 -26 -4 -38 -9c0 -119 45 -178 129 -178c40 0 65 24 77 51c14 32 28 38 45 38c18 0 29 -14 29 -30c0 -53 -71 -92 -162 -92
-c-99 0 -204 60 -204 221z" />
-    <glyph glyph-name="afii10193" unicode="&#x45f;" horiz-adv-x="570" 
-d="M427 0h-71c-27 0 -49 -56 -54 -128c-12 -4 -23.3 -4 -34 0c-5 73 -18 128 -54 128h-71c-40 0 -78 -1 -108 -2c-6 6 -6 27 0 33c55 4 68 9 68 91v185c0 82 -9 87 -64 91c-5 6 -5 27 0 33c28 -1 63 -2 103 -2s77 1 102 2c5 -6 5 -27 0 -33c-52 -4 -62 -9 -62 -91v-217
-c0 -40 6 -51 43 -51h121c39 0 42 20 42 51v217c0 82 -10 86 -61 91c-6 6 -6 27 0 33c30 -1 60 -2 100 -2s78 1 108 2c6 -6 6 -27 0 -33c-55 -4 -68 -9 -68 -91v-185c0.399994 -82 13 -87 68 -91c6 -6 6 -27 0 -33c-30 1 -68 2 -108 2z" />
-    <glyph glyph-name="afii10099" unicode="&#x452;" horiz-adv-x="553" 
-d="M194 316v-194c0 -83 11 -88 72 -91c6 -6 6 -27 0 -33c-33 1 -71 2 -111 2s-77 -1 -112 -2c-6 6 -6 27 0 33c61 3 72 8 72 91v379h-68c-9 2 -12 7.79999 -12 13.4c0 9.59998 9 24.3 21 26.6h59v18c0 75 -6 78 -64 82c-6 6 -8 22 -6 30c40 3 115 17 140 27
-c9 0 13 -3 13 -10c0 0 -4 -40 -4 -105v-42h139c9.29999 -1.29999 13 -7.79999 13 -12.6c0 -9.60004 -10.7 -25.4 -23 -27.4h-129v-141c54 52 112 79 163 79c42.7 0 81.2 -10 101 -46.5c18.7 -34.5 30 -105 30 -190.5c0 -203 -86 -354 -206 -403
-c-5.5 3.2 -9.29999 8.2 -12 15c63 46 139 136 139 385c0 76.7 -11.5 137 -26.7 160.5c-14.3 22.1 -27.4 31.5 -51.3 31.5c-27 0 -81 -18 -137 -75z" />
-    <glyph glyph-name="afii10106" unicode="&#x459;" horiz-adv-x="678" 
-d="M568 126c0 53 -23 98 -98 98h-66v-148c0 -35 12 -45 61 -45c53 0 103 13 103 95zM249 392c-40 0 -43 -28 -43 -106c0 -68 -6 -170 -26 -218c-23 -54 -51 -80 -102 -80c-46 0 -74 27 -74 58c0 22 14 42 39 42c28 0 34 -19 37 -38c2 -13 6 -21 19 -21c17 0 34 13 47 49
-c14 41 22 96 22 201c0 108 -10.3 114 -81 119c-6 6 -6 27 0 33c30 -1 69 -2 102 -2h175s78 1 112 2c6 -6 6 -27 0 -33c-61 -5 -72 -8 -72 -92v-49h67c101 0 183 -27 183 -121c0 -107 -67 -138 -190 -138c-40.6 0 -60.4 2 -99 2c-43.7 0 -79 -1 -112 -2c-6 6 -6 27 0 33
-c61 5 72 8 72 91v185c0 73 -19 85 -42 85h-34z" />
-    <glyph glyph-name="afii10107" unicode="&#x45a;" horiz-adv-x="745" 
-d="M466 306v-55h72c101 0 183 -21 183 -115c0 -107 -67 -138 -190 -138c-40.6 0 -63.4 2 -104 2c-39.8 0 -79 -1 -102 -2c-6 6 -6 27 0 33c51 5 62 8 62 91v96h-201v-96c0 -83 11 -87 62 -91c6 -6 6 -27 0 -33c-22 1 -61.6 2 -101 2c-43.7 0 -79 -1 -112 -2c-6 6 -6 27 0 33
-c61 5 72 8 72 91v185c0 83 -11 87 -72 91c-6 6 -6 27 0 33c33 -1 67.7 -2 111 -2c39.8 0 78 1 102 2c6 -6 6 -27 0 -33c-51 -5 -62 -8 -62 -91v-56h201v56c0 83 -11 87 -62 91c-6 6 -6 27 0 33c23 -1 61.6 -2 101 -2c43.7 0 78 1 112 2c6 -6 6 -27 0 -33
-c-61 -5 -72 -8 -72 -92zM635 126c0 53 -23 92 -98 92h-71v-142c0 -35 17 -45 66 -45c53 0 103 13 103 95z" />
-    <glyph glyph-name="afii10108" unicode="&#x45b;" horiz-adv-x="557" 
-d="M187 285.9v-163.9c0 -83 9 -87 59.8 -91c6 -6 6 -27 0 -33c-28 1 -60.8 2 -98.8 2c-40 0 -76.8 -1 -109.8 -2c-6 6 -6 27 0 33c58 4 69.8 8 69.8 91v379h-61c-9 2 -12 7.79999 -12 13.4c0 9.59998 9 24.3 21 26.6h52v18c0 84 -12 79 -64 82c-6 6 -8 22 -6 30
-c40 3 115 17 140 27c9 0 13 -3 13 -10c0 0 -4 -40 -4 -105l-0.100006 -42h146.1c9.29999 -1.29999 13 -7.79999 13 -12.6c0 -9.60004 -10.7 -25.4 -23 -27.4h-136.3l-0.5 -143c0 -14 6.40001 -3.79999 9.8 0c61 68 120.9 81 170 81c35 0 66.2 -12 83 -34
-c23.3 -30.5 27 -79 27 -134v-149c0 -82 11 -86 67 -91c5 -6 5 -27 0 -33c-33 1 -66 2 -106 2s-74 -1 -102 -2c-5 6 -5 27 0 33c52 5 62 9 62 91v152c0 30 -2 57.2 -12 77c-11.6 22.9 -32.6 36 -53 36c-39.4 0 -90 -21.7 -128 -59c-8 -8.70001 -17 -21 -17 -42.1z" />
-    <glyph glyph-name="afii10051" unicode="&#x402;" horiz-adv-x="724" 
-d="M350 122c0 -83 17 -88 97 -91c6 -6 6 -27 0 -33c-50 1 -100.6 2 -139 2c-40.1 0 -91 -1 -140 -2c-6 6 -6 27 0 33c80 3 97 8 97 91v385c0 61 -10 99 -47 99h-49c-66 0 -112 -26 -132 -106c-12 0 -24 1 -34 5c11 48 21 100 25 145c0 1 2 3 4 3c38 -3 156 -8 233 -8h86
-c79 0 190 5 224 8c1 0 3 -2 3 -3c1 -45 6 -96 13 -142c-9 -4 -23 -5 -34 -5c-17 77 -64 103 -139 103h-22c-36 0 -46 -38 -46 -102v-149c50 43 105.5 64.5 166 64.5c38.5 0 77.3 -15.4 100 -34c52.5 -43 63 -124.8 63 -217.5c0 -135 -41 -261 -91 -310
-c-18 -18 -43 -30 -65 -30c-37 0 -67 21 -67 47c0 22 17 42 37 42c13 0 25 -3 35 -8c9 -4 21 -9 33 -9c47 0 35 203 35 242c0 77.5 -1 152.4 -48.5 196c-18 16.5 -46.5 26 -74.5 26c-33.5 0 -74.5 -7 -123 -46v-196z" />
-    <glyph glyph-name="afii10053" unicode="&#x404;" horiz-adv-x="620" 
-d="M34 315c0 209 136 343 302 343c118.5 0 154.5 -35.5 211 -45c10.7 -54 16.4 -103 22 -155c-10.9 -5.10001 -20.4 -6.60001 -30 -4c-26 86 -70 167 -208 167c-79 0 -206 -74 -206 -287l1 -1c61 34 126 46 139 46c63 0 106 -38 165 -38c38 0 54 16 62 16c4 0 9 -4 9 -12
-c0 -25 -63 -54 -122 -54c-67 0 -96 32 -154 32c-38 0 -66 -7 -99 -22c10 -158 90.5 -276 229 -276c76 0 116 34 130 74c13 37 28 66 57 66c25 0 34 -21 34 -41c0 -74 -128 -134 -225 -134c-215 0 -317 140 -317 325z" />
-    <glyph glyph-name="one.fitted" unicode="&#xe011;" horiz-adv-x="360" 
-d="M239 122c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-50 1 -74.4 2 -122 2c-54.2 0 -90 -1 -139 -2c-6 6 -6 27 0 33c70 3 97 8 97 91v326c0 34 -3.5 58 -20 58c-19 0 -41.5 -6 -87 -25c-9 6.10001 -13.4 15.6 -15 27c88 41 140.7 65.7 196 100c3.5 0 6 -0.200012 6 -5
-c-1.7 -13 -3 -74 -3 -134v-347z" />
-    <glyph glyph-name="two.fitted" unicode="&#xe012;" horiz-adv-x="478" 
-d="M61 468c0 60 69 142 180 142c81 0 169 -44 169 -152c0 -76 -43 -120 -100 -175l-101 -97c-5 -5 -74 -73 -74 -121h178c36 0 53 25 70 96c10 2 23 0 29 -5c-1 -30 -11 -105 -24 -158c0 0 -46 2 -78 2h-175c-32 0 -83 -2 -83 -2c0 59 16 107 114 207l74 73
-c59 60 82 112 82 176c0 96 -51 121 -87 121c-73 0 -99 -36 -99 -61c0 -8 6 -17 8 -24s4 -13 4 -21c0 -22.1 -30 -40 -47 -40c-21 0 -40 18 -40 39z" />
-    <glyph glyph-name="three.fitted" unicode="&#xe013;" horiz-adv-x="465" 
-d="M215 575c-26 0 -95 -12 -95 -76c0 -19 -4 -52 -39 -52c-24 0 -34 20 -34 34c0 33 42 129 189 129c52.3 0 87.2 -16.9 109 -39c24.3 -24.6 31.3 -49.1 31.3 -79.1c0 -52.7 -23 -94.3 -105.3 -132.9l1 -2c59 -10 141 -49 141 -158c0 -132 -106 -209 -225 -209
-c-60 0 -144 27 -144 67c0 16 21 35 42 35c20 0 33 -12 43 -26c12 -18 21 -41 72 -41c35 0 124 27 124 160c0 113 -74 129 -131 129c-13 0 -31 0 -48 -2l-5 32c99.1 14.1 157.1 90.5 157.1 140.7c0 64.3 -39.9 90.3 -83.1 90.3z" />
-    <glyph glyph-name="four.fitted" unicode="&#xe014;" horiz-adv-x="484" 
-d="M277 507c-69 -94.2 -139.7 -205.8 -191 -288h191v288zM436 219c11 0 15 -6 15 -16c0 -12 -15 -31 -29 -31h-69v-92c0 -47 21 -45 70 -49c6 -6 6 -27 0 -33c-32 1 -69.6 2 -109 2c-46 0 -86 -1 -118 -2c-6 6 -6 27 0 33c43 3 81 3 81 49v92h-204c-30 0 -36 27 -39 42
-c91.5 143 208 307.5 271 385c3.70001 4.5 9 11 16 11h32l2 -2c-1.70001 -7.79999 -2 -47 -2 -97v-292h83z" />
-    <glyph glyph-name="five.fitted" unicode="&#xe015;" horiz-adv-x="454" 
-d="M315 189c0 109 -51 152 -116 152c-36 0 -74 -4 -127 -24l34 288c35 -3 71 -5 108 -5c53 0 107 5 164 11l7 -4l-16 -68c-41 -4 -75 -6 -105 -6c-48 0 -80 5 -117 9l-20 -167c18 7 55 16 98 16c112 0 179 -87 179 -184c0 -126 -88 -218 -212 -218c-57 0 -142 34 -142 75
-c0 20 19 37 38 37c21 0 38 -15 51 -32c15 -20 28 -45 66 -45c60 0 110 70 110 165z" />
-    <glyph glyph-name="six.fitted" unicode="&#xe016;" horiz-adv-x="473" 
-d="M139.2 307c-5.89999 -28.8 -8.2 -55.5 -8.2 -78c0 -171 57 -205 120 -205c49 0 91 50 91 160c0 50 -22 146 -120 146c-17.4 0 -50 -1.39999 -82.8 -23zM148.3 343.3c29.8 13.7 68.7 21.7 94.7 21.7c136 0 182 -77 182 -163s-54 -213 -185 -213c-77 0 -192 40 -192 243
-c0 79 31 170 93 242c56 65 118 107 219 137c8 -5 12 -14 12 -26c-133 -49.8 -196.6 -150.8 -223.7 -241.7z" />
-    <glyph glyph-name="eight.fitted" unicode="&#xe018;" horiz-adv-x="469" 
-d="M236 575c-60 0 -92 -38 -92 -84c0 -31 7 -64 70 -105l31 -19c27 20 80 65 80 119c0 46 -24 89 -89 89zM395 485c0 -64 -76 -116 -123 -139l71 -43c53.1 -32.2 78 -83 78 -141c0 -76 -64 -172 -195 -172c-106 0 -178 54 -178 156c0 39 17 84 58 120
-c25 22 51.5 39.5 80.5 55l-25.5 16c-60.9 38.2 -88 79 -88 135c0 77 66 138 168 138c98 0 154 -53 154 -125zM228 25c45 0 120 17 120 117c0 48 -25 95 -87 133l-47 28c-86 -57 -99 -127 -99 -157c0 -90 68 -121 113 -121z" />
-    <glyph glyph-name="two.oldstyle" unicode="&#xe022;" horiz-adv-x="462" 
-d="M295 55c57 0 63 6 87 59l13 29c9 -0.699997 18 -0.800003 27 -7c-18 -58 -28 -107 -33 -138c-17 1 -51 2 -91 2h-148c-25 0 -79 -1 -89 -2l-11 23l111 105c108.4 102.5 127 130 127 188c0 53 -27 81 -73 81c-49 0 -98 -21 -119 -74c-14.8 2.70001 -27.1 7.10001 -34 15
-c17 52 78 103 173 103c101 0 142 -47 142 -108c0 -46 -24.8 -86.1 -83 -143l-136 -133h137z" />
-    <glyph glyph-name="three.oldstyle" unicode="&#xe023;" horiz-adv-x="448" 
-d="M217 404c-26 0 -95 -12 -95 -76c0 -19 -4 -52 -39 -52c-24 0 -34 20 -34 34c0 33 42 129 189 129c52.3 0 87.2 -16.9 109 -39c24.3 -24.6 31.3 -49.1 31.3 -79.1c0 -52.7 -23 -94.3 -105.3 -132.9l1 -2c59 -10 141 -49 141 -158c0 -132 -106 -209 -225 -209
-c-60 0 -144 27 -144 67c0 16 21 35 42 35c20 0 33 -12 43 -26c12 -18 21 -41 72 -41c35 0 124 27 124 160c0 113 -74 129 -131 129c-13 0 -31 0 -48 -2l-5 32c99.1 14.1 157.1 90.5 157.1 140.7c0 64.3 -39.9 90.3 -83.1 90.3z" />
-    <glyph glyph-name="uniE040" unicode="&#xe040;" horiz-adv-x="1179" 
-d="M638 619c12 0 16 8 16 10c0 3 -6 9 -6 17c0 12 13 30 32 30c20 0 31 -17 34 -21c-36 -3 -41 -29 -55 -40c17 -4 19 -6 21 -6c7 0 11 4 18 4c9 0 18 -6 21 -9c9 -7 3 -15 12 -32c-3 1 -6 2 -9 2c-6 0 -10 -2 -16 -2c-7 0 -13 3 -18 6c-12 7 -8 22 -22 25s-33 7 -58 8
-c10 -14 11 -40 44 -50c-10 -9 -19 -14 -31 -14c-19 0 -32 16 -32 32c0 10 10 18 10 22c0 1 0 8 -13 11c-30 0 -59 -3 -86 -11c21 -14.4 21.4 -37 60 -37c-3 -5 -14 -24 -36 -24c-19 0 -32 18 -32 29c0 7 4 14 4 17c0 3.59998 -0.5 9 -18 9c-28 -10 -53 -23 -77 -39
-c15 -4 28 -16 49 -16c9 0 13 1 21 4c-5 -30 -22 -39 -36 -39c-6 0 -12 1 -18 5c-25 14 -4 34 -25 34c-4 0 -7 -1 -10 -2c-22 -18 -42 -39 -59 -61c16.3 0 18.7 -4 36 -4c22 0 31 9 37 14c0 -3 1 -7 1 -12c0 -24 -16 -40 -35 -40c-32 0 -25 28 -39 28c-5 0 -9 -2 -12 -4
-c-18 -27 -31 -58 -40 -90c20 11 48 -4 73 33c3 -8 7 -15 7 -26c0 -20 -15 -36 -38 -36c-21 0 -24 18 -30 18c-9 0 -14 -6 -17 -11c-4 -21 -6 -41 -6 -63c0 -14 2 -27 4 -39c14 15 46 18 53 60c9 -8 21 -20 21 -38c0 -24 -21 -37 -35 -37c-11 0 -18 8 -23 8
-c-2 0 -9 -4 -12 -14c4 -18 10 -34 16 -50s79 -40 79 -57c0 -3 -4 -4 -10 -4c-15 0 -41 4 -52 4c-9 0 -15 -3 -21 -3c-7 0 -10 7 -10 19v18c0 7 -3 16 -7 30c-4 4 -9 6 -15 6c-7 0 -7 -22 -36 -22c-21 0 -38 17 -38 40c0 9 3 17 5 23c10 -12 23 -25 60 -25c8 0 13 -1 18 -3
-c-4 18 -8 43 -8 75c-1 7 -6 21 -18 21c-6 0 -12 -15 -28 -15c-20 0 -38 14 -38 37c0 12 4 22 10 31c7 -15 17 -29 52 -37c10 -2 18 -5 22 -10c2 33 8 66 19 95c0 11 -2 22 -10 22c-4 0 -11 -5 -19 -5c-14 0 -32 15 -32 35c0 23 21 36 24 38c2 -43 36 -48 46 -68
-c14 32 33 61 55 86c2 3 3 7 3 11c0 12 -8.20001 12 -14 12c-24 0 -29 24 -29 33c0 8 2 30 37 38c-2 -7 -3 -11 -3 -19c0 -27 20 -40 22 -59c37.5 37.5 62 49 72 56c3.70001 2.59998 8 7 8 14c0 10 -23 6 -23 34c0 19 15 35 36 35c8 0 13 -2 18 -3c-8 -8 -18 -17 -18 -44
-c0 -9 1 -10 1 -17c0 -3 -1 -6 -1 -9c30 14 62 24 97 29c6 2 13 6 13 14c0 5 -13 10 -13 24c0 18 14 33 33 33c12 0 21 -4 29 -10c-36 -16 -28 -43 -39 -59c7 1 15 1 23 1c32.4 0 48.6 -4 54 -4zM394 28c0 2 4 5 8 5c3.60001 0 7.5 -0.799999 10.4 -3.1
-c3.5 -2.9 5.60001 -7.6 5.60001 -10.9c0 -17 -29 -10 -35 -17l10 -7c0.700012 -0.5 1 -1 2 -1s2 1 5 3l2 -3l-7 -7l-21 16c9 12 37 3 37 20c0 4 -3 6 -5 6c-6 0 -4 -6 -8 -6c-2 0 -4 3 -4 5zM452 -3c0 3 -1.60001 4 -4 4c-6 0 -18 -22 -18 -30c0 -3 2 -4 3 -4
-c7 0 19 21 19 30zM436 -37c-5 0 -12 3 -12 14c0 14 12 28 22 28c8 0 12 -5 12 -13c0 -11 -9 -29 -22 -29zM497 -24c0 3 -1 6 -4 6c-6 0 -14 -22 -14 -30c0 -5 1.10001 -7 3 -7c7 0 15 21 15 31zM483 -58c-7 0 -11 7 -11 16c0 12 8 28 20 28c5 0 12 -3 12 -15s-8 -29 -21 -29
-zM544 -34c0 3 -1 6 -4 6c-9 0 -4 -8 -10 -8c-2 0 -4 1 -4 3c0 1 3 8 13 8c8 0 13 -4 13 -9c0 -6 -7 -9 -9 -10c4 -1 8 -5 8 -11c0 -8 -6 -15 -16 -15c-8 0 -14 4 -14 7c0 1 1 2 3 2c6 0 4 -6 10 -6c5 0 9 6 9 13c0 6 -3.59998 8 -8 8h-3v3c5 0 12 3 12 9zM583 -59
-c-3 0 -5 2 -5 5c0 5 5 6 5 6c3 0 5 -3 5 -6c0 -5 -5 -5 -5 -5zM817 523c-1 0 -2 -1 -2 -2c0 -8 106 -70 106 -247c0 -90 -44 -173 -85 -187c-1 0 -1 -1 -1 -2s0 -1 1 -1c18 0 89 63 89 190c0 173.8 -106 249 -108 249zM910 570c5 0 7 -19 8 -19v10c0 2 1 4 2 4
-c2 0 5 -11 5 -22c0 -4 0 -8 -1 -12l13 -17c1.70001 -2.20001 3 -5 3 -9c0 -2 -3 -8 -4 -12c-3 -12 -11 -21 -19 -32c24 -29 35 -57 35 -105v-14c21 22 16 25 25 25c12 0 19 -20 23 -26c-2 5 -4 10 -4 13s2 4 3 4c2 0 4 -2 5 -4c0 3 1 7 4 7s4 -5 4 -5s2 6 6 6c2 0 3 -1 3 -9
-c1 1 3 3 4 3c3 0 4 -2 4 -4c0 -3 -4 -12 -4 -12s4 6 6 6s2 -2 2 -4c0 -5 -8 -40 -31 -40c-17 0 -19 20 -19 20c-22.3 -35.8 -26.5 -44.3 -38 -50c-1 -13 -3 -27 -4 -42c-7 -81 -65 -153 -123 -153c-1 0 -1 0 -1 1c0 0 0 1 2 2c50 19 79 114 79 167c0 5 -1 10 -1 15
-c-17 5 -32 26 -42 33v-3c0 -10 -3 -23 -19 -23c-20 0 -34 31 -34 33s1 3 2 3c3 0 7 -4 7 -4s-7 9 -7 12c0 2 1 2 2 2c2 0 8 -4 8 -4s-4 6 -4 10c0 2 1 3 2 3c4 0 8 -10 8 -10s-2 5 -2 8c0 4 2 4 3 4c4 0 5 -12 5 -12s1 11 5 11c2 0 4 -1 4 -7c0 -3 -1 -9 -1 -9s7 32 18 32
-c5 0 7 -5 22 -16c-12 25 -24 51 -24 90c-24 -19 -45 -21 -45 -21c-2 0 -3 0 -19 31c-20 4 -31 13 -31 16c0 1 1 2 2 2c3 0 12 -5 13 -5c0 1 -16 10 -16 14c0 1 1 1 2 1c4 0 13 -8 14 -8c0 1 -12 11 -12 15c0 1 0 1 1 1c3.79999 0 9 -5 15 -8c0 3 -8 10 -8 14c0 1 1 2 2 2
-c4 0 14 -14 16 -15l1 1c0 2 -5 9 -5 12c0 1 0 1 1 1c4 0 9 -6 14 -20c7 -17 18 -25 20 -25c14 0 14 20 31 22c-6 14 -19 32 -42 40c-21 7 -31 35 -37 48c-6 11 -13 21 -13 29c0 6 3 13 14 13c4 0 56 -15 73 -31c6 -5 10 -14 11 -23c3 -21 28 -24 45 -38c7 12 15 9 19 22
-c-5 11 -4 16 -17 25c-8 8 -13 16 -13 20c0 2 0 3 1 3c3 0 9 -10 10 -10c-3 8 -7 14 -7 20c0 1 1 2 2 2c4 0 7 -13 10 -13c1 0 1 1 1 2c0 3 -4 10 -4 14c0 1 1 2 2 2c4 0 9 -16 11 -16c0 1 -4 9 -4 14c0 2 1 2 2 2zM773 130c0 -6 -8 -8 -15 -8h-58v-118c0 -38 5 -56 21 -56
-c15 0 29 6 44 17l11 -10c-24 -28 -50 -41 -77 -41c-33 0 -44 24 -44 61v147h-105l-48 1l-78 -2l-2 2v11c0 3 2 5 5 5h19c25 0 32 6 32 27v230c0 21 -13 27 -34 27h-16c-4 0 -6 2 -6 5v12l2 1l31 -1h46l79 1l2 -1v-12c0 -3 -2 -5 -5 -5h-16c-20 0 -34 -5 -34 -27v-219
-c0 -20 11 -31 29 -31h56c43 0 53 23 53 54v12l35 13v-79h68c3 0 5 -1 5 -4v-12zM1074 286c0 267 -218 485 -485 485s-485 -218 -485 -485s218 -485 485 -485s485 218 485 485zM589 777c272 0 492 -219 492 -491s-220 -492 -492 -492s-491 220 -491 492s219 491 491 491z
-M1099 286c0 281 -229 509 -510 509s-509 -228 -509 -509s228 -510 509 -510s510 229 510 510zM589 802c286 0 517 -230 517 -516s-231 -517 -517 -517s-516 231 -516 517s230 516 516 516zM363 35c-3 0 -6 2.2 -6 5c0 4 2.70001 6 5 6c3 0 6 -2.2 6 -6
-c0 -3.1 -2.29999 -5 -5 -5z" />
-    <glyph glyph-name="uniE041" unicode="&#xe041;" horiz-adv-x="1179" 
-d="M773 130c0 -6 -8 -8 -15 -8h-58v-118c0 -38 5 -56 21 -56c15 0 29 6 44 17l11 -10c-24 -28 -50 -41 -77 -41c-33 0 -44 24 -44 61v147h-105l-48 1l-78 -2l-2 2v11c0 3 2 5 5 5h19c25 0 32 6 32 27v230c0 21 -13 27 -34 27h-16c-4 0 -6 2 -6 5v12l2 1l31 -1h46l79 1l2 -1
-v-12c0 -3 -2 -5 -5 -5h-16c-20 0 -34 -5 -34 -27v-219c0 -20 11 -31 29 -31h56c43 0 53 23 53 54v12l35 13v-79h68c3 0 5 -1 5 -4v-12zM1099 286c0 281 -228 509 -510 509c-281 0 -509 -228 -509 -509c0 -282 228 -510 509 -510c282 0 510 228 510 510zM589 802
-c286 0 517 -231 517 -516c0 -286 -231 -517 -517 -517c-285 0 -516 231 -516 517c0 285 231 516 516 516z" />
-    <glyph glyph-name="creativecommons" unicode="&#xe00e;" horiz-adv-x="695" 
-d="M522.2 233.1c-14 -23.2 -43.1 -47 -81.6 -47c-30 0 -64.3 11.9 -83.6 32.9c-20.9 22.7 -31.6 51.6 -31.6 82.4c0 63 49 112.4 110.6 112.4c49 0 61.5 -10.8 75.7 -15.2c4.29999 -23.6 6.29999 -37.1 7 -54.5c-3.5 -2.20001 -8.40002 -3 -14 -3
-c-17.7 35.4 -28.2 47.5 -61.5 47.5c-23.3 0 -49.4 -20.1 -49.4 -87.7c0 -54.8 17.2 -84 57.1 -84c35.7 0 50.3 15.5 58 27.5c6.80002 -2 10.1 -6.7 13.3 -11.3zM307.2 233.1c-14 -23.2 -43.1 -47 -81.6 -47c-30 0 -64.3 11.9 -83.6 32.9c-20.9 22.7 -31.6 51.6 -31.6 82.4
-c0 63 49 112.4 110.6 112.4c49 0 61.5 -10.8 75.7 -15.2c4.29999 -23.6 6.29999 -37.1 7 -54.5c-3.5 -2.20001 -8.40002 -3 -14 -3c-17.7 35.4 -28.2 47.5 -61.5 47.5c-23.3 0 -49.4 -20.1 -49.4 -87.7c0 -54.8 17.2 -84 57.1 -84c35.7 0 50.3 15.5 58 27.5
-c6.80002 -2 10.1 -6.7 13.3 -11.3zM321 23c-157 0 -287 128 -287 283c0 156 131 282 287 282s287 -126 287 -282s-131 -283 -287 -283zM321 556c-140 0 -247 -111 -247 -250c0 -138 107 -251 247 -251c138 0 247 112 247 251s-108 250 -247 250z" />
-    <glyph glyph-name="uni0255" unicode="&#x255;" horiz-adv-x="424" 
-d="M374 129c0 25 -15 35 -32 35c-54.8 0 -120.9 -107.7 -124 -117c10.1 -4.9 26 -8 40 -8c41 0 116 42 116 90zM407 142c0 -98 -97 -152 -169 -152c-13 0 -42 0 -54 3c-20 -32 -43 -68 -61 -99c-11.6 1 -26 6 -32 13c20 33 39 62 59 95c-78 41 -113 121 -113 209
-c0 124 84 228 218 228c69 0 144 -32 144 -99c0 -24 -23 -41 -46 -41c-35 0 -41.3 22.4 -44 49c-3 30 -16 58 -70 58c-71 0 -116 -84 -116 -159c0 -67 12 -151 66 -185c15.6 31.2 81.5 127 161 127c13.9 0 28.5 -1.2 39 -8c11.4 -7.39999 18 -21.3 18 -39z" />
-    <glyph glyph-name="uni0253" unicode="&#x253;" horiz-adv-x="493" 
-d="M174 363c-12.9 -11.4 -17 -21 -17 -42v-250c20 -25 41 -47 72 -47c95 0 141 86 141 200c0 97 -50 171 -111 171c-29 0 -59 -9 -85 -32zM157 487v-88c0 -9 3.7 -10.7 10 -5c31 28 69.1 45 112 45c87 0 177 -75 177 -197c0 -159 -119 -252 -221 -252
-c-35.3 0 -65.1 5.5 -88 24.8c-11 9.2 -17 9.2 -27.3 -2.8c-7.7 -8.9 -17.6 -18.2 -23.7 -24c-12 0 -17 4 -22 12c4.2 21.8 4 32 4 71v397c0 157 93 230 177 230c38 0 64 -3 90 -21c21 -16 30 -34 30 -51c0 -22 -16 -39 -36 -39c-21 0 -35 12 -43 30c-14 35 -30 47 -60 47
-c-33 0 -79 -24 -79 -177z" />
-    <glyph glyph-name="uni0256" unicode="&#x256;" horiz-adv-x="503" 
-d="M344.7 -9.1l-1.70001 -2.9l0.600006 20.7c-0.399994 8.7 -0.600006 17.8 -0.600006 27.3v23c-46 -37 -96 -69 -136 -69c-108 0 -168 90 -168 213c0 74 24 133 67 176c40 38 84 60 150 60c20 0 64 -9 87 -22v146c0 65 -10 78 -30 78l-32 2c-3.20001 0.200012 -6 2 -6 5
-l-2 24c40.5 3 109.9 16 135 26c9 0 13 -3 13 -10c0 0 -3 -40 -3 -105v-454v-13v-88c0 -154 21 -184 50 -184c30 0 35 20 41 41c5 21 19 39 46 39c21 0 34 -14 34 -36c0 -31 -31 -76 -116 -76c-54.5 0 -117.3 38.9 -128.3 178.9zM343 129v216c-24 38 -51 59 -98 59
-c-20 0 -62 -3 -93 -50c-15 -21 -28 -61 -28 -133c0 -125 55 -184 109 -184c26 0 65 21 110 57v35z" />
-    <glyph glyph-name="uni0257" unicode="&#x257;" horiz-adv-x="540" 
-d="M343 477c0 158 86 221 153 221c41 0 63 -12 83 -30c15 -13 26 -29 26 -46s-9 -38 -35 -38c-27 0 -41 14 -46 41c-4 20 -11 39 -35 39c-53 0 -71 -70 -71 -190v-358c0 -50 3.60001 -55.8 25 -58l48 -5l3 -23c-62 -11 -106 -24 -128 -42h-23l2 70l-2 1
-c-46 -37 -96 -69 -136 -69c-108 0 -168 90 -168 213c0 74 24 133 67 176c40 38 84 60 150 60c20 0 64 -9 87 -22v60zM343 94v251c-24 38 -51 59 -98 59c-20 0 -62 -3 -93 -50c-15 -21 -28 -61 -28 -133c0 -125 55 -184 109 -184c26 0 65 21 110 57z" />
-    <glyph glyph-name="uni0293" unicode="&#x293;" horiz-adv-x="435" 
-d="M312 -117c-33 51 -80 93 -144 93c-48 0 -88 -40 -88 -89c0 -50 49 -89 97 -89c61 0 114 29 135 85zM319 -87c5 19 8 41 8 66c0 90 -39 143 -122 143c-17 0 -43 -4 -60 -11l135 277h-151c-15 0 -26 -1 -35 -4c-13 -5 -23 -30 -30 -69l-21 2l18 125l18 -3c3 -6 13 -9 36 -9
-h239c10 0 14 -3 14 -8c0 -12 -5 -24 -16 -34l-107 -227c52 -2 152 -34 152 -174c0 -56 -21 -104 -46 -133c12.5 -26.1 24.7 -55.9 35.1 -85.8l-23.2 -6c-9.10001 25.2 -19.4 50.3 -29.9 72.8c-42 -39 -98 -61 -155 -61c-60 0 -122 49 -122 113c0 62 50 112 112 112
-c60 0 115 -40 151 -86z" />
-    <glyph glyph-name="uni1E9A" unicode="&#x1e9a;" horiz-adv-x="457" 
-d="M46 611c0 -51 -42 -92 -93 -92c-13 0 -24 2 -35 7l12 30c7 -3 14 -4 23 -4c35 0 57 28 57 59c0 33 -23 59 -57 59c-6 0 -11 0 -16 -2l-8 31c7 2 15 3 24 3c51 0 93 -41 93 -91zM293 233l-79 -21c-74 -19 -95 -65 -95 -110c0 -31 22 -71 72 -71c28 0 62 23 88 44
-c8 6 14 13 14 26v132zM293 48h-2l-20 -16c-44 -34 -74.2 -42 -109 -42c-70 0 -126 26 -126 108c0 68 69 121 165 145l86 21c3 1 6 5 6 12c0 113 -47 130 -81 130c-38 0 -80 -11 -80 -42c0 -11 1 -17 2 -20c2 -4 3 -11 3 -18c0 -13 -18 -34 -47 -34c-23 0 -35 12 -35 36
-c0 57 83 111 165 111c73 0 151 -27 151 -169v-147c0 -46 1 -85 30 -85c12.7 0 29.5 9.8 37 16c11.3 -6.3 15.3 -14.7 17 -27c-20.7 -20 -56.7 -37 -95 -37c-50.4 0 -61 27 -67 58z" />
-    <glyph glyph-name="uni1F01" unicode="&#x1f01;" horiz-adv-x="566" 
-d="M230 699c36 0 47 -18 47 -34c0 -17 -5 -42 -46 -42c-7 0 -11 -7 -11 -18c0 -23 18 -60 60 -68l-4 -17c-91 4 -106 80 -106 106c0 35 22 73 60 73zM409 191l14 -58c13 -53 33 -82 56 -82c25 0 38 7 55 37c12 0 19 -4 25 -11c-22 -63 -47 -87 -91 -87c-37 0 -63 33 -79 101
-l-9 39c-50 -99 -96 -140 -164 -140c-128 0 -182 82 -182 206c0 184 125 243 216 243c73.5 0 113 -48 132.8 -135c2.30002 -10 3.90002 -5.5 6.70001 2l47.5 128c15 0 33 -5 48 -5s36 5 49 5zM359 222l-5 21c-23 96 -49 162 -109 162c-67 0 -127 -71 -127 -186
-c0 -108 29 -195 103 -195c46 0 88 62 122 157z" />
-    <glyph glyph-name="uni1F03" unicode="&#x1f03;" horiz-adv-x="566" 
-d="M157 696c36 0 47 -18 47 -34c0 -17 -5 -42 -46 -42c-7 0 -11 -7 -11 -18c0 -23 18 -60 60 -68l-4 -17c-91 4 -106 80 -106 106c0 35 22 73 60 73zM263 656c-2 4 -3 9 -3 13c0 16 14 33 37 33c18 0 28 -7 31 -18l39 -152s1 -3 1 -4c0 -5 -5 -12 -15 -12c-5 0 -6 2 -8 5z
-M409 191l14 -58c13 -53 33 -82 56 -82c25 0 38 7 55 37c12 0 19 -4 25 -11c-22 -63 -47 -87 -91 -87c-37 0 -63 33 -79 101l-9 39c-50 -99 -96 -140 -164 -140c-128 0 -182 82 -182 206c0 184 125 243 216 243c73.5 0 113 -48 132.8 -135
-c2.30002 -10 3.90002 -5.5 6.70001 2l47.5 128c15 0 33 -5 48 -5s36 5 49 5zM359 222l-5 21c-23 96 -49 162 -109 162c-67 0 -127 -71 -127 -186c0 -108 29 -195 103 -195c46 0 88 62 122 157z" />
-    <glyph glyph-name="uni1F05" unicode="&#x1f05;" horiz-adv-x="566" 
-d="M164 696c36 0 47 -18 47 -34c0 -17 -5 -42 -46 -42c-7 0 -11 -7 -11 -18c0 -23 18 -60 60 -68l-4 -17c-91 4 -106 80 -106 106c0 35 22 73 60 73zM338 700c28 0 36 -22 36 -33c0 -4 -1 -8 -3 -12l-75 -139c-2 -4 -6 -5 -9 -5c-12 0 -14 10 -14 13v1l33 155
-c4 16 21 20 32 20zM409 191l14 -58c13 -53 33 -82 56 -82c25 0 38 7 55 37c12 0 19 -4 25 -11c-22 -63 -47 -87 -91 -87c-37 0 -63 33 -79 101l-9 39c-50 -99 -96 -140 -164 -140c-128 0 -182 82 -182 206c0 184 125 243 216 243c73.5 0 113 -48 132.8 -135
-c2.30002 -10 3.90002 -5.5 6.70001 2l47.5 128c15 0 33 -5 48 -5s36 5 49 5zM359 222l-5 21c-23 96 -49 162 -109 162c-67 0 -127 -71 -127 -186c0 -108 29 -195 103 -195c46 0 88 62 122 157z" />
-    <glyph glyph-name="uni1F07" unicode="&#x1f07;" horiz-adv-x="566" 
-d="M302 728c20 0 34 13 47 47l22 -7c-12 -56 -38 -86 -81 -86c-42 0 -73 46 -111 46c-21 0 -35 -16 -46 -46l-22 5c13 55 34 88 75 88c55 0 76 -47 116 -47zM239 663c36 0 47 -18 47 -34c0 -17 -5 -42 -46 -42c-7 0 -11 -7 -11 -18c0 -23 18 -60 60 -68l-4 -17
-c-91 4 -106 80 -106 106c0 35 22 73 60 73zM409 191l14 -58c13 -53 33 -82 56 -82c25 0 38 7 55 37c12 0 19 -4 25 -11c-22 -63 -47 -87 -91 -87c-37 0 -63 33 -79 101l-9 39c-50 -99 -96 -140 -164 -140c-128 0 -182 82 -182 206c0 184 125 243 216 243
-c73.5 0 113 -48 132.8 -135c2.30002 -10 3.90002 -5.5 6.70001 2l47.5 128c15 0 33 -5 48 -5s36 5 49 5zM359 222l-5 21c-23 96 -49 162 -109 162c-67 0 -127 -71 -127 -186c0 -108 29 -195 103 -195c46 0 88 62 122 157z" />
-    <glyph glyph-name="uni1F09" unicode="&#x1f09;" horiz-adv-x="695" 
-d="M148 725c36 0 47 -18 47 -34c0 -17 -5 -42 -46 -42c-7 0 -11 -7 -11 -18c0 -23 18 -60 60 -68l-4 -17c-91 4 -106 80 -106 106c0 35 22 73 60 73zM263 283h177l-94 272h-6l-102.2 -258.7c-3.8 -10.3 3.2 -13.3 25.2 -13.3zM155 79c-15.6 -41.1 31.4 -45.4 69 -48
-c6 -6 6 -27 0 -33c-37 1 -87 2 -128 2c-30.3 0 -63 -1 -89 -2c-6 6 -6 27 0 33c43.5 3 74 9 100 71l227 536c13 0 40 11 55 20l206 -572c17.4 -48.2 51.2 -51.5 90 -55c6 -6 6 -27 0 -33c-35 1 -73 2 -114 2c-39 0 -94 -1 -131 -2c-6 6 -6 27 0 33c47.6 3.4 85.8 6.5 74 41
-l-58 169h-211c-24 0 -30 -4 -35 -17z" />
-    <glyph glyph-name="uni1F0B" unicode="&#x1f0b;" horiz-adv-x="709" 
-d="M9 719c36 0 47 -18 47 -34c0 -17 -5 -42 -46 -42c-7 0 -11 -7 -11 -18c0 -23 18 -60 60 -68l-4 -17c-91 4 -106 80 -106 106c0 35 22 73 60 73zM115 679c-2 4 -3 9 -3 13c0 16 14 33 37 33c18 0 28 -7 31 -18l39 -152s1 -3 1 -4c0 -5 -5 -12 -15 -12c-5 0 -6 2 -8 5z
-M278 283h177l-94 272h-6l-102.2 -258.7c-3.8 -10.3 3.2 -13.3 25.2 -13.3zM170 79c-15.6 -41.1 31.4 -45.4 69 -48c6 -6 6 -27 0 -33c-37 1 -87 2 -128 2c-30.3 0 -63 -1 -89 -2c-6 6 -6 27 0 33c43.5 3 74 9 100 71l227 536c13 0 40 11 55 20l206 -572
-c17.4 -48.2 51.2 -51.5 90 -55c6 -6 6 -27 0 -33c-35 1 -73 2 -114 2c-39 0 -94 -1 -131 -2c-6 6 -6 27 0 33c47.6 3.4 85.8 6.5 74 41l-58 169h-211c-24 0 -30 -4 -35 -17z" />
-    <glyph glyph-name="uni1F0D" unicode="&#x1f0d;" horiz-adv-x="702" 
-d="M41 720c36 0 47 -18 47 -34c0 -17 -5 -42 -46 -42c-7 0 -11 -7 -11 -18c0 -23 18 -60 60 -68l-4 -17c-91 4 -106 80 -106 106c0 35 22 73 60 73zM215 724c28 0 36 -22 36 -33c0 -4 -1 -8 -3 -12l-75 -139c-2 -4 -6 -5 -9 -5c-12 0 -14 10 -14 13v1l33 155
-c4 16 21 20 32 20zM270 283h177l-94 272h-6l-102.2 -258.7c-3.8 -10.3 3.2 -13.3 25.2 -13.3zM162 79c-15.6 -41.1 31.4 -45.4 69 -48c6 -6 6 -27 0 -33c-37 1 -87 2 -128 2c-30.3 0 -63 -1 -89 -2c-6 6 -6 27 0 33c43.5 3 74 9 100 71l227 536c13 0 40 11 55 20l206 -572
-c17.4 -48.2 51.2 -51.5 90 -55c6 -6 6 -27 0 -33c-35 1 -73 2 -114 2c-39 0 -94 -1 -131 -2c-6 6 -6 27 0 33c47.6 3.4 85.8 6.5 74 41l-58 169h-211c-24 0 -30 -4 -35 -17z" />
-    <glyph glyph-name="uni1F0F" unicode="&#x1f0f;" horiz-adv-x="717" 
-d="M162 675c20 0 34 13 47 47l22 -7c-12 -56 -38 -86 -81 -86c-42 0 -73 46 -111 46c-21 0 -35 -16 -46 -46l-22 5c13 55 34 88 75 88c55 0 76 -47 116 -47zM99 610c36 0 47 -18 47 -34c0 -17 -5 -42 -46 -42c-7 0 -11 -7 -11 -18c0 -23 18 -60 60 -68l-4 -17
-c-91 4 -106 80 -106 106c0 35 22 73 60 73zM285 283h177l-94 272h-6l-102.2 -258.7c-3.79999 -10.3 3.20001 -13.3 25.2 -13.3zM177 79c-15.6 -41.1 31.4 -45.4 69 -48c6 -6 6 -27 0 -33c-37 1 -87 2 -128 2c-30.3 0 -63 -1 -89 -2c-6 6 -6 27 0 33c43.5 3 74 9 100 71
-l227 536c13 0 40 11 55 20l206 -572c17.4 -48.2 51.2 -51.5 90 -55c6 -6 6 -27 0 -33c-35 1 -73 2 -114 2c-39 0 -94 -1 -131 -2c-6 6 -6 27 0 33c47.6 3.4 85.8 6.5 74 41l-58 169h-211c-24 0 -30 -4 -35 -17z" />
-    <glyph glyph-name="uni1F11" unicode="&#x1f11;" horiz-adv-x="397" 
-d="M212 699c36 0 47 -18 47 -34c0 -17 -5 -42 -46 -42c-7 0 -11 -7 -11 -18c0 -23 18 -60 60 -68l-4 -17c-91 4 -106 80 -106 106c0 35 22 73 60 73zM123 121c0 -53 42 -93 97 -93c47 0 85 16 124 43c8.70001 -2.8 14.6 -10.2 15 -21c-33 -31 -87 -60 -150 -60
-c-132 0 -165 65 -165 123c0 38 19 91 91 116v2c-45.8 19.3 -72 47.7 -72 96c0 40 35 112 153 112c77 0 135 -36 135 -72c0 -29 -19 -37 -32 -37c-22 0 -32 16 -42 33c-11 22 -28 43 -67 43c-31 0 -76 -6 -76 -72c0 -69 36 -91 79 -91c1 0 46 5 51 5c19 0 29 -9 29 -21
-s-7 -23 -30 -23c-8 0 -42 6 -51 6c-56 0 -89 -33 -89 -89z" />
-    <glyph glyph-name="uni1F13" unicode="&#x1f13;" horiz-adv-x="397" 
-d="M130 694c36 0 47 -18 47 -34c0 -17 -5 -42 -46 -42c-7 0 -11 -7 -11 -18c0 -23 18 -60 60 -68l-4 -17c-91 4 -106 80 -106 106c0 35 22 73 60 73zM236 654c-2 4 -3 9 -3 13c0 16 14 33 37 33c18 0 28 -7 31 -18l39 -152s1 -3 1 -4c0 -5 -5 -12 -15 -12c-5 0 -6 2 -8 5z
-M123 121c0 -53 42 -93 97 -93c47 0 85 16 124 43c8.70001 -2.8 14.6 -10.2 15 -21c-33 -31 -87 -60 -150 -60c-132 0 -165 65 -165 123c0 38 19 91 91 116v2c-45.8 19.3 -72 47.7 -72 96c0 40 35 112 153 112c77 0 135 -36 135 -72c0 -29 -19 -37 -32 -37
-c-22 0 -32 16 -42 33c-11 22 -28 43 -67 43c-31 0 -76 -6 -76 -72c0 -69 36 -91 79 -91c1 0 46 5 51 5c19 0 29 -9 29 -21s-7 -23 -30 -23c-8 0 -42 6 -51 6c-56 0 -89 -33 -89 -89z" />
-    <glyph glyph-name="uni1FBF" unicode="&#x1fbf;" horiz-adv-x="182" 
-d="M79 652c38 0 60 -37 60 -73s-32 -98 -102 -106l-5 17c42 9 63 46 63 69c0 13 -6 21 -14 21c-41 0 -46 22 -46 38s14 34 44 34z" />
-    <glyph glyph-name="uni1FCD" unicode="&#x1fcd;" horiz-adv-x="338" 
-d="M195 611c-2 4 -3 9 -3 13c0 16 14 33 37 33c18 0 28 -7 31 -18l39 -152s1 -3 1 -4c0 -5 -5 -12 -15 -12c-5 0 -6 2 -8 5zM82 651c38 0 60 -37 60 -73s-32 -98 -102 -106l-5 17c42 9 63 46 63 69c0 13 -6 21 -14 21c-41 0 -46 22 -46 38s14 34 44 34z" />
-    <glyph glyph-name="uni037A" unicode="&#x37a;" horiz-adv-x="331" 
-d="M128 -74l53 13l22 -7v-52c0 -55 12 -78 32 -78c18 0 34 24 41 51l25 -8c-15 -69 -61 -83 -86 -83c-48 0 -87 24 -87 82v82z" />
-    <glyph glyph-name="uni1FB2" unicode="&#x1fb2;" horiz-adv-x="566" 
-d="M200 -56l53 13l22 -7v-52c0 -55 12 -78 32 -78c18 0 34 24 41 51l25 -8c-15 -69 -61 -83 -86 -83c-48 0 -87 24 -87 82v82zM185 673c5 4 11 5 18 5c5 0 10 -1 15 -3c6 -4 10 -8 12 -13l62 -146c0 -1 1 -2 1 -3c0 -3 -2 -6 -4 -8c-3 -3 -7 -4 -10 -4s-6 1 -8 3l-101 123
-c-3 4 -5 8 -5 13c0 13 7 24 20 33zM409 191l14 -58c13 -53 33 -82 56 -82c25 0 38 7 55 37c12 0 19 -4 25 -11c-22 -63 -47 -87 -91 -87c-37 0 -63 33 -79 101l-9 39c-50 -99 -96 -140 -164 -140c-128 0 -182 82 -182 206c0 184 125 243 216 243c73.5 0 113 -48 132.8 -135
-c2.30002 -10 3.90002 -5.5 6.70001 2l47.5 128c15 0 33 -5 48 -5s36 5 49 5zM359 222l-5 21c-23 96 -49 162 -109 162c-67 0 -127 -71 -127 -186c0 -108 29 -195 103 -195c46 0 88 62 122 157z" />
-    <glyph glyph-name="uni1FB3" unicode="&#x1fb3;" horiz-adv-x="566" 
-d="M200 -56l53 13l22 -7v-52c0 -55 12 -78 32 -78c18 0 34 24 41 51l25 -8c-15 -69 -61 -83 -86 -83c-48 0 -87 24 -87 82v82zM409 191l14 -58c13 -53 33 -82 56 -82c25 0 38 7 55 37c12 0 19 -4 25 -11c-22 -63 -47 -87 -91 -87c-37 0 -63 33 -79 101l-9 39
-c-50 -99 -96 -140 -164 -140c-128 0 -182 82 -182 206c0 184 125 243 216 243c73.5 0 113 -48 132.8 -135c2.30002 -10 3.90002 -5.5 6.70001 2l47.5 128c15 0 33 -5 48 -5s36 5 49 5zM359 222l-5 21c-23 96 -49 162 -109 162c-67 0 -127 -71 -127 -186
-c0 -108 29 -195 103 -195c46 0 88 62 122 157z" />
-    <glyph glyph-name="uni1FB4" unicode="&#x1fb4;" horiz-adv-x="566" 
-d="M200 -56l53 13l22 -7v-52c0 -55 12 -78 32 -78c18 0 34 24 41 51l25 -8c-15 -69 -61 -83 -86 -83c-48 0 -87 24 -87 82v82zM282 682c20 0 42 -15 42 -35c0 -5 -2 -13 -6 -18l-92 -122c-3 -4 -8 -8 -12 -8c-8 0 -14 6 -14 13c0 3 1 7 2 10l52 143c4 11 15 17 28 17z
-M409 191l14 -58c13 -53 33 -82 56 -82c25 0 38 7 55 37c12 0 19 -4 25 -11c-22 -63 -47 -87 -91 -87c-37 0 -63 33 -79 101l-9 39c-50 -99 -96 -140 -164 -140c-128 0 -182 82 -182 206c0 184 125 243 216 243c73.5 0 113 -48 132.8 -135
-c2.30002 -10 3.90002 -5.5 6.70001 2l47.5 128c15 0 33 -5 48 -5s36 5 49 5zM359 222l-5 21c-23 96 -49 162 -109 162c-67 0 -127 -71 -127 -186c0 -108 29 -195 103 -195c46 0 88 62 122 157z" />
-    <glyph glyph-name="uni1FCE" unicode="&#x1fce;" horiz-adv-x="338" 
-d="M251 654c29 0 37 -22 37 -33c0 -4 -1 -8 -3 -12l-76 -139c-1 -4 -5 -5 -8 -5c-12 0 -14 10 -14 13v1l33 155c4 16 21 20 31 20zM82 648c38 0 60 -37 60 -73s-32 -98 -102 -106l-5 17c42 9 63 46 63 69c0 13 -6 21 -14 21c-41 0 -46 22 -46 38s14 34 44 34z" />
-    <glyph glyph-name="uni1FCF" unicode="&#x1fcf;" horiz-adv-x="320" 
-d="M231 650c20 0 34 13 47 47l22 -7c-12 -56 -38 -86 -81 -86c-42 0 -73 46 -111 46c-21 0 -35 -16 -46 -46l-22 5c13 55 34 88 75 88c55 0 76 -47 116 -47zM165 581c38 0 60 -37 60 -73s-32 -98 -102 -106l-5 17c42 9 63 46 63 69c0 13 -6 21 -14 21c-41 0 -46 22 -46 38
-s14 34 44 34z" />
-    <glyph glyph-name="uni1FDD" unicode="&#x1fdd;" horiz-adv-x="335" 
-d="M195 611c-2 4 -3 9 -3 13c0 16 14 33 37 33c18 0 28 -7 31 -18l39 -152s1 -3 1 -4c0 -5 -5 -12 -15 -12c-5 0 -6 2 -8 5zM89 651c36 0 47 -18 47 -34c0 -17 -5 -42 -46 -42c-7 0 -11 -7 -11 -18c0 -23 18 -60 60 -68l-4 -17c-91 4 -106 80 -106 106c0 35 22 73 60 73z
-" />
-    <glyph glyph-name="uni1FDE" unicode="&#x1fde;" horiz-adv-x="331" 
-d="M262 654c28 0 36 -22 36 -33c0 -4 -1 -8 -3 -12l-75 -139c-2 -4 -6 -5 -9 -5c-12 0 -14 10 -14 13v1l33 155c4 16 21 20 32 20zM88 650c36 0 47 -18 47 -34c0 -17 -5 -42 -46 -42c-7 0 -11 -7 -11 -18c0 -23 18 -60 60 -68l-4 -17c-91 4 -106 80 -106 106
-c0 35 22 73 60 73z" />
-    <glyph glyph-name="uni1FDF" unicode="&#x1fdf;" horiz-adv-x="356" 
-d="M178 676c36 0 47 -18 47 -34c0 -17 -5 -42 -46 -42c-7 0 -11 -7 -11 -18c0 -23 18 -60 60 -68l-4 -17c-91 4 -106 80 -106 106c0 35 22 73 60 73zM241 741c20 0 34 13 47 47l22 -7c-12 -56 -38 -86 -81 -86c-42 0 -73 46 -111 46c-21 0 -35 -16 -46 -46l-22 5
-c13 55 34 88 75 88c55 0 76 -47 116 -47z" />
-    <glyph glyph-name="uni1FC9" unicode="&#x1fc9;" horiz-adv-x="673" 
-d="M60 724c20 0 42 -15 42 -35c0 -5 -2 -13 -6 -18l-92 -122c-3 -4 -8 -8 -12 -8c-8 0 -14 6 -14 13c0 3 1 7 2 10l52 143c4 11 15 17 28 17zM385 361c85 0 88 13 91 68c6 6 27 6 33 0c-1 -24 -2 -58 -2 -86c0 -34.3 1 -62 2 -88c-6 -6 -27 -6 -33 0c-3 45 -6 68 -91 68h-91
-v-221c0 -47 14 -63 56 -63h116c76 0 111 59 131 131c13.1 3.2 24.6 1 35 -5c-8 -51 -23 -117 -37 -167c0 0 -80 2 -128 2h-215c-33 0 -93 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c40 -1 98.5 -2 129 -2h255c24 0 32 1 49 4
-c3 0 4 -1 4 -3c2 -8 17 -104 22 -145c-9.79999 -4.70001 -20.6 -6.79999 -33 -5c-22 69 -38 109 -113 109h-75c-54 0 -66 -20 -66 -64v-180h91z" />
-    <glyph glyph-name="uni1FCB" unicode="&#x1fcb;" horiz-adv-x="825" 
-d="M43 726c20 0 42 -15 42 -35c0 -5 -2 -13 -6 -18l-92 -122c-3 -4 -8 -8 -12 -8c-8 0 -14 6 -14 13c0 3 1 7 2 10l52 143c4 11 15 17 28 17zM713 122c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-44 1 -91.7 2 -129 2c-37.1 0 -85 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91
-v199h-342v-199c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-44 1 -92.7 2 -129 2c-37.7 0 -86 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c38 -1 79 -2 129 -2c51 0 92 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-160h342v160
-c0 83 -17 88 -87 91c-6 6 -6 27 0 33c44 -1 91.7 -2 129 -2c38 0 89 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-401z" />
-    <glyph glyph-name="uni1FCC" unicode="&#x1fcc;" horiz-adv-x="914" 
-d="M745 303l62 29l11 -17v-205c0 -62 9 -82 30 -82c25 0 34 16 39 51l24 -5c-13 -69 -44 -84 -87 -84c-45 0 -79 26 -79 84v229zM618 122c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-44 1 -91.7 2 -129 2c-37.1 0 -85 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v199h-342
-v-199c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-44 1 -92.7 2 -129 2c-37.7 0 -86 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c38 -1 79 -2 129 -2c51 0 92 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-160h342v160
-c0 83 -17 88 -87 91c-6 6 -6 27 0 33c44 -1 91.7 -2 129 -2c38 0 89 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-401z" />
-    <glyph glyph-name="uni1FE5" unicode="&#x1fe5;" horiz-adv-x="525" 
-d="M277 689c36 0 47 -18 47 -34c0 -17 -5 -42 -46 -42c-7 0 -11 -7 -11 -18c0 -23 18 -60 60 -68l-4 -17c-91 4 -106 80 -106 106c0 35 22 73 60 73zM149 -207l-84 -31l-11 18c13 34 24 86 24 210v194c0 138 33 172 60 199c42 43 91 56 138 56c120 0 210 -94 210 -208
-c0 -153 -98 -241 -232 -241c-43 0 -69 10 -97 27v-78c0 -58 0 -106 -8 -146zM400 189c0 158 -64 212 -144 212c-43 0 -99 -27 -99 -173v-153c31 -30 66 -52 111 -52c83 0 132 59 132 166z" />
-    <glyph glyph-name="uni1FEC" unicode="&#x1fec;" horiz-adv-x="597" 
-d="M29 723c36 0 47 -18 47 -34c0 -17 -5 -42 -46 -42c-7 0 -11 -7 -11 -18c0 -23 18 -60 60 -68l-4 -17c-91 4 -106 80 -106 106c0 35 22 73 60 73zM271 554v-233c11 -3 51 -5 76 -5c97 0 149 44 149 152c0 127 -69 150 -138 150c-72 0 -87 -35 -87 -64zM186 523
-c0 83 -17 88 -87 91c-6 6 -6 27 0 33c40 -1 92.3 -2 129 -2c40 0 98.7 7 137 7c185 0 224 -107 224 -166c0 -85 -55 -204 -237 -204c-35 0 -59 3 -81 10v-170c0 -83 24 -87 102 -91c6 -6 6 -27 0 -33c-50 1 -108.6 2 -144 2c-35.7 0 -85 -1 -130 -2c-6 6 -6 27 0 33
-c70 3 87 8 87 91v401z" />
-    <glyph glyph-name="uni1FEE" unicode="&#x1fee;" horiz-adv-x="368" 
-d="M244 786c20 0 42 -15 42 -35c0 -5 -2 -13 -6 -18l-92 -122c-3 -4 -8 -8 -12 -8c-8 0 -14 6 -14 13c0 3 1 7 2 10l52 143c4 11 15 17 28 17zM50 575c0 26 21 48 47 48s47 -22 47 -48s-21 -47 -47 -47s-47 21 -47 47zM219 575c0 26 21 48 47 48s47 -22 47 -48
-s-21 -47 -47 -47s-47 21 -47 47z" />
-    <glyph glyph-name="uni1FF2" unicode="&#x1ff2;" horiz-adv-x="658" 
-d="M288 -56l53 13l22 -7v-52c0 -55 12 -78 32 -78c18 0 34 24 41 51l25 -8c-15 -69 -61 -83 -86 -83c-48 0 -87 24 -87 82v82zM249 665c5 4 11 5 18 5c5 0 10 -1 15 -3c6 -4 10 -8 12 -13l62 -146c0 -1 1 -2 1 -3c0 -3 -2 -6 -4 -8c-3 -3 -7 -4 -10 -4s-6 1 -8 3l-101 123
-c-3 4 -5 8 -5 13c0 13 7 24 20 33zM624 189c0 -104 -68 -199 -190 -199c-51 0 -91 31 -113 103c-27 -72 -60 -103 -117 -103c-90 0 -170 73 -170 204c0 118 70 200 183 248c7.60001 -4 12 -13.7 13 -23c-65 -41 -114 -88 -114 -210c0 -112 27 -182 101 -182
-c37 0 60 30 91 101c-13 33 -15 70 -15 90c0 31 11 66 37 66c27 0 30 -13 30 -37s-9 -79 -24 -116c30 -69 65 -104 105 -104c72 0 101 37 101 147c0 73 -17 166 -121 245c1 8.10001 1.89999 20.1 15 23c94 -45 188 -137 188 -253z" />
-    <glyph glyph-name="uni1FF3" unicode="&#x1ff3;" horiz-adv-x="658" 
-d="M288 -56l53 13l22 -7v-52c0 -55 12 -78 32 -78c18 0 34 24 41 51l25 -8c-15 -69 -61 -83 -86 -83c-48 0 -87 24 -87 82v82zM624 189c0 -104 -68 -199 -190 -199c-51 0 -91 31 -113 103c-27 -72 -60 -103 -117 -103c-90 0 -170 73 -170 204c0 118 70 200 183 248
-c7.60001 -4 12 -13.7 13 -23c-65 -41 -114 -88 -114 -210c0 -112 27 -182 101 -182c37 0 60 30 91 101c-13 33 -15 70 -15 90c0 31 11 66 37 66c27 0 30 -13 30 -37s-9 -79 -24 -116c30 -69 65 -104 105 -104c72 0 101 37 101 147c0 73 -17 166 -121 245
-c1 8.10001 1.89999 20.1 15 23c94 -45 188 -137 188 -253z" />
-    <glyph glyph-name="uni1FF4" unicode="&#x1ff4;" horiz-adv-x="658" 
-d="M306 -56l53 13l22 -7v-52c0 -55 12 -78 32 -78c18 0 34 24 41 51l25 -8c-15 -69 -61 -83 -86 -83c-48 0 -87 24 -87 82v82zM375 684c20 0 42 -15 42 -35c0 -5 -2 -13 -6 -18l-92 -122c-3 -4 -8 -8 -12 -8c-8 0 -14 6 -14 13c0 3 1 7 2 10l52 143c4 11 15 17 28 17z
-M624 189c0 -104 -68 -199 -190 -199c-51 0 -91 31 -113 103c-27 -72 -60 -103 -117 -103c-90 0 -170 73 -170 204c0 118 70 200 183 248c7.60001 -4 12 -13.7 13 -23c-65 -41 -114 -88 -114 -210c0 -112 27 -182 101 -182c37 0 60 30 91 101c-13 33 -15 70 -15 90
-c0 31 11 66 37 66c27 0 30 -13 30 -37s-9 -79 -24 -116c30 -69 65 -104 105 -104c72 0 101 37 101 147c0 73 -17 166 -121 245c1 8.10001 1.89999 20.1 15 23c94 -45 188 -137 188 -253z" />
-    <glyph glyph-name="uni1FF7" unicode="&#x1ff7;" horiz-adv-x="658" 
-d="M288 -56l53 13l22 -7v-52c0 -55 12 -78 32 -78c18 0 34 24 41 51l25 -8c-15 -69 -61 -83 -86 -83c-48 0 -87 24 -87 82v82zM387 577c20 0 34 13 47 47l22 -7c-12 -56 -38 -86 -81 -86c-42 0 -73 46 -111 46c-21 0 -35 -16 -46 -46l-22 5c13 55 34 88 75 88
-c55 0 76 -47 116 -47zM624 189c0 -104 -68 -199 -190 -199c-51 0 -91 31 -113 103c-27 -72 -60 -103 -117 -103c-90 0 -170 73 -170 204c0 118 70 200 183 248c7.60001 -4 12 -13.7 13 -23c-65 -41 -114 -88 -114 -210c0 -112 27 -182 101 -182c37 0 60 30 91 101
-c-13 33 -15 70 -15 90c0 31 11 66 37 66c27 0 30 -13 30 -37s-9 -79 -24 -116c30 -69 65 -104 105 -104c72 0 101 37 101 147c0 73 -17 166 -121 245c1 8.10001 1.89999 20.1 15 23c94 -45 188 -137 188 -253z" />
-    <glyph glyph-name="uni1FFC" unicode="&#x1ffc;" horiz-adv-x="886" 
-d="M718 303l62 29l11 -17v-205c0 -62 9 -82 30 -82c25 0 34 16 39 51l24 -5c-13 -69 -44 -84 -87 -84c-45 0 -79 26 -79 84v229zM457 117l-3 -48h97c49 0 70 -7 76 50c10 4 18.7 4 26 0c0 -40 -3 -85 -7 -119h-208c-12 0 -17 5 -17 14l8 129c92 53 132 126 132 234
-c0 141 -80 247 -210 247c-139 0 -209 -118 -209 -246c0 -112 39 -173 131 -235l8 -128c0 -9 -6 -15 -17 -15h-213c-4.7 38.2 -7 78 -7 119c8.3 4.3 16.7 3.6 25 0c5 -53 24 -50 77 -50h103l-4 48c-108 37 -195 132 -195 260c0 132 104 281 301 281c199 0 301 -133 301 -281
-c0 -120 -84 -223 -195 -260z" />
-    <glyph glyph-name="uni1F15" unicode="&#x1f15;" horiz-adv-x="397" 
-d="M134 695c36 0 47 -18 47 -34c0 -17 -5 -42 -46 -42c-7 0 -11 -7 -11 -18c0 -23 18 -60 60 -68l-4 -17c-91 4 -106 80 -106 106c0 35 22 73 60 73zM308 699c28 0 36 -22 36 -33c0 -4 -1 -8 -3 -12l-75 -139c-2 -4 -6 -5 -9 -5c-12 0 -14 10 -14 13v1l33 155
-c4 16 21 20 32 20zM123 121c0 -53 42 -93 97 -93c47 0 85 16 124 43c8.70001 -2.8 14.6 -10.2 15 -21c-33 -31 -87 -60 -150 -60c-132 0 -165 65 -165 123c0 38 19 91 91 116v2c-45.8 19.3 -72 47.7 -72 96c0 40 35 112 153 112c77 0 135 -36 135 -72c0 -29 -19 -37 -32 -37
-c-22 0 -32 16 -42 33c-11 22 -28 43 -67 43c-31 0 -76 -6 -76 -72c0 -69 36 -91 79 -91c1 0 46 5 51 5c19 0 29 -9 29 -21s-7 -23 -30 -23c-8 0 -42 6 -51 6c-56 0 -89 -33 -89 -89z" />
-    <glyph glyph-name="uni1F19" unicode="&#x1f19;" horiz-adv-x="646" 
-d="M7 724c36 0 47 -18 47 -34c0 -17 -5 -42 -46 -42c-7 0 -11 -7 -11 -18c0 -23 18 -60 60 -68l-4 -17c-91 4 -106 80 -106 106c0 35 22 73 60 73zM358 361c85 0 88 13 91 68c6 6 27 6 33 0c-1 -24 -2 -58 -2 -86c0 -34.3 1 -62 2 -88c-6 -6 -27 -6 -33 0
-c-3 45 -6 68 -91 68h-91v-221c0 -47 14 -63 56 -63h116c76 0 111 59 131 131c13.1 3.2 24.6 1 35 -5c-8 -51 -23 -117 -37 -167c0 0 -80 2 -128 2h-215c-33 0 -93 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c40 -1 98.5 -2 129 -2
-h255c24 0 32 1 49 4c3 0 4 -1 4 -3c2 -8 17 -104 22 -145c-9.79999 -4.70001 -20.6 -6.79999 -33 -5c-22 69 -38 109 -113 109h-75c-54 0 -66 -20 -66 -64v-180h91z" />
-    <glyph glyph-name="uni1F1B" unicode="&#x1f1b;" horiz-adv-x="815" 
-d="M9 718c36 0 47 -18 47 -34c0 -17 -5 -42 -46 -42c-7 0 -11 -7 -11 -18c0 -23 18 -60 60 -68l-4 -17c-91 4 -106 80 -106 106c0 35 22 73 60 73zM115 678c-2 4 -3 9 -3 13c0 16 14 33 37 33c18 0 28 -7 31 -18l39 -152s1 -3 1 -4c0 -5 -5 -12 -15 -12c-5 0 -6 2 -8 5z
-M527 361c85 0 88 13 91 68c6 6 27 6 33 0c-1 -24 -2 -58 -2 -86c0 -34.3 1 -62 2 -88c-6 -6 -27 -6 -33 0c-3 45 -6 68 -91 68h-91v-221c0 -47 14 -63 56 -63h116c76 0 111 59 131 131c13.1 3.2 24.6 1 35 -5c-8 -51 -23 -117 -37 -167c0 0 -80 2 -128 2h-215
-c-33 0 -93 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c40 -1 98.5 -2 129 -2h255c24 0 32 1 49 4c3 0 4 -1 4 -3c2 -8 17 -104 22 -145c-9.79999 -4.70001 -20.6 -6.79999 -33 -5c-22 69 -38 109 -113 109h-75
-c-54 0 -66 -20 -66 -64v-180h91z" />
-    <glyph glyph-name="uni1F1D" unicode="&#x1f1d;" horiz-adv-x="807" 
-d="M3 720c36 0 47 -18 47 -34c0 -17 -5 -42 -46 -42c-7 0 -11 -7 -11 -18c0 -23 18 -60 60 -68l-4 -17c-91 4 -106 80 -106 106c0 35 22 73 60 73zM177 724c28 0 36 -22 36 -33c0 -4 -1 -8 -3 -12l-75 -139c-2 -4 -6 -5 -9 -5c-12 0 -14 10 -14 13v1l33 155
-c4 16 21 20 32 20zM518 361c85 0 88 13 91 68c6 6 27 6 33 0c-1 -24 -2 -58 -2 -86c0 -34.3 1 -62 2 -88c-6 -6 -27 -6 -33 0c-3 45 -6 68 -91 68h-91v-221c0 -47 14 -63 56 -63h116c76 0 111 59 131 131c13.1 3.2 24.6 1 35 -5c-8 -51 -23 -117 -37 -167c0 0 -80 2 -128 2
-h-215c-33 0 -93 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c40 -1 98.5 -2 129 -2h255c24 0 32 1 49 4c3 0 4 -1 4 -3c2 -8 17 -104 22 -145c-9.79999 -4.70001 -20.6 -6.79999 -33 -5c-22 69 -38 109 -113 109h-75
-c-54 0 -66 -20 -66 -64v-180h91z" />
-    <glyph glyph-name="uni1F21" unicode="&#x1f21;" horiz-adv-x="528" 
-d="M290 699c36 0 47 -18 47 -34c0 -17 -5 -42 -46 -42c-7 0 -11 -7 -11 -18c0 -23 18 -60 60 -68l-4 -17c-91 4 -106 80 -106 106c0 35 22 73 60 73zM174 358c0 -5 0.800003 -8.20001 2.39999 -5.89999c45.6 48.4 86.1 86.9 160.6 86.9c68 0 109 -43 109 -158v-287
-c0 -51 3 -99 3 -138c0 -24 -1 -44 -5 -60l-80 -34l-11 18c13 34 14 100 14 214v275c0 65 -6 118 -67 118c-34.5 0 -78.5 -29 -126 -76.5v-238.5c0 -38 9 -82 -29 -82c-32 0 -46 10 -50 27c-2 10 0 37 0 55v245c0 58 -11 63 -65 68c-2 6 -4 22 -2 28c69 9 98 18 126 29
-c8 0 9.89999 -3.39999 12 -8c4.7 -10.3 8 -36 8 -76z" />
-    <glyph glyph-name="uni1F23" unicode="&#x1f23;" horiz-adv-x="528" 
-d="M234 693c36 0 47 -18 47 -34c0 -17 -5 -42 -46 -42c-7 0 -11 -7 -11 -18c0 -23 18 -60 60 -68l-4 -17c-91 4 -106 80 -106 106c0 35 22 73 60 73zM340 653c-2 4 -3 9 -3 13c0 16 14 33 37 33c18 0 28 -7 31 -18l39 -152s1 -3 1 -4c0 -5 -5 -12 -15 -12c-5 0 -6 2 -8 5z
-M174 358c0 -5 0.800003 -8.20001 2.39999 -5.89999c45.6 48.4 86.1 86.9 160.6 86.9c68 0 109 -43 109 -158v-287c0 -51 3 -99 3 -138c0 -24 -1 -44 -5 -60l-80 -34l-11 18c13 34 14 100 14 214v275c0 65 -6 118 -67 118c-34.5 0 -78.5 -29 -126 -76.5v-238.5
-c0 -38 9 -82 -29 -82c-32 0 -46 10 -50 27c-2 10 0 37 0 55v245c0 58 -11 63 -65 68c-2 6 -4 22 -2 28c69 9 98 18 126 29c8 0 9.89999 -3.39999 12 -8c4.7 -10.3 8 -36 8 -76z" />
-    <glyph glyph-name="uni1F25" unicode="&#x1f25;" horiz-adv-x="528" 
-d="M236 693c36 0 47 -18 47 -34c0 -17 -5 -42 -46 -42c-7 0 -11 -7 -11 -18c0 -23 18 -60 60 -68l-4 -17c-91 4 -106 80 -106 106c0 35 22 73 60 73zM410 697c28 0 36 -22 36 -33c0 -4 -1 -8 -3 -12l-75 -139c-2 -4 -6 -5 -9 -5c-12 0 -14 10 -14 13v1l33 155
-c4 16 21 20 32 20zM174 358c0 -5 0.800003 -8.20001 2.39999 -5.89999c45.6 48.4 86.1 86.9 160.6 86.9c68 0 109 -43 109 -158v-287c0 -51 3 -99 3 -138c0 -24 -1 -44 -5 -60l-80 -34l-11 18c13 34 14 100 14 214v275c0 65 -6 118 -67 118c-34.5 0 -78.5 -29 -126 -76.5
-v-238.5c0 -38 9 -82 -29 -82c-32 0 -46 10 -50 27c-2 10 0 37 0 55v245c0 58 -11 63 -65 68c-2 6 -4 22 -2 28c69 9 98 18 126 29c8 0 9.89999 -3.39999 12 -8c4.7 -10.3 8 -36 8 -76z" />
-    <glyph glyph-name="uni1F27" unicode="&#x1f27;" horiz-adv-x="528" 
-d="M370 728c20 0 34 13 47 47l22 -7c-12 -56 -38 -86 -81 -86c-42 0 -73 46 -111 46c-21 0 -35 -16 -46 -46l-22 5c13 55 34 88 75 88c55 0 76 -47 116 -47zM307 663c36 0 47 -18 47 -34c0 -17 -5 -42 -46 -42c-7 0 -11 -7 -11 -18c0 -23 18 -60 60 -68l-4 -17
-c-91 4 -106 80 -106 106c0 35 22 73 60 73zM174 358c0 -5 0.800003 -8.20001 2.39999 -5.89999c45.6 48.4 86.1 86.9 160.6 86.9c68 0 109 -43 109 -158v-287c0 -51 3 -99 3 -138c0 -24 -1 -44 -5 -60l-80 -34l-11 18c13 34 14 100 14 214v275c0 65 -6 118 -67 118
-c-34.5 0 -78.5 -29 -126 -76.5v-238.5c0 -38 9 -82 -29 -82c-32 0 -46 10 -50 27c-2 10 0 37 0 55v245c0 58 -11 63 -65 68c-2 6 -4 22 -2 28c69 9 98 18 126 29c8 0 9.89999 -3.39999 12 -8c4.7 -10.3 8 -36 8 -76z" />
-    <glyph glyph-name="uni1F29" unicode="&#x1f29;" horiz-adv-x="820" 
-d="M16 725c36 0 47 -18 47 -34c0 -17 -5 -42 -46 -42c-7 0 -11 -7 -11 -18c0 -23 18 -60 60 -68l-4 -17c-91 4 -106 80 -106 106c0 35 22 73 60 73zM708 122c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-44 1 -91.7 2 -129 2c-37.1 0 -85 -1 -130 -2c-6 6 -6 27 0 33
-c70 3 87 8 87 91v199h-342v-199c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-44 1 -92.7 2 -129 2c-37.7 0 -86 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c38 -1 79 -2 129 -2c51 0 92 1 130 2c6 -6 6 -27 0 -33
-c-70 -3 -87 -8 -87 -91v-160h342v160c0 83 -17 88 -87 91c-6 6 -6 27 0 33c44 -1 91.7 -2 129 -2c38 0 89 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-401z" />
-    <glyph glyph-name="uni1F2B" unicode="&#x1f2b;" horiz-adv-x="977" 
-d="M11 718c36 0 47 -18 47 -34c0 -17 -5 -42 -46 -42c-7 0 -11 -7 -11 -18c0 -23 18 -60 60 -68l-4 -17c-91 4 -106 80 -106 106c0 35 22 73 60 73zM117 678c-2 4 -3 9 -3 13c0 16 14 33 37 33c18 0 28 -7 31 -18l39 -152s1 -3 1 -4c0 -5 -5 -12 -15 -12c-5 0 -6 2 -8 5z
-M865 122c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-44 1 -91.7 2 -129 2c-37.1 0 -85 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v199h-342v-199c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-44 1 -92.7 2 -129 2c-37.7 0 -86 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401
-c0 83 -17 88 -87 91c-6 6 -6 27 0 33c38 -1 79 -2 129 -2c51 0 92 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-160h342v160c0 83 -17 88 -87 91c-6 6 -6 27 0 33c44 -1 91.7 -2 129 -2c38 0 89 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-401z" />
-    <glyph glyph-name="uni1F2D" unicode="&#x1f2d;" horiz-adv-x="970" 
-d="M9 721c36 0 47 -18 47 -34c0 -17 -5 -42 -46 -42c-7 0 -11 -7 -11 -18c0 -23 18 -60 60 -68l-4 -17c-91 4 -106 80 -106 106c0 35 22 73 60 73zM183 725c28 0 36 -22 36 -33c0 -4 -1 -8 -3 -12l-75 -139c-2 -4 -6 -5 -9 -5c-12 0 -14 10 -14 13v1l33 155
-c4 16 21 20 32 20zM858 122c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-44 1 -91.7 2 -129 2c-37.1 0 -85 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v199h-342v-199c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-44 1 -92.7 2 -129 2c-37.7 0 -86 -1 -130 -2c-6 6 -6 27 0 33
-c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c38 -1 79 -2 129 -2c51 0 92 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-160h342v160c0 83 -17 88 -87 91c-6 6 -6 27 0 33c44 -1 91.7 -2 129 -2c38 0 89 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91
-v-401z" />
-    <glyph glyph-name="uni1F2F" unicode="&#x1f2f;" horiz-adv-x="964" 
-d="M147 676c20 0 34 13 47 47l22 -7c-12 -56 -38 -86 -81 -86c-42 0 -73 46 -111 46c-21 0 -35 -16 -46 -46l-22 5c13 55 34 88 75 88c55 0 76 -47 116 -47zM84 611c36 0 47 -18 47 -34c0 -17 -5 -42 -46 -42c-7 0 -11 -7 -11 -18c0 -23 18 -60 60 -68l-4 -17
-c-91 4 -106 80 -106 106c0 35 22 73 60 73zM852 122c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-44 1 -91.7 2 -129 2c-37.1 0 -85 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v199h-342v-199c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-44 1 -92.7 2 -129 2
-c-37.7 0 -86 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c38 -1 79 -2 129 -2c51 0 92 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-160h342v160c0 83 -17 88 -87 91c-6 6 -6 27 0 33c44 -1 91.7 -2 129 -2c38 0 89 1 130 2
-c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-401z" />
-    <glyph glyph-name="uni1F31" unicode="&#x1f31;" horiz-adv-x="281" 
-d="M132 689c36 0 47 -18 47 -34c0 -17 -5 -42 -46 -42c-7 0 -11 -7 -11 -18c0 -23 18 -60 60 -68l-4 -17c-91 4 -106 80 -106 106c0 35 22 73 60 73zM84 322c0 28 -1 72 -18 107l2 2c6 -1 31 -2 43 -2c19 0 35 2 50 8c0 0 2 -62 2 -94v-244c0 -41 8 -55 23 -55
-c28 0 48 19 67 43c10.6 -2.2 18.4 -7.1 21 -17c-21 -37 -64 -81 -107 -81c-56 0 -83 32.5 -83 92v241z" />
-    <glyph glyph-name="uni1F33" unicode="&#x1f33;" horiz-adv-x="281" 
-d="M50 694c36 0 47 -18 47 -34c0 -17 -5 -42 -46 -42c-7 0 -11 -7 -11 -18c0 -23 18 -60 60 -68l-4 -17c-91 4 -106 80 -106 106c0 35 22 73 60 73zM156 654c-2 4 -3 9 -3 13c0 16 14 33 37 33c18 0 28 -7 31 -18l39 -152s1 -3 1 -4c0 -5 -5 -12 -15 -12c-5 0 -6 2 -8 5z
-M84 322c0 28 -1 72 -18 107l2 2c6 -1 31 -2 43 -2c19 0 35 2 50 8c0 0 2 -62 2 -94v-244c0 -41 8 -55 23 -55c28 0 48 19 67 43c10.6 -2.2 18.4 -7.1 21 -17c-21 -37 -64 -81 -107 -81c-56 0 -83 32.5 -83 92v241z" />
-    <glyph glyph-name="uni1F35" unicode="&#x1f35;" horiz-adv-x="281" 
-d="M51 695c36 0 47 -18 47 -34c0 -17 -5 -42 -46 -42c-7 0 -11 -7 -11 -18c0 -23 18 -60 60 -68l-4 -17c-91 4 -106 80 -106 106c0 35 22 73 60 73zM225 699c28 0 36 -22 36 -33c0 -4 -1 -8 -3 -12l-75 -139c-2 -4 -6 -5 -9 -5c-12 0 -14 10 -14 13v1l33 155
-c4 16 21 20 32 20zM84 322c0 28 -1 72 -18 107l2 2c6 -1 31 -2 43 -2c19 0 35 2 50 8c0 0 2 -62 2 -94v-244c0 -41 8 -55 23 -55c28 0 48 19 67 43c10.6 -2.2 18.4 -7.1 21 -17c-21 -37 -64 -81 -107 -81c-56 0 -83 32.5 -83 92v241z" />
-    <glyph glyph-name="uni1F37" unicode="&#x1f37;" horiz-adv-x="281" 
-d="M192 728c20 0 34 13 47 47l22 -7c-12 -56 -38 -86 -81 -86c-42 0 -73 46 -111 46c-21 0 -35 -16 -46 -46l-22 5c13 55 34 88 75 88c55 0 76 -47 116 -47zM129 663c36 0 47 -18 47 -34c0 -17 -5 -42 -46 -42c-7 0 -11 -7 -11 -18c0 -23 18 -60 60 -68l-4 -17
-c-91 4 -106 80 -106 106c0 35 22 73 60 73zM84 322c0 28 -1 72 -18 107l2 2c6 -1 31 -2 43 -2c19 0 35 2 50 8c0 0 2 -62 2 -94v-244c0 -41 8 -55 23 -55c28 0 48 19 67 43c10.6 -2.2 18.4 -7.1 21 -17c-21 -37 -64 -81 -107 -81c-56 0 -83 32.5 -83 92v241z" />
-    <glyph glyph-name="uni1F39" unicode="&#x1f39;" horiz-adv-x="365" 
-d="M11 725c36 0 47 -18 47 -34c0 -17 -5 -42 -46 -42c-7 0 -11 -7 -11 -18c0 -23 18 -60 60 -68l-4 -17c-91 4 -106 80 -106 106c0 35 22 73 60 73zM263 122c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-45 1 -93.4 2 -129 2c-36.3 0 -85 -1 -130 -2c-6 6 -6 27 0 33
-c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c47 -1 95.5 -2 129 -2c38.5 0 86 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-401z" />
-    <glyph glyph-name="uni1F3B" unicode="&#x1f3b;" horiz-adv-x="523" 
-d="M2 720c36 0 47 -18 47 -34c0 -17 -5 -42 -46 -42c-7 0 -11 -7 -11 -18c0 -23 18 -60 60 -68l-4 -17c-91 4 -106 80 -106 106c0 35 22 73 60 73zM108 680c-2 4 -3 9 -3 13c0 16 14 33 37 33c18 0 28 -7 31 -18l39 -152s1 -3 1 -4c0 -5 -5 -12 -15 -12c-5 0 -6 2 -8 5z
-M421 122c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-45 1 -93.4 2 -129 2c-36.3 0 -85 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c47 -1 95.5 -2 129 -2c38.5 0 86 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-401z" />
-    <glyph glyph-name="uni1F3D" unicode="&#x1f3d;" horiz-adv-x="532" 
-d="M8 722c36 0 47 -18 47 -34c0 -17 -5 -42 -46 -42c-7 0 -11 -7 -11 -18c0 -23 18 -60 60 -68l-4 -17c-91 4 -106 80 -106 106c0 35 22 73 60 73zM182 726c28 0 36 -22 36 -33c0 -4 -1 -8 -3 -12l-75 -139c-2 -4 -6 -5 -9 -5c-12 0 -14 10 -14 13v1l33 155
-c4 16 21 20 32 20zM430 122c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-45 1 -93.4 2 -129 2c-36.3 0 -85 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c47 -1 95.5 -2 129 -2c38.5 0 86 1 130 2c6 -6 6 -27 0 -33
-c-70 -3 -87 -8 -87 -91v-401z" />
-    <glyph glyph-name="uni1F3F" unicode="&#x1f3f;" horiz-adv-x="530" 
-d="M145 677c20 0 34 13 47 47l22 -7c-12 -56 -38 -86 -81 -86c-42 0 -73 46 -111 46c-21 0 -35 -16 -46 -46l-22 5c13 55 34 88 75 88c55 0 76 -47 116 -47zM82 612c36 0 47 -18 47 -34c0 -17 -5 -42 -46 -42c-7 0 -11 -7 -11 -18c0 -23 18 -60 60 -68l-4 -17
-c-91 4 -106 80 -106 106c0 35 22 73 60 73zM428 122c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-45 1 -93.4 2 -129 2c-36.3 0 -85 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c47 -1 95.5 -2 129 -2c38.5 0 86 1 130 2
-c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-401z" />
-    <glyph glyph-name="uni1F41" unicode="&#x1f41;" horiz-adv-x="504" 
-d="M243 689c36 0 47 -18 47 -34c0 -17 -5 -42 -46 -42c-7 0 -11 -7 -11 -18c0 -23 18 -60 60 -68l-4 -17c-91 4 -106 80 -106 106c0 35 22 73 60 73zM41 205c0 63.2 19 121.4 55.3 164c36.6 43 90.9 70 156.7 70c153 0 210 -121 210 -225c0 -61.3 -20.3 -124.2 -65.1 -168
-c-34.1 -33.3 -82.5 -56 -146.9 -56c-142 0 -210 113 -210 215zM238 404c-90 0 -111 -89 -111 -176c0 -77 34 -203 138 -203c47 0 112 31 112 157c0 144 -53 222 -139 222z" />
-    <glyph glyph-name="uni1F43" unicode="&#x1f43;" horiz-adv-x="504" 
-d="M161 687c36 0 47 -18 47 -34c0 -17 -5 -42 -46 -42c-7 0 -11 -7 -11 -18c0 -23 18 -60 60 -68l-4 -17c-91 4 -106 80 -106 106c0 35 22 73 60 73zM267 647c-2 4 -3 9 -3 13c0 16 14 33 37 33c18 0 28 -7 31 -18l39 -152s1 -3 1 -4c0 -5 -5 -12 -15 -12c-5 0 -6 2 -8 5z
-M41 205c0 63.2 19 121.4 55.3 164c36.6 43 90.9 70 156.7 70c153 0 210 -121 210 -225c0 -61.3 -20.3 -124.2 -65.1 -168c-34.1 -33.3 -82.5 -56 -146.9 -56c-142 0 -210 113 -210 215zM238 404c-90 0 -111 -89 -111 -176c0 -77 34 -203 138 -203c47 0 112 31 112 157
-c0 144 -53 222 -139 222z" />
-    <glyph glyph-name="uni1F45" unicode="&#x1f45;" horiz-adv-x="504" 
-d="M161 686c36 0 47 -18 47 -34c0 -17 -5 -42 -46 -42c-7 0 -11 -7 -11 -18c0 -23 18 -60 60 -68l-4 -17c-91 4 -106 80 -106 106c0 35 22 73 60 73zM335 690c28 0 36 -22 36 -33c0 -4 -1 -8 -3 -12l-75 -139c-2 -4 -6 -5 -9 -5c-12 0 -14 10 -14 13v1l33 155
-c4 16 21 20 32 20zM41 205c0 63.2 19 121.4 55.3 164c36.6 43 90.9 70 156.7 70c153 0 210 -121 210 -225c0 -61.3 -20.3 -124.2 -65.1 -168c-34.1 -33.3 -82.5 -56 -146.9 -56c-142 0 -210 113 -210 215zM238 404c-90 0 -111 -89 -111 -176c0 -77 34 -203 138 -203
-c47 0 112 31 112 157c0 144 -53 222 -139 222z" />
-    <glyph glyph-name="uni1F49" unicode="&#x1f49;" horiz-adv-x="747" 
-d="M8 725c36 0 47 -18 47 -34c0 -17 -5 -42 -46 -42c-7 0 -11 -7 -11 -18c0 -23 18 -60 60 -68l-4 -17c-91 4 -106 80 -106 106c0 35 22 73 60 73zM380 622c-99 0 -198 -85 -198 -295c0 -192 115 -301 237 -301c114 0 200 105 200 284c0 202 -107 312 -239 312zM715 329
-c0 -84 -22 -156.3 -61.8 -213c-54.9 -78.3 -143.4 -126 -254.2 -126c-170 0 -313 123 -313 320c0 193.9 113.3 348 307 348c179 0 322 -122 322 -329z" />
-    <glyph glyph-name="uni1F4B" unicode="&#x1f4b;" horiz-adv-x="902" 
-d="M5 718c36 0 47 -18 47 -34c0 -17 -5 -42 -46 -42c-7 0 -11 -7 -11 -18c0 -23 18 -60 60 -68l-4 -17c-91 4 -106 80 -106 106c0 35 22 73 60 73zM111 678c-2 4 -3 9 -3 13c0 16 14 33 37 33c18 0 28 -7 31 -18l39 -152s1 -3 1 -4c0 -5 -5 -12 -15 -12c-5 0 -6 2 -8 5z
-M535 622c-99 0 -198 -85 -198 -295c0 -192 115 -301 237 -301c114 0 200 105 200 284c0 202 -107 312 -239 312zM870 329c0 -84 -22 -156.3 -61.8 -213c-54.9 -78.3 -143.4 -126 -254.2 -126c-170 0 -313 123 -313 320c0 193.9 113.3 348 307 348c179 0 322 -122 322 -329z
-" />
-    <glyph glyph-name="uni1F4D" unicode="&#x1f4d;" horiz-adv-x="859" 
-d="M8 720c36 0 47 -18 47 -34c0 -17 -5 -42 -46 -42c-7 0 -11 -7 -11 -18c0 -23 18 -60 60 -68l-4 -17c-91 4 -106 80 -106 106c0 35 22 73 60 73zM182 724c28 0 36 -22 36 -33c0 -4 -1 -8 -3 -12l-75 -139c-2 -4 -6 -5 -9 -5c-12 0 -14 10 -14 13v1l33 155
-c4 16 21 20 32 20zM492 622c-99 0 -198 -85 -198 -295c0 -192 115 -301 237 -301c114 0 200 105 200 284c0 202 -107 312 -239 312zM827 329c0 -84 -22 -156.3 -61.8 -213c-54.9 -78.3 -143.4 -126 -254.2 -126c-170 0 -313 123 -313 320c0 193.9 113.3 348 307 348
-c179 0 322 -122 322 -329z" />
-    <glyph glyph-name="uni1F51" unicode="&#x1f51;" horiz-adv-x="490" 
-d="M253 689c36 0 47 -18 47 -34c0 -17 -5 -42 -46 -42c-7 0 -11 -7 -11 -18c0 -23 18 -60 60 -68l-4 -17c-91 4 -106 80 -106 106c0 35 22 73 60 73zM171 321.3v-118.3c0 -101 12 -174 87 -174c92 0 147 110 147 208c0 96 -32 111 -61 127c-20 11 -34 25 -34 48
-c0 17 17 30 34 30c63 0 102 -73 102 -193c0 -174 -99 -259 -197 -259c-134 0 -157 90 -157 197v130c0 57 -10.5 62.9 -65 68c-2 6 -4 22 -2 28c69 9 108.5 18 137 29c8 0 13 -3 13 -7c0 0 -4 -64 -4 -113.7z" />
-    <glyph glyph-name="uni1F53" unicode="&#x1f53;" horiz-adv-x="490" 
-d="M168 687c36 0 47 -18 47 -34c0 -17 -5 -42 -46 -42c-7 0 -11 -7 -11 -18c0 -23 18 -60 60 -68l-4 -17c-91 4 -106 80 -106 106c0 35 22 73 60 73zM274 647c-2 4 -3 9 -3 13c0 16 14 33 37 33c18 0 28 -7 31 -18l39 -152s1 -3 1 -4c0 -5 -5 -12 -15 -12c-5 0 -6 2 -8 5z
-M171 321.3v-118.3c0 -101 12 -174 87 -174c92 0 147 110 147 208c0 96 -32 111 -61 127c-20 11 -34 25 -34 48c0 17 17 30 34 30c63 0 102 -73 102 -193c0 -174 -99 -259 -197 -259c-134 0 -157 90 -157 197v130c0 57 -10.5 62.9 -65 68c-2 6 -4 22 -2 28
-c69 9 108.5 18 137 29c8 0 13 -3 13 -7c0 0 -4 -64 -4 -113.7z" />
-    <glyph glyph-name="uni1F55" unicode="&#x1f55;" horiz-adv-x="490" 
-d="M171 686c36 0 47 -18 47 -34c0 -17 -5 -42 -46 -42c-7 0 -11 -7 -11 -18c0 -23 18 -60 60 -68l-4 -17c-91 4 -106 80 -106 106c0 35 22 73 60 73zM345 690c28 0 36 -22 36 -33c0 -4 -1 -8 -3 -12l-75 -139c-2 -4 -6 -5 -9 -5c-12 0 -14 10 -14 13v1l33 155
-c4 16 21 20 32 20zM171 321.3v-118.3c0 -101 12 -174 87 -174c92 0 147 110 147 208c0 96 -32 111 -61 127c-20 11 -34 25 -34 48c0 17 17 30 34 30c63 0 102 -73 102 -193c0 -174 -99 -259 -197 -259c-134 0 -157 90 -157 197v130c0 57 -10.5 62.9 -65 68c-2 6 -4 22 -2 28
-c69 9 108.5 18 137 29c8 0 13 -3 13 -7c0 0 -4 -64 -4 -113.7z" />
-    <glyph glyph-name="uni1F57" unicode="&#x1f57;" horiz-adv-x="490" 
-d="M306 725c20 0 34 13 47 47l22 -7c-12 -56 -38 -86 -81 -86c-42 0 -73 46 -111 46c-21 0 -35 -16 -46 -46l-22 5c13 55 34 88 75 88c55 0 76 -47 116 -47zM243 660c36 0 47 -18 47 -34c0 -17 -5 -42 -46 -42c-7 0 -11 -7 -11 -18c0 -23 18 -60 60 -68l-4 -17
-c-91 4 -106 80 -106 106c0 35 22 73 60 73zM171 321.3v-118.3c0 -101 12 -174 87 -174c92 0 147 110 147 208c0 96 -32 111 -61 127c-20 11 -34 25 -34 48c0 17 17 30 34 30c63 0 102 -73 102 -193c0 -174 -99 -259 -197 -259c-134 0 -157 90 -157 197v130
-c0 57 -10.5 62.9 -65 68c-2 6 -4 22 -2 28c69 9 108.5 18 137 29c8 0 13 -3 13 -7c0 0 -4 -64 -4 -113.7z" />
-    <glyph glyph-name="uni1F59" unicode="&#x1f59;" horiz-adv-x="706" 
-d="M16 725c36 0 47 -18 47 -34c0 -17 -5 -42 -46 -42c-7 0 -11 -7 -11 -18c0 -23 18 -60 60 -68l-4 -17c-91 4 -106 80 -106 106c0 35 22 73 60 73zM469 122c0 -83 17 -88 97 -91c6 -6 6 -27 0 -33c-50 1 -100.3 2 -139 2c-38.6 0 -91 -1 -140 -2c-6 6 -6 27 0 33
-c80 3 97 8 97 91v127c0 37 -3.5 47.5 -21 77l-131.3 221c-34.5 58.1 -51.7 64 -93.7 67c-6 6 -7 27 -1 33c30 -1 63 -2 102 -2c40 0 78 1 114 2c6 -6 6 -27 0 -33c-56 -3 -60 -12.6 -35.8 -55.2l116 -204.8c9 -15.9 13.8 -17.2 21.8 -2l110.8 209c21.4 40.4 5.5 50 -38.8 53
-c-6 6 -6 27 0 33c32 -1 68 -2 91 -2s55 1 83 2c6 -6 6 -27 0 -33c-44.7 -4.29999 -67 -13.3 -95 -64l-119.5 -216c-16.4 -29.6 -17.5 -46.5 -17.5 -76.3v-135.7z" />
-    <glyph glyph-name="uni1F5B" unicode="&#x1f5b;" horiz-adv-x="865" 
-d="M11 719c36 0 47 -18 47 -34c0 -17 -5 -42 -46 -42c-7 0 -11 -7 -11 -18c0 -23 18 -60 60 -68l-4 -17c-91 4 -106 80 -106 106c0 35 22 73 60 73zM117 679c-2 4 -3 9 -3 13c0 16 14 33 37 33c18 0 28 -7 31 -18l39 -152s1 -3 1 -4c0 -5 -5 -12 -15 -12c-5 0 -6 2 -8 5z
-M628 122c0 -83 17 -88 97 -91c6 -6 6 -27 0 -33c-50 1 -100.3 2 -139 2c-38.6 0 -91 -1 -140 -2c-6 6 -6 27 0 33c80 3 97 8 97 91v127c0 37 -3.5 47.5 -21 77l-131.3 221c-34.5 58.1 -51.7 64 -93.7 67c-6 6 -7 27 -1 33c30 -1 63 -2 102 -2c40 0 78 1 114 2
-c6 -6 6 -27 0 -33c-56 -3 -60 -12.6 -35.8 -55.2l116 -204.8c9 -15.9 13.8 -17.2 21.8 -2l110.8 209c21.4 40.4 5.5 50 -38.8 53c-6 6 -6 27 0 33c32 -1 68 -2 91 -2s55 1 83 2c6 -6 6 -27 0 -33c-44.7 -4.29999 -67 -13.3 -95 -64l-119.5 -216
-c-16.4 -29.6 -17.5 -46.5 -17.5 -76.3v-135.7z" />
-    <glyph glyph-name="uni1F5D" unicode="&#x1f5d;" horiz-adv-x="865" 
-d="M10 721c36 0 47 -18 47 -34c0 -17 -5 -42 -46 -42c-7 0 -11 -7 -11 -18c0 -23 18 -60 60 -68l-4 -17c-91 4 -106 80 -106 106c0 35 22 73 60 73zM184 725c28 0 36 -22 36 -33c0 -4 -1 -8 -3 -12l-75 -139c-2 -4 -6 -5 -9 -5c-12 0 -14 10 -14 13v1l33 155
-c4 16 21 20 32 20zM628 122c0 -83 17 -88 97 -91c6 -6 6 -27 0 -33c-50 1 -100.3 2 -139 2c-38.6 0 -91 -1 -140 -2c-6 6 -6 27 0 33c80 3 97 8 97 91v127c0 37 -3.5 47.5 -21 77l-131.3 221c-34.5 58.1 -51.7 64 -93.7 67c-6 6 -7 27 -1 33c30 -1 63 -2 102 -2
-c40 0 78 1 114 2c6 -6 6 -27 0 -33c-56 -3 -60 -12.6 -35.8 -55.2l116 -204.8c9 -15.9 13.8 -17.2 21.8 -2l110.8 209c21.4 40.4 5.5 50 -38.8 53c-6 6 -6 27 0 33c32 -1 68 -2 91 -2s55 1 83 2c6 -6 6 -27 0 -33c-44.7 -4.29999 -67 -13.3 -95 -64l-119.5 -216
-c-16.4 -29.6 -17.5 -46.5 -17.5 -76.3v-135.7z" />
-    <glyph glyph-name="uni1F5F" unicode="&#x1f5f;" horiz-adv-x="808" 
-d="M149 676c20 0 34 13 47 47l22 -7c-12 -56 -38 -86 -81 -86c-42 0 -73 46 -111 46c-21 0 -35 -16 -46 -46l-22 5c13 55 34 88 75 88c55 0 76 -47 116 -47zM86 611c36 0 47 -18 47 -34c0 -17 -5 -42 -46 -42c-7 0 -11 -7 -11 -18c0 -23 18 -60 60 -68l-4 -17
-c-91 4 -106 80 -106 106c0 35 22 73 60 73zM571 122c0 -83 17 -88 97 -91c6 -6 6 -27 0 -33c-50 1 -100.3 2 -139 2c-38.6 0 -91 -1 -140 -2c-6 6 -6 27 0 33c80 3 97 8 97 91v127c0 37 -3.5 47.5 -21 77l-131.3 221c-34.5 58.1 -51.7 64 -93.7 67c-6 6 -7 27 -1 33
-c30 -1 63 -2 102 -2c40 0 78 1 114 2c6 -6 6 -27 0 -33c-56 -3 -60 -12.6 -35.8 -55.2l116 -204.8c9 -15.9 13.8 -17.2 21.8 -2l110.8 209c21.4 40.4 5.5 50 -38.8 53c-6 6 -6 27 0 33c32 -1 68 -2 91 -2s55 1 83 2c6 -6 6 -27 0 -33c-44.7 -4.29999 -67 -13.3 -95 -64
-l-119.5 -216c-16.4 -29.6 -17.5 -46.5 -17.5 -76.3v-135.7z" />
-    <glyph glyph-name="uni1F61" unicode="&#x1f61;" horiz-adv-x="658" 
-d="M349 689c36 0 47 -18 47 -34c0 -17 -5 -42 -46 -42c-7 0 -11 -7 -11 -18c0 -23 18 -60 60 -68l-4 -17c-91 4 -106 80 -106 106c0 35 22 73 60 73zM624 189c0 -104 -68 -199 -190 -199c-51 0 -91 31 -113 103c-27 -72 -60 -103 -117 -103c-90 0 -170 73 -170 204
-c0 118 70 200 183 248c7.60001 -4 12 -13.7 13 -23c-65 -41 -114 -88 -114 -210c0 -112 27 -182 101 -182c37 0 60 30 91 101c-13 33 -15 70 -15 90c0 31 11 66 37 66c27 0 30 -13 30 -37s-9 -79 -24 -116c30 -69 65 -104 105 -104c72 0 101 37 101 147
-c0 73 -17 166 -121 245c1 8.10001 1.89999 20.1 15 23c94 -45 188 -137 188 -253z" />
-    <glyph glyph-name="uni1F63" unicode="&#x1f63;" horiz-adv-x="658" 
-d="M257 687c36 0 47 -18 47 -34c0 -17 -5 -42 -46 -42c-7 0 -11 -7 -11 -18c0 -23 18 -60 60 -68l-4 -17c-91 4 -106 80 -106 106c0 35 22 73 60 73zM363 647c-2 4 -3 9 -3 13c0 16 14 33 37 33c18 0 28 -7 31 -18l39 -152s1 -3 1 -4c0 -5 -5 -12 -15 -12c-5 0 -6 2 -8 5z
-M624 189c0 -104 -68 -199 -190 -199c-51 0 -91 31 -113 103c-27 -72 -60 -103 -117 -103c-90 0 -170 73 -170 204c0 118 70 200 183 248c7.60001 -4 12 -13.7 13 -23c-65 -41 -114 -88 -114 -210c0 -112 27 -182 101 -182c37 0 60 30 91 101c-13 33 -15 70 -15 90
-c0 31 11 66 37 66c27 0 30 -13 30 -37s-9 -79 -24 -116c30 -69 65 -104 105 -104c72 0 101 37 101 147c0 73 -17 166 -121 245c1 8.10001 1.89999 20.1 15 23c94 -45 188 -137 188 -253z" />
-    <glyph glyph-name="uni1F65" unicode="&#x1f65;" horiz-adv-x="658" 
-d="M267 686c36 0 47 -18 47 -34c0 -17 -5 -42 -46 -42c-7 0 -11 -7 -11 -18c0 -23 18 -60 60 -68l-4 -17c-91 4 -106 80 -106 106c0 35 22 73 60 73zM441 690c28 0 36 -22 36 -33c0 -4 -1 -8 -3 -12l-75 -139c-2 -4 -6 -5 -9 -5c-12 0 -14 10 -14 13v1l33 155
-c4 16 21 20 32 20zM624 189c0 -104 -68 -199 -190 -199c-51 0 -91 31 -113 103c-27 -72 -60 -103 -117 -103c-90 0 -170 73 -170 204c0 118 70 200 183 248c7.60001 -4 12 -13.7 13 -23c-65 -41 -114 -88 -114 -210c0 -112 27 -182 101 -182c37 0 60 30 91 101
-c-13 33 -15 70 -15 90c0 31 11 66 37 66c27 0 30 -13 30 -37s-9 -79 -24 -116c30 -69 65 -104 105 -104c72 0 101 37 101 147c0 73 -17 166 -121 245c1 8.10001 1.89999 20.1 15 23c94 -45 188 -137 188 -253z" />
-    <glyph glyph-name="uni1F67" unicode="&#x1f67;" horiz-adv-x="658" 
-d="M408 724c20 0 34 13 47 47l22 -7c-12 -56 -38 -86 -81 -86c-42 0 -73 46 -111 46c-21 0 -35 -16 -46 -46l-22 5c13 55 34 88 75 88c55 0 76 -47 116 -47zM345 659c36 0 47 -18 47 -34c0 -17 -5 -42 -46 -42c-7 0 -11 -7 -11 -18c0 -23 18 -60 60 -68l-4 -17
-c-91 4 -106 80 -106 106c0 35 22 73 60 73zM624 189c0 -104 -68 -199 -190 -199c-51 0 -91 31 -113 103c-27 -72 -60 -103 -117 -103c-90 0 -170 73 -170 204c0 118 70 200 183 248c7.60001 -4 12 -13.7 13 -23c-65 -41 -114 -88 -114 -210c0 -112 27 -182 101 -182
-c37 0 60 30 91 101c-13 33 -15 70 -15 90c0 31 11 66 37 66c27 0 30 -13 30 -37s-9 -79 -24 -116c30 -69 65 -104 105 -104c72 0 101 37 101 147c0 73 -17 166 -121 245c1 8.10001 1.89999 20.1 15 23c94 -45 188 -137 188 -253z" />
-    <glyph glyph-name="uni1F69" unicode="&#x1f69;" horiz-adv-x="792" 
-d="M60 725c36 0 47 -18 47 -34c0 -17 -5 -42 -46 -42c-7 0 -11 -7 -11 -18c0 -23 18 -60 60 -68l-4 -17c-91 4 -106 80 -106 106c0 35 22 73 60 73zM556 117l-3 -48h97c49 0 70 -7 76 50c10 4 18.7 4 26 0c0 -40 -3 -85 -7 -119h-208c-12 0 -17 5 -17 14l8 129
-c92 53 132 126 132 234c0 141 -80 247 -210 247c-139 0 -209 -118 -209 -246c0 -112 39 -173 131 -235l8 -128c0 -9 -6 -15 -17 -15h-213c-4.7 38.2 -7 78 -7 119c8.3 4.3 16.7 3.6 25 0c5 -53 24 -50 77 -50h103l-4 48c-108 37 -195 132 -195 260c0 132 104 281 301 281
-c199 0 301 -133 301 -281c0 -120 -84 -223 -195 -260z" />
-    <glyph glyph-name="uni1F6B" unicode="&#x1f6b;" horiz-adv-x="898" 
-d="M2 718c36 0 47 -18 47 -34c0 -17 -5 -42 -46 -42c-7 0 -11 -7 -11 -18c0 -23 18 -60 60 -68l-4 -17c-91 4 -106 80 -106 106c0 35 22 73 60 73zM108 678c-2 4 -3 9 -3 13c0 16 14 33 37 33c18 0 28 -7 31 -18l39 -152s1 -3 1 -4c0 -5 -5 -12 -15 -12c-5 0 -6 2 -8 5z
-M663 117l-3 -48h97c49 0 70 -7 76 50c10 4 18.7 4 26 0c0 -40 -3 -85 -7 -119h-208c-12 0 -17 5 -17 14l8 129c92 53 132 126 132 234c0 141 -80 247 -210 247c-139 0 -209 -118 -209 -246c0 -112 39 -173 131 -235l8 -128c0 -9 -6 -15 -17 -15h-213c-4.7 38.2 -7 78 -7 119
-c8.29999 4.3 16.7 3.6 25 0c5 -53 24 -50 77 -50h103l-4 48c-108 37 -195 132 -195 260c0 132 104 281 301 281c199 0 301 -133 301 -281c0 -120 -84 -223 -195 -260z" />
-    <glyph glyph-name="uni1F6D" unicode="&#x1f6d;" horiz-adv-x="863" 
-d="M12 720c36 0 47 -18 47 -34c0 -17 -5 -42 -46 -42c-7 0 -11 -7 -11 -18c0 -23 18 -60 60 -68l-4 -17c-91 4 -106 80 -106 106c0 35 22 73 60 73zM186 724c28 0 36 -22 36 -33c0 -4 -1 -8 -3 -12l-75 -139c-2 -4 -6 -5 -9 -5c-12 0 -14 10 -14 13v1l33 155
-c4 16 21 20 32 20zM627 117l-3 -48h97c49 0 70 -7 76 50c10 4 18.7 4 26 0c0 -40 -3 -85 -7 -119h-208c-12 0 -17 5 -17 14l8 129c92 53 132 126 132 234c0 141 -80 247 -210 247c-139 0 -209 -118 -209 -246c0 -112 39 -173 131 -235l8 -128c0 -9 -6 -15 -17 -15h-213
-c-4.7 38.2 -7 78 -7 119c8.3 4.3 16.7 3.6 25 0c5 -53 24 -50 77 -50h103l-4 48c-108 37 -195 132 -195 260c0 132 104 281 301 281c199 0 301 -133 301 -281c0 -120 -84 -223 -195 -260z" />
-    <glyph glyph-name="uni1F6F" unicode="&#x1f6f;" horiz-adv-x="876" 
-d="M157 677c20 0 34 13 47 47l22 -7c-12 -56 -38 -86 -81 -86c-42 0 -73 46 -111 46c-21 0 -35 -16 -46 -46l-22 5c13 55 34 88 75 88c55 0 76 -47 116 -47zM94 612c36 0 47 -18 47 -34c0 -17 -5 -42 -46 -42c-7 0 -11 -7 -11 -18c0 -23 18 -60 60 -68l-4 -17
-c-91 4 -106 80 -106 106c0 35 22 73 60 73zM641 117l-3 -48h97c49 0 70 -7 76 50c10 4 18.7 4 26 0c0 -40 -3 -85 -7 -119h-208c-12 0 -17 5 -17 14l8 129c92 53 132 126 132 234c0 141 -80 247 -210 247c-139 0 -209 -118 -209 -246c0 -112 39 -173 131 -235l8 -128
-c0 -9 -6 -15 -17 -15h-213c-4.7 38.2 -7 78 -7 119c8.3 4.3 16.7 3.6 25 0c5 -53 24 -50 77 -50h103l-4 48c-108 37 -195 132 -195 260c0 132 104 281 301 281c199 0 301 -133 301 -281c0 -120 -84 -223 -195 -260z" />
-    <glyph glyph-name="uni1F80" unicode="&#x1f80;" horiz-adv-x="566" 
-d="M200 -56l53 13l22 -7v-52c0 -55 12 -78 32 -78c18 0 34 24 41 51l25 -8c-15 -69 -61 -83 -86 -83c-48 0 -87 24 -87 82v82zM244 698c38 0 60 -37 60 -73s-32 -98 -102 -106l-5 17c42 9 63 46 63 69c0 13 -6 21 -14 21c-41 0 -46 22 -46 38s14 34 44 34zM409 191l14 -58
-c13 -53 33 -82 56 -82c25 0 38 7 55 37c12 0 19 -4 25 -11c-22 -63 -47 -87 -91 -87c-37 0 -63 33 -79 101l-9 39c-50 -99 -96 -140 -164 -140c-128 0 -182 82 -182 206c0 184 125 243 216 243c73.5 0 113 -48 132.8 -135c2.30002 -10 3.90002 -5.5 6.70001 2l47.5 128
-c15 0 33 -5 48 -5s36 5 49 5zM359 222l-5 21c-23 96 -49 162 -109 162c-67 0 -127 -71 -127 -186c0 -108 29 -195 103 -195c46 0 88 62 122 157z" />
-    <glyph glyph-name="uni1F81" unicode="&#x1f81;" horiz-adv-x="566" 
-d="M200 -56l53 13l22 -7v-52c0 -55 12 -78 32 -78c18 0 34 24 41 51l25 -8c-15 -69 -61 -83 -86 -83c-48 0 -87 24 -87 82v82zM230 699c36 0 47 -18 47 -34c0 -17 -5 -42 -46 -42c-7 0 -11 -7 -11 -18c0 -23 18 -60 60 -68l-4 -17c-91 4 -106 80 -106 106c0 35 22 73 60 73z
-M409 191l14 -58c13 -53 33 -82 56 -82c25 0 38 7 55 37c12 0 19 -4 25 -11c-22 -63 -47 -87 -91 -87c-37 0 -63 33 -79 101l-9 39c-50 -99 -96 -140 -164 -140c-128 0 -182 82 -182 206c0 184 125 243 216 243c73.5 0 113 -48 132.8 -135
-c2.30002 -10 3.90002 -5.5 6.70001 2l47.5 128c15 0 33 -5 48 -5s36 5 49 5zM359 222l-5 21c-23 96 -49 162 -109 162c-67 0 -127 -71 -127 -186c0 -108 29 -195 103 -195c46 0 88 62 122 157z" />
-    <glyph glyph-name="uni1F82" unicode="&#x1f82;" horiz-adv-x="566" 
-d="M200 -56l53 13l22 -7v-52c0 -55 12 -78 32 -78c18 0 34 24 41 51l25 -8c-15 -69 -61 -83 -86 -83c-48 0 -87 24 -87 82v82zM146 698c38 0 60 -37 60 -73s-32 -98 -102 -106l-5 17c42 9 63 46 63 69c0 13 -6 21 -14 21c-41 0 -46 22 -46 38s14 34 44 34zM259 658
-c-2 4 -3 9 -3 13c0 16 14 33 37 33c18 0 28 -7 31 -18l39 -152s1 -3 1 -4c0 -5 -5 -12 -15 -12c-5 0 -6 2 -8 5zM409 191l14 -58c13 -53 33 -82 56 -82c25 0 38 7 55 37c12 0 19 -4 25 -11c-22 -63 -47 -87 -91 -87c-37 0 -63 33 -79 101l-9 39c-50 -99 -96 -140 -164 -140
-c-128 0 -182 82 -182 206c0 184 125 243 216 243c73.5 0 113 -48 132.8 -135c2.30002 -10 3.90002 -5.5 6.70001 2l47.5 128c15 0 33 -5 48 -5s36 5 49 5zM359 222l-5 21c-23 96 -49 162 -109 162c-67 0 -127 -71 -127 -186c0 -108 29 -195 103 -195c46 0 88 62 122 157z
-" />
-    <glyph glyph-name="uni1F83" unicode="&#x1f83;" horiz-adv-x="566" 
-d="M200 -56l53 13l22 -7v-52c0 -55 12 -78 32 -78c18 0 34 24 41 51l25 -8c-15 -69 -61 -83 -86 -83c-48 0 -87 24 -87 82v82zM157 696c36 0 47 -18 47 -34c0 -17 -5 -42 -46 -42c-7 0 -11 -7 -11 -18c0 -23 18 -60 60 -68l-4 -17c-91 4 -106 80 -106 106c0 35 22 73 60 73z
-M263 656c-2 4 -3 9 -3 13c0 16 14 33 37 33c18 0 28 -7 31 -18l39 -152s1 -3 1 -4c0 -5 -5 -12 -15 -12c-5 0 -6 2 -8 5zM409 191l14 -58c13 -53 33 -82 56 -82c25 0 38 7 55 37c12 0 19 -4 25 -11c-22 -63 -47 -87 -91 -87c-37 0 -63 33 -79 101l-9 39
-c-50 -99 -96 -140 -164 -140c-128 0 -182 82 -182 206c0 184 125 243 216 243c73.5 0 113 -48 132.8 -135c2.30002 -10 3.90002 -5.5 6.70001 2l47.5 128c15 0 33 -5 48 -5s36 5 49 5zM359 222l-5 21c-23 96 -49 162 -109 162c-67 0 -127 -71 -127 -186
-c0 -108 29 -195 103 -195c46 0 88 62 122 157z" />
-    <glyph glyph-name="uni1F84" unicode="&#x1f84;" horiz-adv-x="566" 
-d="M200 -56l53 13l22 -7v-52c0 -55 12 -78 32 -78c18 0 34 24 41 51l25 -8c-15 -69 -61 -83 -86 -83c-48 0 -87 24 -87 82v82zM409 191l14 -58c13 -53 33 -82 56 -82c25 0 38 7 55 37c12 0 19 -4 25 -11c-22 -63 -47 -87 -91 -87c-37 0 -63 33 -79 101l-9 39
-c-50 -99 -96 -140 -164 -140c-128 0 -182 82 -182 206c0 184 125 243 216 243c73.5 0 113 -48 132.8 -135c2.30002 -10 3.90002 -5.5 6.70001 2l47.5 128c15 0 33 -5 48 -5s36 5 49 5zM359 222l-5 21c-23 96 -49 162 -109 162c-67 0 -127 -71 -127 -186
-c0 -108 29 -195 103 -195c46 0 88 62 122 157zM170 698c38 0 60 -37 60 -73s-32 -98 -102 -106l-5 17c42 9 63 46 63 69c0 13 -6 21 -14 21c-41 0 -46 22 -46 38s14 34 44 34zM339 704c29 0 37 -22 37 -33c0 -4 -1 -8 -3 -12l-76 -139c-1 -4 -5 -5 -8 -5
-c-12 0 -14 10 -14 13v1l33 155c4 16 21 20 31 20z" />
-    <glyph glyph-name="uni1F85" unicode="&#x1f85;" horiz-adv-x="566" 
-d="M200 -56l53 13l22 -7v-52c0 -55 12 -78 32 -78c18 0 34 24 41 51l25 -8c-15 -69 -61 -83 -86 -83c-48 0 -87 24 -87 82v82zM164 696c36 0 47 -18 47 -34c0 -17 -5 -42 -46 -42c-7 0 -11 -7 -11 -18c0 -23 18 -60 60 -68l-4 -17c-91 4 -106 80 -106 106c0 35 22 73 60 73z
-M338 700c28 0 36 -22 36 -33c0 -4 -1 -8 -3 -12l-75 -139c-2 -4 -6 -5 -9 -5c-12 0 -14 10 -14 13v1l33 155c4 16 21 20 32 20zM409 191l14 -58c13 -53 33 -82 56 -82c25 0 38 7 55 37c12 0 19 -4 25 -11c-22 -63 -47 -87 -91 -87c-37 0 -63 33 -79 101l-9 39
-c-50 -99 -96 -140 -164 -140c-128 0 -182 82 -182 206c0 184 125 243 216 243c73.5 0 113 -48 132.8 -135c2.30002 -10 3.90002 -5.5 6.70001 2l47.5 128c15 0 33 -5 48 -5s36 5 49 5zM359 222l-5 21c-23 96 -49 162 -109 162c-67 0 -127 -71 -127 -186
-c0 -108 29 -195 103 -195c46 0 88 62 122 157z" />
-    <glyph glyph-name="uni1F86" unicode="&#x1f86;" horiz-adv-x="566" 
-d="M409 191l14 -58c13 -53 33 -82 56 -82c25 0 38 7 55 37c12 0 19 -4 25 -11c-22 -63 -47 -87 -91 -87c-37 0 -63 33 -79 101l-9 39c-50 -99 -96 -140 -164 -140c-128 0 -182 82 -182 206c0 184 125 243 216 243c73.5 0 113 -48 132.8 -135
-c2.30002 -10 3.90002 -5.5 6.70001 2l47.5 128c15 0 33 -5 48 -5s36 5 49 5zM359 222l-5 21c-23 96 -49 162 -109 162c-67 0 -127 -71 -127 -186c0 -108 29 -195 103 -195c46 0 88 62 122 157zM238 660c38 0 60 -37 60 -73s-32 -98 -102 -106l-5 17c42 9 63 46 63 69
-c0 13 -6 21 -14 21c-41 0 -46 22 -46 38s14 34 44 34zM304 729c20 0 34 13 47 47l22 -7c-12 -56 -38 -86 -81 -86c-42 0 -73 46 -111 46c-21 0 -35 -16 -46 -46l-22 5c13 55 34 88 75 88c55 0 76 -47 116 -47zM182 -64l53 13l22 -7v-52c0 -55 12 -78 32 -78
-c18 0 34 24 41 51l25 -8c-15 -69 -61 -83 -86 -83c-48 0 -87 24 -87 82v82z" />
-    <glyph glyph-name="uni1F87" unicode="&#x1f87;" horiz-adv-x="566" 
-d="M200 -56l53 13l22 -7v-52c0 -55 12 -78 32 -78c18 0 34 24 41 51l25 -8c-15 -69 -61 -83 -86 -83c-48 0 -87 24 -87 82v82zM302 728c20 0 34 13 47 47l22 -7c-12 -56 -38 -86 -81 -86c-42 0 -73 46 -111 46c-21 0 -35 -16 -46 -46l-22 5c13 55 34 88 75 88
-c55 0 76 -47 116 -47zM239 663c36 0 47 -18 47 -34c0 -17 -5 -42 -46 -42c-7 0 -11 -7 -11 -18c0 -23 18 -60 60 -68l-4 -17c-91 4 -106 80 -106 106c0 35 22 73 60 73zM409 191l14 -58c13 -53 33 -82 56 -82c25 0 38 7 55 37c12 0 19 -4 25 -11c-22 -63 -47 -87 -91 -87
-c-37 0 -63 33 -79 101l-9 39c-50 -99 -96 -140 -164 -140c-128 0 -182 82 -182 206c0 184 125 243 216 243c73.5 0 113 -48 132.8 -135c2.30002 -10 3.90002 -5.5 6.70001 2l47.5 128c15 0 33 -5 48 -5s36 5 49 5zM359 222l-5 21c-23 96 -49 162 -109 162
-c-67 0 -127 -71 -127 -186c0 -108 29 -195 103 -195c46 0 88 62 122 157z" />
-    <glyph glyph-name="uni1F88" unicode="&#x1f88;" horiz-adv-x="882" 
-d="M713 303l62 29l11 -17v-205c0 -62 9 -82 30 -82c25 0 34 16 39 51l24 -5c-13 -69 -44 -84 -87 -84c-45 0 -79 26 -79 84v229zM152 724c38 0 60 -37 60 -73s-32 -98 -102 -106l-5 17c42 9 63 46 63 69c0 13 -6 21 -14 21c-41 0 -46 22 -46 38s14 34 44 34zM263 283h177
-l-94 272h-6l-102.2 -258.7c-3.8 -10.3 3.2 -13.3 25.2 -13.3zM155 79c-15.6 -41.1 31.4 -45.4 69 -48c6 -6 6 -27 0 -33c-37 1 -87 2 -128 2c-30.3 0 -63 -1 -89 -2c-6 6 -6 27 0 33c43.5 3 74 9 100 71l227 536c13 0 40 11 55 20l206 -572c17.4 -48.2 51.2 -51.5 90 -55
-c6 -6 6 -27 0 -33c-35 1 -73 2 -114 2c-39 0 -94 -1 -131 -2c-6 6 -6 27 0 33c47.6 3.4 85.8 6.5 74 41l-58 169h-211c-24 0 -30 -4 -35 -17z" />
-    <glyph glyph-name="uni1F89" unicode="&#x1f89;" horiz-adv-x="872" 
-d="M703 303l62 29l11 -17v-205c0 -62 9 -82 30 -82c25 0 34 16 39 51l24 -5c-13 -69 -44 -84 -87 -84c-45 0 -79 26 -79 84v229zM148 725c36 0 47 -18 47 -34c0 -17 -5 -42 -46 -42c-7 0 -11 -7 -11 -18c0 -23 18 -60 60 -68l-4 -17c-91 4 -106 80 -106 106
-c0 35 22 73 60 73zM263 283h177l-94 272h-6l-102.2 -258.7c-3.8 -10.3 3.2 -13.3 25.2 -13.3zM155 79c-15.6 -41.1 31.4 -45.4 69 -48c6 -6 6 -27 0 -33c-37 1 -87 2 -128 2c-30.3 0 -63 -1 -89 -2c-6 6 -6 27 0 33c43.5 3 74 9 100 71l227 536c13 0 40 11 55 20l206 -572
-c17.4 -48.2 51.2 -51.5 90 -55c6 -6 6 -27 0 -33c-35 1 -73 2 -114 2c-39 0 -94 -1 -131 -2c-6 6 -6 27 0 33c47.6 3.4 85.8 6.5 74 41l-58 169h-211c-24 0 -30 -4 -35 -17z" />
-    <glyph glyph-name="uni1F8A" unicode="&#x1f8a;" horiz-adv-x="928" 
-d="M759 326l62 29l11 -17v-205c0 -62 9 -82 30 -82c25 0 34 16 39 51l24 -5c-13 -69 -44 -84 -87 -84c-45 0 -79 26 -79 84v229zM18 721c38 0 60 -37 60 -73s-32 -98 -102 -106l-5 17c42 9 63 46 63 69c0 13 -6 21 -14 21c-41 0 -46 22 -46 38s14 34 44 34zM131 681
-c-2 4 -3 9 -3 13c0 16 14 33 37 33c18 0 28 -7 31 -18l39 -152s1 -3 1 -4c0 -5 -5 -12 -15 -12c-5 0 -6 2 -8 5zM305 283h177l-94 272h-6l-102.2 -258.7c-3.79999 -10.3 3.20001 -13.3 25.2 -13.3zM197 79c-15.6 -41.1 31.4 -45.4 69 -48c6 -6 6 -27 0 -33
-c-37 1 -87 2 -128 2c-30.3 0 -63 -1 -89 -2c-6 6 -6 27 0 33c43.5 3 74 9 100 71l227 536c13 0 40 11 55 20l206 -572c17.4 -48.2 51.2 -51.5 90 -55c6 -6 6 -27 0 -33c-35 1 -73 2 -114 2c-39 0 -94 -1 -131 -2c-6 6 -6 27 0 33c47.6 3.4 85.8 6.5 74 41l-58 169h-211
-c-24 0 -30 -4 -35 -17z" />
-    <glyph glyph-name="uni1F8B" unicode="&#x1f8b;" horiz-adv-x="905" 
-d="M736 303l62 29l11 -17v-205c0 -62 9 -82 30 -82c25 0 34 16 39 51l24 -5c-13 -69 -44 -84 -87 -84c-45 0 -79 26 -79 84v229zM9 719c36 0 47 -18 47 -34c0 -17 -5 -42 -46 -42c-7 0 -11 -7 -11 -18c0 -23 18 -60 60 -68l-4 -17c-91 4 -106 80 -106 106c0 35 22 73 60 73z
-M115 679c-2 4 -3 9 -3 13c0 16 14 33 37 33c18 0 28 -7 31 -18l39 -152s1 -3 1 -4c0 -5 -5 -12 -15 -12c-5 0 -6 2 -8 5zM278 283h177l-94 272h-6l-102.2 -258.7c-3.8 -10.3 3.2 -13.3 25.2 -13.3zM170 79c-15.6 -41.1 31.4 -45.4 69 -48c6 -6 6 -27 0 -33
-c-37 1 -87 2 -128 2c-30.3 0 -63 -1 -89 -2c-6 6 -6 27 0 33c43.5 3 74 9 100 71l227 536c13 0 40 11 55 20l206 -572c17.4 -48.2 51.2 -51.5 90 -55c6 -6 6 -27 0 -33c-35 1 -73 2 -114 2c-39 0 -94 -1 -131 -2c-6 6 -6 27 0 33c47.6 3.4 85.8 6.5 74 41l-58 169h-211
-c-24 0 -30 -4 -35 -17z" />
-    <glyph glyph-name="uni1F8C" unicode="&#x1f8c;" horiz-adv-x="903" 
-d="M734 303l62 29l11 -17v-205c0 -62 9 -82 30 -82c25 0 34 16 39 51l24 -5c-13 -69 -44 -84 -87 -84c-45 0 -79 26 -79 84v229zM25 720c38 0 60 -37 60 -73s-32 -98 -102 -106l-5 17c42 9 63 46 63 69c0 13 -6 21 -14 21c-41 0 -46 22 -46 38s14 34 44 34zM194 726
-c29 0 37 -22 37 -33c0 -4 -1 -8 -3 -12l-76 -139c-1 -4 -5 -5 -8 -5c-12 0 -14 10 -14 13v1l33 155c4 16 21 20 31 20zM270 283h177l-94 272h-6l-102.2 -258.7c-3.8 -10.3 3.2 -13.3 25.2 -13.3zM162 79c-15.6 -41.1 31.4 -45.4 69 -48c6 -6 6 -27 0 -33c-37 1 -87 2 -128 2
-c-30.3 0 -63 -1 -89 -2c-6 6 -6 27 0 33c43.5 3 74 9 100 71l227 536c13 0 40 11 55 20l206 -572c17.4 -48.2 51.2 -51.5 90 -55c6 -6 6 -27 0 -33c-35 1 -73 2 -114 2c-39 0 -94 -1 -131 -2c-6 6 -6 27 0 33c47.6 3.4 85.8 6.5 74 41l-58 169h-211c-24 0 -30 -4 -35 -17z
-" />
-    <glyph glyph-name="uni1F8D" unicode="&#x1f8d;" horiz-adv-x="896" 
-d="M728 303l62 29l11 -17v-205c0 -62 9 -82 30 -82c25 0 34 16 39 51l24 -5c-13 -69 -44 -84 -87 -84c-45 0 -79 26 -79 84v229zM41 720c36 0 47 -18 47 -34c0 -17 -5 -42 -46 -42c-7 0 -11 -7 -11 -18c0 -23 18 -60 60 -68l-4 -17c-91 4 -106 80 -106 106c0 35 22 73 60 73
-zM215 724c28 0 36 -22 36 -33c0 -4 -1 -8 -3 -12l-75 -139c-2 -4 -6 -5 -9 -5c-12 0 -14 10 -14 13v1l33 155c4 16 21 20 32 20zM270 283h177l-94 272h-6l-102.2 -258.7c-3.8 -10.3 3.2 -13.3 25.2 -13.3zM162 79c-15.6 -41.1 31.4 -45.4 69 -48c6 -6 6 -27 0 -33
-c-37 1 -87 2 -128 2c-30.3 0 -63 -1 -89 -2c-6 6 -6 27 0 33c43.5 3 74 9 100 71l227 536c13 0 40 11 55 20l206 -572c17.4 -48.2 51.2 -51.5 90 -55c6 -6 6 -27 0 -33c-35 1 -73 2 -114 2c-39 0 -94 -1 -131 -2c-6 6 -6 27 0 33c47.6 3.4 85.8 6.5 74 41l-58 169h-211
-c-24 0 -30 -4 -35 -17z" />
-    <glyph glyph-name="uni1F8E" unicode="&#x1f8e;" horiz-adv-x="910" 
-d="M741 303l62 29l11 -17v-205c0 -62 9 -82 30 -82c25 0 34 16 39 51l24 -5c-13 -69 -44 -84 -87 -84c-45 0 -79 26 -79 84v229zM72 607c38 0 60 -37 60 -73s-32 -98 -102 -106l-5 17c42 9 63 46 63 69c0 13 -6 21 -14 21c-41 0 -46 22 -46 38s14 34 44 34zM138 676
-c20 0 34 13 47 47l22 -7c-12 -56 -38 -86 -81 -86c-42 0 -73 46 -111 46c-21 0 -35 -16 -46 -46l-22 5c13 55 34 88 75 88c55 0 76 -47 116 -47zM284 283h177l-94 272h-6l-102.2 -258.7c-3.79999 -10.3 3.20001 -13.3 25.2 -13.3zM176 79c-15.6 -41.1 31.4 -45.4 69 -48
-c6 -6 6 -27 0 -33c-37 1 -87 2 -128 2c-30.3 0 -63 -1 -89 -2c-6 6 -6 27 0 33c43.5 3 74 9 100 71l227 536c13 0 40 11 55 20l206 -572c17.4 -48.2 51.2 -51.5 90 -55c6 -6 6 -27 0 -33c-35 1 -73 2 -114 2c-39 0 -94 -1 -131 -2c-6 6 -6 27 0 33c47.6 3.4 85.8 6.5 74 41
-l-58 169h-211c-24 0 -30 -4 -35 -17z" />
-    <glyph glyph-name="uni1F8F" unicode="&#x1f8f;" horiz-adv-x="918" 
-d="M749 303l62 29l11 -17v-205c0 -62 9 -82 30 -82c25 0 34 16 39 51l24 -5c-13 -69 -44 -84 -87 -84c-45 0 -79 26 -79 84v229zM162 675c20 0 34 13 47 47l22 -7c-12 -56 -38 -86 -81 -86c-42 0 -73 46 -111 46c-21 0 -35 -16 -46 -46l-22 5c13 55 34 88 75 88
-c55 0 76 -47 116 -47zM99 610c36 0 47 -18 47 -34c0 -17 -5 -42 -46 -42c-7 0 -11 -7 -11 -18c0 -23 18 -60 60 -68l-4 -17c-91 4 -106 80 -106 106c0 35 22 73 60 73zM285 283h177l-94 272h-6l-102.2 -258.7c-3.79999 -10.3 3.20001 -13.3 25.2 -13.3zM177 79
-c-15.6 -41.1 31.4 -45.4 69 -48c6 -6 6 -27 0 -33c-37 1 -87 2 -128 2c-30.3 0 -63 -1 -89 -2c-6 6 -6 27 0 33c43.5 3 74 9 100 71l227 536c13 0 40 11 55 20l206 -572c17.4 -48.2 51.2 -51.5 90 -55c6 -6 6 -27 0 -33c-35 1 -73 2 -114 2c-39 0 -94 -1 -131 -2
-c-6 6 -6 27 0 33c47.6 3.4 85.8 6.5 74 41l-58 169h-211c-24 0 -30 -4 -35 -17z" />
-    <glyph glyph-name="uni1F90" unicode="&#x1f90;" horiz-adv-x="528" 
-d="M98 -74l53 13l22 -7v-52c0 -55 12 -78 32 -78c18 0 34 24 41 51l25 -8c-15 -69 -61 -83 -86 -83c-48 0 -87 24 -87 82v82zM306 697c38 0 60 -37 60 -73s-32 -98 -102 -106l-5 17c42 9 63 46 63 69c0 13 -6 21 -14 21c-41 0 -46 22 -46 38s14 34 44 34zM174 358
-c0 -5 0.800003 -8.20001 2.39999 -5.89999c45.6 48.4 86.1 86.9 160.6 86.9c68 0 109 -43 109 -158v-287c0 -51 3 -99 3 -138c0 -24 -1 -44 -5 -60l-80 -34l-11 18c13 34 14 100 14 214v275c0 65 -6 118 -67 118c-34.5 0 -78.5 -29 -126 -76.5v-238.5c0 -38 9 -82 -29 -82
-c-32 0 -46 10 -50 27c-2 10 0 37 0 55v245c0 58 -11 63 -65 68c-2 6 -4 22 -2 28c69 9 98 18 126 29c8 0 9.89999 -3.39999 12 -8c4.7 -10.3 8 -36 8 -76z" />
-    <glyph glyph-name="uni1F91" unicode="&#x1f91;" horiz-adv-x="528" 
-d="M98 -74l53 13l22 -7v-52c0 -55 12 -78 32 -78c18 0 34 24 41 51l25 -8c-15 -69 -61 -83 -86 -83c-48 0 -87 24 -87 82v82zM290 699c36 0 47 -18 47 -34c0 -17 -5 -42 -46 -42c-7 0 -11 -7 -11 -18c0 -23 18 -60 60 -68l-4 -17c-91 4 -106 80 -106 106c0 35 22 73 60 73z
-M174 358c0 -5 0.800003 -8.20001 2.39999 -5.89999c45.6 48.4 86.1 86.9 160.6 86.9c68 0 109 -43 109 -158v-287c0 -51 3 -99 3 -138c0 -24 -1 -44 -5 -60l-80 -34l-11 18c13 34 14 100 14 214v275c0 65 -6 118 -67 118c-34.5 0 -78.5 -29 -126 -76.5v-238.5
-c0 -38 9 -82 -29 -82c-32 0 -46 10 -50 27c-2 10 0 37 0 55v245c0 58 -11 63 -65 68c-2 6 -4 22 -2 28c69 9 98 18 126 29c8 0 9.89999 -3.39999 12 -8c4.7 -10.3 8 -36 8 -76z" />
-    <glyph glyph-name="uni1F92" unicode="&#x1f92;" horiz-adv-x="528" 
-d="M98 -74l53 13l22 -7v-52c0 -55 12 -78 32 -78c18 0 34 24 41 51l25 -8c-15 -69 -61 -83 -86 -83c-48 0 -87 24 -87 82v82zM226 696c38 0 60 -37 60 -73s-32 -98 -102 -106l-5 17c42 9 63 46 63 69c0 13 -6 21 -14 21c-41 0 -46 22 -46 38s14 34 44 34zM339 656
-c-2 4 -3 9 -3 13c0 16 14 33 37 33c18 0 28 -7 31 -18l39 -152s1 -3 1 -4c0 -5 -5 -12 -15 -12c-5 0 -6 2 -8 5zM174 358c0 -5 0.800003 -8.20001 2.39999 -5.89999c45.6 48.4 86.1 86.9 160.6 86.9c68 0 109 -43 109 -158v-287c0 -51 3 -99 3 -138c0 -24 -1 -44 -5 -60
-l-80 -34l-11 18c13 34 14 100 14 214v275c0 65 -6 118 -67 118c-34.5 0 -78.5 -29 -126 -76.5v-238.5c0 -38 9 -82 -29 -82c-32 0 -46 10 -50 27c-2 10 0 37 0 55v245c0 58 -11 63 -65 68c-2 6 -4 22 -2 28c69 9 98 18 126 29c8 0 9.89999 -3.39999 12 -8
-c4.7 -10.3 8 -36 8 -76z" />
-    <glyph glyph-name="uni1F93" unicode="&#x1f93;" horiz-adv-x="528" 
-d="M98 -74l53 13l22 -7v-52c0 -55 12 -78 32 -78c18 0 34 24 41 51l25 -8c-15 -69 -61 -83 -86 -83c-48 0 -87 24 -87 82v82zM234 693c36 0 47 -18 47 -34c0 -17 -5 -42 -46 -42c-7 0 -11 -7 -11 -18c0 -23 18 -60 60 -68l-4 -17c-91 4 -106 80 -106 106c0 35 22 73 60 73z
-M340 653c-2 4 -3 9 -3 13c0 16 14 33 37 33c18 0 28 -7 31 -18l39 -152s1 -3 1 -4c0 -5 -5 -12 -15 -12c-5 0 -6 2 -8 5zM174 358c0 -5 0.800003 -8.20001 2.39999 -5.89999c45.6 48.4 86.1 86.9 160.6 86.9c68 0 109 -43 109 -158v-287c0 -51 3 -99 3 -138
-c0 -24 -1 -44 -5 -60l-80 -34l-11 18c13 34 14 100 14 214v275c0 65 -6 118 -67 118c-34.5 0 -78.5 -29 -126 -76.5v-238.5c0 -38 9 -82 -29 -82c-32 0 -46 10 -50 27c-2 10 0 37 0 55v245c0 58 -11 63 -65 68c-2 6 -4 22 -2 28c69 9 98 18 126 29
-c8 0 9.89999 -3.39999 12 -8c4.7 -10.3 8 -36 8 -76z" />
-    <glyph glyph-name="uni1F94" unicode="&#x1f94;" horiz-adv-x="528" 
-d="M98 -74l53 13l22 -7v-52c0 -55 12 -78 32 -78c18 0 34 24 41 51l25 -8c-15 -69 -61 -83 -86 -83c-48 0 -87 24 -87 82v82zM240 695c38 0 60 -37 60 -73s-32 -98 -102 -106l-5 17c42 9 63 46 63 69c0 13 -6 21 -14 21c-41 0 -46 22 -46 38s14 34 44 34zM409 701
-c29 0 37 -22 37 -33c0 -4 -1 -8 -3 -12l-76 -139c-1 -4 -5 -5 -8 -5c-12 0 -14 10 -14 13v1l33 155c4 16 21 20 31 20zM174 358c0 -5 0.800003 -8.20001 2.39999 -5.89999c45.6 48.4 86.1 86.9 160.6 86.9c68 0 109 -43 109 -158v-287c0 -51 3 -99 3 -138
-c0 -24 -1 -44 -5 -60l-80 -34l-11 18c13 34 14 100 14 214v275c0 65 -6 118 -67 118c-34.5 0 -78.5 -29 -126 -76.5v-238.5c0 -38 9 -82 -29 -82c-32 0 -46 10 -50 27c-2 10 0 37 0 55v245c0 58 -11 63 -65 68c-2 6 -4 22 -2 28c69 9 98 18 126 29
-c8 0 9.89999 -3.39999 12 -8c4.7 -10.3 8 -36 8 -76z" />
-    <glyph glyph-name="uni1F95" unicode="&#x1f95;" horiz-adv-x="528" 
-d="M98 -74l53 13l22 -7v-52c0 -55 12 -78 32 -78c18 0 34 24 41 51l25 -8c-15 -69 -61 -83 -86 -83c-48 0 -87 24 -87 82v82zM236 693c36 0 47 -18 47 -34c0 -17 -5 -42 -46 -42c-7 0 -11 -7 -11 -18c0 -23 18 -60 60 -68l-4 -17c-91 4 -106 80 -106 106c0 35 22 73 60 73z
-M410 697c28 0 36 -22 36 -33c0 -4 -1 -8 -3 -12l-75 -139c-2 -4 -6 -5 -9 -5c-12 0 -14 10 -14 13v1l33 155c4 16 21 20 32 20zM174 358c0 -5 0.800003 -8.20001 2.39999 -5.89999c45.6 48.4 86.1 86.9 160.6 86.9c68 0 109 -43 109 -158v-287c0 -51 3 -99 3 -138
-c0 -24 -1 -44 -5 -60l-80 -34l-11 18c13 34 14 100 14 214v275c0 65 -6 118 -67 118c-34.5 0 -78.5 -29 -126 -76.5v-238.5c0 -38 9 -82 -29 -82c-32 0 -46 10 -50 27c-2 10 0 37 0 55v245c0 58 -11 63 -65 68c-2 6 -4 22 -2 28c69 9 98 18 126 29
-c8 0 9.89999 -3.39999 12 -8c4.7 -10.3 8 -36 8 -76z" />
-    <glyph glyph-name="uni1F96" unicode="&#x1f96;" horiz-adv-x="528" 
-d="M307 660c38 0 60 -37 60 -73s-32 -98 -102 -106l-5 17c42 9 63 46 63 69c0 13 -6 21 -14 21c-41 0 -46 22 -46 38s14 34 44 34zM373 729c20 0 34 13 47 47l22 -7c-12 -56 -38 -86 -81 -86c-42 0 -73 46 -111 46c-21 0 -35 -16 -46 -46l-22 5c13 55 34 88 75 88
-c55 0 76 -47 116 -47zM174 358c0 -5 0.800003 -8.20001 2.39999 -5.89999c45.6 48.4 86.1 86.9 160.6 86.9c68 0 109 -43 109 -158v-287c0 -51 3 -99 3 -138c0 -24 -1 -44 -5 -60l-80 -34l-11 18c13 34 14 100 14 214v275c0 65 -6 118 -67 118c-34.5 0 -78.5 -29 -126 -76.5
-v-238.5c0 -38 9 -82 -29 -82c-32 0 -46 10 -50 27c-2 10 0 37 0 55v245c0 58 -11 63 -65 68c-2 6 -4 22 -2 28c69 9 98 18 126 29c8 0 9.89999 -3.39999 12 -8c4.7 -10.3 8 -36 8 -76zM98 -74l53 13l22 -7v-52c0 -55 12 -78 32 -78c18 0 34 24 41 51l25 -8
-c-15 -69 -61 -83 -86 -83c-48 0 -87 24 -87 82v82z" />
-    <glyph glyph-name="uni1F97" unicode="&#x1f97;" horiz-adv-x="528" 
-d="M98 -74l53 13l22 -7v-52c0 -55 12 -78 32 -78c18 0 34 24 41 51l25 -8c-15 -69 -61 -83 -86 -83c-48 0 -87 24 -87 82v82zM370 728c20 0 34 13 47 47l22 -7c-12 -56 -38 -86 -81 -86c-42 0 -73 46 -111 46c-21 0 -35 -16 -46 -46l-22 5c13 55 34 88 75 88
-c55 0 76 -47 116 -47zM307 663c36 0 47 -18 47 -34c0 -17 -5 -42 -46 -42c-7 0 -11 -7 -11 -18c0 -23 18 -60 60 -68l-4 -17c-91 4 -106 80 -106 106c0 35 22 73 60 73zM174 358c0 -5 0.800003 -8.20001 2.39999 -5.89999c45.6 48.4 86.1 86.9 160.6 86.9
-c68 0 109 -43 109 -158v-287c0 -51 3 -99 3 -138c0 -24 -1 -44 -5 -60l-80 -34l-11 18c13 34 14 100 14 214v275c0 65 -6 118 -67 118c-34.5 0 -78.5 -29 -126 -76.5v-238.5c0 -38 9 -82 -29 -82c-32 0 -46 10 -50 27c-2 10 0 37 0 55v245c0 58 -11 63 -65 68
-c-2 6 -4 22 -2 28c69 9 98 18 126 29c8 0 9.89999 -3.39999 12 -8c4.7 -10.3 8 -36 8 -76z" />
-    <glyph glyph-name="uni1F98" unicode="&#x1f98;" horiz-adv-x="991" 
-d="M822 303l62 29l11 -17v-205c0 -62 9 -82 30 -82c25 0 34 16 39 51l24 -5c-13 -69 -44 -84 -87 -84c-45 0 -79 26 -79 84v229zM19 724c38 0 60 -37 60 -73s-32 -98 -102 -106l-5 17c42 9 63 46 63 69c0 13 -6 21 -14 21c-41 0 -46 22 -46 38s14 34 44 34zM708 122
-c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-44 1 -91.7 2 -129 2c-37.1 0 -85 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v199h-342v-199c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-44 1 -92.7 2 -129 2c-37.7 0 -86 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401
-c0 83 -17 88 -87 91c-6 6 -6 27 0 33c38 -1 79 -2 129 -2c51 0 92 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-160h342v160c0 83 -17 88 -87 91c-6 6 -6 27 0 33c44 -1 91.7 -2 129 -2c38 0 89 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-401z" />
-    <glyph glyph-name="uni1F99" unicode="&#x1f99;" horiz-adv-x="994" 
-d="M825 303l62 29l11 -17v-205c0 -62 9 -82 30 -82c25 0 34 16 39 51l24 -5c-13 -69 -44 -84 -87 -84c-45 0 -79 26 -79 84v229zM16 725c36 0 47 -18 47 -34c0 -17 -5 -42 -46 -42c-7 0 -11 -7 -11 -18c0 -23 18 -60 60 -68l-4 -17c-91 4 -106 80 -106 106c0 35 22 73 60 73
-zM708 122c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-44 1 -91.7 2 -129 2c-37.1 0 -85 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v199h-342v-199c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-44 1 -92.7 2 -129 2c-37.7 0 -86 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401
-c0 83 -17 88 -87 91c-6 6 -6 27 0 33c38 -1 79 -2 129 -2c51 0 92 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-160h342v160c0 83 -17 88 -87 91c-6 6 -6 27 0 33c44 -1 91.7 -2 129 -2c38 0 89 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-401z" />
-    <glyph glyph-name="uni1F9A" unicode="&#x1f9a;" horiz-adv-x="1152" 
-d="M983 303l62 29l11 -17v-205c0 -62 9 -82 30 -82c25 0 34 16 39 51l24 -5c-13 -69 -44 -84 -87 -84c-45 0 -79 26 -79 84v229zM17 718c38 0 60 -37 60 -73s-32 -98 -102 -106l-5 17c42 9 63 46 63 69c0 13 -6 21 -14 21c-41 0 -46 22 -46 38s14 34 44 34zM130 678
-c-2 4 -3 9 -3 13c0 16 14 33 37 33c18 0 28 -7 31 -18l39 -152s1 -3 1 -4c0 -5 -5 -12 -15 -12c-5 0 -6 2 -8 5zM875 122c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-44 1 -91.7 2 -129 2c-37.1 0 -85 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v199h-342v-199
-c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-44 1 -92.7 2 -129 2c-37.7 0 -86 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c38 -1 79 -2 129 -2c51 0 92 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-160h342v160
-c0 83 -17 88 -87 91c-6 6 -6 27 0 33c44 -1 91.7 -2 129 -2c38 0 89 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-401z" />
-    <glyph glyph-name="uni1F9B" unicode="&#x1f9b;" horiz-adv-x="1143" 
-d="M974 303l62 29l11 -17v-205c0 -62 9 -82 30 -82c25 0 34 16 39 51l24 -5c-13 -69 -44 -84 -87 -84c-45 0 -79 26 -79 84v229zM11 718c36 0 47 -18 47 -34c0 -17 -5 -42 -46 -42c-7 0 -11 -7 -11 -18c0 -23 18 -60 60 -68l-4 -17c-91 4 -106 80 -106 106c0 35 22 73 60 73
-zM117 678c-2 4 -3 9 -3 13c0 16 14 33 37 33c18 0 28 -7 31 -18l39 -152s1 -3 1 -4c0 -5 -5 -12 -15 -12c-5 0 -6 2 -8 5zM865 122c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-44 1 -91.7 2 -129 2c-37.1 0 -85 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v199h-342v-199
-c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-44 1 -92.7 2 -129 2c-37.7 0 -86 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c38 -1 79 -2 129 -2c51 0 92 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-160h342v160
-c0 83 -17 88 -87 91c-6 6 -6 27 0 33c44 -1 91.7 -2 129 -2c38 0 89 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-401z" />
-    <glyph glyph-name="uni1F9C" unicode="&#x1f9c;" horiz-adv-x="1157" 
-d="M988 303l62 29l11 -17v-205c0 -62 9 -82 30 -82c25 0 34 16 39 51l24 -5c-13 -69 -44 -84 -87 -84c-45 0 -79 26 -79 84v229zM8 718c38 0 60 -37 60 -73s-32 -98 -102 -106l-5 17c42 9 63 46 63 69c0 13 -6 21 -14 21c-41 0 -46 22 -46 38s14 34 44 34zM177 724
-c29 0 37 -22 37 -33c0 -4 -1 -8 -3 -12l-76 -139c-1 -4 -5 -5 -8 -5c-12 0 -14 10 -14 13v1l33 155c4 16 21 20 31 20zM868 122c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-44 1 -91.7 2 -129 2c-37.1 0 -85 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v199h-342v-199
-c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-44 1 -92.7 2 -129 2c-37.7 0 -86 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c38 -1 79 -2 129 -2c51 0 92 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-160h342v160
-c0 83 -17 88 -87 91c-6 6 -6 27 0 33c44 -1 91.7 -2 129 -2c38 0 89 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-401z" />
-    <glyph glyph-name="uni1F9D" unicode="&#x1f9d;" horiz-adv-x="1144" 
-d="M975 303l62 29l11 -17v-205c0 -62 9 -82 30 -82c25 0 34 16 39 51l24 -5c-13 -69 -44 -84 -87 -84c-45 0 -79 26 -79 84v229zM9 721c36 0 47 -18 47 -34c0 -17 -5 -42 -46 -42c-7 0 -11 -7 -11 -18c0 -23 18 -60 60 -68l-4 -17c-91 4 -106 80 -106 106c0 35 22 73 60 73z
-M183 725c28 0 36 -22 36 -33c0 -4 -1 -8 -3 -12l-75 -139c-2 -4 -6 -5 -9 -5c-12 0 -14 10 -14 13v1l33 155c4 16 21 20 32 20zM858 122c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-44 1 -91.7 2 -129 2c-37.1 0 -85 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v199h-342v-199
-c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-44 1 -92.7 2 -129 2c-37.7 0 -86 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c38 -1 79 -2 129 -2c51 0 92 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-160h342v160
-c0 83 -17 88 -87 91c-6 6 -6 27 0 33c44 -1 91.7 -2 129 -2c38 0 89 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-401z" />
-    <glyph glyph-name="uni1F9E" unicode="&#x1f9e;" horiz-adv-x="1135" 
-d="M966 303l62 29l11 -17v-205c0 -62 9 -82 30 -82c25 0 34 16 39 51l24 -5c-13 -69 -44 -84 -87 -84c-45 0 -79 26 -79 84v229zM89 606c38 0 60 -37 60 -73s-32 -98 -102 -106l-5 17c42 9 63 46 63 69c0 13 -6 21 -14 21c-41 0 -46 22 -46 38s14 34 44 34zM155 675
-c20 0 34 13 47 47l22 -7c-12 -56 -38 -86 -81 -86c-42 0 -73 46 -111 46c-21 0 -35 -16 -46 -46l-22 5c13 55 34 88 75 88c55 0 76 -47 116 -47zM842 122c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-44 1 -91.7 2 -129 2c-37.1 0 -85 -1 -130 -2c-6 6 -6 27 0 33
-c70 3 87 8 87 91v199h-342v-199c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-44 1 -92.7 2 -129 2c-37.7 0 -86 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c38 -1 79 -2 129 -2c51 0 92 1 130 2c6 -6 6 -27 0 -33
-c-70 -3 -87 -8 -87 -91v-160h342v160c0 83 -17 88 -87 91c-6 6 -6 27 0 33c44 -1 91.7 -2 129 -2c38 0 89 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-401z" />
-    <glyph glyph-name="uni1F9F" unicode="&#x1f9f;" horiz-adv-x="1143" 
-d="M974 303l62 29l11 -17v-205c0 -62 9 -82 30 -82c25 0 34 16 39 51l24 -5c-13 -69 -44 -84 -87 -84c-45 0 -79 26 -79 84v229zM147 676c20 0 34 13 47 47l22 -7c-12 -56 -38 -86 -81 -86c-42 0 -73 46 -111 46c-21 0 -35 -16 -46 -46l-22 5c13 55 34 88 75 88
-c55 0 76 -47 116 -47zM84 611c36 0 47 -18 47 -34c0 -17 -5 -42 -46 -42c-7 0 -11 -7 -11 -18c0 -23 18 -60 60 -68l-4 -17c-91 4 -106 80 -106 106c0 35 22 73 60 73zM852 122c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-44 1 -91.7 2 -129 2c-37.1 0 -85 -1 -130 -2
-c-6 6 -6 27 0 33c70 3 87 8 87 91v199h-342v-199c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-44 1 -92.7 2 -129 2c-37.7 0 -86 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c38 -1 79 -2 129 -2c51 0 92 1 130 2c6 -6 6 -27 0 -33
-c-70 -3 -87 -8 -87 -91v-160h342v160c0 83 -17 88 -87 91c-6 6 -6 27 0 33c44 -1 91.7 -2 129 -2c38 0 89 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-401z" />
-    <glyph glyph-name="uni1FA0" unicode="&#x1fa0;" horiz-adv-x="658" 
-d="M288 -56l53 13l22 -7v-52c0 -55 12 -78 32 -78c18 0 34 24 41 51l25 -8c-15 -69 -61 -83 -86 -83c-48 0 -87 24 -87 82v82zM341 704c38 0 60 -37 60 -73s-32 -98 -102 -106l-5 17c42 9 63 46 63 69c0 13 -6 21 -14 21c-41 0 -46 22 -46 38s14 34 44 34zM624 189
-c0 -104 -68 -199 -190 -199c-51 0 -91 31 -113 103c-27 -72 -60 -103 -117 -103c-90 0 -170 73 -170 204c0 118 70 200 183 248c7.60001 -4 12 -13.7 13 -23c-65 -41 -114 -88 -114 -210c0 -112 27 -182 101 -182c37 0 60 30 91 101c-13 33 -15 70 -15 90c0 31 11 66 37 66
-c27 0 30 -13 30 -37s-9 -79 -24 -116c30 -69 65 -104 105 -104c72 0 101 37 101 147c0 73 -17 166 -121 245c1 8.10001 1.89999 20.1 15 23c94 -45 188 -137 188 -253z" />
-    <glyph glyph-name="uni1FA1" unicode="&#x1fa1;" horiz-adv-x="658" 
-d="M288 -56l53 13l22 -7v-52c0 -55 12 -78 32 -78c18 0 34 24 41 51l25 -8c-15 -69 -61 -83 -86 -83c-48 0 -87 24 -87 82v82zM349 689c36 0 47 -18 47 -34c0 -17 -5 -42 -46 -42c-7 0 -11 -7 -11 -18c0 -23 18 -60 60 -68l-4 -17c-91 4 -106 80 -106 106c0 35 22 73 60 73z
-M624 189c0 -104 -68 -199 -190 -199c-51 0 -91 31 -113 103c-27 -72 -60 -103 -117 -103c-90 0 -170 73 -170 204c0 118 70 200 183 248c7.60001 -4 12 -13.7 13 -23c-65 -41 -114 -88 -114 -210c0 -112 27 -182 101 -182c37 0 60 30 91 101c-13 33 -15 70 -15 90
-c0 31 11 66 37 66c27 0 30 -13 30 -37s-9 -79 -24 -116c30 -69 65 -104 105 -104c72 0 101 37 101 147c0 73 -17 166 -121 245c1 8.10001 1.89999 20.1 15 23c94 -45 188 -137 188 -253z" />
-    <glyph glyph-name="uni1FA2" unicode="&#x1fa2;" horiz-adv-x="658" 
-d="M288 -56l53 13l22 -7v-52c0 -55 12 -78 32 -78c18 0 34 24 41 51l25 -8c-15 -69 -61 -83 -86 -83c-48 0 -87 24 -87 82v82zM260 687c38 0 60 -37 60 -73s-32 -98 -102 -106l-5 17c42 9 63 46 63 69c0 13 -6 21 -14 21c-41 0 -46 22 -46 38s14 34 44 34zM373 647
-c-2 4 -3 9 -3 13c0 16 14 33 37 33c18 0 28 -7 31 -18l39 -152s1 -3 1 -4c0 -5 -5 -12 -15 -12c-5 0 -6 2 -8 5zM624 189c0 -104 -68 -199 -190 -199c-51 0 -91 31 -113 103c-27 -72 -60 -103 -117 -103c-90 0 -170 73 -170 204c0 118 70 200 183 248
-c7.60001 -4 12 -13.7 13 -23c-65 -41 -114 -88 -114 -210c0 -112 27 -182 101 -182c37 0 60 30 91 101c-13 33 -15 70 -15 90c0 31 11 66 37 66c27 0 30 -13 30 -37s-9 -79 -24 -116c30 -69 65 -104 105 -104c72 0 101 37 101 147c0 73 -17 166 -121 245
-c1 8.10001 1.89999 20.1 15 23c94 -45 188 -137 188 -253z" />
-    <glyph glyph-name="uni1FA3" unicode="&#x1fa3;" horiz-adv-x="658" 
-d="M288 -56l53 13l22 -7v-52c0 -55 12 -78 32 -78c18 0 34 24 41 51l25 -8c-15 -69 -61 -83 -86 -83c-48 0 -87 24 -87 82v82zM257 687c36 0 47 -18 47 -34c0 -17 -5 -42 -46 -42c-7 0 -11 -7 -11 -18c0 -23 18 -60 60 -68l-4 -17c-91 4 -106 80 -106 106c0 35 22 73 60 73z
-M363 647c-2 4 -3 9 -3 13c0 16 14 33 37 33c18 0 28 -7 31 -18l39 -152s1 -3 1 -4c0 -5 -5 -12 -15 -12c-5 0 -6 2 -8 5zM624 189c0 -104 -68 -199 -190 -199c-51 0 -91 31 -113 103c-27 -72 -60 -103 -117 -103c-90 0 -170 73 -170 204c0 118 70 200 183 248
-c7.60001 -4 12 -13.7 13 -23c-65 -41 -114 -88 -114 -210c0 -112 27 -182 101 -182c37 0 60 30 91 101c-13 33 -15 70 -15 90c0 31 11 66 37 66c27 0 30 -13 30 -37s-9 -79 -24 -116c30 -69 65 -104 105 -104c72 0 101 37 101 147c0 73 -17 166 -121 245
-c1 8.10001 1.89999 20.1 15 23c94 -45 188 -137 188 -253z" />
-    <glyph glyph-name="uni1FA4" unicode="&#x1fa4;" horiz-adv-x="658" 
-d="M288 -56l53 13l22 -7v-52c0 -55 12 -78 32 -78c18 0 34 24 41 51l25 -8c-15 -69 -61 -83 -86 -83c-48 0 -87 24 -87 82v82zM261 684c38 0 60 -37 60 -73s-32 -98 -102 -106l-5 17c42 9 63 46 63 69c0 13 -6 21 -14 21c-41 0 -46 22 -46 38s14 34 44 34zM430 690
-c29 0 37 -22 37 -33c0 -4 -1 -8 -3 -12l-76 -139c-1 -4 -5 -5 -8 -5c-12 0 -14 10 -14 13v1l33 155c4 16 21 20 31 20zM624 189c0 -104 -68 -199 -190 -199c-51 0 -91 31 -113 103c-27 -72 -60 -103 -117 -103c-90 0 -170 73 -170 204c0 118 70 200 183 248
-c7.60001 -4 12 -13.7 13 -23c-65 -41 -114 -88 -114 -210c0 -112 27 -182 101 -182c37 0 60 30 91 101c-13 33 -15 70 -15 90c0 31 11 66 37 66c27 0 30 -13 30 -37s-9 -79 -24 -116c30 -69 65 -104 105 -104c72 0 101 37 101 147c0 73 -17 166 -121 245
-c1 8.10001 1.89999 20.1 15 23c94 -45 188 -137 188 -253z" />
-    <glyph glyph-name="uni1FA5" unicode="&#x1fa5;" horiz-adv-x="658" 
-d="M288 -56l53 13l22 -7v-52c0 -55 12 -78 32 -78c18 0 34 24 41 51l25 -8c-15 -69 -61 -83 -86 -83c-48 0 -87 24 -87 82v82zM267 686c36 0 47 -18 47 -34c0 -17 -5 -42 -46 -42c-7 0 -11 -7 -11 -18c0 -23 18 -60 60 -68l-4 -17c-91 4 -106 80 -106 106c0 35 22 73 60 73z
-M441 690c28 0 36 -22 36 -33c0 -4 -1 -8 -3 -12l-75 -139c-2 -4 -6 -5 -9 -5c-12 0 -14 10 -14 13v1l33 155c4 16 21 20 32 20zM624 189c0 -104 -68 -199 -190 -199c-51 0 -91 31 -113 103c-27 -72 -60 -103 -117 -103c-90 0 -170 73 -170 204c0 118 70 200 183 248
-c7.60001 -4 12 -13.7 13 -23c-65 -41 -114 -88 -114 -210c0 -112 27 -182 101 -182c37 0 60 30 91 101c-13 33 -15 70 -15 90c0 31 11 66 37 66c27 0 30 -13 30 -37s-9 -79 -24 -116c30 -69 65 -104 105 -104c72 0 101 37 101 147c0 73 -17 166 -121 245
-c1 8.10001 1.89999 20.1 15 23c94 -45 188 -137 188 -253z" />
-    <glyph glyph-name="uni1FA6" unicode="&#x1fa6;" horiz-adv-x="658" 
-d="M288 -56l53 13l22 -7v-52c0 -55 12 -78 32 -78c18 0 34 24 41 51l25 -8c-15 -69 -61 -83 -86 -83c-48 0 -87 24 -87 82v82zM339 655c38 0 60 -37 60 -73s-32 -98 -102 -106l-5 17c42 9 63 46 63 69c0 13 -6 21 -14 21c-41 0 -46 22 -46 38s14 34 44 34zM405 724
-c20 0 34 13 47 47l22 -7c-12 -56 -38 -86 -81 -86c-42 0 -73 46 -111 46c-21 0 -35 -16 -46 -46l-22 5c13 55 34 88 75 88c55 0 76 -47 116 -47zM624 189c0 -104 -68 -199 -190 -199c-51 0 -91 31 -113 103c-27 -72 -60 -103 -117 -103c-90 0 -170 73 -170 204
-c0 118 70 200 183 248c7.60001 -4 12 -13.7 13 -23c-65 -41 -114 -88 -114 -210c0 -112 27 -182 101 -182c37 0 60 30 91 101c-13 33 -15 70 -15 90c0 31 11 66 37 66c27 0 30 -13 30 -37s-9 -79 -24 -116c30 -69 65 -104 105 -104c72 0 101 37 101 147
-c0 73 -17 166 -121 245c1 8.10001 1.89999 20.1 15 23c94 -45 188 -137 188 -253z" />
-    <glyph glyph-name="uni1FA7" unicode="&#x1fa7;" horiz-adv-x="658" 
-d="M288 -56l53 13l22 -7v-52c0 -55 12 -78 32 -78c18 0 34 24 41 51l25 -8c-15 -69 -61 -83 -86 -83c-48 0 -87 24 -87 82v82zM408 724c20 0 34 13 47 47l22 -7c-12 -56 -38 -86 -81 -86c-42 0 -73 46 -111 46c-21 0 -35 -16 -46 -46l-22 5c13 55 34 88 75 88
-c55 0 76 -47 116 -47zM345 659c36 0 47 -18 47 -34c0 -17 -5 -42 -46 -42c-7 0 -11 -7 -11 -18c0 -23 18 -60 60 -68l-4 -17c-91 4 -106 80 -106 106c0 35 22 73 60 73zM624 189c0 -104 -68 -199 -190 -199c-51 0 -91 31 -113 103c-27 -72 -60 -103 -117 -103
-c-90 0 -170 73 -170 204c0 118 70 200 183 248c7.60001 -4 12 -13.7 13 -23c-65 -41 -114 -88 -114 -210c0 -112 27 -182 101 -182c37 0 60 30 91 101c-13 33 -15 70 -15 90c0 31 11 66 37 66c27 0 30 -13 30 -37s-9 -79 -24 -116c30 -69 65 -104 105 -104
-c72 0 101 37 101 147c0 73 -17 166 -121 245c1 8.10001 1.89999 20.1 15 23c94 -45 188 -137 188 -253z" />
-    <glyph glyph-name="uni1FA8" unicode="&#x1fa8;" horiz-adv-x="939" 
-d="M771 303l62 29l11 -17v-205c0 -62 9 -82 30 -82c25 0 34 16 39 51l24 -5c-13 -69 -44 -84 -87 -84c-45 0 -79 26 -79 84v229zM-3 724c38 0 60 -37 60 -73s-32 -98 -102 -106l-5 17c42 9 63 46 63 69c0 13 -6 21 -14 21c-41 0 -46 22 -46 38s14 34 44 34zM477 117l-3 -48
-h97c49 0 70 -7 76 50c10 4 18.7 4 26 0c0 -40 -3 -85 -7 -119h-208c-12 0 -17 5 -17 14l8 129c92 53 132 126 132 234c0 141 -80 247 -210 247c-139 0 -209 -118 -209 -246c0 -112 39 -173 131 -235l8 -128c0 -9 -6 -15 -17 -15h-213c-4.7 38.2 -7 78 -7 119
-c8.3 4.3 16.7 3.6 25 0c5 -53 24 -50 77 -50h103l-4 48c-108 37 -195 132 -195 260c0 132 104 281 301 281c199 0 301 -133 301 -281c0 -120 -84 -223 -195 -260z" />
-    <glyph glyph-name="uni1FA9" unicode="&#x1fa9;" horiz-adv-x="946" 
-d="M777 303l62 29l11 -17v-205c0 -62 9 -82 30 -82c25 0 34 16 39 51l24 -5c-13 -69 -44 -84 -87 -84c-45 0 -79 26 -79 84v229zM-20 725c36 0 47 -18 47 -34c0 -17 -5 -42 -46 -42c-7 0 -11 -7 -11 -18c0 -23 18 -60 60 -68l-4 -17c-91 4 -106 80 -106 106
-c0 35 22 73 60 73zM476 117l-3 -48h97c49 0 70 -7 76 50c10 4 18.7 4 26 0c0 -40 -3 -85 -7 -119h-208c-12 0 -17 5 -17 14l8 129c92 53 132 126 132 234c0 141 -80 247 -210 247c-139 0 -209 -118 -209 -246c0 -112 39 -173 131 -235l8 -128c0 -9 -6 -15 -17 -15h-213
-c-4.7 38.2 -7 78 -7 119c8.3 4.3 16.7 3.6 25 0c5 -53 24 -50 77 -50h103l-4 48c-108 37 -195 132 -195 260c0 132 104 281 301 281c199 0 301 -133 301 -281c0 -120 -84 -223 -195 -260z" />
-    <glyph glyph-name="uni1FAA" unicode="&#x1faa;" horiz-adv-x="1086" 
-d="M917 304l62 29l11 -17v-205c0 -62 9 -82 30 -82c25 0 34 16 39 51l24 -5c-13 -69 -44 -84 -87 -84c-45 0 -79 26 -79 84v229zM7 718c38 0 60 -37 60 -73s-32 -98 -102 -106l-5 17c42 9 63 46 63 69c0 13 -6 21 -14 21c-41 0 -46 22 -46 38s14 34 44 34zM120 678
-c-2 4 -3 9 -3 13c0 16 14 33 37 33c18 0 28 -7 31 -18l39 -152s1 -3 1 -4c0 -5 -5 -12 -15 -12c-5 0 -6 2 -8 5zM680 117l-3 -48h97c49 0 70 -7 76 50c10 4 18.7 4 26 0c0 -40 -3 -85 -7 -119h-208c-12 0 -17 5 -17 14l8 129c92 53 132 126 132 234c0 141 -80 247 -210 247
-c-139 0 -209 -118 -209 -246c0 -112 39 -173 131 -235l8 -128c0 -9 -6 -15 -17 -15h-213c-4.70001 38.2 -7 78 -7 119c8.29999 4.3 16.7 3.6 25 0c5 -53 24 -50 77 -50h103l-4 48c-108 37 -195 132 -195 260c0 132 104 281 301 281c199 0 301 -133 301 -281
-c0 -120 -84 -223 -195 -260z" />
-    <glyph glyph-name="uni1FAB" unicode="&#x1fab;" horiz-adv-x="1080" 
-d="M911 303l62 29l11 -17v-205c0 -62 9 -82 30 -82c25 0 34 16 39 51l24 -5c-13 -69 -44 -84 -87 -84c-45 0 -79 26 -79 84v229zM2 718c36 0 47 -18 47 -34c0 -17 -5 -42 -46 -42c-7 0 -11 -7 -11 -18c0 -23 18 -60 60 -68l-4 -17c-91 4 -106 80 -106 106c0 35 22 73 60 73z
-M108 678c-2 4 -3 9 -3 13c0 16 14 33 37 33c18 0 28 -7 31 -18l39 -152s1 -3 1 -4c0 -5 -5 -12 -15 -12c-5 0 -6 2 -8 5zM663 117l-3 -48h97c49 0 70 -7 76 50c10 4 18.7 4 26 0c0 -40 -3 -85 -7 -119h-208c-12 0 -17 5 -17 14l8 129c92 53 132 126 132 234
-c0 141 -80 247 -210 247c-139 0 -209 -118 -209 -246c0 -112 39 -173 131 -235l8 -128c0 -9 -6 -15 -17 -15h-213c-4.7 38.2 -7 78 -7 119c8.29999 4.3 16.7 3.6 25 0c5 -53 24 -50 77 -50h103l-4 48c-108 37 -195 132 -195 260c0 132 104 281 301 281
-c199 0 301 -133 301 -281c0 -120 -84 -223 -195 -260z" />
-    <glyph glyph-name="uni1FAC" unicode="&#x1fac;" horiz-adv-x="1065" 
-d="M897 303l62 29l11 -17v-205c0 -62 9 -82 30 -82c25 0 34 16 39 51l24 -5c-13 -69 -44 -84 -87 -84c-45 0 -79 26 -79 84v229zM13 720c38 0 60 -37 60 -73s-32 -98 -102 -106l-5 17c42 9 63 46 63 69c0 13 -6 21 -14 21c-41 0 -46 22 -46 38s14 34 44 34zM182 726
-c29 0 37 -22 37 -33c0 -4 -1 -8 -3 -12l-76 -139c-1 -4 -5 -5 -8 -5c-12 0 -14 10 -14 13v1l33 155c4 16 21 20 31 20zM623 117l-3 -48h97c49 0 70 -7 76 50c10 4 18.7 4 26 0c0 -40 -3 -85 -7 -119h-208c-12 0 -17 5 -17 14l8 129c92 53 132 126 132 234
-c0 141 -80 247 -210 247c-139 0 -209 -118 -209 -246c0 -112 39 -173 131 -235l8 -128c0 -9 -6 -15 -17 -15h-213c-4.7 38.2 -7 78 -7 119c8.3 4.3 16.7 3.6 25 0c5 -53 24 -50 77 -50h103l-4 48c-108 37 -195 132 -195 260c0 132 104 281 301 281c199 0 301 -133 301 -281
-c0 -120 -84 -223 -195 -260z" />
-    <glyph glyph-name="uni1FAD" unicode="&#x1fad;" horiz-adv-x="1080" 
-d="M911 303l62 29l11 -17v-205c0 -62 9 -82 30 -82c25 0 34 16 39 51l24 -5c-13 -69 -44 -84 -87 -84c-45 0 -79 26 -79 84v229zM12 720c36 0 47 -18 47 -34c0 -17 -5 -42 -46 -42c-7 0 -11 -7 -11 -18c0 -23 18 -60 60 -68l-4 -17c-91 4 -106 80 -106 106c0 35 22 73 60 73
-zM186 724c28 0 36 -22 36 -33c0 -4 -1 -8 -3 -12l-75 -139c-2 -4 -6 -5 -9 -5c-12 0 -14 10 -14 13v1l33 155c4 16 21 20 32 20zM627 117l-3 -48h97c49 0 70 -7 76 50c10 4 18.7 4 26 0c0 -40 -3 -85 -7 -119h-208c-12 0 -17 5 -17 14l8 129c92 53 132 126 132 234
-c0 141 -80 247 -210 247c-139 0 -209 -118 -209 -246c0 -112 39 -173 131 -235l8 -128c0 -9 -6 -15 -17 -15h-213c-4.7 38.2 -7 78 -7 119c8.3 4.3 16.7 3.6 25 0c5 -53 24 -50 77 -50h103l-4 48c-108 37 -195 132 -195 260c0 132 104 281 301 281c199 0 301 -133 301 -281
-c0 -120 -84 -223 -195 -260z" />
-    <glyph glyph-name="uni1FAE" unicode="&#x1fae;" horiz-adv-x="1054" 
-d="M885 303l62 29l11 -17v-205c0 -62 9 -82 30 -82c25 0 34 16 39 51l24 -5c-13 -69 -44 -84 -87 -84c-45 0 -79 26 -79 84v229zM60 607c38 0 60 -37 60 -73s-32 -98 -102 -106l-5 17c42 9 63 46 63 69c0 13 -6 21 -14 21c-41 0 -46 22 -46 38s14 34 44 34zM126 676
-c20 0 34 13 47 47l22 -7c-12 -56 -38 -86 -81 -86c-42 0 -73 46 -111 46c-21 0 -35 -16 -46 -46l-22 5c13 55 34 88 75 88c55 0 76 -47 116 -47zM596 117l-3 -48h97c49 0 70 -7 76 50c10 4 18.7 4 26 0c0 -40 -3 -85 -7 -119h-208c-12 0 -17 5 -17 14l8 129
-c92 53 132 126 132 234c0 141 -80 247 -210 247c-139 0 -209 -118 -209 -246c0 -112 39 -173 131 -235l8 -128c0 -9 -6 -15 -17 -15h-213c-4.7 38.2 -7 78 -7 119c8.3 4.3 16.7 3.6 25 0c5 -53 24 -50 77 -50h103l-4 48c-108 37 -195 132 -195 260c0 132 104 281 301 281
-c199 0 301 -133 301 -281c0 -120 -84 -223 -195 -260z" />
-    <glyph glyph-name="uni1FAF" unicode="&#x1faf;" horiz-adv-x="1073" 
-d="M904 303l62 29l11 -17v-205c0 -62 9 -82 30 -82c25 0 34 16 39 51l24 -5c-13 -69 -44 -84 -87 -84c-45 0 -79 26 -79 84v229zM139 677c20 0 34 13 47 47l22 -7c-12 -56 -38 -86 -81 -86c-42 0 -73 46 -111 46c-21 0 -35 -16 -46 -46l-22 5c13 55 34 88 75 88
-c55 0 76 -47 116 -47zM76 612c36 0 47 -18 47 -34c0 -17 -5 -42 -46 -42c-7 0 -11 -7 -11 -18c0 -23 18 -60 60 -68l-4 -17c-91 4 -106 80 -106 106c0 35 22 73 60 73zM623 117l-3 -48h97c49 0 70 -7 76 50c10 4 18.7 4 26 0c0 -40 -3 -85 -7 -119h-208c-12 0 -17 5 -17 14
-l8 129c92 53 132 126 132 234c0 141 -80 247 -210 247c-139 0 -209 -118 -209 -246c0 -112 39 -173 131 -235l8 -128c0 -9 -6 -15 -17 -15h-213c-4.7 38.2 -7 78 -7 119c8.3 4.3 16.7 3.6 25 0c5 -53 24 -50 77 -50h103l-4 48c-108 37 -195 132 -195 260
-c0 132 104 281 301 281c199 0 301 -133 301 -281c0 -120 -84 -223 -195 -260z" />
-    <glyph glyph-name="uni1FBB" unicode="&#x1fbb;" horiz-adv-x="695" 
-d="M164 724c20 0 42 -15 42 -35c0 -5 -2 -13 -6 -18l-92 -122c-3 -4 -8 -8 -12 -8c-8 0 -14 6 -14 13c0 3 1 7 2 10l52 143c4 11 15 17 28 17zM263 283h177l-94 272h-6l-102.2 -258.7c-3.8 -10.3 3.2 -13.3 25.2 -13.3zM155 79c-15.6 -41.1 31.4 -45.4 69 -48
-c6 -6 6 -27 0 -33c-37 1 -87 2 -128 2c-30.3 0 -63 -1 -89 -2c-6 6 -6 27 0 33c43.5 3 74 9 100 71l227 536c13 0 40 11 55 20l206 -572c17.4 -48.2 51.2 -51.5 90 -55c6 -6 6 -27 0 -33c-35 1 -73 2 -114 2c-39 0 -94 -1 -131 -2c-6 6 -6 27 0 33c47.6 3.4 85.8 6.5 74 41
-l-58 169h-211c-24 0 -30 -4 -35 -17z" />
-    <glyph glyph-name="uni1FB7" unicode="&#x1fb7;" horiz-adv-x="566" 
-d="M200 -56l53 13l22 -7v-52c0 -55 12 -78 32 -78c18 0 34 24 41 51l25 -8c-15 -69 -61 -83 -86 -83c-48 0 -87 24 -87 82v82zM301 597c20 0 34 13 47 47l22 -7c-12 -56 -38 -86 -81 -86c-42 0 -73 46 -111 46c-21 0 -35 -16 -46 -46l-22 5c13 55 34 88 75 88
-c55 0 76 -47 116 -47zM409 191l14 -58c13 -53 33 -82 56 -82c25 0 38 7 55 37c12 0 19 -4 25 -11c-22 -63 -47 -87 -91 -87c-37 0 -63 33 -79 101l-9 39c-50 -99 -96 -140 -164 -140c-128 0 -182 82 -182 206c0 184 125 243 216 243c73.5 0 113 -48 132.8 -135
-c2.30002 -10 3.90002 -5.5 6.70001 2l47.5 128c15 0 33 -5 48 -5s36 5 49 5zM359 222l-5 21c-23 96 -49 162 -109 162c-67 0 -127 -71 -127 -186c0 -108 29 -195 103 -195c46 0 88 62 122 157z" />
-    <glyph glyph-name="uni1FC2" unicode="&#x1fc2;" horiz-adv-x="528" 
-d="M98 -74l53 13l22 -7v-52c0 -55 12 -78 32 -78c18 0 34 24 41 51l25 -8c-15 -69 -61 -83 -86 -83c-48 0 -87 24 -87 82v82zM240 678c5 4 11 5 18 5c5 0 10 -1 15 -3c6 -4 10 -8 12 -13l62 -146c0 -1 1 -2 1 -3c0 -3 -2 -6 -4 -8c-3 -3 -7 -4 -10 -4s-6 1 -8 3l-101 123
-c-3 4 -5 8 -5 13c0 13 7 24 20 33zM174 358c0 -5 0.800003 -8.20001 2.39999 -5.89999c45.6 48.4 86.1 86.9 160.6 86.9c68 0 109 -43 109 -158v-287c0 -51 3 -99 3 -138c0 -24 -1 -44 -5 -60l-80 -34l-11 18c13 34 14 100 14 214v275c0 65 -6 118 -67 118
-c-34.5 0 -78.5 -29 -126 -76.5v-238.5c0 -38 9 -82 -29 -82c-32 0 -46 10 -50 27c-2 10 0 37 0 55v245c0 58 -11 63 -65 68c-2 6 -4 22 -2 28c69 9 98 18 126 29c8 0 9.89999 -3.39999 12 -8c4.7 -10.3 8 -36 8 -76z" />
-    <glyph glyph-name="uni1FC3" unicode="&#x1fc3;" horiz-adv-x="528" 
-d="M98 -74l53 13l22 -7v-52c0 -55 12 -78 32 -78c18 0 34 24 41 51l25 -8c-15 -69 -61 -83 -86 -83c-48 0 -87 24 -87 82v82zM174 358c0 -5 0.800003 -8.20001 2.39999 -5.89999c45.6 48.4 86.1 86.9 160.6 86.9c68 0 109 -43 109 -158v-287c0 -51 3 -99 3 -138
-c0 -24 -1 -44 -5 -60l-80 -34l-11 18c13 34 14 100 14 214v275c0 65 -6 118 -67 118c-34.5 0 -78.5 -29 -126 -76.5v-238.5c0 -38 9 -82 -29 -82c-32 0 -46 10 -50 27c-2 10 0 37 0 55v245c0 58 -11 63 -65 68c-2 6 -4 22 -2 28c69 9 98 18 126 29
-c8 0 9.89999 -3.39999 12 -8c4.7 -10.3 8 -36 8 -76z" />
-    <glyph glyph-name="uni1FC4" unicode="&#x1fc4;" horiz-adv-x="528" 
-d="M98 -74l53 13l22 -7v-52c0 -55 12 -78 32 -78c18 0 34 24 41 51l25 -8c-15 -69 -61 -83 -86 -83c-48 0 -87 24 -87 82v82zM330 681c20 0 42 -15 42 -35c0 -5 -2 -13 -6 -18l-92 -122c-3 -4 -8 -8 -12 -8c-8 0 -14 6 -14 13c0 3 1 7 2 10l52 143c4 11 15 17 28 17z
-M174 358c0 -5 0.800003 -8.20001 2.39999 -5.89999c45.6 48.4 86.1 86.9 160.6 86.9c68 0 109 -43 109 -158v-287c0 -51 3 -99 3 -138c0 -24 -1 -44 -5 -60l-80 -34l-11 18c13 34 14 100 14 214v275c0 65 -6 118 -67 118c-34.5 0 -78.5 -29 -126 -76.5v-238.5
-c0 -38 9 -82 -29 -82c-32 0 -46 10 -50 27c-2 10 0 37 0 55v245c0 58 -11 63 -65 68c-2 6 -4 22 -2 28c69 9 98 18 126 29c8 0 9.89999 -3.39999 12 -8c4.7 -10.3 8 -36 8 -76z" />
-    <glyph glyph-name="uni1FC7" unicode="&#x1fc7;" horiz-adv-x="528" 
-d="M98 -74l53 13l22 -7v-52c0 -55 12 -78 32 -78c18 0 34 24 41 51l25 -8c-15 -69 -61 -83 -86 -83c-48 0 -87 24 -87 82v82zM348 595c20 0 34 13 47 47l22 -7c-12 -56 -38 -86 -81 -86c-42 0 -73 46 -111 46c-21 0 -35 -16 -46 -46l-22 5c13 55 34 88 75 88
-c55 0 76 -47 116 -47zM174 358c0 -5 0.800003 -8.20001 2.39999 -5.89999c45.6 48.4 86.1 86.9 160.6 86.9c68 0 109 -43 109 -158v-287c0 -51 3 -99 3 -138c0 -24 -1 -44 -5 -60l-80 -34l-11 18c13 34 14 100 14 214v275c0 65 -6 118 -67 118c-34.5 0 -78.5 -29 -126 -76.5
-v-238.5c0 -38 9 -82 -29 -82c-32 0 -46 10 -50 27c-2 10 0 37 0 55v245c0 58 -11 63 -65 68c-2 6 -4 22 -2 28c69 9 98 18 126 29c8 0 9.89999 -3.39999 12 -8c4.7 -10.3 8 -36 8 -76z" />
-    <glyph glyph-name="uni1FBC" unicode="&#x1fbc;" horiz-adv-x="903" 
-d="M734 303l62 29l11 -17v-205c0 -62 9 -82 30 -82c25 0 34 16 39 51l24 -5c-13 -69 -44 -84 -87 -84c-45 0 -79 26 -79 84v229zM263 283h177l-94 272h-6l-102.2 -258.7c-3.8 -10.3 3.2 -13.3 25.2 -13.3zM155 79c-15.6 -41.1 31.4 -45.4 69 -48c6 -6 6 -27 0 -33
-c-37 1 -87 2 -128 2c-30.3 0 -63 -1 -89 -2c-6 6 -6 27 0 33c43.5 3 74 9 100 71l227 536c13 0 40 11 55 20l206 -572c17.4 -48.2 51.2 -51.5 90 -55c6 -6 6 -27 0 -33c-35 1 -73 2 -114 2c-39 0 -94 -1 -131 -2c-6 6 -6 27 0 33c47.6 3.4 85.8 6.5 74 41l-58 169h-211
-c-24 0 -30 -4 -35 -17z" />
-    <glyph glyph-name="uni1FBE" unicode="&#x1fbe;" horiz-adv-x="331" 
-d="M129 303l62 29l11 -17v-205c0 -62 9 -82 30 -82c25 0 34 16 39 51l24 -5c-13 -69 -44 -84 -87 -84c-45 0 -79 26 -79 84v229z" />
-    <glyph glyph-name="onesixth" unicode="&#x2159;" horiz-adv-x="660" 
-d="M532 601l42 -8l-459 -655l-41 8zM562 10c0 22 -4 77 -61 77c-14 0 -36 -6 -57 -23c-1 -5 -1 -13 -1 -19c0 -84 40 -107 68 -107c44 0 51 34 51 72zM619 15c0 -36 -29 -101 -108 -101c-50 0 -121 29 -121 133c0 82 58 185 211 196v-19c-109 -19 -144 -86 -155 -144
-c14 14 41 31 66 31c97 0 107 -79 107 -96zM133 572c-13 0 -32 -6 -57 -15c-7.9 6.09998 -10 15 -10 27c47 17 73 29 117 56c5.3 2.90002 12.7 5 18 0v-239c0 -51 21 -54 55 -56c4 -8 4 -22 0 -29c-30 1 -51 1 -84 1c-35.3 0 -66 0 -96 -1c-4 6 -5 21 0 29c40 2 71 5 71 56
-v130c0 32 -2 41 -14 41z" />
-    <glyph glyph-name="fivesixths" unicode="&#x215a;" horiz-adv-x="660" 
-d="M532 601l42 -8l-459 -655l-41 8zM202 414c0 30 -3 89 -75 89c-22 0 -43 -7 -57 -14l-6 3l22 143h163l-5 -34v-1h-135l-12 -81c9 6 34 11 48 11c78 0 114 -52 114 -106c0 -60 -49 -113 -118 -113c-34 0 -94 13 -94 37c0 13 12 21 22 21c13 0 21 -7 29 -15
-c9 -9 20 -16 42 -16c45 0 62 35 62 76zM561 11c0 22 -4 77 -61 77c-14 0 -36 -6 -57 -23c-1 -5 -1 -13 -1 -19c0 -84 40 -107 68 -107c44 0 51 34 51 72zM618 16c0 -36 -29 -101 -108 -101c-50 0 -121 29 -121 133c0 82 58 185 211 196v-19c-109 -19 -144 -86 -155 -144
-c14 14 41 31 66 31c97 0 107 -79 107 -96z" />
-    <glyph glyph-name="uni221B" unicode="&#x221b;" horiz-adv-x="565" 
-d="M488 733l-180 -733l-38 -20l-140 241l-64 -26l-13 28c37 19 79 45 113 71l122 -211l165 684v5h113v-39h-78zM186 624c0 26 -22 34 -38 34c-17 0 -45 -8 -52 -24c-4.8 -11 -4 -29 -27 -29c-19 0 -23 15 -23 18c0 17 27 65 114 65c52 0 85 -22 85 -59
-c0 -29 -22 -52 -51 -68c33 -3 80 -30 80 -88c0 -69 -59 -115 -139 -115c-26.2 0 -96.8 11.3 -96.8 42.8c0 13.3 12.5 22.2 24.8 22.2c14 0 24 -5 30 -17c5.7 -11.5 14 -18 46 -18c29 0 73 13 73 77c0 57 -51 61 -75 61c-7 0 -12 -1 -20 -2c-5.4 6.5 -4.7 17.9 -2 27
-c44 6 71 32 71 73z" />
-    <glyph glyph-name="uni221C" unicode="&#x221c;" horiz-adv-x="565" 
-d="M488 733l-180 -733l-38 -20l-140 241l-64 -26l-13 28c37 19 79 45 113 71l122 -211l165 684v5h113v-39h-78zM171 637.7c-39.2 -48.5 -91.5 -122.2 -98 -139.7h98v139.7zM171 440v24h-118.8c-26.6 0 -21.5 20.2 -18.9 28.2c2.9 6.29999 6.1 11.3 9.5 16.8
-c33.2 53.8 77 106 112.1 147c9 10.5 20.4 21.7 35.7 30.8c1.09999 0.700012 10.4 1.20001 13.7 1.20001c6.3 0 18.7 -1.09998 18.7 -10v-180h56l-6 -34h-50v-24c0 -41 17 -44 51 -46c4 -8 4 -22 0 -29c-30 1 -48.4 1 -78 1c-35.3 0 -48 0 -78 -1c-4 6 -5 21 0 29
-c40 2 53 5 53 46z" />
-    <glyph glyph-name="primetriple" unicode="&#x2034;" horiz-adv-x="509" 
-d="M415 658c20 0 42 -15 42 -35c0 -5 -2 -13 -6 -18l-92 -122c-3 -4 -8 -8 -12 -8c-8 0 -14 6 -14 13c0 3 1 7 2 10l52 143c4 11 15 17 28 17zM285 658c20 0 42 -15 42 -35c0 -5 -2 -13 -6 -18l-92 -122c-3 -4 -8 -8 -12 -8c-8 0 -14 6 -14 13c0 3 1 7 2 10l52 143
-c4 11 15 17 28 17zM155 658c20 0 42 -15 42 -35c0 -5 -2 -13 -6 -18l-92 -122c-3 -4 -8 -8 -12 -8c-8 0 -14 6 -14 13c0 3 1 7 2 10l52 143c4 11 15 17 28 17z" />
-    <glyph glyph-name="primereversed" unicode="&#x2035;" horiz-adv-x="244" 
-d="M75 652c5 4 11 5 18 5c5 0 10 -1 15 -3c6 -4 10 -8 12 -13l62 -146c0 -1 1 -2 1 -3c0 -3 -2 -6 -4 -8c-3 -3 -7 -4 -10 -4s-6 1 -8 3l-101 123c-3 4 -5 8 -5 13c0 13 7 24 20 33z" />
-    <glyph glyph-name="uni2036" unicode="&#x2036;" horiz-adv-x="366" 
-d="M66 652c5 4 11 5 18 5c5 0 10 -1 15 -3c6 -4 10 -8 12 -13l62 -146c0 -1 1 -2 1 -3c0 -3 -2 -6 -4 -8c-3 -3 -7 -4 -10 -4s-6 1 -8 3l-101 123c-3 4 -5 8 -5 13c0 13 7 24 20 33zM185 652c5 4 11 5 18 5c5 0 10 -1 15 -3c6 -4 10 -8 12 -13l62 -146c0 -1 1 -2 1 -3
-c0 -3 -2 -6 -4 -8c-3 -3 -7 -4 -10 -4s-6 1 -8 3l-101 123c-3 4 -5 8 -5 13c0 13 7 24 20 33z" />
-    <glyph glyph-name="uni2037" unicode="&#x2037;" horiz-adv-x="500" 
-d="M339 652c5 4 11 5 18 5c5 0 10 -1 15 -3c6 -4 10 -8 12 -13l62 -146c0 -1 1 -2 1 -3c0 -3 -2 -6 -4 -8c-3 -3 -7 -4 -10 -4s-6 1 -8 3l-101 123c-3 4 -5 8 -5 13c0 13 7 24 20 33zM200 652c5 4 11 5 18 5c5 0 10 -1 15 -3c6 -4 10 -8 12 -13l62 -146c0 -1 1 -2 1 -3
-c0 -3 -2 -6 -4 -8c-3 -3 -7 -4 -10 -4s-6 1 -8 3l-101 123c-3 4 -5 8 -5 13c0 13 7 24 20 33zM75 652c5 4 11 5 18 5c5 0 10 -1 15 -3c6 -4 10 -8 12 -13l62 -146c0 -1 1 -2 1 -3c0 -3 -2 -6 -4 -8c-3 -3 -7 -4 -10 -4s-6 1 -8 3l-101 123c-3 4 -5 8 -5 13c0 13 7 24 20 33z
-" />
-    <glyph glyph-name="trianglebullet" unicode="&#x2023;" horiz-adv-x="375" 
-d="M73 84v296l264 -148z" />
-    <glyph glyph-name="uni0343" unicode="&#x343;" 
-d="M-83 652c39 0 62 -37 62 -73c0 -24 -7 -46 -23 -66c-16.9 -21.1 -45 -38 -83 -43c-4 4 -5 13 -5 20c57 12 77 44 77 67c0 19.6 -4.8 13 -29 13c-40 0 -50 24 -50 41c0 16 16 41 51 41z" />
-    <glyph glyph-name="onedotenleader" unicode="&#x2024;" horiz-adv-x="220" 
-d="M57 43c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" />
-    <glyph glyph-name="twodotenleader" unicode="&#x2025;" horiz-adv-x="424" 
-d="M262 43c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53zM57 43c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" />
-    <glyph glyph-name="hyphendot" unicode="&#x2027;" horiz-adv-x="220" 
-d="M57 266c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" />
-    <glyph glyph-name="uni203B" unicode="&#x203b;" horiz-adv-x="574" 
-d="M218 7c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53zM417 224c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53zM15 225c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53zM216 432c0 29 24 53 53 53s53 -24 53 -53
-s-24 -53 -53 -53s-53 24 -53 53zM72.4 457l24.6 18.6l174.7 -231.8l194.6 258.3l24.6 -18.5l-200 -265.4l197.9 -262.5l-24.6 -18.6l-192.5 255.5l-172.6 -229l-24.6 18.6l177.9 236z" />
-    <glyph glyph-name="uni2016" unicode="&#x2016;" horiz-adv-x="278" 
-d="M201 -204h-39v1062h39v-1062zM99 -204h-39v1062h39v-1062z" />
-
-<!--
-Dies sind alternative Umlaute, die im Deutschen vorzuziehen sind.
--->
-    <glyph glyph-name="Adieresis.alt" unicode="&#xe02c;" horiz-adv-x="695" 
-d="M402 757c0 26 22 48 48 48s48 -22 48 -48s-22 -48 -48 -48s-48 22 -48 48zM213 757c0 26 22 48 48 48s48 -22 48 -48s-22 -48 -48 -48s-48 22 -48 48zM263 283h177l-94 272h-6l-102.2 -258.7c-3.8 -10.3 3.2 -13.3 25.2 -13.3zM155 79c-15.6 -41.1 31.4 -45.4 69 -48
-c6 -6 6 -27 0 -33c-37 1 -87 2 -128 2c-30.3 0 -63 -1 -89 -2c-6 6 -6 27 0 33c43.5 3 74 9 100 71l227 536c13 0 40 11 55 20l206 -572c17.4 -48.2 51.2 -51.5 90 -55c6 -6 6 -27 0 -33c-35 1 -73 2 -114 2c-39 0 -94 -1 -131 -2c-6 6 -6 27 0 33c47.6 3.4 85.8 6.5 74 41
-l-58 169h-211c-24 0 -30 -4 -35 -17z" />
-
-<!--
-Dies sind alternative Umlaute, die im Deutschen vorzuziehen sind.
--->
-    <glyph glyph-name="Odieresis.alt" unicode="&#xe02d;" horiz-adv-x="702" 
-d="M393 758c0 26 22 48 48 48s48 -22 48 -48s-22 -48 -48 -48s-48 22 -48 48zM204 758c0 26 22 48 48 48s48 -22 48 -48s-22 -48 -48 -48s-48 22 -48 48zM331 622c-99 0 -198 -85 -198 -295c0 -192 115 -301 237 -301c114 0 200 105 200 284c0 202 -107 312 -239 312z
-M666 329c0 -84 -22 -156.3 -61.8 -213c-54.9 -78.3 -143.4 -126 -254.2 -126c-170 0 -313 123 -313 320c0 193.9 113.3 348 307 348c179 0 322 -122 322 -329z" />
-
-<!--
-Dies sind alternative Umlaute, die im Deutschen vorzuziehen sind.
--->
-    <glyph glyph-name="Udieresis.alt" unicode="&#xe02e;" horiz-adv-x="661" 
-d="M392 758c0 26 22 48 48 48s48 -22 48 -48s-22 -48 -48 -48s-48 22 -48 48zM203 758c0 26 22 48 48 48s48 -22 48 -48s-22 -48 -48 -48s-48 22 -48 48zM172 523v-257c0 -65 2 -141 51 -188c30.1 -28.9 71 -47 119 -47c169 0 184 134 184 246v246c0 81 -17 84 -92 91
-c-6 6 -6 27 0 33c46 -1 94.5 -2 116 -2c23.2 0 64 1 102 2c6 -6 6 -27 0 -33c-60 -7 -77 -10.7 -77 -91v-228c0 -178 -49 -305 -254 -305c-102.5 0 -234 39 -234 243v290c0 83 -17 88 -77 91c-6 6 -6 27 0 33c39 -1 80 -2 119 -2c39.4 0 88 1 135 2c6 -6 6 -27 0 -33
-c-77 -3 -92 -8 -92 -91z" />
-    <glyph glyph-name="uni0289" unicode="&#x289;" horiz-adv-x="531" 
-d="M495 277v-39h-53v-108c0 -49 9 -68 73 -73c6 -6 6 -21 0 -27c-61 -7 -96 -22 -118 -40c-6.5 -2.5 -11 -3 -19 0c0 0 -8.5 33.5 -11 59c-0.700012 7 -10 5 -15 1c-49 -40 -96 -60 -135 -60c-99 0 -129 67 -129 136v112h-66v39h66v41c0 65 -14 76 -62 80c-6 6 -6 27 0 33
-c34 -1 70 -2 102 -2c15 0 30 1 35 2c5 0 8 -3 8 -6c0 0 -4 -73 -4 -103v-45h196v40c0 66 -13 78 -62 81c-6 6 -6 27 0 33c34 -1 70 -2 102 -2c15 0 30 1 35 2c5 0 8 -3 8 -6c0 0 -4 -73 -4 -103v-45h53zM363 238h-196v-98c0 -89 50 -103 80 -103c25 0 63 16 100 48
-c14 12 16 20 16 39v114z" />
-    <glyph glyph-name="uni028A" unicode="&#x28a;" horiz-adv-x="530" 
-d="M253 23c85 0 146 83 146 156c0 88 -43 123 -85 143l3 81c1 25 7 28 22 28h142l16 -92l-25 -2c-8 44 -14 49 -51 49h-72l-5 -44c79 -38 132 -96 132 -175c0 -86 -71 -177 -221 -177c-151 0 -224 91 -224 177c0 79 53 137 132 175l-5 44h-72c-37 0 -43 -5 -51 -49l-25 2
-l16 92h142c15 0 21 -3 22 -28l3 -81c-42 -20 -85 -55 -85 -143c0 -73 61 -156 145 -156z" />
-    <glyph glyph-name="uni0299" unicode="&#x299;" horiz-adv-x="479" 
-d="M186 246h66c62 0 88 38 88 78c0 59.5 -31 74 -83 74c-48 0 -71 -6 -71 -36v-116zM186 217v-131c0 -46 19 -55 71 -55c54 0 92 19 92 86c0 59.5 -26 100 -87 100h-76zM146 429c42.9 0 69 2 110 2c121 0 164 -30 164 -100c0 -60 -35 -92.5 -81 -101v-3
-c61 -11.5 96 -50 96 -106c0 -99 -65 -123 -151 -123c-67 0 -100 2 -137 2c-44 0 -79 -1 -112 -2c-6 6 -6 27 0 33c61 5 72 8 72 91v185c0 83 -11 87 -72 91c-6 6 -6 27 0 33c33 -1 68 -2 111 -2z" />
-    <glyph glyph-name="uni029C" unicode="&#x29c;" horiz-adv-x="586" 
-d="M479 307v-185c0 -83 11 -87 72 -91c6 -6 6 -27 0 -33c-39 1 -80.7 2 -111 2c-34.8 0 -72 -1 -108 -2c-6 6 -6 27 0 33c61 5 68 8 68 91v87h-214v-87c0 -83 7 -87 68 -91c6 -6 6 -27 0 -33c-36 1 -75.2 2 -107 2s-72 -1 -112 -2c-6 6 -6 27 0 33c61 5 72 8 72 91v185
-c0 83 -11 87 -72 91c-6 6 -6 27 0 33c40 -1 81.4 -2 111 -2c31.8 0 70 1 108 2c6 -6 6 -27 0 -33c-61 -5 -68 -8 -68 -91v-65h214v65c0 83 -7 87 -68 91c-6 6 -6 27 0 33c39 -1 79 -2 107 -2c33 0 77 0 112 2c6 -6 6 -27 0 -33c-61 -5 -72 -8 -72 -91z" />
-    <glyph glyph-name="uni0264" unicode="&#x264;" horiz-adv-x="436" 
-d="M209 -12c-46 0 -88 26 -88 64c0 31 8 37 46 103l19 34l-79 142c-28.6 51.3 -36.5 68.8 -65.5 68.8c-4 0 -19.5 -1.79999 -28.5 -5.29999c-6.4 8.10001 -9 17.3 -5.5 28.5c8 3 44.4 16 65.5 16c57.5 0 62.7 -6.39999 96.5 -67l62.5 -112l55 87c37.2 58.9 63.5 92 112.5 92
-c18.4 0 29.5 -6 36.5 -14c1.39999 -9.70001 -3.5 -21 -9 -27c-0.399994 -1 -10.5 4 -23 4c-30.5 0 -51.9 -22.6 -86 -78l-64 -104c55 -98 57 -124 57 -154c0 -20 -16.5 -78 -102 -78zM168 61c0 -24 19 -38 41 -38c18 0 33 16 33 34c0 13 -11 52 -28 80l-6 11
-c-24 -41 -40 -71 -40 -87z" />
-    <glyph glyph-name="glottalstopreversed" unicode="&#x295;" horiz-adv-x="429" 
-d="M185 72v168c0 69 -20 95 -68 136c-46 40 -79 83 -79 155c0 82 68 125 171 125c97 0 195 -63 195 -136c0 -32 -21 -49 -41 -49c-23 0 -39 11 -39 29c0 26 7 30 7 48c0 40 -61 77 -110 77c-54 0 -104 -30 -104 -104c0 -59 24 -81 65 -118c64 -59 78 -94 78 -180v-151
-c0 -29 10 -40 43 -43l24 -2c5 0 7 -3 7 -8v-19l-1 -2c-50 1 -70 2 -109 2c-41 0 -61 -1 -111 -2l-2 2v19c0 5 4 8 8 8l24 2c33 3 42 14 42 43z" />
-    <glyph glyph-name="uni0298" unicode="&#x298;" horiz-adv-x="702" 
-d="M355 267c-28 0 -54 26 -54 54s26 54 54 54s54 -26 54 -54s-26 -54 -54 -54zM336 622c-99 0 -198 -85 -198 -295c0 -192 115 -301 237 -301c114 0 200 105 200 284c0 202 -107 312 -239 312zM671 329c0 -84 -22 -156.3 -61.8 -213c-54.9 -78.3 -143.4 -126 -254.2 -126
-c-170 0 -313 123 -313 320c0 193.9 113.3 348 307 348c179 0 322 -122 322 -329z" />
-    <glyph glyph-name="uni028B" unicode="&#x28b;" horiz-adv-x="490" 
-d="M171 321.3v-118.3c0 -101 12 -174 87 -174c92 0 147 110 147 208c0 96 -32 111 -61 127c-20 11 -34 25 -34 48c0 17 17 30 34 30c63 0 102 -73 102 -193c0 -174 -99 -259 -197 -259c-134 0 -157 90 -157 197v130c0 57 -10.5 62.9 -65 68c-2 6 -4 22 -2 28
-c69 9 108.5 18 137 29c8 0 13 -3 13 -7c0 0 -4 -64 -4 -113.7z" />
-    <glyph glyph-name="uni0274" unicode="&#x274;" horiz-adv-x="562" 
-d="M68 27c36 0 36 13 36 46v285c0 35 -3 44 -36 44h-31c-4 0 -7 3 -7 7v22h123l255 -330v255c0 32 -4 46 -37 46h-30c-7 0 -8 4 -8 7v22s59 -2 97 -2s97 2 97 2v-22c-1 -3 -2 -7 -8 -7h-29c-32 0 -37 -9 -37 -46v-335c0 -20 -11 -33 -23 -33c-16 0 -27 11 -38 25l-243 317
-v-257c0 -37 6 -46 37 -46h29c3 0 8 -2 8 -8v-21s-58 2 -97 2c-37 0 -96 -2 -96 -2v22c0 4 2 7 8 7h30z" />
-    <glyph glyph-name="Rsmallcap" unicode="&#x280;" horiz-adv-x="473" 
-d="M323 320c0 54.9 -29.7 82 -82 82c-52 0 -65 -12 -65 -31v-152h34c70.3 0 113 26.9 113 101zM176 122c0 -83 9 -86 57 -91c6 -6 6 -27 0 -33c-43 1 -58.6 2 -96 2c-43.7 0 -70 -1 -112 -2c-6 6 -6 27 0 33c61 5 72 8 72 91v185c0 83 -11 87 -72 91c-6 6 -6 27 0 33
-c43 -1 67.7 -2 111 -2c39.4 0 76 2 101 2c135 0 171 -38 171 -111c0 -64.1 -53 -106 -120 -112v-1c33 -3 60.4 -36.2 73 -67l18 -54c17.8 -53.4 34 -59 70 -59c8.79999 -10.3 8.5 -17.7 6 -28c-13 -7 -43 -9 -58 -9c-48 0 -87 32.4 -103 89l-11 39c-11.4 30.1 -31 68 -99 68
-h-8v-64z" />
-    <glyph glyph-name="Rsmallinverted" unicode="&#x281;" horiz-adv-x="473" 
-d="M323 109c0 74.1 -42.7 101 -113 101h-34v-152c0 -19 13 -31 65 -31c52.3 0 82 27.1 82 82zM176 307v-64h8c68 0 87.6 37.9 99 68l11 39c16 56.6 55 89 103 89c15 0 45 -2 58 -9c2.5 -10.3 2.79999 -17.7 -6 -28c-36 0 -52.2 -5.60001 -70 -59l-18 -54
-c-12.6 -30.8 -40 -64 -73 -67v-1c67 -6 120 -47.9 120 -112c0 -73 -36 -111 -171 -111c-25 0 -61.6 2 -101 2c-43.3 0 -68 -1 -111 -2c-6 6 -6 27 0 33c61 4 72 8 72 91v185c0 83 -11 86 -72 91c-6 6 -6 27 0 33c42 -1 68.3 -2 112 -2c37.4 0 53 1 96 2c6 -6 6 -27 0 -33
-c-48 -5 -57 -8 -57 -91z" />
-    <glyph glyph-name="gammalatin" unicode="&#x263;" horiz-adv-x="523" 
-d="M381.7 331c22.4 50.1 15.3 63 -38.7 67c-6 6 -6 27 0 33c25 -1 59 -2 92 -2c26 0 50 1 70 2c6 -6 6 -27 0 -33c-55 -5 -66.5 -30.2 -85.6 -74l-122.1 -280.7c41 -80 47.7 -132.3 47.7 -168.3c0 -41 -39 -77 -97 -77c-45 0 -78 25 -78 63c0 19 8.39999 38.8 17 56l41 82
-l-137.6 326c-21.2 50.3 -28.4 66.7 -80.4 73c-6 6 -6 27 0 33c30 -1 60 -2 93 -2s68 1 101 2c6 -6 6 -27 0 -33c-53.3 -7 -50.5 -19.6 -31.1 -67l85.1 -208l15.3 -34.7zM217 -129c0 -24 13 -37 35 -37c18 0 34 14 34 32c0 12 -3 23 -30 92c-23 -41 -39 -71 -39 -87z" />
-    <glyph glyph-name="uni0268" unicode="&#x268;" horiz-adv-x="294" 
-d="M104 599c0 24 28 48 52 48c27 0 48 -28 48 -52c0 -21.1 -24 -48 -52 -48c-24 0 -48 26 -48 52zM195 122c0 -83 11 -87 72 -91c6 -6 6 -27 0 -33c-33 1 -71 2 -111 2s-79 -1 -112 -2c-6 6 -6 27 0 33c61 5 72 8 72 91v108h-80c-9 2 -12 7.8 -12 13.4
-c0 9.60001 9 24.3 21 26.6h71v47c0 57 -10.5 62.9 -65 68c-2 6 -4 22 -2 28c69 9 108.5 18 137 29c8 0 13 -3 13 -7c0 0 -4 -64 -4 -113.7v-51.3h67c9.29999 -1.29999 13 -7.79999 13 -12.6c0 -9.59999 -10.7 -25.4 -23 -27.4h-57v-108z" />
-    <glyph glyph-name="uni0277" unicode="&#x277;" horiz-adv-x="713" 
-d="M680 194c0 -164 -101 -206 -186 -206c-51 0 -106 23 -135 102c-26 -69 -79 -102 -144 -102c-90 0 -181 56 -181 200c0 125 131 254 316 254c247 0 330 -147 330 -248zM111 195c0 -91 22 -172 120 -172c53 0 89 36 110 108c-21 54 -25 95 -25 115c0 38 14 58 40 58
-c29 0 41 -19 41 -52c0 -24 -8 -69 -27 -121c19 -69 55 -108 111 -108c81 0 117 59 117 178c0 177 -177 208 -242 208c-150 0 -245 -72 -245 -214zM370 237c0 16 -3 29 -14 29c-8 0 -13 -11 -13 -34c0 -45 12 -82 12 -86c11 45 15 73 15 91z" />
-    <glyph glyph-name="uni0276" unicode="&#x276;" horiz-adv-x="679" 
-d="M282 27c35 0 41 10 41 33v310c0 30 -24 32 -67 32c-75 0 -142 -39 -142 -189c0 -138 65 -186 168 -186zM517 395h-88c-19 0 -31 -6 -31 -23v-141h77c27 0 34 12 39 32l5 21c1 3 3 6 6 6h20c2 0 3 -1 3 -3c-2 -23 -6 -51 -6 -75c0 -25 3 -45 6 -69l-2 -2h-21
-c-4 0 -6 3 -7 5l-4 22c-4 20 -13 31 -39 31h-77v-141c0 -19 14 -24 31 -24h109c51 0 74 32 86 84l28 -3l-20 -115l-2 -2s-59 2 -89 2h-176c-38 0 -80 -2 -98 -2c-135 0 -238 63 -238 203s96 230 237 230c4 0 59 -2 96 -2h159c30 0 101 2 101 2l2 -2c1 -43 8 -82 15 -120
-l-28 -4c-11 37 -30 90 -94 90z" />
-    <glyph glyph-name="uni0275" unicode="&#x275;" horiz-adv-x="504" 
-d="M41 205c0 63.2 19 121.4 55.3 164c36.6 43 90.9 70 156.7 70c153 0 210 -121 210 -225c0 -61.3 -20.3 -124.2 -65.1 -168c-34.1 -33.3 -82.5 -56 -146.9 -56c-142 0 -210 113 -210 215zM376.8 196h-248c8.2 -75.5 45.7 -171 136.2 -171c47 0 112 31 112 157
-c0 4.7 -0.100006 9.39999 -0.200012 14zM374.3 235c-11.7 110 -61.5 169 -136.3 169c-87.6 0 -109.9 -84.3 -111 -169h247.3z" />
-    <glyph glyph-name="uni029A" unicode="&#x29a;" horiz-adv-x="476" 
-d="M217 -9c-155 0 -187 74 -187 128c0 38 28 74 99 96c-62 19 -99 60 -99 108c0 53 40 117 182 117c111 0 233 -79 233 -216c0 -164 -119 -233 -228 -233zM217 377c-82 0 -143 -3 -143 -71c0 -36 27 -64 91 -79c25 7 57 16 99 16c34 0 51 -8 51 -27s-16 -28 -46 -28
-c-22 0 -64 8 -103 19c-63 -13 -92 -35 -92 -74c0 -56 42 -79 149 -79c149 0 183 119 183 166c0 97 -56 157 -189 157z" />
-    <glyph glyph-name="uni025E" unicode="&#x25e;" horiz-adv-x="488" 
-d="M262 439c155 0 187 -74 187 -128c0 -38 -28 -74 -99 -96c62 -19 99 -60 99 -108c0 -53 -40 -117 -182 -117c-111 0 -233 79 -233 216c0 164 119 233 228 233zM262 53c82 0 143 3 143 71c0 36 -27 64 -91 79c-25 -7 -57 -16 -99 -16c-34 0 -51 8 -51 27s16 28 46 28
-c22 0 64 -8 103 -19c63 13 92 35 92 74c0 56 -42 79 -149 79c-149 0 -183 -119 -183 -166c0 -97 56 -157 189 -157z" />
-    <glyph glyph-name="uni029F" unicode="&#x29f;" horiz-adv-x="435" 
-d="M98 356c0 28 -10.1 40.5 -43 44l-19 2c-5 0.5 -8 3 -8 8v19l2 2c37 -1 68 -2 104 -2c38 0 70 1 107 2l2 -2v-19c0 -5 -4 -7.5 -9 -8l-19 -2c-30.5 -3.20001 -42 -16 -42 -44v-314h116c48 0 63 21 75 97l27 -2l-9 -139c-30 1 -63 2 -93 2h-157c-30 0 -77 -1 -107 -2l-2 2
-v19c0 6 4 8 8 8l30 2c36 2.4 37 13 37 44v283z" />
-    <glyph glyph-name="uni027E" unicode="&#x27e;" horiz-adv-x="348" 
-d="M163 73c0 -31 3 -46 34 -46h27c6 0 7 -4 7 -7v-22s-63 2 -104 2c-42 0 -108 -2 -108 -2v21c0 3 1 8 7 8h28c31 0 34 23 34 46v142c0 88 11 157 60 197c25 18 46 30 74 30c52 0 108 -21 108 -63c0 -30 -21 -39 -36 -39c-24 0 -36 13 -42 33c-2 12 -12 33 -30 33
-c-34 0 -59 -18 -59 -176v-157z" />
-    <glyph glyph-name="uni027F" unicode="&#x27f;" horiz-adv-x="348" 
-d="M182 73v157c0 158 -26 176 -59 176c-18 0 -28 -21 -30 -33c-6 -20 -18 -33 -43 -33c-14 0 -35 9 -35 39c0 42 55 63 108 63c27 0 49 -12 73 -30c50 -40 61 -109 61 -197v-142c0 -23 3 -46 34 -46h27c7 0 8 -5 8 -8v-21s-66 2 -108 2c-41 0 -105 -2 -105 -2v22
-c0 3 2 7 8 7h27c31 0 34 15 34 46z" />
-    <glyph glyph-name="rhookturned" unicode="&#x27b;" horiz-adv-x="401" 
-d="M324 402c-38 0 -38 -21 -38 -47v-314c1 -157 6 -176 49 -176c16 0 26 12 28 23c5 16 15 32 37 32c24 0 41 -22 41 -34c0 -45 -58 -60 -116 -60c-56 0 -114 54 -114 228l-1 20c-7 -16 -29 -41 -43 -52c-23 -22 -46 -34 -80 -34c-64 0 -77 31 -77 52c0 28 15 43 44 43
-s46 -34 50 -43c3 -10 11 -16 22 -16c24 0 64 46 83 89v242c0 32 -2 47 -39 47h-16c-5 0 -8 2 -8 7v22s63 -2 104 -2c39 0 99 2 99 2v-23c0 -2 -1 -6 -8 -6h-17z" />
-    <glyph glyph-name="uni027D" unicode="&#x27d;" horiz-adv-x="366" 
-d="M63 381c-19 0 -37 -3 -47 -6v30c75 10 102 24 123 37h21v-86c2 3 46 86 121 86c44 0 76 -17 76 -51c0 -28 -19 -47 -47 -47c-25 0 -40 34 -45 47c-4 12 -13 15 -22 15c-26 0 -68 -52 -83 -87v-319c0 -144 14 -192 63 -192c18 0 30 10 33 21c6 19 16 36 40 36
-c23 0 32 -13 32 -29c0 -45 -74 -68 -105 -68c-112 0 -135 113 -138 248v328c0 20 -4 37 -22 37z" />
-    <glyph glyph-name="uni025F" unicode="&#x25f;" horiz-adv-x="311" 
-d="M129 307c0 83 -16 87 -77 91c-6 6 -6 27 0 33c39 -1 87 -2 116 -2c32.6 0 76 1 112 2c6 -6 6 -27 0 -33c-61 -5 -72 -8 -72 -91v-69.7h72.3c10.7 -0.300003 14.2 -5.60001 14.2 -14.6c0 -11.7 -10.5 -29.7 -23.5 -29.3h-63v-128.4c0 -126 -34 -192 -88 -235
-c-42 -35 -83 -36 -106 -36c-21 0 -60 17 -60 50c0 21 23 34 36 34c28 0 39 -13 48 -25c7 -10 13 -17 26 -17c31 0 65 28 65 208v149.4h-94.5c-9.5 -0.399994 -14.7 5.8 -14.7 14.6c0 15.6 10.2 29 22 29.3h87.2v69.7z" />
-    <glyph glyph-name="uni0262" unicode="&#x262;" horiz-adv-x="521" 
-d="M368 91c0 59.1 -5 77 -66 81c-6 6 -6 27 0 33c29 -1 69.7 -2 100 -2c30.7 0 59 1 77 2c6 -6 6 -27 0 -33c-31 -5 -37 -24.9 -37 -81v-44c-51.3 -38 -104 -57 -181 -57c-154 0 -227 115 -227 217c0 137 98 232 238 232c46 0 111 -8 151 -8
-c8.10001 -44 9.89999 -88 11 -132c-9.29999 -3.79999 -18.7 -5.79999 -28 -2c-18 90 -57 109 -144 109c-72 0 -145 -63 -145 -177c0 -107 48 -206 169 -206c34 0 61 10.7 82 30v38z" />
-    <glyph glyph-name="uni0261" unicode="&#x261;" horiz-adv-x="498" 
-d="M420 12c0 -102 -22 -175 -75 -213c-39.9 -28.6 -82 -37 -135 -37c-56 0 -157 39 -157 91c0 21 13 36 34 36c27 0 35.3 -15.9 43 -35c8 -20 43 -59 90 -59c74 0 121 64 121 204v24c-15 -13 -45 -33 -102 -33c-144 0 -203 124 -203 217c0 132 86 232 208 232
-c49 0 92 -11 125 -40l15 24c7 12 14 19 21 19c11 0 15 -11 15 -25v-405zM341 336c-27 45 -59 69 -101 69c-80 0 -118 -74 -118 -178c0 -151 83 -193 141 -193c19 0 52 2 78 22v280z" />
-    <glyph glyph-name="hhook" unicode="&#x266;" horiz-adv-x="520" 
-d="M88 467c0 158 91 231 175 231c38 0 64 -7 89 -24c20 -15 29 -32 29 -48c0 -21 -15 -36 -34 -36c-20 0 -33 11 -41 28c-13 33 -32 46 -62 46c-33 0 -81 -24 -81 -180v-128c67 67 126 83 165 83c72 0 108 -52 108 -155v-212c0 -29 10.4 -39.6 43 -43l19 -2
-c4 -0.4 8 -3 8 -8v-19l-2 -2s-68 2 -108 2c-35 0 -103 -2 -103 -2l-2 2v19c0 5 3 7.5 8 8l19 2c33.9 3.6 43 14 43 43v223c0 81 -22 97 -78 97c-29 0 -72 -26 -120 -73v-247c0 -29 10.3 -39.6 43 -43l19 -2c4 -0.4 8 -3 8 -8v-19l-2 -2s-68 2 -107 2c-36 0 -103 -2 -103 -2
-l-2 2v19c0 5 2 7.5 7 8l19 2c34.1 3.6 43 14 43 43v395z" />
-    <glyph glyph-name="hhook.superior" unicode="&#x2b1;" horiz-adv-x="307" 
-d="M46 404v221c0 96 56 113 84 113c58 0 77 -22 77 -42c0 -10 -10 -20 -21 -20c-15 0 -19 11 -23 21c-6 15 -19 19 -30 19c-14 0 -29 -11 -34 -39c-3 -14 -4 -25 -4 -45v-44c35 35 75 43 95 43c39 0 66 -29 66 -83v-144c0 -15 6 -23 23 -23h10c2 0 4 -2 4 -5v-17l-1 -1
-s-45 1 -66 1c-18 0 -54 -1 -54 -1l-1 1v17c0 3 1 5 4 5h10c18 0 23 8 23 23v136c0 42 -17 62 -41 62c-15 0 -47 -14 -72 -39v-159c0 -15 6 -23 23 -23h9c3 0 5 -2 5 -5v-17l-1 -1s-46 1 -66 1c-19 0 -54 -1 -54 -1l-1 1v17c0 3 1 5 4 5h10c18 0 22 8 22 23z" />
-    <glyph glyph-name="uni0282" unicode="&#x282;" horiz-adv-x="390" 
-d="M126 -176c-62 0 -78 51 -78 119v130h4.6c-1.2 21.1 -2.8 42.8 -4.6 65c6 6 25 7 31 1c6 -25 17 -69 39 -92c10.3 -10.7 32 -24 71 -24c37 0 85 21 85 70c0 43 -19 64 -102 98c-77 32 -110 63 -110 136c0 64 67 112 141 112c52 0 100 -14 131 -19c-1 -33 -3 -70 -6 -106
-c-6 -6 -26 -7 -32 -1c-13 85 -71 93 -93 93c-34 0 -70 -23 -70 -64c0 -55 39.8 -70.5 100 -92.8c68 -25.2 117 -64.9 117 -133.2c0 -99 -103 -126 -159 -126c-37 0 -64 4 -91 11c-4.6 1.3 -8.7 1.7 -13 1.9v-34.9c0 -60 9 -108 47 -108c25 0 44 24 44 44c0 18 17 31 31 31
-c16 0 26 -13 26 -26c0 -43 -55 -85 -109 -85z" />
-    <glyph glyph-name="uni0290" unicode="&#x290;" horiz-adv-x="424" 
-d="M359.3 -181.5c-59.8 16.4 -61.8 69.8 -43.8 135.4l12 43.5l-267.5 2.6c-15 0 -23 5 -23 12c0 5 0.400002 8.4 9 20c78 105 178 249 246 363l-128 -3c-30 -0.700012 -61 -18 -81 -91c-11.6 -2.60001 -24.2 -0.700012 -33 3c9 49 14 84 15 129c0 2.39999 3.6 6 6 6
-c14.5 -5.39999 26.9 -10 59 -10h183c29 0 57 2 62 2c7 0 12 -3 12 -7s-2.70001 -11.8 -18 -37c-62 -102 -166 -259 -240 -353h133c52.1 1.2 72.5 23.2 98 76l14 29c12 0 23.5 -2.3 30 -6c-7 -50 -20 -102 -32 -136h-4.20001l-8 -29.4c-15.9 -57.9 -19.9 -106.4 16.7 -116.5
-c24.1 -6.60001 48.8 11.4 54.1 30.7c4.79999 17.4 24.6 25.4 38.1 21.7c15.4 -4.2 21.6 -19.4 18.2 -31.9c-11.4 -41.5 -75.5 -67.4 -127.6 -53.1z" />
-    <glyph glyph-name="uni0284" unicode="&#x284;" horiz-adv-x="304" 
-d="M-32 -114c24 0 30 -15 35 -32c6 -15 11 -30 34 -30c22 0 55 27 55 177v237h-81c-9 0 -14 6 -14 15c0 16 10 29 22 29h73v155c0 103 3 182 63 230c27 21 53 31 81 31c75 0 108 -40 108 -67c0 -20 -14 -34 -32 -34c-22 0 -29 13 -34 29c-10 25 -26 38 -43 38
-c-58 0 -68 -95 -68 -190v-192h80c11 0 14 -3 14 -12c0 -12 -11 -32 -23 -32h-71v-185c0 -107 -1 -188 -61 -237c-35 -29 -58 -30 -73 -30c-42 0 -96 26 -96 67c0 16 12 33 31 33z" />
-    <glyph glyph-name="uni0260" unicode="&#x260;" horiz-adv-x="540" 
-d="M343 477c0 158 86 221 153 221c41 0 63 -12 83 -30c15 -13 26 -29 26 -46s-9 -38 -35 -38c-27 0 -41 14 -46 41c-4 20 -11 39 -35 39c-53 0 -71 -70 -71 -190v-42.5c1.39999 -4.10001 2 -9 2 -14.5v-405c0 -102 -22 -175 -75 -213c-39.9 -28.6 -82 -37 -135 -37
-c-56 0 -157 39 -157 91c0 21 13 36 34 36c27 0 35.3 -15.9 43 -35c8 -20 43 -59 90 -59c74 0 121 64 121 204v24c-15 -13 -45 -33 -102 -33c-144 0 -203 124 -203 217c0 132 86 232 208 232c37 0 70.6 -6.20001 99 -21.8v59.8zM341 336c-27 45 -59 69 -101 69
-c-80 0 -118 -74 -118 -178c0 -151 83 -193 141 -193c19 0 52 2 78 22v280z" />
-    <glyph glyph-name="uni0267" unicode="&#x267;" horiz-adv-x="520" 
-d="M436 109c0 -161 -16 -261 -63 -299c-37 -31 -71 -31 -91 -31c-18 0 -52 14 -52 44c0 18 19 30 30 30c26 0 36 -12 44 -22c6 -9 12 -16 23 -16c44 0 34 152 34 260v220c0 81 -22 97 -78 97c-29 0 -72 -26 -120 -73v-247c0 -29 10.3 -39.6 43 -43l19 -2c4 -0.4 8 -3 8 -8
-v-19l-2 -2s-68 2 -107 2c-36 0 -103 -2 -103 -2l-2 2v19c0 5 2 7.5 7 8l19 2c34.1 3.6 43 14 43 43v395c0 158 91 231 175 231c38 0 64 -7 89 -24c20 -15 29 -32 29 -48c0 -21 -15 -36 -34 -36c-20 0 -33 11 -41 28c-13 33 -32 46 -62 46c-33 0 -81 -24 -81 -180v-128
-c67 67 126 83 165 83c72 0 108 -52 108 -155v-175z" />
-    <glyph glyph-name="uni026D" unicode="&#x26d;" horiz-adv-x="245" 
-d="M169 72v-44c0 -154 21 -184 50 -184c30 0 35 20 41 41c5 21 19 39 46 39c21 0 34 -14 34 -36c0 -31 -31 -76 -116 -76c-60 0 -130 47 -130 224v36v57v434c0 65 -10 78 -30 78l-32 2c-3.2 0.200012 -6 2 -6 5l-2 24c40.5 3 109.9 16 135 26c9 0 13 -3 13 -10
-c0 0 -3 -40 -3 -105v-454v-57z" />
-    <glyph glyph-name="uni029B" unicode="&#x29b;" horiz-adv-x="509" 
-d="M518 577c20 0 36 -15 36 -37c0 -16 -12 -33 -33 -33c-7 0 -16 0 -23 3c-9 3 -19 4 -27 4c-46.9 0 -60.9 -55.9 -62.8 -82.7c5.19998 -0.199982 10.2 -0.299988 14.8 -0.299988c8.10001 -44 9.89999 -88 11 -132c-9.29999 -3.79999 -18.7 -5.79999 -28 -2
-c-18 90 -57 109 -144 109c-72 0 -145 -63 -145 -177c0 -107 48 -206 169 -206c34 0 61 10.7 82 30v38c0 59.1 -5 77 -66 81c-6 6 -6 27 0 33c29 -1 69.7 -2 100 -2c30.7 0 59 1 77 2c6 -6 6 -27 0 -33c-31 -5 -37 -24.9 -37 -81v-44c-51.3 -38 -104 -57 -181 -57
-c-154 0 -227 115 -227 217c0 137 98 232 238 232c32.2 0 73.7 -3.89999 109.4 -6.29999c6.5 102.4 83.9 144.3 136.6 144.3z" />
-    <glyph glyph-name="uni0291" unicode="&#x291;" horiz-adv-x="429" 
-d="M373 93c0 14 -10 36 -52 36c-63 0 -88 -62 -100 -90h65c53 0 87 22 87 54zM205 0c-16 -42 -29 -86 -34 -122l-31 7c7 37 19 77 34 115h-106c-19 0 -35 2 -35 13c0 6 3 10 9 19l236 359h-142c-20 0 -34 -5 -45 -13c-10 -9 -27 -50 -32 -84l-27 5l30 149l21 -4
-c1 -4 3 -14 32 -14h239c11 0 17 -3 17 -11c0 -7 -8 -18 -17 -32l-230 -348h66c17 38 36 72 53 88c21 20 52 35 89 35c24 0 71 -14 71 -68c0 -56 -51 -94 -138 -94h-60z" />
-    <glyph glyph-name="uni026B" unicode="&#x26b;" horiz-adv-x="287" 
-d="M209 320c22 0 33 10 47 52c11 1 21 -2 27 -6c-12 -60 -41 -99 -87 -99c-3.39999 0 -6.7 0.399994 -10 1.20001v-146.2c0 -83 11 -88 72 -91c6 -6 6 -27 0 -33c-33 1 -71 2 -111 2s-77 -1 -112 -2c-6 6 -6 27 0 33c61 3 72 8 72 91v189.7
-c-9.9 3.89999 -19.8 6.29999 -29 6.29999c-26 0 -36 -15 -46 -48c-11 -2 -21 -1 -27 5c14 59 37 98 80 98c7.8 0 15.1 -1.29999 22 -3.60001v189.6c0 75 -6 78 -64 82c-6 6 -8 22 -6 30c40 3 115 17 140 27c9 0 13 -3 13 -10c0 0 -4 -40 -4 -105v-259.4
-c7.39999 -2.30002 15 -3.60001 23 -3.60001z" />
-    <glyph glyph-name="uni026C" unicode="&#x26c;" horiz-adv-x="358" 
-d="M346 315v-34h-82v-159c0 -83 11 -88 72 -91c6 -6 6 -27 0 -33c-33 1 -71 2 -111 2s-77 -1 -112 -2c-6 6 -6 27 0 33c61 3 72 8 72 91v159h-39c-90 0 -128 21 -128 83c0 42 45 62 67 62c49.6 0 79.3 -25.7 100 -57.1v190.1c0 75 -6 78 -64 82c-6 6 -8 22 -6 30
-c40 3 115 17 140 27c9 0 13 -3 13 -10c0 0 -4 -40 -4 -105v-268h82zM185 315c-14 31 -38 81 -93 81c-24 0 -44 -9 -44 -33c0 -29 30 -48 78 -48h59z" />
-    <glyph glyph-name="uni026E" unicode="&#x26e;" horiz-adv-x="516" 
-d="M95 122v437c0 75 -6 78 -64 82c-6 6 -8 22 -6 30c40 3 115 17 140 27c9 0 13 -3 13 -10c0 0 -4 -40 -4 -105v-146.8c4.3 -4 11.8 -7.20001 22 -7.20001h203c29 0 65 6 67 6c7 0 13 -2 13 -6s-6 -15 -22 -42l-151 -250c96 0 177 -53 177 -159c0 -119 -85 -213 -208 -213
-c-85 0 -143 61 -143 93c0 18 10 36 32 36c23 0 36 -10 44 -34c8 -22 35 -60 75 -60c50 0 119 54 119 162c0 101 -31 141 -109 141c-11 0 -41 -7 -59 -11l-17 15l168 288h-145c-22.2 0 -46.7 -11.6 -66 -47.3v-225.7c0 -83 11 -88 72 -91c6 -6 6 -27 0 -33
-c-33 1 -71 2 -111 2s-77 -1 -112 -2c-6 6 -6 27 0 33c61 3 72 8 72 91z" />
-    <glyph glyph-name="uni025D" unicode="&#x25d;" horiz-adv-x="446" 
-d="M207.6 438.2c36 52.8 71 112.2 86.3 169.9l17.8 -0.799988c0.699982 -30.2 1.29999 -56.8 22.2 -86.1c12.8 -17.9 26.1 -28 41.6 -17c17.9 12.8 24 23.2 34.9 45.8l20.6 -9.79999c-18.9 -57.8 -29.8 -80.4 -51 -95.5c-13 -9.30002 -39.1 -10.7 -65.3 25.9
-c-8.10001 11.4 -14.9 26.2 -16.1 36.4c-15.3 -16.1 -36.7 -50.4 -50.5 -77.2c65.7 -20.7 85.9 -71.5 85.9 -102.8c0 -43.2 -24.7 -78.7 -71 -98v-2c90 -30 90 -83 90 -106c0 -57 -27 -131 -165 -131c-63 0 -117 29 -150 60c1.9 9.3 8.5 16 16 20c39 -27 77 -43 124 -43
-c59 0 97 32 97 85c0 56 -34 97 -90 97c-8 0 -43 -5 -51 -5c-22 0 -30 9 -30 21s11 18 29 18c6 0 50 -5 51 -5c43 0 79 18 79 79c0 64 -43 93 -75 93c-39 0 -64 -25 -76 -47c-9 -17 -20 -33 -42 -33c-12 0 -31 8 -31 37c0 36 66 72 143 72c9.3 0 18 -0.5 26.3 -1.29999z" />
-    <glyph glyph-name="uni0294" unicode="&#x294;" horiz-adv-x="429" 
-d="M247 72c0 -29 8.7 -40.2 42 -43l24 -2c4 -0.299999 8 -3 8 -8v-19l-2 -2c-50 1 -70 2 -111 2c-39 0 -59 -1 -109 -2l-1 2v19c0 5 2 7.6 7 8l24 2c33.2 2.8 43 14 43 43v151c0 86 14 121 78 180c40.7 37.5 65 59 65 118c0 74 -50 104 -104 104c-49 0 -110 -37 -110 -77
-c0 -18 7 -21.6 7 -48c0 -18 -16 -29 -39 -29c-20 0 -41 17 -41 49c0 73 98 136 195 136c103 0 171 -43 171 -125c0 -72 -33 -115 -79 -155c-47.6 -41.4 -68 -67 -68 -136v-168z" />
-    <glyph glyph-name="uni0296" unicode="&#x296;" horiz-adv-x="429" 
-d="M244 573v-168c0 -69 20 -95 68 -136c46 -40 79 -83 79 -155c0 -82 -68 -125 -171 -125c-97 0 -195 63 -195 136c0 32 21 49 41 49c23 0 39 -11 39 -29c0 -26 -7 -30 -7 -48c0 -40 61 -77 110 -77c54 0 104 30 104 104c0 59 -24 81 -65 118c-64 59 -78 94 -78 180v151
-c0 29 -10 40 -43 43l-24 2c-5 0 -7 3 -7 8v19l1 2c50 -1 70 -2 109 -2c41 0 61 1 111 2l2 -2v-19c0 -5 -4 -8 -8 -8l-24 -2c-33 -3 -42 -14 -42 -43z" />
-    <glyph glyph-name="uni0288" unicode="&#x288;" horiz-adv-x="302" 
-d="M164 75c0 -110 -10 -260 34 -260c11 0 17 7 23 16c8 10 18 22 44 22c11 0 30 -12 30 -30c0 -30 -34 -44 -52 -44c-23 0 -62 0 -99 31c-47 38 -55 137 -55 298v282h-65c-3 0 -4 1 -4 4v31c0 3 1 4 3 4c67 0 83 40 83 116v19l58 20v-155h110c5 0 8 -2 8 -6v-20
-c0 -9 -14 -13 -24 -13h-94v-315z" />
-    <glyph glyph-name="uni029D" unicode="&#x29d;" horiz-adv-x="308" 
-d="M58 -148c27 0 67 28 67 121v23c-73 -39 -114 -67 -114 -107c0 -26 22 -37 47 -37zM123 317c0 57 -11 63 -65 68c-2 6 -4 22 -2 28c69 9 109 18 137 29c8 0 13 -3 13 -7c0 0 -4 -64 -4 -114v-211v-47c21 9 44 21 61 28l7 -27c-34 -17 -26 -12 -69 -35
-c-8 -162 -88 -206 -145 -206c-40 0 -74 18 -74 60c0 40 18 84 142 144c0 0 -1 22 -1 49v241zM96 599c0 24 28 48 52 48c27 0 48 -28 48 -52c0 -21.1 -24 -48 -52 -48c-24 0 -48 26 -48 52z" />
-    <glyph glyph-name="uni02A1" unicode="&#x2a1;" horiz-adv-x="429" 
-d="M247 72c0 -29 8.7 -40.2 42 -43l24 -2c4 -0.299999 8 -3 8 -8v-19l-2 -2c-50 1 -70 2 -111 2c-39 0 -59 -1 -109 -2l-1 2v19c0 5 2 7.6 7 8l24 2c33.2 2.8 43 14 43 43v151c0 5.2 0.100006 10.2 0.199997 15h-117.2c-4 7 -5 13 -5 19c0 8 2 14 6 20h118.9
-c6.70001 50.1 26.4 81.1 75.1 126c40.7 37.5 65 59 65 118c0 74 -50 104 -104 104c-49 0 -110 -37 -110 -77c0 -18 7 -21.6 7 -48c0 -18 -16 -29 -39 -29c-20 0 -41 17 -41 49c0 73 98 136 195 136c103 0 171 -43 171 -125c0 -72 -33 -115 -79 -155
-c-38 -33 -58.6 -56 -65.4 -99h105.4c4 -7 5 -14 5 -20c0 -7 -2 -12 -5 -19h-108v-166z" />
-    <glyph glyph-name="uni02A2" unicode="&#x2a2;" horiz-adv-x="429" 
-d="M259.8 238c0.100006 -4.8 0.200012 -9.8 0.200012 -15v-151c0 -29 10 -40 43 -43l24 -2c5 0 7 -3 7 -8v-19l-1 -2c-50 1 -70 2 -109 2c-41 0 -61 -1 -111 -2l-2 2v19c0 5 4 8 8 8l24 2c33 3 42 14 42 43v166h-115c-4 7 -5 13 -5 19c0 8 2 14 6 20h111.5
-c-6.7 43.1 -27.2 66.3 -65.5 99c-46 40 -79 83 -79 155c0 82 68 125 171 125c97 0 195 -63 195 -136c0 -32 -21 -49 -41 -49c-23 0 -39 11 -39 29c0 26 7 30 7 48c0 40 -61 77 -110 77c-54 0 -104 -30 -104 -104c0 -59 24 -81 65 -118c48.7 -44.9 68.4 -75.9 75.1 -126
-h112.9c4 -7 5 -14 5 -20c0 -7 -2 -12 -5 -19h-110.2z" />
-    <glyph glyph-name="uni025A" unicode="&#x25a;" horiz-adv-x="591" 
-d="M286.9 331.4c-31.6 52.7 -81.6 62.6 -105.9 62.6c-48 0 -99 -35 -139 -74c-11 2 -15.7 7.29999 -18 16c35 51 116 106 182 106c66.1 0 118.2 -28.1 151.6 -72.7c51.6 29 103.6 63.5 140.2 104.2l15.5 -8.89999c-13.1 -27.2 -24.8 -51.2 -19.5 -86.8
-c3.20001 -21.8 10.6 -36.8 29.4 -34c21.8 3.20001 31.9 9.80002 51.9 24.9l13.8 -18.2c-43.2 -42.8 -63.2 -57.9 -88.9 -61.7c-15.8 -2.39999 -39.7 8.30002 -46.3 52.8c-2.10001 13.8 -1.40002 30.1 2.19998 39.7c-20.6 -7.19998 -54.2 -27.3 -78.6 -44.6
-c14.2 -29.7 21.7 -64 21.7 -100.7c0 -109 -44 -246 -213 -246c-112 0 -138 65 -138 114c0 98.9 130.5 172.5 238.9 227.4zM303.5 293.6c-95 -54.5 -178.5 -111 -178.5 -183.6c0 -55 29 -87 76 -87s114 33 114 185c0 34.4 -4.29999 62.6 -11.5 85.6z" />
-    <glyph glyph-name="uni0269" unicode="&#x269;" horiz-adv-x="281" 
-d="M84 322c0 28 -1 72 -18 107l2 2c6 -1 31 -2 43 -2c19 0 35 2 50 8c0 0 2 -62 2 -94v-244c0 -41 8 -55 23 -55c28 0 48 19 67 43c10.6 -2.2 18.4 -7.1 21 -17c-21 -37 -64 -81 -107 -81c-56 0 -83 32.5 -83 92v241z" />
-    <glyph glyph-name="uni0286" unicode="&#x286;" horiz-adv-x="292" 
-d="M344 631c0 -20 -14 -34 -32 -34c-22 0 -29 13 -34 29c-10 25 -26 38 -43 38c-20 0 -38 -17 -55 -52c-8 -17 -13 -63 -13 -138v-468c21 10 34 16 51 23l8 -23c-35 -16 -17 -6 -59 -29c-8 -162 -85 -202 -142 -202c-32 0 -70 15 -70 57c0 26 14 77 137 137v15v453
-c0 104 3 182 63 230c27 21 53 31 81 31c75 0 108 -40 108 -67zM-20 -164c0 -29 38 -36 47 -36c27 0 68 29 68 129v14c-44 -24 -115 -64 -115 -107z" />
-    <glyph glyph-name="uni0297" unicode="&#x297;" horiz-adv-x="439" 
-d="M248 406c-34.7 0 -61.3 -22.7 -86 -54c-26.7 -33.3 -40 -118.3 -40 -255c0 -113.3 13.7 -186.7 41 -220c26 -32 59 -48 99 -48c38 0 74.7 15.7 110 47h4l19 -21c-40 -50.7 -91.7 -76 -155 -76c-62.7 0 -112.3 20.7 -149 62c-36.7 40.7 -55 124.3 -55 251
-c0 148.7 31.2 240.5 74 291c47.5 56 88.7 56 143 56c96 0 153 -40 153 -95c0 -31 -28 -44 -49 -44s-35 9 -38 36c-4 35 -12 70 -71 70z" />
-    <glyph glyph-name="uni02AC" unicode="&#x2ac;" horiz-adv-x="445" 
-d="M347 271c-4 4 -4 19 0 23c23 -1 37 -2 60 -2c16 0 27 1 41 2c4 -4 4 -19 0 -23c-31.5 -3.5 -39.1 -21.4 -53 -52l-83.2 -182.8c-5 -11 -8.69998 -16.1 -14.9 -16.1c-8.10001 0 -11.5 4.7 -15.5 14.7l-52.6 131l-59 -129.6c-5 -11 -8.7 -16.1 -14.9 -16.1
-c-8.09999 0 -11.2 4.8 -15.5 14.7l-79.4 185.2c-15.1 35.1 -17 47 -50 51c-4 4 -4 19 0 23c23 -1 33 -2 55 -2c25.8 0 43 1 66 2c4 -4 4 -19 0 -23c-32.5 -3 -31.7 -15.4 -19 -47l42.1 -105.3c11.4 -28.5 13.9 -28.8 26 -2.1l35.6 81.6l-8.7 21.8
-c-14.2 35.5 -16.8 46.5 -45 51c-4 4 -4 19 0 23c23 -1 28 -2 50 -2c25.8 0 43 1 66 2c4 -4 4 -19 0 -23c-32.5 -3 -30.5 -14.3 -19 -47l37.1 -105.3c10.2 -28.9 13.9 -28.8 26 -2.1l46.9 107.4c14.2 32.4 11 44 -22 47zM347 609c-4 4 -4 19 0 23c23 -1 37 -2 60 -2
-c16 0 27 1 41 2c4 -4 4 -19 0 -23c-31.5 -3.5 -39.1 -21.4 -53 -52l-83.2 -182.8c-5 -11 -8.69998 -16.1 -14.9 -16.1c-8.10001 0 -11.5 4.69998 -15.5 14.7l-52.6 131l-59 -129.6c-5 -11 -8.7 -16.1 -14.9 -16.1c-8.09999 0 -11.2 4.79999 -15.5 14.7l-79.4 185.2
-c-15.1 35.1 -17 47 -50 51c-4 4 -4 19 0 23c23 -1 33 -2 55 -2c25.8 0 43 1 66 2c4 -4 4 -19 0 -23c-32.5 -3 -31.7 -15.4 -19 -47l42.1 -105.3c11.4 -28.5 13.9 -28.8 26 -2.10001l35.6 81.6l-8.7 21.8c-14.2 35.5 -16.8 46.5 -45 51c-4 4 -4 19 0 23c23 -1 28 -2 50 -2
-c25.8 0 43 1 66 2c4 -4 4 -19 0 -23c-32.5 -3 -30.5 -14.3 -19 -47l37.1 -105.3c10.2 -28.9 13.9 -28.8 26 -2.10001l46.9 107.4c14.2 32.4 11 44 -22 47z" />
-    <glyph glyph-name="uni02A3" unicode="&#x2a3;" horiz-adv-x="802" 
-d="M462 439c14.5 -5.39999 26.9 -10 59 -10h183c29 0 57 2 62 2c7 0 12 -3 12 -7s-2.70001 -11.8 -18 -37c-62 -102 -166 -259 -240 -353h133c52.1 1.2 72.5 23.2 98 76l14 29c12 0 23.5 -2.3 30 -6c-7 -50 -20 -102 -32 -136l-312 3c-15 0 -23 5 -23 12
-c0 1.6 0.100006 3 0.399994 4.5c-22.7 -7.3 -39.1 -16.4 -51.4 -26.5c-6 -2.5 -11 -3 -19 0c0 0 -8.5 34.5 -11 59c-0.700012 7 -10.2 5.2 -15 1.3c-49 -40.3 -86 -60.3 -125 -60.3c-108 0 -170 90 -170 213c0 74 26 133 69 176c40 38 84 60 150 60c33 0 74 -17 78 -17
-c7 0 9 2 9 9v128c0 84 -12 79 -64 82c-6 6 -8 22 -6 30c40 3 115 17 140 27c9 0 13 -3 13 -10c0 0 -4 -40 -4 -105v-453c0 -38 5.39999 -57.9 37.6 -67.3c74 101.2 161.8 229.1 223.4 332.3l-128 -3c-30 -0.700012 -61 -18 -81 -91c-11.6 -2.60001 -24.2 -0.700012 -33 3
-c9 49 14 84 15 129c0 2.39999 3.60001 6 6 6zM343 124v190c0 31 -3 38 -17 54c-20 23 -45 36 -81 36c-20 0 -62 -3 -93 -50c-15 -21 -29 -61 -29 -133c0 -125 56 -184 110 -184c25 0 57 16 94 48c14.1 12.2 16 20 16 39z" />
-    <glyph glyph-name="uni02A4" unicode="&#x2a4;" horiz-adv-x="755" 
-d="M345 124v190c0 31 -3 38 -17 54c-20 23 -45 36 -81 36c-20 0 -62 -3 -93 -50c-15 -21 -29 -61 -29 -133c0 -125 56 -184 110 -184c25 0 57 16 94 48c14.1 12.2 16 20 16 39zM334 50.3c-49 -40.3 -86 -60.3 -125 -60.3c-108 0 -170 90 -170 213c0 74 26 133 69 176
-c40 38 84 60 150 60c33 0 74 -17 78 -17c7 0 9 2 9 9v128c0 84 -12 79 -64 82c-6 6 -8 22 -6 30c40 3 115 17 140 27c9 0 13 -3 13 -10c0 0 -4 -40 -4 -105v-152.3c3.39999 -1.10001 7.39999 -1.70001 12 -1.70001h203c29 0 65 6 67 6c7 0 13 -2 13 -6s-6 -15 -22 -42
-l-151 -250c96 0 177 -53 177 -159c0 -119 -85 -213 -208 -213c-85 0 -143 61 -143 93c0 18 10 36 32 36c23 0 36 -10 44 -34c8 -22 35 -60 75 -60c50 0 119 54 119 162c0 101 -31 141 -109 141c-11 0 -41 -7 -59 -11l-17 15l168 288h-145c-18.6 0 -38.6 -8 -56 -31.4v-233.6
-c0 -49 9 -68 73 -73c6 -6 6 -21 0 -27c-61 -7 -96 -22 -118 -40c-6 -2.5 -11 -3 -19 0c0 0 -8.5 34.5 -11 59c-0.700012 7 -10.2 5.2 -15 1.3z" />
-    <glyph glyph-name="uni02A5" unicode="&#x2a5;" horiz-adv-x="817" 
-d="M768 93c0 14 -10 36 -52 36c-63 0 -88 -62 -100 -90h65c53 0 87 22 87 54zM600 0c-16 -42 -29 -86 -34 -122l-31 7c7 37 19 77 34 115h-106c-19 0 -35 2 -35 13c0 1 0 1.9 0.200012 2.8c-21.6 -7.2 -37.3 -16.1 -49.2 -25.8c-6 -2.5 -11 -3 -19 0c0 0 -8.5 34.5 -11 59
-c-0.700012 7 -10.2 5.2 -15 1.3c-49 -40.3 -86 -60.3 -125 -60.3c-108 0 -170 90 -170 213c0 74 26 133 69 176c40 38 84 60 150 60c33 0 74 -17 78 -17c7 0 9 2 9 9v128c0 84 -12 79 -64 82c-6 6 -8 22 -6 30c40 3 115 17 140 27c9 0 13 -3 13 -10c0 0 -4 -40 -4 -105v-453
-c0 -36.5 5 -56.4 33.9 -66.2l215.1 327.2h-142c-20 0 -34 -5 -45 -13c-10 -9 -27 -50 -32 -84l-27 5l30 149l21 -4c1 -4 3 -14 32 -14h239c11 0 17 -3 17 -11c0 -7 -8 -18 -17 -32l-230 -348h66c17 38 36 72 53 88c21 20 52 35 89 35c24 0 71 -14 71 -68
-c0 -56 -51 -94 -138 -94h-60zM345 124v190c0 31 -3 38 -17 54c-20 23 -45 36 -81 36c-20 0 -62 -3 -93 -50c-15 -21 -29 -61 -29 -133c0 -125 56 -184 110 -184c25 0 57 16 94 48c14.1 12.2 16 20 16 39z" />
-    <glyph glyph-name="uni02AB" unicode="&#x2ab;" horiz-adv-x="591" 
-d="M251 439c14.5 -5.39999 26.9 -10 59 -10h183c29 0 57 2 62 2c7 0 12 -3 12 -7s-2.70001 -11.8 -18 -37c-62 -102 -166 -259 -240 -353h133c52.1 1.2 72.5 23.2 98 76l14 29c12 0 23.5 -2.3 30 -6c-7 -50 -20 -102 -32 -136l-304.5 2.9c-0.399994 -0.7 -1 -1.4 -1.5 -1.9
-c-33 1 -71 2 -111 2s-77 -1 -112 -2c-6 6 -6 27 0 33c61 3 72 8 72 91v437c0 75 -6 78 -64 82c-6 6 -8 22 -6 30c40 3 115 17 140 27c9 0 13 -3 13 -10c0 0 -4 -40 -4 -105v-461c0 -73.1 8.5 -85.7 52.2 -89.7c78 105 177.9 248.8 245.8 362.7l-128 -3
-c-30 -0.700012 -61 -18 -81 -91c-11.6 -2.60001 -24.2 -0.700012 -33 3c9 49 14 84 15 129c0 2.39999 3.60001 6 6 6z" />
-    <glyph glyph-name="uni02C0" unicode="&#x2c0;" horiz-adv-x="303" 
-d="M58 630c0 30 32 63 96 63c45 0 81 -29 81 -76c0 -26 -17 -41 -36 -55c-19 -15 -36 -31 -36 -58v-28h-39v35c0 30 20 48 40 64c16 13 31 27 31 46c0 26 -13 47 -40 47c-45 0 -54 -26 -56 -45c-1 -9 -10 -14 -18 -14c-7 0 -23 5 -23 21z" />
-    <glyph glyph-name="uni02A0" unicode="&#x2a0;" horiz-adv-x="498" 
-d="M343 336c-27 45 -61 69 -103 69c-80 0 -119 -74 -119 -178c0 -151 84 -193 142 -193c19 0 54 2 80 22v280zM343 -161v184c-15 -13 -47 -33 -104 -33c-144 0 -203 124 -203 217c0 132 86 232 208 232c37 0 70.6 -6.20001 99 -21.8v59.8c0 158 86 221 153 221
-c41 0 63 -12 83 -30c15 -13 26 -29 26 -46s-9 -38 -35 -38c-27 0 -41 14 -46 41c-4 20 -11 39 -35 39c-53 0 -71 -70 -71 -190v-57v-38v-540c0 -28 10 -38.5 43 -42l19 -2c4 -0.399994 8 -3 8 -8v-19l-2 -2c-37 1 -69 2 -107 2c-36 0 -77 -1 -114 -2l-2 2v19c0 5 3 7.7 8 8
-l29 2c32.8 2.3 43 14 43 42z" />
-    <glyph glyph-name="uni02A8" unicode="&#x2a8;" horiz-adv-x="638" 
-d="M582 129c0 25 -15 35 -32 35c-54.8 0 -120.9 -107.7 -124 -117c10.1 -4.9 26 -8 40 -8c41 0 116 42 116 90zM615 142c0 -98 -97 -152 -169 -152c-13 0 -42 0 -54 3c-20 -32 -43 -68 -61 -99c-11.6 1 -26 6 -32 13c20 33 39 62 59 95c-24.6 12.9 -44.9 29.7 -61.2 49.4
-c-38.4 -40.9 -86.4 -61.4 -130.8 -61.4c-46 0 -77 28 -77 99v301h-59c-4 0 -5 1 -5 6v13c0 8 4 20 18 20l46 0.100006c0 110.9 -3 104.3 -3 115.9c0 6.90002 10 10.3 22 13.7c12.5 3.5 22.7 7.79999 34 14.1c9.3 5.10004 17.8 9 22.3 9c4.7 0 7.7 -2.39996 7.7 -8.79999
-c0 0 -4 -40 -4 -105v-39h120c5 0 8 -2 8 -6v-20c0 -9 -14 -13 -24 -13h-104v-253c0 -62 6 -92 33 -92c25.6 0 55.1 7.8 80.8 27.1c-25.1 39.6 -36.8 87.9 -36.8 138.9c0 124 84 228 218 228c69 0 144 -32 144 -99c0 -24 -23 -41 -46 -41c-35 0 -41.3 22.4 -44 49
-c-3 30 -16 58 -70 58c-71 0 -116 -84 -116 -159c0 -67 12 -151 66 -185c15.6 31.2 81.5 127 161 127c13.9 0 28.5 -1.2 39 -8c11.4 -7.39999 18 -21.3 18 -39z" />
-    <glyph glyph-name="uni02AA" unicode="&#x2aa;" horiz-adv-x="526" 
-d="M95 122v437c0 75 -6 78 -64 82c-6 6 -8 22 -6 30c40 3 115 17 140 27c9 0 13 -3 13 -10c0 0 -4 -40 -4 -105v-461c0 -57.9 5.3 -77.8 29.3 -85.6c-1.10001 32.1 -3.40001 66.3 -6.3 101.6c6 6 25 7 31 1c6 -25 17 -69 39 -92c10.3 -10.7 32 -24 71 -24c37 0 85 21 85 70
-c0 43 -19 64 -102 98c-77 32 -110 63 -110 136c0 64 67 112 141 112c52 0 100 -14 131 -19c-1 -33 -3 -70 -6 -106c-6 -6 -26 -7 -32 -1c-13 85 -71 93 -93 93c-34 0 -70 -23 -70 -64c0 -55 39.8 -70.5 100 -92.8c68 -25.2 117 -64.9 117 -133.2c0 -99 -103 -126 -159 -126
-c-37 0 -64 4 -91 11c-0.300003 0.1 -0.600006 0.1 -0.899994 0.2c-0.600006 -1.3 -1.3 -2.4 -2.10001 -3.2c-33 1 -71 2 -111 2s-77 -1 -112 -2c-6 6 -6 27 0 33c61 3 72 8 72 91z" />
-    <glyph glyph-name="uni02A9" unicode="&#x2a9;" horiz-adv-x="821" 
-d="M352 390h-181v-318c0 -29 7.3 -40.8 43 -43l33 -2c4 -0.200001 8 -3 8 -8v-19l-2 -2c-36 1 -83 2 -119 2c-37 0 -70 -1 -106 -2l-2 2v19c0 5 3 7.5 8 8l19 2c32.4 3.4 43 14 43 43v318h-69c-4 0 -5 1 -5 6v13c0 8 5 20 23 20h51v15c0 198 104 254 188 254
-c38 0 64 -10 89 -27c37 -25 70 -64 70 -101c0 -20 -20 -38 -40 -38c-31 0 -48 24 -59 78c-9 43 -40 55 -72 55c-33 0 -101 -25 -101 -179v-57h189c35 0 65 1 95 13c3 0 4 -1.10001 4 -3c0 0 -1.79999 -37.5 -2.60001 -72.6c55 52.2 120.9 72.6 171.6 72.6
-c88 0 105 -69 105 -159v-171c0 -162 -16 -261 -63 -299c-37 -31 -71 -31 -91 -31c-18 0 -52 14 -52 44c0 18 19 30 30 30c26 0 36 -12 44 -22c6 -9 12 -16 23 -16c44 0 35 152 34 260v227c0 67 -28 89 -66 89c-37.9 0 -89.1 -16.1 -136 -65.7v-253.3
-c0 -29 8.60001 -39.4 43 -43l19 -2c4 -0.4 8 -3 8 -8v-19l-2 -2c-36 1 -68 2 -105 2c-38 0 -70 -1 -106 -2l-2 2v19c0 5 3 7.5 8 8l19 2c31.4 3.3 43 14 43 43v249c0 57 -3 69 -29 69z" />
-    <glyph glyph-name="uni02AD" unicode="&#x2ad;" horiz-adv-x="397" 
-d="M349 362h-29v146h-243v-146h-28v200h300v-200zM349 23h-29v147h-243v-147h-28v201h300v-201z" />
-    <glyph glyph-name="uni02A6" unicode="&#x2a6;" horiz-adv-x="599" 
-d="M89 87v304h-69v39c27 0 60 6 74 28c8 15 12 43 12 87v19l58 20v-154h111v-39h-111v-257c0 -33 1 -55 6 -69c18 -39 122 -47 235 -47c38 0 90 24 90 74c0 61 -63 91 -129 117c-52 20 -97 41 -97 113c0 69 66 120 147 120c50 0 102 -16 121 -27l12 -121l-20 -1
-c-30 108 -91 119 -113 119c-39 0 -85 -19 -85 -78c0 -28 44 -67 140 -103c77 -28 91 -75 91 -117c0 -47 -20 -79 -61 -101c-46 -25 -188 -25 -226 -25c-147 0 -186 3 -186 99z" />
-    <glyph glyph-name="uni02A7" unicode="&#x2a7;" horiz-adv-x="462" 
-d="M151 -123c24 0 30 -15 35 -32c6 -15 11 -30 34 -30c22 0 55 27 55 177v39.1c-33.9 -27.4 -72.7 -41.1 -109 -41.1c-46 0 -77 28 -77 99v301h-59c-4 0 -5 1 -5 6v13c0 8 4 20 18 20l46 0.100006c0 110.9 -3 104.3 -3 115.9c0 6.90002 10 10.3 22 13.7
-c12.5 3.5 22.7 7.79999 34 14.1c9.3 5.10004 17.8 9 22.3 9c4.7 0 7.7 -2.39996 7.7 -8.79999c0 0 -4 -40 -4 -105v-39h107c0 102.5 3.20001 181.2 63 229c27 21 53 31 81 31c75 0 108 -40 108 -67c0 -20 -14 -34 -32 -34c-22 0 -29 13 -34 29c-10 25 -26 38 -43 38
-c-58 0 -68 -95 -68 -190v-421c0 -107 -1 -188 -61 -237c-35 -29 -58 -30 -73 -30c-42 0 -96 26 -96 67c0 16 12 33 31 33zM275 67.3v322.8c-1 -0.100006 -2 -0.100006 -3 -0.100006h-104v-253c0 -62 6 -92 33 -92c23.4 0 50 6.5 74 22.3z" />
-
-<!--
-Alternative Akzente fuer Grossbuchstaben
--->
-    <glyph glyph-name="uni0358" unicode="&#x358;" horiz-adv-x="79" 
-d="M-66 640c0 28 24 52 52 52s52 -24 52 -52s-24 -52 -52 -52s-52 24 -52 52z" />
-
-<!--
-Alternative Akzente fuer Grossbuchstaben
--->
-    <glyph glyph-name="uni035A" unicode="&#x35a;" 
-d="M-150 -131c0 -28 19 -56 50 -56s50 28 50 56c0 31 -20 56 -50 56c-31 0 -50 -26 -50 -56zM-324 -131c0 46 41 83 87 83c27.1 0 52.4 -12.5 68.7 -32.3c16.3 19.7 41.4 32.3 68.3 32.3c46 0 87 -36 87 -83c0 -45 -39 -83 -87 -83c-26.9 0 -52.1 12.7 -68.4 32.4
-c-15.9 -19.5 -40.7 -32.4 -68.6 -32.4c-46 0 -87 37 -87 83zM-237 -75c-31 0 -50 -26 -50 -56c0 -28 19 -56 50 -56s50 28 50 56c0 31 -20 56 -50 56z" />
-
-<!--
-Alternative Akzente fuer Grossbuchstaben
--->
-    <glyph glyph-name="uni0359" unicode="&#x359;" 
-d="M-135 -126c-6 1 -13 4 -20 4c-6 0 -12 -3 -24 -3c-13 0 -23 5 -23 22c0 8 5 18 18 18c19 0 28 -18 52 -29c-2 22 -16 37 -16 51c0 11 11 21 21 21s22 -6 22 -19c0 -15 -13 -37 -14 -53c24 11 31 30 49 30s21 -13 21 -19c0 -16 -17 -22 -37 -22c-11 0 -20 1 -30 -1
-c19 -20 46 -18 46 -47c0 -10 -10 -16 -18 -16c-26 0 -25 33 -38 55c-13 -24 -6 -55 -39 -55c-9 0 -16 7 -16 16c0 30 28 26 46 47z" />
-    <glyph glyph-name="uni0330" unicode="&#x330;" 
-d="M-140 -75c22 0 33 10 47 52c11 1 21 -2 27 -6c-12 -60 -41 -99 -87 -99c-22 0 -43 18 -64 32c-18 11 -37 19 -54 19c-26 0 -36 -15 -46 -48c-11 -2 -21 -1 -27 5c14 59 37 98 80 98c30 0 52 -20 72 -34c16 -12 33 -19 52 -19z" />
-    <glyph glyph-name="uni0331" unicode="&#x331;" 
-d="M-143 -131h-205c-8 0 -12 8 -12 15c0 12 10 29 22 29h205c9 0 13 -7 13 -14c0 -12 -10 -30 -23 -30z" />
-    <glyph glyph-name="uni0342" unicode="&#x342;" 
-d="M-182 551c22 0 33 10 47 52c11 1 21 -2 27 -6c-12 -60 -41 -99 -87 -99c-22 0 -43 18 -64 32c-18 11 -37 19 -54 19c-26 0 -36 -15 -46 -48c-11 -2 -21 -1 -27 5c14 59 37 98 80 98c30 0 52 -20 72 -34c16 -12 33 -19 52 -19z" />
-    <glyph glyph-name="uni0338" unicode="&#x338;" 
-d="M-602 -13c-19 0 -33 17 -36 32l519 639c19 0 33.7 -15.1 36 -30z" />
-    <glyph glyph-name="uni02C2" unicode="&#x2c2;" horiz-adv-x="518" 
-d="M164 498l247 -102v-45l-304 127v42l304 126v-45z" />
-    <glyph glyph-name="uni02C3" unicode="&#x2c3;" horiz-adv-x="518" 
-d="M354 499l-247 102v45l304 -127v-42l-304 -126v45z" />
-    <glyph glyph-name="uni02C5" unicode="&#x2c5;" horiz-adv-x="518" 
-d="M259 403l102 247h45l-127 -304h-42l-126 304h45z" />
-    <glyph glyph-name="uni02C1" unicode="&#x2c1;" horiz-adv-x="303" 
-d="M235 630c0 -17 -16 -21 -23 -21c-8 0 -17 4 -18 13c-2 20 -11 46 -56 46c-27 0 -40 -21 -40 -47c0 -19 15 -33 31 -46c20 -16 40 -34 40 -64v-35h-39v28c0 27 -17 43 -36 58c-19 14 -36 29 -36 55c0 47 36 76 81 76c64 0 96 -34 96 -63z" />
-    <glyph glyph-name="uni03F6" unicode="&#x3f6;" horiz-adv-x="421" 
-d="M307 242c-8 79 -56 156 -145 156c-48 0 -84 -27 -108 -50l-17 17c15 23 59 77 149 77c133 0 203 -108 203 -223c0 -182 -128 -231 -204 -231c-63 0 -107 26 -133 56l15 21c31 -22 58 -33 100 -33c44 0 144 5 144 171h-174c-5 0 -6 1 -6 5v14c0 8 6 20 23 20h153z" />
-    <glyph glyph-name="uni03DA" unicode="&#x3da;" horiz-adv-x="509" 
-d="M16 367c0 102 40 273 201 273c40 0 97 -5 152 -5c28 0 50 11 61 25l13 -10c-13 -55 -26 -100 -110 -100c-38 0 -76 8 -112 8c-51 0 -78 -12 -107 -39c-33 -33 -52 -94 -52 -148c0 -53 13 -118 51 -160c80 -89 234 -17 313 -92c15 -14 26 -24 34 -49c7 -24 11 -47 11 -68
-c0 -126 -115 -190 -239 -190c-91 0 -115 23 -115 59c0 26 25 33 44 33c49 0 96 -38 145 -38c60 0 122 43 122 106c0 146 -220 29 -337 151c-63 66 -75 183 -75 244z" />
-    <glyph glyph-name="uni03DB" unicode="&#x3db;" horiz-adv-x="410" 
-d="M186 -6c-64 0 -151 39 -151 192c0 74 20 165 82 209c36 25 85 38 116 38c43 0 45 -4 88 -4c18 0 34 1 45 13l14 -9c-16 -47 -37 -69 -93 -69c-22 0 -29 6 -58 6c-96 0 -150 -55 -150 -149c0 -150 136 -151 181 -151c37 0 72 -18 91 -37c34 -34 35 -71 35 -116
-c0 -74 -60 -146 -149 -146c-59 0 -99 22 -99 47c0 22 19 33 35 33c26 0 47 -12 58 -26c10 -12 32 -13 48 -13c23 0 73 31 73 103c0 58 -57 79 -166 79z" />
-    <glyph glyph-name="uni03DC" unicode="&#x3dc;" horiz-adv-x="498" 
-d="M275 323h-93v-201c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-50 1 -78.7 2 -129 2c-50.7 0 -81 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c50 -1 129 -2 129 -2h255.3c24.7 0 29.5 0.599976 47 4
-c2.40002 0 3.60001 -0.700012 4 -3c1.40002 -7.59998 16.5 -134 21.7 -175c-8 -3 -19 -5 -31 -5c-22 69 -47 139 -153 139h-65c-24 0 -36 -10 -36 -34v-210h93c109.4 0 122 16.8 122 -18c0 -42.1 1 -73 2 -108c-6 -6 -27 -6 -33 0c-3 45 -6 88 -91 88z" />
-    <glyph glyph-name="uni03DD" unicode="&#x3dd;" horiz-adv-x="444" 
-d="M409 445c-17 -53 -43 -88 -98 -88h-91c-124 0 -134 -140 -142 -253c13 39 42 74 88 74h103c20 0 43 9 56 25l11 -5c-12 -54 -47 -93 -97 -93c-27 0 -54 6 -81 6c-50 0 -71 -43 -71 -88c0 -49 45 -131 45 -193c0 -26 -4 -38 -13 -48c-7 -6 -14 -10 -26 -10
-c-10 0 -19 3 -25 9c-14 14 -14 53 -14 72v360c0 101 38 222 161 222c44 0 87 -6 130 -6c24 0 43 3 53 22z" />
-    <glyph glyph-name="uni03DE" unicode="&#x3de;" horiz-adv-x="537" 
-d="M293 -146c-43 0 -79 32 -79 74c0 21 10 43 27 72l164 287h-356l199 344c9 17 13 36 13 51c0 35 -39 44 -69 44c-14 0 -30 -2 -48 -8l-7 18c19 12 59 31 100 31s80 -30 80 -79c0 -22 -7 -47 -24 -76l-160 -277h356l-203 -354c-11 -20 -15 -35 -15 -47c0 -33 46 -39 67 -39
-c14 0 30 2 49 8l7 -19c-23 -12 -61 -30 -101 -30z" />
-    <glyph glyph-name="uni03DF" unicode="&#x3df;" horiz-adv-x="537" 
-d="M461 287l-210 -364l-56 2l210 362h-356l28 48l194 336l55 -1l-193 -335h356z" />
-    <glyph glyph-name="uni03E0" unicode="&#x3e0;" horiz-adv-x="802" 
-d="M546 -119c57 68 94 159 94 309c0 75 -6 142 -25 203c-31 -9 -82 -26 -91 -34c-25 -22 -64 -56 -73 -105c-8 -38 -13 -107 -13 -161h-71c0 74 8 139 28 192c15 39 46 74 77 96s83 51 124 61c-19 41 -45 79 -81 116c-64 64 -130 89 -214 89h-14v-308h-59v299
-c-64 -17 -129 -53 -168 -101l-50 34c86 87 183 127 299 127c133 0 211 -37 299 -128c95 -96 137 -202 137 -348c0 -131 -54 -280 -139 -378c0 0 -60 36 -60 37z" />
-    <glyph glyph-name="uni03E1" unicode="&#x3e1;" horiz-adv-x="495" 
-d="M265 436c-38 32 -113 83 -230 91l6 15c8 1 18 1 26 1c226 0 384 -138 384 -344c0 -60 -13 -121 -38 -183h-17c10 38 15 75 15 112c0 66 -18 125 -37 166l-124 -98l-32 37l132 104c-14 21 -31 43 -50 64l-133 -105l-32 37z" />
-    <glyph glyph-name="suchthat" unicode="&#x220b;" horiz-adv-x="506" 
-d="M44 572h150c159 0 283 -132 283 -286c0 -155 -126 -286 -283 -286h-150v57h155c116 0 195 93 208 201h-354v56h354c-15 114 -104 201 -208 201h-155v57z" />
-    <glyph glyph-name="uni220C" unicode="&#x220c;" horiz-adv-x="501" 
-d="M40 572h150c25.3 0 49.7 -3.40002 72.8 -9.59998l32.2 89.6l37 -12l-32.5 -90.2c102.9 -43.9 173.5 -147.6 173.5 -263.8c0 -155 -126 -286 -283 -286h-88.6l-27.4 -76l-37 11l23.4 65h-20.4v57h40.9l72.3 201h-104.2v56h124.4l70 194.6
-c-15.6 4.19998 -31.8 6.39999 -48.4 6.39999h-155v57zM279.7 494.8l-65.2 -180.8h188.5c-10.7 81.2 -58.9 148.7 -123.3 180.8zM194.4 258l-72.5 -201h73.1c116 0 195 93 208 201h-208.6z" />
-    <glyph glyph-name="uni220D" unicode="&#x220d;" horiz-adv-x="375" 
-d="M127 431c131 0 205 -58 205 -186c0 -111 -57 -186 -205 -186h-98v55h98c120 1 142 51 153 104h-251v54h251c-11 48 -27 105 -153 105h-98v54h98z" />
-    <glyph glyph-name="asciicircum" unicode="^" horiz-adv-x="518" 
-d="M259 593l-102 -247h-45l127 304h42l126 -304h-45z" />
-    <glyph glyph-name="uni02CA" unicode="&#x2ca;" horiz-adv-x="274" 
-d="M131 708c3 1 9 2 14 2c6.39999 0 32 -1 55 -23l3 -11l-115 -109c-15 -15 -23 -19 -30 -19s-14 6 -14 13c0 11.2 3.3 15.2 11.4 28z" />
-    <glyph glyph-name="uni02CB" unicode="&#x2cb;" horiz-adv-x="274" 
-d="M161 708l70 -126c5 -10 6 -17 6 -24c0 -5 -7 -11 -15 -11c-6 0 -13 5 -29 20l-114 109l2 11c8 6 31 23 65 23c5 0 11 -1 15 -2z" />
-    <glyph glyph-name="uni2249" unicode="&#x2249;" horiz-adv-x="527" 
-d="M54 83c13 65 67 128 128 128c14.3 0 30.3 -5.39999 46.3 -13.8l23.5 69.7c-23.8 17.7 -47.2 31.1 -71.8 31.1c-35 0 -82 -29 -105 -73c-6 0 -11.3 1 -17 4c13 65 67 128 128 128c23 0 50.5 -13.8 75 -32c2.79999 -2.10001 5.70001 -4.20001 8.39999 -6.10001l83.6 248.1
-l38 -10l-86.8 -258.4c9.89999 -4.20001 19.4 -6.60001 28.8 -6.60001c28 0 77 17 99 67c8 0 13.7 -1.89999 17 -6c-31 -107 -96 -120 -120 -120c-13 0 -27.9 4.8 -42.8 12.2l-23.6 -70.3c24.6 -17.7 45.9 -28.9 66.4 -28.9c28 0 77 17 99 67c8 0 13.7 -1.89999 17 -6
-c-31 -107 -96 -120 -120 -120c-23 0 -52 15 -76 33c-1.3 1 -2.60001 2 -3.89999 2.9l-59.1 -175.9l-38 12l62.4 184.9c-11.3 5.10001 -22.7 8.10001 -34.4 8.10001c-35 0 -82 -29 -105 -73c-6 0 -11.3 1 -17 4z" />
-    <glyph glyph-name="approxequal" unicode="&#x2248;" horiz-adv-x="527" 
-d="M54 83c13 65 67 128 128 128c23 0 50.5 -13.8 75 -32c27 -20 50 -33 72 -33c28 0 77 17 99 67c8 0 13.7 -1.89999 17 -6c-31 -107 -96 -120 -120 -120c-23 0 -52 15 -76 33c-24.2 18.1 -48 32 -73 32c-35 0 -82 -29 -105 -73c-6 0 -11.3 1 -17 4zM75 225
-c-6 0 -11.3 1 -17 4c13 65 67 128 128 128c23 0 50.5 -13.8 75 -32c27 -20 50 -33 72 -33c28 0 77 17 99 67c8 0 13.7 -1.89999 17 -6c-31 -107 -96 -120 -120 -120c-23 0 -52 15 -76 33c-24.2 18.1 -48 32 -73 32c-35 0 -82 -29 -105 -73z" />
-    <glyph glyph-name="uni2259" unicode="&#x2259;" horiz-adv-x="527" 
-d="M273 560c29 -47 73 -100 109 -140c-5 -7 -13.6 -15.1 -23 -17c-38 24 -73 52 -103 83c-32 -32 -65 -61 -104 -83c-9 2 -16 8 -22 17c36 40 82 94 111 140c10.7 2.29999 21.3 3 32 0zM464 309h-389c-9 0 -15 8 -15 16c0 15 13 34 25 34h392c10 0 14 -9 14 -17
-c0 -10 -14 -33 -27 -33zM464 143h-389c-9 0 -15 8 -15 16c0 15 13 34 25 34h392c10 0 14 -9 14 -17c0 -10 -14 -33 -27 -33z" />
-    <glyph glyph-name="uni266C" unicode="&#x266c;" horiz-adv-x="826" 
-d="M307 539.1l366 -191.7v73.6l-366 191v-72.9zM670 305l-363 190l-2 -374c-0.299988 -65 -69 -131 -161 -131c-64.4 0 -100 23.1 -100 62c0 77.5 87.5 127 137 127c34 0 68.5 -4.5 89 -14l-3 524l40 9l403 -205l-2 -573c-0.200012 -65 -69 -131 -161 -131
-c-64.4 0 -100 23.1 -100 62c0 77.5 87.5 127 137 127c34 0 68.5 -4.5 89 -14z" />
-    <glyph glyph-name="uni2180" unicode="&#x2180;" horiz-adv-x="1064" 
-d="M638 602c335 0 371 -205 371 -315c0 -187 -123 -289 -309 -289c-32 0 -138 2 -170 2c-26 0 -137 -2 -169 -2c-186 0 -306 92 -306 279c0 130 82 325 369 325c32 0 75 -2 107 -2s75 2 107 2zM672 29c137 0 250 46 250 236c0 249 -159 307 -271 307c-73 0 -82 -19 -82 -60
-v-439c0 -35 4 -44 103 -44zM493 73v439c0 43 -9 60 -81 60c-123 0 -270 -48 -270 -286c0 -190 113 -257 250 -257c101 0 101 11 101 44z" />
-    <glyph glyph-name="uni2182" unicode="&#x2182;" horiz-adv-x="1064" 
-d="M638 602c335 0 371 -205 371 -315c0 -187 -123 -289 -309 -289c-32 0 -138 2 -170 2c-26 0 -137 -2 -169 -2c-186 0 -306 92 -306 279c0 130 82 325 369 325c32 0 75 -2 107 -2s75 2 107 2zM672 29c137 0 250 46 250 236c0 249 -159 307 -271 307c-73 0 -82 -19 -82 -60
-v-10c19.1 -2.5 38.4 -9.39999 48 -15c35 -24 98 -77 98 -195c0 -113 -84 -171 -135 -190l-11 12.8v-41.8c0 -35 4 -44 103 -44zM569 116.6c35.9 23.4 86 79.1 86 149.4c0 57 -24 95 -58 126c-7 6 -17.3 16.3 -28 28.1v-303.5zM493 114.7l-10 -12.7c-52 19 -135 77 -135 190
-c0 118 63 171 98 195c9.39999 5.5 28.6 12.1 47 14.8v10.2c0 43 -9 60 -81 60c-123 0 -270 -48 -270 -286c0 -190 113 -257 250 -257c101 0 101 11 101 44v41.7zM493 419c-10.3 -11.4 -20.2 -21.2 -27 -27c-35 -31 -58 -69 -58 -126c0 -70.3 50 -125.9 85 -149.3v302.3z" />
-    <glyph glyph-name="uni2181" unicode="&#x2181;" horiz-adv-x="669" 
-d="M16 20c0 4 3 9 6 9l29 2c33 2 48 11 48 42v455c0 34 -10 39 -48 42l-27 2c-4 1 -8 3 -8 7v21l2 2c46 -1 72 -2 118 -2c60 0 95 2 155 2c180 0 323 -139 323 -313c0 -231 -175 -291 -307 -291c-97 0 -104 2 -171 2c-46 0 -77 0 -118 -2l-2 2v20zM175 71
-c0 -31 11 -39 103 -39c132 0 249 45 249 234c0 145 -69 302 -272 302c-46 0 -80 -4 -80 -37v-34.8c17.4 -3 35 -9.10001 43 -14.2c70 -49 99 -76 99 -194c0 -113 -84 -167 -135 -186l-7 8.2v-39.2zM175 119.4c34.7 24.6 82 75.9 82 143.6c0 57 -24 93 -58 124
-c-6.3 5.10001 -14.9 13.4 -24 23.1v-290.7z" />
-    <glyph glyph-name="uni2183" unicode="&#x2183;" horiz-adv-x="624" 
-d="M271 -11c-97 0 -176 49 -248 143c4 9 12 16 25 16c75 -82 143 -115 235 -115c151 0 209 112 209 272c0 183 -92 267 -216 267c-132 0 -181 -84 -208 -175l-32 5c10 54 20 105 23 163c60 4 108 46 227 46c172 0 298 -114 298 -294c0 -161 -96 -328 -313 -328z" />
-    <glyph glyph-name="uni0220" unicode="&#x220;" horiz-adv-x="603" 
-d="M528 430v-588c0 -29 12.4 -40.2 43 -44l24 -3c4 -0.5 8 -3 8 -8v-19l-2 -2s-81 2 -120 2c-36 0 -106 -2 -106 -2l-1 2v19c0 5 2 7.39999 7 8l24 3c32.4 4.10001 43 15 43 44v547c0 160 -22 212 -86 212c-46.1 0 -98.4 -26.6 -186 -108.8v-420.2c0 -29 8.7 -40.2 42 -43
-l24 -2c4 -0.299999 8 -3 8 -8v-19l-2 -2s-76 2 -115 2c-35 0 -111 -2 -111 -2l-1 2v19c0 5 2 7.6 7 8l24 2c33.2 2.8 43 14 43 43v451c0 65 -10 78 -30 78l-32 2c-3.2 0.200012 -6 2 -6 5l-2 24c40.5 3 115.9 16 141 26c9 0 13 -3 13 -10c0 0 -3 -40 -3 -105v-6
-c93.7 87.5 160.8 121 212 121c138 0 140 -133 140 -228z" />
-    <glyph glyph-name="uni0221" unicode="&#x221;" horiz-adv-x="636" 
-d="M238 404c-101 0 -126 -97 -126 -175c0 -152 88 -197 137 -197c36 0 67 18 91 45v268c-22 40 -55 59 -102 59zM493 20c36 0 100 33 100 83c0 21 -13 34 -36 34c-37 0 -69 -58 -98 -114c11 -2 22 -3 34 -3zM415 583v-462c0 -39 0 -91 19 -91c15 27 67 133 120 133
-c45 0 63 -22 63 -54c0 -88 -75 -134 -158 -134c-4 0 -15 1 -22 2l-59 -102l-25 9c19 34 36 66 56 98c-31 9 -58 20 -69 61c-32 -33 -70 -53 -117 -53c-124 0 -189 117 -189 221c0 173 124 228 206 228c20 0 64 -3 100 -27v151c0 65 -10 78 -30 78l-32 2
-c-3.20001 0.200012 -6 2 -6 5l-2 24c40.5 3 109.9 16 135 26c9 0 13 -3 13 -10c0 0 -3 -40 -3 -105z" />
-    <glyph glyph-name="uni0234" unicode="&#x234;" horiz-adv-x="336" 
-d="M301 98c0 32 -13 39 -28 39c-17 0 -32.5 -25 -75 -108c9 -7 17 -10 31 -10c32 0 72 39 72 79zM95 122v437c0 75 -6 78 -64 82c-6 6 -8 22 -6 30c40 3 115 17 140 27c9 0 13 -3 13 -10c0 0 -4 -40 -4 -105v-425c0 -91 1.5 -103 7.5 -112c23.5 53 54 118 98.5 118
-c24 0 46 -20 46 -62c0 -72 -63 -127 -111 -127c-16 0 -29 2 -41 7c-15.5 -33 -28 -61.5 -39 -90l-26.5 14.5l46 84.5c-23 14 -59.5 43 -59.5 131z" />
-    <glyph glyph-name="uni0235" unicode="&#x235;" horiz-adv-x="654" 
-d="M369 274c0 30 -2 57 -12 77c-12 23 -33 36 -53 36c-39 0 -74 -22 -112 -59c-8 -9 -17 -21 -17 -42v-164c0 -82 10 -86 61 -91c6 -6 6 -27 0 -33c-30 1 -60 2 -100 2s-80 -1 -110 -2c-6 6 -6 27 0 33c60 5 70 9 70 91v195c0 58 -11 63 -65 68c-2 6 -4 22 -2 28
-c69 9 95 18 123 29c8 0 9.89999 -3.39999 12 -8c4.7 -10.3 7 -49 8 -76c0.300003 -9.39999 5.89999 -7 12 0c59.3 68 105 81 154 81c35 0 66 -12 83 -34c23 -31 27 -79 27 -134v-100c0 -67 0 -99 16 -116c32 56 70 122 120 122c45 0 60 -37 60 -63c0 -73 -83 -126 -141 -126
-c-20 0 -36 2 -51 7l-47 -88l-19 9l48 85c-29 15 -65 45 -65 109v164zM476 43c11 -7 24 -11 43 -11c39 0 94 39 94 83c0 21 -17 35 -40 35c-28 0 -50 -26 -97 -107z" />
-    <glyph glyph-name="uni0236" unicode="&#x236;" horiz-adv-x="374" 
-d="M263 131c-13 -13 -34 -45 -59 -88c11 -7 24 -11 43 -11c40 0 94 40 94 83c0 21 -17 35 -40 35c-13 0 -26 -7 -38 -19zM87 120v270h-59c-4 0 -5 1 -5 6v13c0 8 4 20 18 20l46 0.100006c0 82.9 0.0999985 92.1 -2 114.9c-0.599998 7 8 9 14 12.7l58 26.3c9 0 13 -3 13 -10
-c0 0 -4 -40 -4 -105v-39h120c5 0 8 -2 8 -6v-20c0 -9 -14 -13 -24 -13h-104v-219c0 -67 7 -99 23 -116c23 42 43 74 63 93c16 16 37 29 58 29c44 0 59 -38 59 -63c0 -73 -83 -126 -141 -126c-20 0 -36 2 -51 7l-47 -88l-19 9l48 85c-35 14 -72 56 -72 119z" />
-    <glyph glyph-name="dotlessj" unicode="&#x237;" horiz-adv-x="272" 
-d="M113 317c0 57 -11 63 -65 68c-2 6 -4 22 -2 28c69 9 109 18 137 29c8 0 13 -3 13 -7c0 0 -4 -64 -4 -114v-211c0 -189 -28 -261 -75 -299c-37 -31 -89 -34 -110 -34c-19 0 -55 14 -55 43c0 18 21 38 32 38c22 0 34 -16 44 -26c7 -7 20 -11 31 -11c50 0 54 123 54 255v241
-z" />
-    <glyph glyph-name="uni0238" unicode="&#x238;" horiz-adv-x="749" 
-d="M340 345c-22 40 -55 59 -102 59c-101 0 -126 -97 -126 -175c0 -152 88 -197 137 -197c36 0 67 14 91 41v272zM415 56c20 -25 45 -38 76 -38c95 0 145 92 145 206c0 102 -54 171 -115 171c-10 0 -59 -6 -106 -44v-295zM340 563c0 65 -10 78 -30 78l-32 2
-c-3.20001 0.200012 -6 2 -6 5l-2 24c40.5 3 109.9 16 135 26c9 0 13 -3 13 -10c0 0 -3 -40 -3 -105v-202c34 37 78 58 127 58c86 0 171 -80 171 -202c0 -164 -117 -247 -216 -247c-43 0 -79 12 -108 37c-9 -11 -20 -28 -31 -39h-18v51c-32 -33 -70 -49 -117 -49
-c-124 0 -189 117 -189 221c0 173 124 228 206 228c20 0 64 -3 100 -27v151z" />
-    <glyph glyph-name="uni023A" unicode="&#x23a;" horiz-adv-x="694" 
-d="M406.5 380.1l-63.7 -97.1h97.2zM388.9 431l-42.9 124h-6l-102.2 -258.7c-3.8 -10.3 3.2 -13.3 25.2 -13.3h28.8zM315.2 241l-134.1 -204.4c13 -3.4 28.7 -4.6 42.9 -5.6c6 -6 6 -27 0 -33c-19.8 0.5 -43.3 1.1 -67.2 1.5l-71.8 -109.5h-51l72.1 110h-10.1
-c-30.3 0 -63 -1 -89 -2c-6 6 -6 27 0 33c43.5 3 74 9 100 71l227 536c13 0 40 11 55 20l52.7 -146.4l122.3 186.4h51l-155.2 -236.6l135.2 -375.4c17.4 -48.2 51.2 -51.5 90 -55c6 -6 6 -27 0 -33c-35 1 -73 2 -114 2c-39 0 -94 -1 -131 -2c-6 6 -6 27 0 33
-c47.6 3.4 85.8 6.5 74 41l-58 169h-140.8zM264.2 241h-19.2c-24 0 -30 -4 -35 -17l-55 -145c-1.10001 -2.9 -1.89999 -5.6 -2.39999 -8.2z" />
-    <glyph glyph-name="uni0239" unicode="&#x239;" horiz-adv-x="748" 
-d="M521 393c-35 0 -86 -29 -108 -82v-244c34 -41 70 -43 87 -43c106 0 133 100 133 186c0 110 -45 183 -112 183zM413 -161c0 -28 10.9 -38.7 42 -42l19 -2c5 -0.5 9 -3 9 -8v-19l-2 -2s-69 2 -108 2c-35 0 -103 -2 -103 -2l-2 2v19c0 5 3 7.5 8 8l19 2
-c31.6 3.3 43 14 43 42v184c-15 -13 -47 -33 -104 -33c-144 0 -198 126 -198 218c0 132 81 231 203 231c49 0 92 -13 125 -43l12 25c4.70001 9.79999 14 21 24 21c11 0 13 -15 13 -27v-56c45 70 103 80 134 80c96 0 164 -95 164 -202c0 -170 -113 -247 -206 -247
-c-36 0 -67 8 -92 22v-173zM235 404c-80 0 -123 -71 -123 -175c0 -153 88 -195 146 -195c19 0 54 2 80 22v277c-27 46 -61 71 -103 71z" />
-    <glyph glyph-name="uni023C" unicode="&#x23c;" horiz-adv-x="428" 
-d="M388 454c17 0 27 -10 31 -23l-36.9 -45c8.5 -12.5 12.9 -26.6 12.9 -42c0 -31 -28 -44 -49 -44c-11.2 0 -20.5 2.60001 -27.1 9.10001l-166.5 -202.7c24.7 -43 62.7 -67.4 104.6 -67.4c43 0 86 22 120 66c9 -1 17 -5 21 -14c-50 -82 -103 -101 -163 -101
-c-57.3 0 -103.4 18.4 -136.7 50.6l-56.3 -68.6c-16 0 -28 11 -30 26l60.8 73.7c-23.4 36.2 -35.8 82.9 -35.8 136.3c0 142 106 231 205 231c47.6 0 85.6 -9.79999 111.8 -26.4zM134.8 147l170.6 206.8c-5.60001 28.2 -19.5 52.2 -68.4 52.2c-66 0 -114 -66 -114 -176
-c0 -30.9 4.2 -58.7 11.8 -83z" />
-    <glyph glyph-name="uni023B" unicode="&#x23b;" horiz-adv-x="646" 
-d="M215 96.6c37.7 -40.1 85.9 -65.6 141 -65.6c93 0 161 31 232 109c11 0 18 -6 23 -15c-68 -89 -157 -135 -254 -135c-71.9 0 -131.4 16.4 -178.9 44.6l-86.1 -144.6h-50l100.7 169.6c-70.8 59.1 -105.7 150.2 -105.7 250.4c0 104.3 39.6 202.2 106 263
-c59 54 130 85 215 85c57.1 0 97.4 -8.70001 129.3 -18.4l34.7 58.4h51l-43.3 -72.8c16.8 -5.90002 31.8 -10.7 47.3 -12.2c10 -55 17 -103 22 -155c-11.3 -6 -21 -9 -33 -5c-13.2 43.6 -33.8 86.1 -68.9 117.5zM186.3 132.9l274.9 462.7c-29.9 15.9 -67.2 25.4 -114.2 25.4
-c-52 0 -110 -28 -159.6 -89c-36.5 -44.9 -59.4 -116.7 -59.4 -203c0 -69.8 21.4 -140.8 58.3 -196.1z" />
-    <glyph glyph-name="uni023D" unicode="&#x23d;" horiz-adv-x="528" 
-d="M149 0c-33.7 0 -91 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v232h-105c-9 0 -13 8 -13 15c0 12 11 29 22 29h96v125c0 83 -17 88 -87 91c-6 6 -6 27 0 33c46 -1 92.9 -2 129 -2c38.1 0 85 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-125h160c9 0 13 -8 13 -14
-c0 -12 -10 -30 -23 -30h-150v-245c0 -51 18 -70 57 -70h63c106 0 143 59 163 131c12.4 1.8 23.2 -0.300003 33 -5c-6 -52 -16 -117 -26 -167c0 0 -92 2 -119.3 2h-212.7z" />
-    <glyph glyph-name="uni023E" unicode="&#x23e;" horiz-adv-x="597" 
-d="M350 122c0 -83 17 -88 97 -91c6 -6 6 -27 0 -33c-50 1 -100.6 2 -139 2c-40.1 0 -91 -1 -140 -2c-6 6 -6 27 0 33c80 3 97 8 97 91v98.1l-164 -277.1h-51l215 363.3v200.7c0 61 -10 99 -47 99h-49c-66 0 -112 -26 -132 -106c-12 0 -24 1 -34 5c11 48 21 100 25 145
-c0 1 2 3 4 3c38 -3 156 -8 233 -8h86c35.5 0 77.4 1 115.9 2.40002l63.1 106.6h51l-61.8 -104.4c24.5 1.20001 44.4 2.40002 55.8 3.40002c1 0 3 -2 3 -3c1 -45 6 -96 13 -142c-9 -4 -23 -5 -34 -5c-11 49.8 -34.5 78.2 -70 92.1l-137 -231.4v-241.7zM350 449.9l91.8 155.1
-c-7.59998 0.700012 -15.5 1 -23.8 1h-22c-36 0 -46 -38 -46 -102v-54.1z" />
-    <glyph glyph-name="uni023F" unicode="&#x23f;" horiz-adv-x="390" 
-d="M48 138c6 6 25 7 31 1c6 -25 17 -69 39 -92c10.3 -10.7 32 -24 71 -24c37 0 85 21 85 70c0 43 -19 64 -102 98c-77 32 -110 63 -110 136c0 64 67 112 141 112c52 0 100 -14 131 -19c-1 -33 -3 -70 -6 -106c-6 -6 -26 -7 -32 -1c-13 85 -71 93 -93 93
-c-34 0 -70 -23 -70 -64c0 -55 39.8 -70.5 100 -92.8c68 -25.2 117 -64.9 117 -133.2c0 -99 -103 -126 -159 -126c-9.60001 0 -18.6 0.3 -27 0.8c10.4 -17.2 15.6 -36 23 -53.8c27 -70 45 -83 69 -83c10 0 15 5 19 15c4 13 10 24 17 31c5 6 14 9 21 9s17 -6 22 -12
-s7 -16 7 -23c0 -10 -7 -21 -18 -29c-20 -12 -38 -18 -62 -18c-43 0 -78 33 -99 84c-21 54 -28 83 -60 88l0.199997 1.2c-1.1 0.3 -2.1 0.5 -3.2 0.8c-7 2 -13 2 -20 2c-5 0 -15 -1 -25 -3c0 42 -3 89 -7 138z" />
-    <glyph glyph-name="uni0241" unicode="&#x241;" horiz-adv-x="457" 
-d="M259 122c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-50 1 -79 2 -129 2c-51 0 -81 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 90v220c149 0 170 104 170 161c0 46 -20 118 -123 118c-41 0 -79 -8 -105 -30c-11 -10 -14 -21 -14 -32c0 -17 8 -35 8 -48c0 -24 -18 -49 -55 -49
-c-21 0 -45 18 -45 46c0 104 110 151 207 151c130 0 206 -74 206 -167c0 -69 -38.8 -107.3 -78.6 -144c-42.1 -38.7 -85.4 -75.6 -85.4 -145v-80z" />
-    <glyph glyph-name="a.inferior" unicode="&#x2090;" horiz-adv-x="307" 
-d="M192 26c-85 -22 -109 -40 -109 -71c0 -21 11 -41 45 -41c21 0 38 10 64 33v79zM235 -118c-25 0 -39 21 -42 39c-34 -30 -52 -39 -85 -39c-42 0 -77 27 -77 70c0 42 40 70 103 86l58 15c0 75 -31 83 -54 83c-33 0 -54 -11 -54 -27c0 -7 1 -11 2 -13s2 -7 2 -12
-c0 -8 -7 -21 -26 -21c-15 0 -26 10 -26 25c0 40 62 73 104 73c49 0 106 -20 106 -114v-75c0 -41 5 -57 14 -57c4 0 9 2 12 5c7.29999 -2.7 10.6 -8 10 -16c-9 -10 -28 -22 -47 -22z" />
-    <glyph glyph-name="e.inferior" unicode="&#x2091;" horiz-adv-x="317" 
-d="M164 -82c38 0 68 17 87 39c8.70001 0 16.3 -6.3 20 -16c-26 -35 -72 -58 -118 -58c-34.5 0 -62.4 8.9 -81.2 25.5c-27.6 24.3 -37.8 64.1 -37.8 107.5c0 74 44.3 145 130 145c85 0 104.3 -59.5 105 -131l-180 2c-1 -4 -1 -9 -1 -11c0 -25 4 -50 16 -69
-c15 -22 35 -34 60 -34zM212 61c0.300003 64.5 -33 75 -57 75c-28.2 0 -58.2 -36 -63 -76z" />
-    <glyph glyph-name="o.inferior" unicode="&#x2092;" horiz-adv-x="307" 
-d="M152 161c92 0 129 -70.9 129 -143c0 -65 -46.9 -135 -130 -135c-81 0 -128 68 -128 132c0 71 40 146 129 146zM222 -1c0 79 -34 137 -76 137c-34.2 0 -64 -30 -64 -109c0 -78 39 -119 80 -119c29 0 60 30 60 91z" />
-    <glyph glyph-name="x.inferior" unicode="&#x2093;" horiz-adv-x="307" 
-d="M232.2 93l-52.2 -67l52.2 -74c26.3 -37.3 32.7 -40.2 60.8 -42c4 -4 4 -18 0 -22c-18 1 -33 2 -56 2c-24 0 -50 -1 -68 -2c-4 4 -4 18 0 22c29 1 26 9 14 28c0 0 -27 42 -32 50c-16 -21 -40 -50 -40 -50c-14 -18 -15 -27 14 -28c4 -4 4 -18 0 -22c-18 1 -34 2 -58 2
-c-23 0 -30 -1 -48 -2c-4 4 -4 18 0 22c28.1 1.8 30.4 6.5 60.8 42c0 0 49.2 58 52.2 61l-56.2 80c-26.6 37.8 -27.7 40.2 -55.8 42c-4 4 -4 18 0 22c18 -1 28 -2 51 -2c24 0 53 1 71 2c4 -4 4 -18 0 -22c-29 -1 -29 -8 -17 -28l36 -57c40 56 41 57 41 57
-c13.2 18.8 15 27 -14 28c-4 4 -4 18 0 22c18 -1 33 -2 57 -2c23 0 30 1 48 2c4 -4 4 -18 0 -22c-28.1 -1.8 -32.8 -6.10001 -60.8 -42z" />
-    <glyph glyph-name="uni2094" unicode="&#x2094;" horiz-adv-x="307" 
-d="M139 126c-38 0 -68 -17 -87 -39c-8.7 0 -16.3 6.3 -20 16c26 35 72 58 118 58c34.5 0 62.4 -8.89999 81.2 -25.5c27.6 -24.3 37.8 -64.1 37.8 -107.5c0 -74 -44.3 -145 -130 -145c-85 0 -104.3 59.5 -105 131l180 -2c1 4 1 9 1 11c0 25 -4 50 -16 69
-c-15 22 -35 34 -60 34zM91 -17c-0.300003 -64.5 33 -75 57 -75c28.2 0 58.2 36 63 76z" />
-
-<!--
-Alternative Akzente fuer Grossbuchstaben
--->
-    <glyph glyph-name="uni035B" unicode="&#x35b;" 
-d="M-74 608l-74 -114c-2 -3 -12 -5 -17 -5c-14 0 -14 3.5 -14 8l30 74c1 3 2 6 2 8s-5 3 -13 3h-104c-11 0 -16 3 -16 7c0 2 1 5 4 9l76 117c2 2 9 3 14 3c11 0 17 -2 17 -6l-28 -75c-1 -2 -2 -4 -2 -6c0 -4 3 -5 10 -5h104c11 0 16 -2 16 -7c0 -2 -2 -6 -5 -11z" />
-
-<!--
-Alternative Akzente fuer Grossbuchstaben
--->
-    <glyph glyph-name="uni035C" unicode="&#x35c;" 
-d="M0 -237c-150 0 -278 39 -368 152l17 18c69 -61 159 -117 351 -117c196 0 274 56 351 117l17 -18c-96 -115 -232 -152 -368 -152z" />
-
-<!--
-Alternative Akzente fuer Grossbuchstaben
--->
-    <glyph glyph-name="uni035D" unicode="&#x35d;" 
-d="M0 475c-150 0 -278 39 -368 152l17 18c69 -61 159 -117 351 -117c196 0 274 56 351 117l17 -18c-96 -115 -232 -152 -368 -152z" />
-
-<!--
-Alternative Akzente fuer Grossbuchstaben
--->
-    <glyph glyph-name="uni035E" unicode="&#x35e;" 
-d="M-378 530c-11 0 -14 9 -14 17c0 12 14 32 26 32h735c11 0 14 -8 14 -17c0 -12 -13 -32 -26 -32h-735z" />
-
-<!--
-Alternative Akzente fuer Grossbuchstaben
--->
-    <glyph glyph-name="uni035F" unicode="&#x35f;" 
-d="M-378 -134c-11 0 -14 9 -14 17c0 12 14 32 26 32h735c11 0 14 -8 14 -17c0 -12 -13 -32 -26 -32h-735z" />
-    <glyph glyph-name="uni2184" unicode="&#x2184;" horiz-adv-x="421" 
-d="M18 96c3.4 5.3 8.4 9.2 17 10c32 -44 82 -72 132 -72c90 0 141 63 141 175c0 116 -53 196 -126 196c-66 0 -71 -44 -77 -78c-2 -20 -22 -33 -46 -33c-9 0 -36 5 -36 41c0 47 57 104 163 104c120 0 199 -95 199 -212c0 -128 -77 -237 -210 -237c-70 0 -123 32 -157 106z
-" />
-    <glyph glyph-name="uni0278" unicode="&#x278;" horiz-adv-x="569" 
-d="M248 24v384c-64 -11 -140 -58 -140 -193c0 -153 99 -184 140 -191zM323 24c130 22 140 155 140 193c0 119 -51 170 -140 189v-382zM248 563c0 65 -10 78 -30 78l-32 2c-3.2 0.200012 -6 2 -6 5l-2 24c40.5 3 109.9 16 135 26c9 0 13 -3 13 -10c0 0 -3 -40 -3 -105v-144
-c105 -10 216 -91 216 -224c0 -111 -90 -207 -216 -222v-151c0 -28 11.8 -39.1 43 -44l19 -3c4 -0.600006 8 -3 8 -8v-19l-2 -2s-68 2 -107 2c-36 0 -104 -2 -104 -2l-2 2v19c0 5 3.10001 7.2 8 8l19 3c32.8 5.2 43 16 43 44v151c-186 14 -216 165 -216 224
-c0 158 156 220 216 223v123z" />
-    <glyph glyph-name="uni2C60" unicode="&#x2c60;" horiz-adv-x="528" 
-d="M336 429v-39h-145v-64h145v-39h-145v-178c0 -51 18 -70 57 -70h63c106 0 143 59 163 131c12.4 1.8 23.2 -0.300003 33 -5c-6 -52 -16 -117 -26 -167c0 0 -92 2 -119.3 2h-212.7c-33.7 0 -91 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v165h-86v39h86v64h-86v39h86v94
-c0 83 -17 88 -87 91c-6 6 -6 27 0 33c46 -1 92.9 -2 129 -2c38.1 0 85 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-94h145z" />
-    <glyph glyph-name="uni2C62" unicode="&#x2c62;" horiz-adv-x="528" 
-d="M-37 277c13 65 67 128 128 128c4.8 0 9.8 -0.600006 15 -1.70001v119.7c0 83 -17 88 -87 91c-6 6 -6 27 0 33c46 -1 92.9 -2 129 -2c38.1 0 85 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-167c16.7 -10.1 32.1 -16 47 -16c28 0 77 17 99 67
-c8 0 13.7 -1.89999 17 -6c-31 -107 -96 -120 -120 -120c-13.1 0 -28.1 4.79999 -43 12.3v-184.3c0 -51 18 -70 57 -70h63c106 0 143 59 163 131c12.4 1.8 23.2 -0.300003 33 -5c-6 -52 -16 -117 -26 -167c0 0 -92 2 -119.3 2h-212.7c-33.7 0 -91 -1 -130 -2c-6 6 -6 27 0 33
-c70 3 87 8 87 91v220.9c-6.9 2 -13.9 3.10001 -21 3.10001c-35 0 -82 -29 -105 -73c-6 0 -11.3 1 -17 4z" />
-    <glyph glyph-name="uni2C61" unicode="&#x2c61;" horiz-adv-x="281" 
-d="M246 429v-39h-72v-64h72v-39h-72v-165c0 -83 11 -88 72 -91c6 -6 6 -27 0 -33c-33 1 -71 2 -111 2s-77 -1 -112 -2c-6 6 -6 27 0 33c61 3 72 8 72 91v165h-80v39h80v64h-80v39h80v130c0 75 -6 78 -64 82c-6 6 -8 22 -6 30c40 3 115 17 140 27c9 0 13 -3 13 -10
-c0 0 -4 -40 -4 -105v-154h72z" />
-    <glyph glyph-name="uni2C63" unicode="&#x2c63;" horiz-adv-x="541" 
-d="M298 491v-39h-109v-131c11 -3 51 -5 76 -5c97 0 149 44 149 152c0 127 -69 150 -138 150c-72 0 -87 -35 -87 -64v-63h109zM104 523c0 83 -17 88 -87 91c-6 6 -6 27 0 33c40 -1 92.3 -2 129 -2c40 0 98.7 7 137 7c185 0 224 -107 224 -166c0 -85 -55 -204 -237 -204
-c-35 0 -59 3 -81 10v-170c0 -83 24 -87 102 -91c6 -6 6 -27 0 -33c-50 1 -108.6 2 -144 2c-35.7 0 -85 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v330h-84v39h84v32z" />
-    <glyph glyph-name="uni2C64" unicode="&#x2c64;" horiz-adv-x="587" 
-d="M272 618c-71 0 -83 -35 -83 -64v-229h48c97 0 168 28 168 153c0 118 -72 140 -133 140zM189 81c0 -180 12 -208 45 -208c14 0 27.7 8 35 18c9.70001 13.2 26 32 57 32c14 0 32 -19 32 -41c0 -36 -73 -54 -95 -54c-45 0 -71 2 -104 31c-43.2 37.9 -55 101 -55 244v420
-c0 83 -17 88 -87 91c-6 6 -6 27 0 33c47 -1 94 -2 129 -2c36 0 78 7 125 7c63 0 125 -3 173 -48c36 -34 53 -75 53 -125c0 -105 -90 -157 -133 -171l126 -210c26 -43.4 51 -77 96 -77c4 -8 4.5 -17.1 1 -24c-10 -5 -27 -7 -42 -7c-60 0 -103.3 42.4 -132 89l-107 174
-c-14.3 23.3 -33 38 -117 38v-210z" />
-    <glyph glyph-name="uni2C65" unicode="&#x2c65;" horiz-adv-x="457" 
-d="M293 48h-2l-20 -16c-44 -34 -74.2 -42 -109 -42c-8.10001 0 -16 0.4 -23.7 1.1l-30.3 -53.1h-40l34.3 60.3c-39.6 13.1 -66.3 43.1 -66.3 99.7c0 68 69 121 165 145l47 11.5l41.1 72.1c-12 67.7 -49 79.4 -77.1 79.4c-38 0 -80 -11 -80 -42c0 -11 1 -17 2 -20
-c2 -4 3 -11 3 -18c0 -13 -18 -34 -47 -34c-23 0 -35 12 -35 36c0 57 83 111 165 111c40 0 81.6 -8.10001 110.9 -38.8l43.1 75.8h41l-62 -108.6c11.3 -24.1 18 -55.8 18 -97.4v-147c0 -46 1 -85 30 -85c12.7 0 29.5 9.8 37 16c11.3 -6.3 15.3 -14.7 17 -27
-c-20.7 -20 -56.7 -37 -95 -37c-50.4 0 -61 27 -67 58zM163.7 35.6c8 -2.9 17 -4.6 27.3 -4.6c28 0 62 23 88 44c8 6 14 13 14 26v132l-19.6 -5.2zM135.2 56.1l90.4 159l-11.6 -3.10001c-74 -19 -95 -65 -95 -110c0 -15 5.2 -32.2 16.2 -45.9z" />
-    <glyph glyph-name="uni2C66" unicode="&#x2c66;" horiz-adv-x="338" 
-d="M43 429l46 0.100006c0 110.9 -3 104.3 -3 115.9c0 6.90002 10 10.3 22 13.7c12.5 3.5 22.7 7.79999 34 14.1c9.3 5.10004 17.8 9 22.3 9c4.7 0 7.7 -2.39996 7.7 -8.79999c0 0 -4 -40 -4 -105v-39h84.3l26.7 47h41l-27.2 -47.9
-c2.10001 -0.899994 3.20001 -2.60001 3.20001 -5.10001v-20c0 -9 -14 -13 -24 -13h-0.899994l-103.1 -181.2v-71.8c0 -62 6 -92 33 -92c26 0 56 8 82 28c10 -1 16 -6.7 18 -17c-39 -44 -89 -66 -135 -66c-41.9 0 -71.4 23.2 -76.3 81.1l-75.7 -133.1h-41l116 203.9v248.1
-h-59c-4 0 -5 1 -5 6v13c0 8 4 20 18 20zM168 280.8l62.1 109.2h-62.1v-109.2z" />
-    <glyph glyph-name="uni2C67" unicode="&#x2c67;" horiz-adv-x="695" 
-d="M504 0h-82l-2 1v19c0 5 3 8 8 8h26c41 0 55 16 55 44v257h-327v-257c0 -31 15 -44 55 -44h26c5 0 8 -3 8 -8v-19l-1 -2s-87 2 -126 2c-36 0 -129 -2 -129 -2l-2 2v19c0 5 3 8 8 8h26c41 0 55 16 55 44v502c0 30 -16 44 -55 44h-26c-5 0 -9 3 -9 8v19l2 1s87 -1 126 -1
-c36 0 129 1 129 1l2 -1v-19c0 -5 -3 -8 -8 -8h-26c-41 0 -55 -16 -55 -44v-206h327v206c0 30 -15 44 -55 44h-26c-5 0 -9 3 -9 8v19l2 1s87 -1 126 -1c36 0 129 1 129 1l2 -1v-19c0 -5 -3 -8 -8 -8h-26c-41 0 -55 -16 -55 -44v-497c0 -25 16 -49 41 -49s29 -11 30 -20
-l6 -149h-27c-14 71 -58 141 -135 141z" />
-    <glyph glyph-name="uni2C68" unicode="&#x2c68;" horiz-adv-x="518" 
-d="M436 76c0 -30 17 -48 36 -48c17 0 28 -4 28 -21l6 -135h-25c-11 49 -41 128 -119 128h-71v20c0 5 3 8 8 8h19c34 0 43 15 43 44v223c0 81 -22 100 -78 100c-29 0 -72 -26 -120 -73v-250c0 -29 10 -44 43 -44h19c4 0 8 -3 8 -8v-19l-2 -2s-68 2 -107 2
-c-36 0 -103 -2 -103 -2l-2 2v19c0 5 2 8 7 8h19c34 0 43 15 43 44v501c0 57 -9 73 -29 73l-33 -4c-3 0 -5 3 -5 5l-2 25c16 0 52 6 69 9c18 4 33 8 53 17h22v-339c67 67 126 83 165 83c72 0 108 -55 108 -158v-208z" />
-    <glyph glyph-name="uni2C69" unicode="&#x2c69;" horiz-adv-x="654" 
-d="M187 72c0 -31 15 -44 55 -44h26c4 0 8 -3 8 -8v-19l-2 -2s-86 2 -126 2c-35 0 -128 -2 -128 -2l-2 2v19c0 5 3 8 7 8h27c41 0 54 16 54 44v502c0 30 -15 44 -54 44h-27c-4 0 -8 3 -8 8v19l2 1s87 -1 126 -1c36 0 129 1 129 1l2 -1v-19c0 -5 -3 -8 -8 -8h-26
-c-41 0 -55 -16 -55 -44v-227.1c19.9 5.10001 37.8 17.4 61 39.1l187 176c19 19 27 31 27 40c0 6 -14 16 -31 16h-21c-4 0 -8 3 -8 8v19l2 1s76 -1 116 -1c35 0 96 1 96 1l5 -1v-19c0 -5 -5 -8 -11 -8c-40 -5 -76 -14 -125 -60l-160 -151c-30 -28 -39 -40 -39 -49
-c0 -8 6 -16 14 -25l239 -260c25 -29 42 -45 59 -45c22 0 29 -8 30 -20l6 -149h-27c-11 56 -47 141 -128 141h-24l-1 7c0 18 0 44 -20 66l-182 198c-21.3 22.9 -38.2 33.9 -65 37.6v-236.6z" />
-    <glyph glyph-name="uni2C6A" unicode="&#x2c6a;" horiz-adv-x="508" 
-d="M315 73l-73 103c-14 19 -28.5 36 -49 36c-5.2 0 -11.8 -1.3 -19 -3.60001v-86.4c0 -83 11 -88 72 -91c6 -6 6 -27 0 -33c-33 1 -71 2 -111 2s-77 -1 -112 -2c-6 6 -6 27 0 33c61 3 72 8 72 91v437c0 75 -6 78 -64 82c-6 6 -8 22 -6 30c40 3 115 17 140 27
-c9 0 13 -3 13 -10c0 0 -4 -40 -4 -105v-350.9c48.4 21.6 82.6 52 140 114.9c16 16 20 29 20 39c0 8 -5 16 -29 16h-4c-5 0 -8 4 -8 8v19l3 2s48 -2 83 -2c39 0 93 2 93 2l4 -2v-19c0 -5 -6 -8 -11 -8h-7c-27 0 -71 -22 -96 -48l-76 -84c-3 -3 -4 -7 -4 -11s2 -9 5 -13
-l117 -173c22 -32 42 -45 59 -45c23 0 30 -8 31 -20l6 -136h-27c-12 55 -32 128 -112 128h-25v7c-1 18 -3 41 -21 66z" />
-    <glyph glyph-name="uni2C6B" unicode="&#x2c6b;" horiz-adv-x="618" 
-d="M134 646h408c18 0 24 -3 24 -12c0 -8 -3 -15 -23 -43l-371 -519c-5 -9 -8 -15 -8 -20c0 -9 8 -13 25 -13h378c25 0 28 -22 28 -31l7 -149h-27c-14 71 -58 141 -136 141h-379c-14 0 -19 5 -19 15c0 7 2 15 8 23l385 541c6 7 9 14 9 19c0 6 -4 8 -11 8h-257
-c-74 0 -103 -90 -107 -135l-26 2l20 194c52 -6 25 -21 72 -21z" />
-    <glyph glyph-name="uni2C6C" unicode="&#x2c6c;" horiz-adv-x="411" 
-d="M340 39c22 0 32 -19 33 -31l6 -136h-27c-12 55 -31 128 -112 128h-172c-27 0 -35 5 -35 12c0 5 3 11 9 20l236 359h-142c-30 0 -59 -13 -78 -97l-26 5l31 152l24 -4c1 -15 5 -17 21 -17h196c25 2 47 3 50 3c8 0 10 0 14 -3c2 -2 2 -5 2 -9c0 -6 -8 -20 -17 -34l-229 -348
-h216z" />
-    <glyph glyph-name="uni2C77" unicode="&#x2c77;" horiz-adv-x="618" 
-d="M338 8c42 6 80 22 109 59c36 46 55 88 55 152c0 141 -41 192 -102 192c-38 0 -62 -54 -62 -168v-235zM37 228c0 129 89 172 130 195l20 -21c-22 -17 -69 -54 -69 -183c0 -74 22 -125 54 -164c24 -28 60 -43 108 -48v249c0 73 7 115 46 154c21 21 49 28 75 28
-c115 0 181 -100 181 -205c0 -203 -184 -254 -272 -254c-117 0 -273 50 -273 249z" />
-    <glyph glyph-name="uni2C75" unicode="&#x2c75;" horiz-adv-x="465" 
-d="M182 574v-208h141c35 0 44 16 50 44l7 30c0 4 3 8 7 8h36c3 0 4 -2 4 -4c-3 -32 -8 -62 -8 -95c0 -35 4 -64 8 -96l-3 -3h-37c-5 0 -8 3 -8 7l-6 31c-5 28 -17 44 -50 44h-141v-260c0 -31 15 -44 55 -44h26c5 0 8 -3 8 -8v-19l-1 -2s-87 2 -126 2c-36 0 -129 -2 -129 -2
-l-2 2v19c0 5 3 8 8 8h26c41 0 55 16 55 44v502c0 30 -16 44 -55 44h-26c-5 0 -9 3 -9 8v19l2 1s87 -1 126 -1c36 0 129 1 129 1l2 -1v-19c0 -5 -3 -8 -8 -8h-26c-41 0 -55 -16 -55 -44z" />
-    <glyph glyph-name="uni2C76" unicode="&#x2c76;" horiz-adv-x="419" 
-d="M99 358c0 28 -10 44 -43 44h-19c-5 0 -8 3 -8 8v19l2 2s68 -2 103 -2c39 0 108 2 108 2l2 -2v-19c0 -5 -4 -8 -9 -8h-19c-32 0 -43 -16 -43 -44v-111h106c35 0 44 17 51 45l6 29c1 5 4 9 8 9h36c2 0 3 -3 3 -5c-2 -32 -8 -61 -8 -95s5 -63 8 -96l-2 -3h-37
-c-6 0 -8 4 -9 7l-5 31c-6 29 -17 44 -51 44h-106v-141c0 -29 11 -44 43 -44h19c5 0 9 -3 9 -8v-19l-2 -2s-69 2 -108 2c-35 0 -103 -2 -103 -2l-2 2v19c0 5 3 8 8 8h19c33 0 43 15 43 44v286z" />
-    <glyph glyph-name="uni2C74" unicode="&#x2c74;" horiz-adv-x="484" 
-d="M196 447c42 0 65 -23 65 -47c0 -49 -58 -95 -91 -121c0 -3 17 -42 17 -43l41 -98l16 -53l18 50l91 221c6 16 9 26 9 33c0 11 -8 12 -27 13h-16c-5 0 -6 4 -6 7v22s53 -2 86 -2c28 0 71 2 71 2v-20c0 -5 -4 -8 -11 -8h-6c-28 -2 -42 -5 -59 -47l-141 -345
-c-5 -14 -15 -22 -25 -22c-13 0 -20 8 -25 20l-57 145c-2 5 -32 83 -34 87c-20 -15 -43 -30 -61 -42l-12 18c22 14 42 26 65 46c-14 34 -22 60 -22 92c0 50 50 92 114 92zM192 421c-22 0 -42 -25 -42 -63c0 -35 3 -43 10 -61c26 24 73 62 73 94c0 16 -17 30 -41 30z" />
-    <glyph glyph-name="uniA720" unicode="&#xa720;" horiz-adv-x="639" 
-d="M27 695l559 -124l-14 -76l-253 56v-84h-74v101l-143 32v-203h-75v298z" />
-    <glyph glyph-name="uni037B" unicode="&#x37b;" horiz-adv-x="446" 
-d="M190 22c74 0 129 41 129 179c0 119 -35 206 -139 206c-66 0 -92 -15 -131 -65l-26 14c39 53 92 83 160 83c153 0 227 -91 227 -217c0 -185 -120 -232 -220 -232c-67 0 -128 30 -167 83l26 14c40 -50 73 -65 141 -65z" />
-    <glyph glyph-name="uni037C" unicode="&#x37c;" horiz-adv-x="445" 
-d="M279 155c-35 0 -58 28 -58 57c0 31 26 59 58 59c29 0 58 -26 58 -59c0 -30 -25 -57 -58 -57zM130 200c0 -156 77 -181 129 -181c67 0 100 17 141 68l26 -14c-39 -53 -101 -83 -167 -83c-64 0 -118 18 -157 58c-41 40 -63 91 -63 178c0 47 23 115 58 149
-c39 40 97 64 168 64c67 0 121 -30 160 -83l-26 -14c-40 50 -65 65 -131 65c-36 0 -78 -21 -97 -42c-38 -40 -41 -91 -41 -165z" />
-    <glyph glyph-name="uni037D" unicode="&#x37d;" horiz-adv-x="446" 
-d="M151 161c-35 0 -58 28 -58 57c0 31 26 59 58 59c29 0 58 -26 58 -59c0 -30 -25 -57 -58 -57zM190 22c74 0 129 41 129 179c0 119 -35 206 -139 206c-66 0 -92 -15 -131 -65l-26 14c39 53 92 83 160 83c153 0 227 -91 227 -217c0 -185 -120 -232 -220 -232
-c-67 0 -128 30 -167 83l26 14c40 -50 73 -65 141 -65z" />
-    <glyph glyph-name="uni03FD" unicode="&#x3fd;" horiz-adv-x="599" 
-d="M82 539l-29 24c10 26 93 95 206 95c209 0 302 -139 302 -336c0 -187 -128 -332 -310 -332c-112 0 -184 72 -219 135l16 17c26 -40 103 -107 210 -107c163 0 212 171 212 282c0 255 -126 307 -204 307c-140 0 -184 -85 -184 -85z" />
-    <glyph glyph-name="uni03FE" unicode="&#x3fe;" horiz-adv-x="599" 
-d="M355 269c-35 0 -58 28 -58 57c0 31 26 59 58 59c29 0 58 -26 58 -59c0 -30 -25 -57 -58 -57zM568 121c-35 -63 -110 -131 -222 -131c-188 0 -307 154 -307 333c0 197 141 335 302 335c138 0 204 -89 206 -94l-29 -24c-9 22 -82 79 -184 79c-78 0 -204 -47 -204 -302
-c0 -153 72 -283 210 -283c107 0 183 64 210 104z" />
-    <glyph glyph-name="uni03FF" unicode="&#x3ff;" horiz-adv-x="599" 
-d="M222 264c-35 0 -58 28 -58 57c0 31 26 59 58 59c29 0 58 -26 58 -59c0 -30 -25 -57 -58 -57zM82 539l-29 24c10 26 93 95 206 95c209 0 302 -139 302 -336c0 -187 -128 -332 -310 -332c-112 0 -184 72 -219 135l16 17c26 -40 103 -107 210 -107c163 0 212 171 212 282
-c0 255 -126 307 -204 307c-140 0 -184 -85 -184 -85z" />
-    <glyph glyph-name="uni2460" unicode="&#x2460;" horiz-adv-x="759" 
-d="M378.2 -15.2c-182.2 0 -329 148.5 -329 330.9c0 182.4 146.8 329.5 329 329.5s330.5 -147.1 330.5 -329.5c0 -182.4 -148.3 -330.9 -330.5 -330.9zM378.2 608.5c-162.4 0 -292.3 -131.6 -292.3 -292.8c0 -162.6 129.9 -294.1 292.3 -294.1c161 0 293.7 131.5 293.7 294.1
-c0 162.6 -131.3 292.8 -293.7 292.8zM416.2 206.3c0 -54 11.1 -57.2 56.6 -59.1c3.90002 -3.89999 3.90002 -17.6 0 -21.5c-32.5 0.600006 -48.4 1.3 -79.3 1.3c-35.2 0 -58.5 -0.699997 -90.4 -1.3c-3.89999 3.90001 -3.89999 17.6 0 21.5
-c45.5 1.90001 63.1 5.10001 63.1 59.1v211.9c0 22.1 -2.30002 37.7 -13 37.7c-12.4 0 -27 -3.89999 -56.6 -16.2c-5.80002 4 -8.80002 10.1 -9.80002 17.5c57.2 26.6 91.4 42.7 127.4 65c2.29999 0 4 -0.100037 4 -3.20001c-1.10001 -8.5 -2 -48.2 -2 -87.2v-225.5z" />
-    <glyph glyph-name="uni2461" unicode="&#x2461;" horiz-adv-x="759" 
-d="M378.2 -15.2c-182.2 0 -329 148.5 -329 330.9c0 182.4 146.8 329.5 329 329.5s330.5 -147.1 330.5 -329.5c0 -182.4 -148.3 -330.9 -330.5 -330.9zM378.2 608.5c-162.4 0 -292.3 -131.6 -292.3 -292.8c0 -162.6 129.9 -294.1 292.3 -294.1c161 0 293.7 131.5 293.7 294.1
-c0 162.6 -131.3 292.8 -293.7 292.8zM270.7 430.2c0 39 44.8 92.3 117 92.3c52.6 0 109.8 -28.6 109.8 -98.8c0 -49.4 -28 -77.9 -65 -113.7l-65.7 -63.1c-3.19998 -3.2 -48 -47.5 -48 -78.7h115.7c23.4 0 34.5 16.3 45.5 62.5c6.5 1.3 14.9 -0.0999908 18.8 -3.3
-c-0.599976 -19.5 -7.09998 -68.2 -15.6 -102.7c0 0 -29.9 1.3 -50.7 1.3h-113.7c-20.8 0 -54 -1.3 -54 -1.3c0 38.3 10.4 69.5 74.1 134.5l48.1 47.5c38.3 39 53.3 72.8 53.3 114.4c0 62.4 -33.1 78.7 -56.5 78.7c-47.5 0 -64.4 -23.5 -64.4 -39.7
-c0 -5.20001 3.89999 -11.1 5.20001 -15.6c1.29999 -4.5 2.60001 -8.5 2.60001 -13.7c0 -14.4 -19.5 -26 -30.5 -26c-13.7 0 -26 11.7 -26 25.4z" />
-    <glyph glyph-name="uni2462" unicode="&#x2462;" horiz-adv-x="759" 
-d="M378.2 -15.2c-182.2 0 -329 148.5 -329 330.9c0 182.4 146.8 329.5 329 329.5s330.5 -147.1 330.5 -329.5c0 -182.4 -148.3 -330.9 -330.5 -330.9zM378.2 608.5c-162.4 0 -292.3 -131.6 -292.3 -292.8c0 -162.6 129.9 -294.1 292.3 -294.1c161 0 293.7 131.5 293.7 294.1
-c0 162.6 -131.3 292.8 -293.7 292.8zM375.8 506.8c-16.9 0 -61.8 -7.89999 -61.8 -49.5c0 -12.3 -2.5 -33.8 -25.3 -33.8c-15.6 0 -22.2 13.1 -22.2 22.2c0 21.4 27.3 83.8 122.9 83.8c34 0 56.6 -10.9 70.8 -25.3c15.8 -16 20.4 -31.9 20.4 -51.4
-c0 -34.3 -14.9 -61.4 -68.4 -86.5l0.599976 -1.29999c38.4 -6.5 91.7 -31.8 91.7 -102.7c0 -85.8 -69 -135.8 -146.3 -135.8c-39 0 -93.6 17.5 -93.6 43.5c0 10.4 13.6 22.8 27.3 22.8c13 0 21.4 -7.8 27.9 -16.9c7.80002 -11.7 13.7 -26.7 46.9 -26.7
-c22.8 0 80.5 17.5 80.5 104c0 73.5 -48 83.9 -85.1 83.9c-8.39999 0 -20.2 0 -31.2 -1.30002l-3.19998 20.8c64.4 9.19998 102.1 58.8 102.1 91.4c0 41.8 -25.9 58.8 -54 58.8z" />
-    <glyph glyph-name="uni2463" unicode="&#x2463;" horiz-adv-x="759" 
-d="M378.2 -15.2c-182.2 0 -329 148.5 -329 330.9c0 182.4 146.8 329.5 329 329.5s330.5 -147.1 330.5 -329.5c0 -182.4 -148.3 -330.9 -330.5 -330.9zM378.2 608.5c-162.4 0 -292.3 -131.6 -292.3 -292.8c0 -162.6 129.9 -294.1 292.3 -294.1c161 0 293.7 131.5 293.7 294.1
-c0 162.6 -131.3 292.8 -293.7 292.8zM393.2 456.6c-44.8 -61.2 -90.8 -133.9 -124.2 -187.3h124.2v187.3zM496.5 269.3c7.20001 0 9.70001 -3.79999 9.70001 -10.3c0 -7.8 -9.70001 -20.2 -18.8 -20.2h-44.9v-59.8c0 -30.5 13.7 -29.2 45.5 -31.8
-c3.89999 -3.89999 3.89999 -17.6 0 -21.5c-20.8 0.600006 -45.2 1.3 -70.8 1.3c-29.9 0 -55.9 -0.699997 -76.7 -1.3c-3.89999 3.90001 -3.89999 17.6 0 21.5c28 1.90001 52.7 1.90001 52.7 31.8v59.8h-132.7c-19.5 0 -23.3 17.5 -25.3 27.3
-c59.5 93 135.2 199.8 176.1 250.2c2.40002 2.90002 6 7.20001 10.5 7.20001h20.7l1.29999 -1.29999c-1.09998 -5.10004 -1.29999 -30.5 -1.29999 -63v-189.9h54z" />
-    <glyph glyph-name="uni2464" unicode="&#x2464;" horiz-adv-x="759" 
-d="M378.2 -15.2c-182.2 0 -329 148.5 -329 330.9c0 182.4 146.8 329.5 329 329.5s330.5 -147.1 330.5 -329.5c0 -182.4 -148.3 -330.9 -330.5 -330.9zM378.2 608.5c-162.4 0 -292.3 -131.6 -292.3 -292.8c0 -162.6 129.9 -294.1 292.3 -294.1c161 0 293.7 131.5 293.7 294.1
-c0 162.6 -131.3 292.8 -293.7 292.8zM443.3 251.8c0 70.9 -33.1 98.9 -75.3 98.9c-23.4 0 -48.2 -2.70001 -82.6 -15.7l22.1 187.2c22.8 -2 46.2 -3.20001 70.2 -3.20001c34.5 0 69.6 3.29999 106.6 7.20001l4.5 -2.70001l-10.3 -44.2
-c-26.7 -2.59998 -48.8 -3.79999 -68.3 -3.79999c-31.2 0 -52 3.20001 -76 5.79999l-13 -108.5c11.7 4.5 35.7 10.4 63.6 10.4c72.8 0 116.4 -56.7 116.4 -119.7c0 -81.9 -57.2 -141.7 -137.8 -141.7c-37.1 0 -92.3 22.2 -92.3 48.8c0 13 12.4 24.1 24.7 24.1
-c13.7 0 24.7 -9.8 33.2 -20.9c9.79999 -13 18.1 -29.2 42.8 -29.2c39 0 71.5 45.4 71.5 107.2z" />
-    <glyph glyph-name="uni2465" unicode="&#x2465;" horiz-adv-x="759" 
-d="M378.2 -15.2c-182.2 0 -329 148.5 -329 330.9c0 182.4 146.8 329.5 329 329.5s330.5 -147.1 330.5 -329.5c0 -182.4 -148.3 -330.9 -330.5 -330.9zM378.2 608.5c-162.4 0 -292.3 -131.6 -292.3 -292.8c0 -162.6 129.9 -294.1 292.3 -294.1c161 0 293.7 131.5 293.7 294.1
-c0 162.6 -131.3 292.8 -293.7 292.8zM305.9 325.6c-3.79999 -18.7 -5.39999 -36.2 -5.39999 -50.8c0 -111.1 37 -133.2 78 -133.2c31.9 0 59.2 32.5 59.2 104c0 32.5 -14.3 94.9 -78 94.9c-11.3 0 -32.4 -0.899994 -53.8 -14.9zM311.8 349.2c19.4 8.89999 44.6 14 61.5 14
-c88.4 0 118.4 -50 118.4 -105.9c0 -55.9 -35.2 -138.5 -120.3 -138.5c-50.1 0 -124.8 26 -124.8 158c0 51.4 20.1 110.5 60.4 157.3c36.4 42.2 76.7 69.6 142.4 89.1c5.20001 -3.20001 7.80002 -9.20001 7.80002 -17c-86.5 -32.4 -127.8 -97.9 -145.4 -157z" />
-    <glyph glyph-name="uni2466" unicode="&#x2466;" horiz-adv-x="759" 
-d="M378.2 -15.2c-182.2 0 -329 148.5 -329 330.9c0 182.4 146.8 329.5 329 329.5s330.5 -147.1 330.5 -329.5c0 -182.4 -148.3 -330.9 -330.5 -330.9zM378.2 608.5c-162.4 0 -292.3 -131.6 -292.3 -292.8c0 -162.6 129.9 -294.1 292.3 -294.1c161 0 293.7 131.5 293.7 294.1
-c0 162.6 -131.3 292.8 -293.7 292.8zM352.5 477.8c-20.8 0 -42.2 -4.59998 -56.5 -56.6c-7.20001 -0.900024 -13.7 0 -20.8 2c5.19998 33.8 12.3 72.8 13 104c0 1.89996 0.599976 1.89996 2.59998 1.89996c11.7 -2.59998 10.3 -9.09998 32.4 -9.09998h134
-c24.7 0 39 4 50 7.20001l10.4 -7.90002c-72.8 -177.4 -108.6 -285.3 -145.6 -395.8l-44.2 -2l-5.19998 4.6c44.2 98.8 95.5 225.6 146.2 351.7h-116.3z" />
-    <glyph glyph-name="uni2467" unicode="&#x2467;" horiz-adv-x="759" 
-d="M379 487c-37 0 -61 -29 -61 -58c0 -19 10 -41 49 -66l18 -12c17 12 55 42 55 75c0 29 -21 61 -61 61zM478 425c0 -39 -44 -70 -71 -88l37 -26c32 -21 48 -49 48 -84c0 -48 -38 -108 -118 -108c-65 0 -110 34 -110 97c0 25 10 53 35 75c15 14 29 24 44 36l-10 6
-c-38 25 -56 50 -56 84c0 48 43 85 105 85c61 0 96 -33 96 -77zM375 137c28 0 76 15 76 77c0 29 -16 58 -55 82l-30 17c-53 -35 -65 -78 -65 -97c0 -54 46 -79 74 -79zM378.2 -15.2c-182.2 0 -329 148.5 -329 330.9c0 182.4 146.8 329.5 329 329.5s330.5 -147.1 330.5 -329.5
-c0 -182.4 -148.3 -330.9 -330.5 -330.9zM378.2 608.5c-162.4 0 -292.3 -131.6 -292.3 -292.8c0 -162.6 129.9 -294.1 292.3 -294.1c161 0 293.7 131.5 293.7 294.1c0 162.6 -131.3 292.8 -293.7 292.8z" />
-    <glyph glyph-name="uni2468" unicode="&#x2468;" horiz-adv-x="759" 
-d="M378.2 -15.2c-182.2 0 -329 148.5 -329 330.9c0 182.4 146.8 329.5 329 329.5s330.5 -147.1 330.5 -329.5c0 -182.4 -148.3 -330.9 -330.5 -330.9zM378.2 608.5c-162.4 0 -292.3 -131.6 -292.3 -292.8c0 -162.6 129.9 -294.1 292.3 -294.1c161 0 293.7 131.5 293.7 294.1
-c0 162.6 -131.3 292.8 -293.7 292.8zM468.3 314.8c3.80002 18.7 5.30002 36.1 5.30002 50.7c0 111.2 -37 133.3 -78 133.3c-31.8 0 -59.1 -32.5 -59.1 -104c0 -32.5 14.3 -95 78 -95c11.3 0 32.4 1 53.8 15zM462.4 291.2c-19.4 -8.90002 -44.7 -14.1 -61.6 -14.1
-c-88.4 0 -118.3 50 -118.3 105.9s35.1 138.5 120.3 138.5c50 0 124.7 -26 124.7 -158c0 -51.3 -20.1 -110.5 -60.4 -157.3c-36.4 -42.2 -76.6 -69.5 -142.3 -89c-5.19998 3.2 -7.79999 9.10001 -7.79999 16.9c86.5 32.4 127.8 98 145.4 157.1z" />
-    <glyph glyph-name="uni2469" unicode="&#x2469;" horiz-adv-x="759" 
-d="M307.2 206.3c0 -54 11.1 -57.2 56.6 -59.1c3.90002 -3.89999 3.90002 -17.6 0 -21.5c-32.5 0.600006 -48.4 1.3 -79.3 1.3c-35.2 0 -58.5 -0.699997 -90.4 -1.3c-3.90001 3.90001 -3.90001 17.6 0 21.5c45.5 1.90001 63.1 5.10001 63.1 59.1v211.9
-c0 22.1 -2.30002 37.7 -13 37.7c-12.4 0 -27 -3.89999 -56.6 -16.2c-5.8 4 -8.8 10.1 -9.8 17.5c57.2 26.6 91.4 42.7 127.4 65c2.29999 0 4 -0.100037 4 -3.20001c-1.10001 -8.5 -2 -48.2 -2 -87.2v-225.5zM378.2 -15.2c-182.2 0 -329 148.5 -329 330.9
-c0 182.4 146.8 329.5 329 329.5s330.5 -147.1 330.5 -329.5c0 -182.4 -148.3 -330.9 -330.5 -330.9zM378.2 608.5c-162.4 0 -292.3 -131.6 -292.3 -292.8c0 -162.6 129.9 -294.1 292.3 -294.1c161 0 293.7 131.5 293.7 294.1c0 162.6 -131.3 292.8 -293.7 292.8z
-M488.8 506.8c-29.2 0 -68.9 -29.9 -68.9 -189.8c0 -56.5 6.5 -167.8 66.9 -167.8c11.7 0 43.6 5.90001 57.9 59.2c9.09998 33.1 11.1 74.1 11.1 133.9c0 87.1 -17.6 136.5 -37.8 153.4c-7.79999 7.09998 -18.2 11.1 -29.2 11.1zM486.2 126.5
-c-25.1 0 -47.4 8.89999 -65.9 27.3c-35.5 35.4 -57 101 -57 170.3c0 128.7 61.2 205.4 125.5 205.4c35.1 0 62.3 -19.8 79.3 -42.3c28.6 -37.7 44.2 -92.9 44.2 -157.2c0 -152.8 -76.1 -203.5 -126.1 -203.5z" />
-    <glyph glyph-name="uni246A" unicode="&#x246a;" horiz-adv-x="759" 
-d="M513.2 206.3c0 -54 11.1 -57.2 56.6 -59.1c3.90002 -3.89999 3.90002 -17.6 0 -21.5c-32.5 0.600006 -48.4 1.3 -79.3 1.3c-35.2 0 -58.5 -0.699997 -90.4 -1.3c-3.89999 3.90001 -3.89999 17.6 0 21.5c45.5 1.90001 63.1 5.10001 63.1 59.1v211.9
-c0 22.1 -2.30002 37.7 -13 37.7c-12.4 0 -27 -3.89999 -56.6 -16.2c-5.80002 4 -8.80002 10.1 -9.80002 17.5c57.2 26.6 91.4 42.7 127.4 65c2.29999 0 4 -0.100037 4 -3.20001c-1.10004 -8.5 -2 -48.2 -2 -87.2v-225.5zM315.2 206.3c0 -54 11.1 -57.2 56.6 -59.1
-c3.90002 -3.89999 3.90002 -17.6 0 -21.5c-32.5 0.600006 -48.4 1.3 -79.3 1.3c-35.2 0 -58.5 -0.699997 -90.4 -1.3c-3.90001 3.90001 -3.90001 17.6 0 21.5c45.5 1.90001 63.1 5.10001 63.1 59.1v211.9c0 22.1 -2.30002 37.7 -13 37.7c-12.4 0 -27 -3.89999 -56.6 -16.2
-c-5.8 4 -8.8 10.1 -9.8 17.5c57.2 26.6 91.4 42.7 127.4 65c2.29999 0 4 -0.100037 4 -3.20001c-1.10001 -8.5 -2 -48.2 -2 -87.2v-225.5zM378.2 -15.2c-182.2 0 -329 148.5 -329 330.9c0 182.4 146.8 329.5 329 329.5s330.5 -147.1 330.5 -329.5
-c0 -182.4 -148.3 -330.9 -330.5 -330.9zM378.2 608.5c-162.4 0 -292.3 -131.6 -292.3 -292.8c0 -162.6 129.9 -294.1 292.3 -294.1c161 0 293.7 131.5 293.7 294.1c0 162.6 -131.3 292.8 -293.7 292.8z" />
-    <glyph glyph-name="uni246B" unicode="&#x246b;" horiz-adv-x="759" 
-d="M312.2 206.3c0 -54 11.1 -57.2 56.6 -59.1c3.90002 -3.89999 3.90002 -17.6 0 -21.5c-32.5 0.600006 -48.4 1.3 -79.3 1.3c-35.2 0 -58.5 -0.699997 -90.4 -1.3c-3.90001 3.90001 -3.90001 17.6 0 21.5c45.5 1.90001 63.1 5.10001 63.1 59.1v211.9
-c0 22.1 -2.30002 37.7 -13 37.7c-12.4 0 -27 -3.89999 -56.6 -16.2c-5.8 4 -8.8 10.1 -9.8 17.5c57.2 26.6 91.4 42.7 127.4 65c2.29999 0 4 -0.100037 4 -3.20001c-1.10001 -8.5 -2 -48.2 -2 -87.2v-225.5zM378.2 -15.2c-182.2 0 -329 148.5 -329 330.9
-c0 182.4 146.8 329.5 329 329.5s330.5 -147.1 330.5 -329.5c0 -182.4 -148.3 -330.9 -330.5 -330.9zM378.2 608.5c-162.4 0 -292.3 -131.6 -292.3 -292.8c0 -162.6 129.9 -294.1 292.3 -294.1c161 0 293.7 131.5 293.7 294.1c0 162.6 -131.3 292.8 -293.7 292.8z
-M383.7 429.2c0 39 44.8 92.3 117 92.3c52.6 0 109.8 -28.6 109.8 -98.8c0 -49.4 -28 -77.9 -65 -113.7l-65.7 -63.1c-3.19998 -3.2 -48 -47.5 -48 -78.7h115.7c23.4 0 34.5 16.3 45.5 62.5c6.5 1.3 14.9 -0.0999908 18.8 -3.3c-0.599976 -19.5 -7.09998 -68.2 -15.6 -102.7
-c0 0 -29.9 1.3 -50.7 1.3h-113.7c-20.8 0 -54 -1.3 -54 -1.3c0 38.3 10.4 69.5 74.1 134.5l48.1 47.5c38.3 39 53.3 72.8 53.3 114.4c0 62.4 -33.1 78.7 -56.5 78.7c-47.5 0 -64.4 -23.5 -64.4 -39.7c0 -5.20001 3.89999 -11.1 5.20001 -15.6
-c1.29999 -4.5 2.60001 -8.5 2.60001 -13.7c0 -14.4 -19.5 -26 -30.5 -26c-13.7 0 -26 11.7 -26 25.4z" />
-    <glyph glyph-name="uni246C" unicode="&#x246c;" horiz-adv-x="759" 
-d="M312.2 206.3c0 -54 11.1 -57.2 56.6 -59.1c3.90002 -3.89999 3.90002 -17.6 0 -21.5c-32.5 0.600006 -48.4 1.3 -79.3 1.3c-35.2 0 -58.5 -0.699997 -90.4 -1.3c-3.90001 3.90001 -3.90001 17.6 0 21.5c45.5 1.90001 63.1 5.10001 63.1 59.1v211.9
-c0 22.1 -2.30002 37.7 -13 37.7c-12.4 0 -27 -3.89999 -56.6 -16.2c-5.8 4 -8.8 10.1 -9.8 17.5c57.2 26.6 91.4 42.7 127.4 65c2.29999 0 4 -0.100037 4 -3.20001c-1.10001 -8.5 -2 -48.2 -2 -87.2v-225.5zM378.2 -15.2c-182.2 0 -329 148.5 -329 330.9
-c0 182.4 146.8 329.5 329 329.5s330.5 -147.1 330.5 -329.5c0 -182.4 -148.3 -330.9 -330.5 -330.9zM378.2 608.5c-162.4 0 -292.3 -131.6 -292.3 -292.8c0 -162.6 129.9 -294.1 292.3 -294.1c161 0 293.7 131.5 293.7 294.1c0 162.6 -131.3 292.8 -293.7 292.8z
-M493.8 502.8c-16.9 0 -61.8 -7.89999 -61.8 -49.5c0 -12.3 -2.5 -33.8 -25.3 -33.8c-15.6 0 -22.2 13.1 -22.2 22.2c0 21.4 27.3 83.8 122.9 83.8c34 0 56.6 -10.9 70.8 -25.3c15.8 -16 20.4 -31.9 20.4 -51.4c0 -34.3 -14.9 -61.4 -68.4 -86.5l0.599976 -1.29999
-c38.4 -6.5 91.7 -31.8 91.7 -102.7c0 -85.8 -69 -135.8 -146.3 -135.8c-39 0 -93.6 17.5 -93.6 43.5c0 10.4 13.6 22.8 27.3 22.8c13 0 21.4 -7.8 27.9 -16.9c7.80002 -11.7 13.7 -26.7 46.9 -26.7c22.8 0 80.5 17.5 80.5 104c0 73.5 -48 83.9 -85.1 83.9
-c-8.39999 0 -20.2 0 -31.2 -1.30002l-3.19998 20.8c64.4 9.19998 102.1 58.8 102.1 91.4c0 41.8 -25.9 58.8 -54 58.8z" />
-    <glyph glyph-name="uni246D" unicode="&#x246d;" horiz-adv-x="759" 
-d="M312.2 206.3c0 -54 11.1 -57.2 56.6 -59.1c3.90002 -3.89999 3.90002 -17.6 0 -21.5c-32.5 0.600006 -48.4 1.3 -79.3 1.3c-35.2 0 -58.5 -0.699997 -90.4 -1.3c-3.90001 3.90001 -3.90001 17.6 0 21.5c45.5 1.90001 63.1 5.10001 63.1 59.1v211.9
-c0 22.1 -2.30002 37.7 -13 37.7c-12.4 0 -27 -3.89999 -56.6 -16.2c-5.8 4 -8.8 10.1 -9.8 17.5c57.2 26.6 91.4 42.7 127.4 65c2.29999 0 4 -0.100037 4 -3.20001c-1.10001 -8.5 -2 -48.2 -2 -87.2v-225.5zM378.2 -15.2c-182.2 0 -329 148.5 -329 330.9
-c0 182.4 146.8 329.5 329 329.5s330.5 -147.1 330.5 -329.5c0 -182.4 -148.3 -330.9 -330.5 -330.9zM378.2 608.5c-162.4 0 -292.3 -131.6 -292.3 -292.8c0 -162.6 129.9 -294.1 292.3 -294.1c161 0 293.7 131.5 293.7 294.1c0 162.6 -131.3 292.8 -293.7 292.8z
-M498.2 456.6c-44.8 -61.2 -90.8 -133.9 -124.2 -187.3h124.2v187.3zM601.5 269.3c7.20001 0 9.70001 -3.79999 9.70001 -10.3c0 -7.8 -9.70001 -20.2 -18.8 -20.2h-44.9v-59.8c0 -30.5 13.7 -29.2 45.5 -31.8c3.90002 -3.89999 3.90002 -17.6 0 -21.5
-c-20.8 0.600006 -45.2 1.3 -70.8 1.3c-29.9 0 -55.9 -0.699997 -76.7 -1.3c-3.89999 3.90001 -3.89999 17.6 0 21.5c28 1.90001 52.7 1.90001 52.7 31.8v59.8h-132.7c-19.5 0 -23.3 17.5 -25.3 27.3c59.5 93 135.2 199.8 176.1 250.2
-c2.40002 2.90002 6 7.20001 10.5 7.20001h20.7l1.29999 -1.29999c-1.09998 -5.10004 -1.29999 -30.5 -1.29999 -63v-189.9h54z" />
-    <glyph glyph-name="uni246E" unicode="&#x246e;" horiz-adv-x="759" 
-d="M312.2 206.3c0 -54 11.1 -57.2 56.6 -59.1c3.90002 -3.89999 3.90002 -17.6 0 -21.5c-32.5 0.600006 -48.4 1.3 -79.3 1.3c-35.2 0 -58.5 -0.699997 -90.4 -1.3c-3.90001 3.90001 -3.90001 17.6 0 21.5c45.5 1.90001 63.1 5.10001 63.1 59.1v211.9
-c0 22.1 -2.30002 37.7 -13 37.7c-12.4 0 -27 -3.89999 -56.6 -16.2c-5.8 4 -8.8 10.1 -9.8 17.5c57.2 26.6 91.4 42.7 127.4 65c2.29999 0 4 -0.100037 4 -3.20001c-1.10001 -8.5 -2 -48.2 -2 -87.2v-225.5zM378.2 -15.2c-182.2 0 -329 148.5 -329 330.9
-c0 182.4 146.8 329.5 329 329.5s330.5 -147.1 330.5 -329.5c0 -182.4 -148.3 -330.9 -330.5 -330.9zM378.2 608.5c-162.4 0 -292.3 -131.6 -292.3 -292.8c0 -162.6 129.9 -294.1 292.3 -294.1c161 0 293.7 131.5 293.7 294.1c0 78.5 -30.6 149.4 -80.5 201.8l-8.90002 -38.2
-c-26.7 -2.59998 -48.8 -3.79999 -68.3 -3.79999c-31.2 0 -52 3.20001 -76 5.79999l-13 -108.5c11.7 4.5 35.7 10.4 63.6 10.4c72.8 0 116.4 -56.7 116.4 -119.7c0 -81.9 -57.2 -141.7 -137.8 -141.7c-37.1 0 -92.3 22.2 -92.3 48.8c0 13 12.4 24.1 24.7 24.1
-c13.7 0 24.7 -9.8 33.2 -20.9c9.79999 -13 18.1 -29.2 42.8 -29.2c39 0 71.5 45.4 71.5 107.2c0 70.9 -33.1 98.9 -75.3 98.9c-23.4 0 -48.2 -2.70001 -82.6 -15.7l22.1 187.2c22.8 -2 46.2 -3.20001 70.2 -3.20001c32.9 0 66.5 2.90002 101.7 6.59998
-c-52.9 51.3 -125.3 82.9 -205.2 82.9z" />
-    <glyph glyph-name="uni246F" unicode="&#x246f;" horiz-adv-x="759" 
-d="M312.2 206.3c0 -54 11.1 -57.2 56.6 -59.1c3.90002 -3.89999 3.90002 -17.6 0 -21.5c-32.5 0.600006 -48.4 1.3 -79.3 1.3c-35.2 0 -58.5 -0.699997 -90.4 -1.3c-3.90001 3.90001 -3.90001 17.6 0 21.5c45.5 1.90001 63.1 5.10001 63.1 59.1v211.9
-c0 22.1 -2.30002 37.7 -13 37.7c-12.4 0 -27 -3.89999 -56.6 -16.2c-5.8 4 -8.8 10.1 -9.8 17.5c57.2 26.6 91.4 42.7 127.4 65c2.29999 0 4 -0.100037 4 -3.20001c-1.10001 -8.5 -2 -48.2 -2 -87.2v-225.5zM378.2 -15.2c-182.2 0 -329 148.5 -329 330.9
-c0 182.4 146.8 329.5 329 329.5s330.5 -147.1 330.5 -329.5c0 -182.4 -148.3 -330.9 -330.5 -330.9zM378.2 608.5c-162.4 0 -292.3 -131.6 -292.3 -292.8c0 -162.6 129.9 -294.1 292.3 -294.1c161 0 293.7 131.5 293.7 294.1c0 162.6 -131.3 292.8 -293.7 292.8z
-M410.9 324.6c-3.79999 -18.7 -5.39999 -36.2 -5.39999 -50.8c0 -111.1 37 -133.2 78 -133.2c31.9 0 59.2 32.5 59.2 104c0 32.5 -14.3 94.9 -78 94.9c-11.3 0 -32.4 -0.899994 -53.8 -14.9zM416.8 348.2c19.4 8.89999 44.6 14 61.5 14c88.4 0 118.4 -50 118.4 -105.9
-c0 -55.9 -35.2 -138.5 -120.3 -138.5c-50.1 0 -124.8 26 -124.8 158c0 51.4 20.1 110.5 60.4 157.3c36.4 42.2 76.7 69.6 142.4 89.1c5.19995 -3.20001 7.79999 -9.20001 7.79999 -17c-86.5 -32.4 -127.8 -97.9 -145.4 -157z" />
-    <glyph glyph-name="uni2470" unicode="&#x2470;" horiz-adv-x="759" 
-d="M300.2 206.3c0 -54 11.1 -57.2 56.6 -59.1c3.90002 -3.89999 3.90002 -17.6 0 -21.5c-32.5 0.600006 -48.4 1.3 -79.3 1.3c-35.2 0 -58.5 -0.699997 -90.4 -1.3c-3.90001 3.90001 -3.90001 17.6 0 21.5c45.5 1.90001 63.1 5.10001 63.1 59.1v211.9
-c0 22.1 -2.3 37.7 -13 37.7c-12.4 0 -27 -3.89999 -56.6 -16.2c-5.8 4 -8.8 10.1 -9.8 17.5c57.2 26.6 91.4 42.7 127.4 65c2.29999 0 4 -0.100037 4 -3.20001c-1.10001 -8.5 -2 -48.2 -2 -87.2v-225.5zM378.2 -15.2c-182.2 0 -329 148.5 -329 330.9
-c0 182.4 146.8 329.5 329 329.5s330.5 -147.1 330.5 -329.5c0 -182.4 -148.3 -330.9 -330.5 -330.9zM378.2 608.5c-162.4 0 -292.3 -131.6 -292.3 -292.8c0 -162.6 129.9 -294.1 292.3 -294.1c161 0 293.7 131.5 293.7 294.1c0 72.8 -26.3 139.1 -69.9 190.1
-c-69.1 -169.4 -103.9 -274.6 -140 -382.3l-44.2 -2l-5.19998 4.6c44.2 98.8 95.5 225.6 146.2 351.7h-116.3c-20.8 0 -42.2 -4.59998 -56.5 -56.6c-7.20001 -0.900024 -13.7 0 -20.8 2c5.19998 33.8 12.3 72.8 13 104c0 1.89996 0.599976 1.89996 2.59998 1.89996
-c11.7 -2.59998 10.3 -9.09998 32.4 -9.09998h134c16.7 0 28.5 1.70001 37.9 3.90002c-53.1 52.4 -126.1 84.6 -206.9 84.6z" />
-    <glyph glyph-name="uni2471" unicode="&#x2471;" horiz-adv-x="759" 
-d="M495 487c-37 0 -61 -29 -61 -58c0 -19 10 -41 49 -66l18 -12c17 12 56 42 56 75c0 29 -21 61 -62 61zM594 425c0 -39 -44 -70 -71 -88l38 -26c31 -21 47 -49 47 -84c0 -48 -38 -108 -118 -108c-65 0 -110 34 -110 97c0 25 10 53 35 75c16 14 29 24 44 36l-10 6
-c-37 25 -56 50 -56 84c0 48 43 85 106 85c60 0 95 -33 95 -77zM491 137c28 0 76 15 76 77c0 29 -16 58 -55 82l-30 17c-52 -35 -65 -78 -65 -97c0 -54 46 -79 74 -79zM312.2 206.3c0 -54 11.1 -57.2 56.6 -59.1c3.90002 -3.89999 3.90002 -17.6 0 -21.5
-c-32.5 0.600006 -48.4 1.3 -79.3 1.3c-35.2 0 -58.5 -0.699997 -90.4 -1.3c-3.90001 3.90001 -3.90001 17.6 0 21.5c45.5 1.90001 63.1 5.10001 63.1 59.1v211.9c0 22.1 -2.30002 37.7 -13 37.7c-12.4 0 -27 -3.89999 -56.6 -16.2c-5.8 4 -8.8 10.1 -9.8 17.5
-c57.2 26.6 91.4 42.7 127.4 65c2.29999 0 4 -0.100037 4 -3.20001c-1.10001 -8.5 -2 -48.2 -2 -87.2v-225.5zM378.2 -15.2c-182.2 0 -329 148.5 -329 330.9c0 182.4 146.8 329.5 329 329.5s330.5 -147.1 330.5 -329.5c0 -182.4 -148.3 -330.9 -330.5 -330.9zM378.2 608.5
-c-162.4 0 -292.3 -131.6 -292.3 -292.8c0 -162.6 129.9 -294.1 292.3 -294.1c161 0 293.7 131.5 293.7 294.1c0 162.6 -131.3 292.8 -293.7 292.8z" />
-    <glyph glyph-name="uni2472" unicode="&#x2472;" horiz-adv-x="759" 
-d="M378.2 -15.2c-182.2 0 -329 148.5 -329 330.9c0 182.4 146.8 329.5 329 329.5s330.5 -147.1 330.5 -329.5c0 -182.4 -148.3 -330.9 -330.5 -330.9zM378.2 608.5c-162.4 0 -292.3 -131.6 -292.3 -292.8c0 -162.6 129.9 -294.1 292.3 -294.1c161 0 293.7 131.5 293.7 294.1
-c0 162.6 -131.3 292.8 -293.7 292.8zM312.2 206.3c0 -54 11.1 -57.2 56.6 -59.1c3.90002 -3.89999 3.90002 -17.6 0 -21.5c-32.5 0.600006 -48.4 1.3 -79.3 1.3c-35.2 0 -58.5 -0.699997 -90.4 -1.3c-3.90001 3.90001 -3.90001 17.6 0 21.5
-c45.5 1.90001 63.1 5.10001 63.1 59.1v211.9c0 22.1 -2.30002 37.7 -13 37.7c-12.4 0 -27 -3.89999 -56.6 -16.2c-5.8 4 -8.8 10.1 -9.8 17.5c57.2 26.6 91.4 42.7 127.4 65c2.29999 0 4 -0.100037 4 -3.20001c-1.10001 -8.5 -2 -48.2 -2 -87.2v-225.5zM576.3 318.8
-c3.79999 18.7 5.29999 36.1 5.29999 50.7c0 111.2 -37 133.3 -78 133.3c-31.8 0 -59.1 -32.5 -59.1 -104c0 -32.5 14.3 -95 78 -95c11.3 0 32.4 1 53.8 15zM570.4 295.2c-19.4 -8.90002 -44.7 -14.1 -61.6 -14.1c-88.4 0 -118.3 50 -118.3 105.9s35.1 138.5 120.3 138.5
-c50 0 124.7 -26 124.7 -158c0 -51.3 -20.1 -110.5 -60.4 -157.3c-36.4 -42.2 -76.6 -69.5 -142.3 -89c-5.19998 3.2 -7.79999 9.10001 -7.79999 16.9c86.5 32.4 127.8 98 145.4 157.1z" />
-    <glyph glyph-name="uni2473" unicode="&#x2473;" horiz-adv-x="759" 
-d="M378.2 -15.2c-182.2 0 -329 148.5 -329 330.9c0 182.4 146.8 329.5 329 329.5s330.5 -147.1 330.5 -329.5c0 -182.4 -148.3 -330.9 -330.5 -330.9zM378.2 608.5c-162.4 0 -292.3 -131.6 -292.3 -292.8c0 -69.7 23.9 -133.7 64 -184.1c1.10001 35.8 13.6 67 74 128.6
-l48.1 47.5c38.3 39 53.3 72.8 53.3 114.4c0 62.4 -33.1 78.7 -56.5 78.7c-47.5 0 -64.4 -23.5 -64.4 -39.7c0 -5.20001 3.90001 -11.1 5.20001 -15.6c1.29999 -4.5 2.59999 -8.5 2.59999 -13.7c0 -14.4 -19.5 -26 -30.5 -26c-13.7 0 -26 11.7 -26 25.4
-c0 39 44.8 92.3 117 92.3c52.6 0 109.8 -28.6 109.8 -98.8c0 -49.4 -28 -77.9 -65 -113.7l-65.7 -63.1c-3.2 -3.2 -48 -47.5 -48 -78.7h115.7c23.4 0 34.5 16.3 45.5 62.5c6.5 1.3 14.9 -0.0999908 18.8 -3.3c-0.599976 -19.5 -7.09998 -68.2 -15.6 -102.7
-c0 0 -29.9 1.3 -50.7 1.3h-113.7c-16 0 -39.4 -0.699997 -49.3 -1.1c53.5 -63.8 133.6 -104.3 223.7 -104.3c161 0 293.7 131.5 293.7 294.1c0 162.6 -131.3 292.8 -293.7 292.8zM509.8 506.8c-29.2 0 -68.9 -29.9 -68.9 -189.8c0 -56.5 6.5 -167.8 66.9 -167.8
-c11.7 0 43.6 5.90001 57.9 59.2c9.09998 33.1 11.1 74.1 11.1 133.9c0 87.1 -17.6 136.5 -37.8 153.4c-7.79999 7.09998 -18.2 11.1 -29.2 11.1zM507.2 126.5c-25.1 0 -47.4 8.89999 -65.9 27.3c-35.5 35.4 -57 101 -57 170.3c0 128.7 61.2 205.4 125.5 205.4
-c35.1 0 62.3 -19.8 79.3 -42.3c28.6 -37.7 44.2 -92.9 44.2 -157.2c0 -152.8 -76.1 -203.5 -126.1 -203.5z" />
-    <glyph glyph-name="uni24B6" unicode="&#x24b6;" horiz-adv-x="759" 
-d="M287.4 280.2c-11 -28.1 -32.4 -107.2 -32.4 -107.2c-3 -13.2 2.79999 -16.8 26.8 -20.8l9.60001 -1.59999c3.20001 -0.800003 5.60001 -2.40001 5.60001 -4.8v-16.8l-1.60001 -1.6s-39.2 1.6 -64 1.6c-22.4 0 -67.2 -1.6 -67.2 -1.6l-1.59999 1.6v15.2
-c0 2.40001 4 6 7.2 6.40001c21.6 2.39999 34.4 8.79999 43.2 31.2c16 40.8 92.8 249.6 92.8 275.2c0 15.2 -7.19998 18.4 -33.6 19.2c-4.80002 0 -7.20001 1.59998 -7.20001 4.79999v16l2.39999 1.60001c25.6 -0.800018 50.4 -1.60001 87.2 -1.60001
-c36 0 95.2 0.799988 137.6 1.60001l0.799988 -1.60001v-16c0 -2.39999 -1.60001 -4.60001 -4 -4.79999c-45 -3.5 -43.2 -9.60001 -40 -24.8l54.4 -259.2c7.20001 -34.4 20 -39.2 48 -41.6c3.19995 -0.300003 5.59998 -2.40001 5.59998 -4.8v-16.8l-1.59998 -1.6
-s-53.6 1.6 -77.6 1.6c-22.4 0 -73.6 -1.6 -73.6 -1.6l-1.60001 1.6v16.8c0 2.39999 1.60001 4 4.79999 4.8l5.60001 0.799988c33.3 4.8 35.4 10.5 31.2 36l-16 90.4c-1.60001 8 -9.60001 9.60001 -31.2 9.60001h-72c-21.6 0 -33.6 0 -37.6 -7.19998zM360.2 472.2
-c-14.4 0 -19.2 -9.60001 -24.8 -26.4c-10.4 -32 -37.6 -124 -37.6 -124c0 -7.19998 6.40002 -8.79999 28.8 -8.79999h66.4c14.4 0 26.4 5.60001 23.2 22.4l-19.2 102.4c-6 27.5 -19.2 34.4 -36.8 34.4zM378.2 -15.2c-182.2 0 -329 148.5 -329 330.9
-c0 182.4 146.8 329.5 329 329.5s330.5 -147.1 330.5 -329.5c0 -182.4 -148.3 -330.9 -330.5 -330.9zM378.2 608.5c-162.4 0 -292.3 -131.6 -292.3 -292.8c0 -162.6 129.9 -294.1 292.3 -294.1c161 0 293.7 131.5 293.7 294.1c0 162.6 -131.3 292.8 -293.7 292.8z" />
-    <glyph glyph-name="uni24B7" unicode="&#x24b7;" horiz-adv-x="759" 
-d="M348.4 435.4v-98.4h62.4c52 0 75.2 20.8 75.2 68.8c0 53.6 -41.6 62.4 -76.8 62.4c-55.2 0 -60.8 -8 -60.8 -32.8zM348.4 310.6v-120c0 -29.6 7.10001 -40.8 59.2 -40.8c81.6 0 94.4 45.6 94.4 80.8c0 43.3 -18.4 80 -91.2 80h-62.4zM317.2 125
-c-22.2 0 -56 -0.800003 -89.6 -1.6c-4.8 4.8 -4.8 21.6 0 26.4c48.8 4 57.6 6.39999 57.6 72.8v172.8c0 66.4 -8.80002 69.6 -57.6 72.8c-4.8 4.79999 -4.8 21.6 0 26.4c29.6 -0.800018 65.6 -1.60001 88.8 -1.60001c23.5 0 51.2 1.60001 93.6 1.60001
-c116 0 136.8 -43.2 136.8 -88c0 -31.2 -25.6 -67.2 -57.6 -81.6c56 -12.8 82.4 -48 82.4 -100c0 -57.9 -37.6 -101.6 -144 -101.6c-44.8 0 -86.4 1.6 -110.4 1.6zM378.2 -15.2c-182.2 0 -329 148.5 -329 330.9c0 182.4 146.8 329.5 329 329.5s330.5 -147.1 330.5 -329.5
-c0 -182.4 -148.3 -330.9 -330.5 -330.9zM378.2 608.5c-162.4 0 -292.3 -131.6 -292.3 -292.8c0 -162.6 129.9 -294.1 292.3 -294.1c161 0 293.7 131.5 293.7 294.1c0 162.6 -131.3 292.8 -293.7 292.8z" />
-    <glyph glyph-name="uni24B8" unicode="&#x24b8;" horiz-adv-x="759" 
-d="M381.8 114c-59.2 0 -104.1 16.2 -136 45.6c-39.3 36.2 -55.2 90.8 -55.2 141.6c0 116.8 81.6 196.8 187.2 196.8c64 0 100 -12.8 130.4 -12.8c7.79999 -36.1 9.39996 -69.5 9.59998 -102.4c-8 -5.09998 -16 -4.79999 -24 -2.39999c-9.59998 56 -47.2 91.2 -111.2 91.2
-c-60 0 -122.4 -28 -122.4 -162.4c0 -79.2 46.4 -164.8 125.6 -164.8c53.6 0 81.6 16 118.4 59.2c6.39999 -1.90001 14.4 -10.4 16 -16c-37.6 -50.4 -76 -73.6 -138.4 -73.6zM378.2 -15.2c-182.2 0 -329 148.5 -329 330.9c0 182.4 146.8 329.5 329 329.5
-s330.5 -147.1 330.5 -329.5c0 -182.4 -148.3 -330.9 -330.5 -330.9zM378.2 608.5c-162.4 0 -292.3 -131.6 -292.3 -292.8c0 -162.6 129.9 -294.1 292.3 -294.1c161 0 293.7 131.5 293.7 294.1c0 162.6 -131.3 292.8 -293.7 292.8z" />
-    <glyph glyph-name="uni24B9" unicode="&#x24b9;" horiz-adv-x="759" 
-d="M321.4 182.8c0 -22.4 5.60001 -36 66.4 -36c88 0 137.6 29.6 137.6 141.6c0 83.2 -18.4 176.8 -152.8 176.8c-31.2 0 -51.2 -4.80002 -51.2 -24.8v-257.6zM289.4 490c23.5 0 52.3 1.60001 106.4 1.60001c133.6 0 199.2 -83.2 199.2 -189.6
-c0 -140 -99.2 -181.6 -188 -181.6c-64 0 -95.7 1.6 -116.8 1.6c-22.9 0 -59.2 -0.800003 -89.6 -1.6c-4.8 4.8 -4.8 21.6 0 26.4c48.8 4 57.6 6.39999 57.6 72.8v172.8c0 66.4 -8.80002 69.6 -57.6 72.8c-4.8 4.79999 -4.8 21.6 0 26.4
-c31.2 -0.800018 66.9 -1.60001 88.8 -1.60001zM378.2 -15.2c-182.2 0 -329 148.5 -329 330.9c0 182.4 146.8 329.5 329 329.5s330.5 -147.1 330.5 -329.5c0 -182.4 -148.3 -330.9 -330.5 -330.9zM378.2 608.5c-162.4 0 -292.3 -131.6 -292.3 -292.8
-c0 -162.6 129.9 -294.1 292.3 -294.1c161 0 293.7 131.5 293.7 294.1c0 162.6 -131.3 292.8 -293.7 292.8z" />
-    <glyph glyph-name="uni24BA" unicode="&#x24ba;" horiz-adv-x="759" 
-d="M397.4 302h-45.6v-120c0 -26.6 7.80002 -35.2 41.6 -35.2h34.4c66.4 0 89.6 40 102.4 87.2c8.79999 2.39999 15.2 0.800003 22.4 -3.2c-5.59998 -33.6 -14.4 -77.6 -24 -110.4c0 0 -52.8 1.6 -84.8 1.6h-123.2c-25.6 0 -60.8 -0.800003 -89.6 -1.6
-c-4.8 4.8 -4.8 21.6 0 26.4c48.8 4 57.6 6.39999 57.6 72.8v172.8c0 66.4 -8.80002 69.6 -57.6 72.8c-4.8 4.79999 -4.8 21.6 0 26.4c28.8 -0.800018 65.8 -1.60001 88.8 -1.60001h165.6c13.4 0 21.8 0.799988 32.8 3.20001c1.59998 0 2.39996 -0.800018 2.39996 -2.40002
-c1.60004 -5.59998 11.2 -68 14.4 -95.2c-6.40002 -3.20001 -13.6 -4.80002 -21.6 -4c-14.4 45.6 -24.8 72 -90.4 72h-45.6c-15.2 0 -25.6 -8.80002 -25.6 -22.4v-113.6h45.6c51.8 0 53.6 8.79999 55.2 44.8c4 4 18.4 4 22.4 0c-0.799988 -20 -1.60001 -46 -1.60001 -56.8
-c0 -12.7 0.800018 -40 1.60001 -58.4c-4 -4.00002 -18.4 -4.00002 -22.4 0c-1.60001 29.6 -2.60001 44.8 -55.2 44.8zM378.2 -15.2c-182.2 0 -329 148.5 -329 330.9c0 182.4 146.8 329.5 329 329.5s330.5 -147.1 330.5 -329.5c0 -182.4 -148.3 -330.9 -330.5 -330.9z
-M378.2 608.5c-162.4 0 -292.3 -131.6 -292.3 -292.8c0 -162.6 129.9 -294.1 292.3 -294.1c161 0 293.7 131.5 293.7 294.1c0 162.6 -131.3 292.8 -293.7 292.8z" />
-    <glyph glyph-name="uni24BB" unicode="&#x24bb;" horiz-adv-x="759" 
-d="M288 219.6v172.8c0 66.4 -8.79999 69.6 -57.6 72.8c-4.79999 4.79999 -4.79999 21.6 0 26.4c32 -0.800018 64.8 -1.60001 88.8 -1.60001h165.6c16 0 21.6 1.60001 32.8 3.20001c1.60004 0 2.40002 -0.800018 2.40002 -2.40002c1.59998 -5.59998 11.2 -68 14.4 -95.2
-c-6.40002 -3.20001 -13.6 -4.80002 -21.6 -4c-14.4 45.6 -24.8 72 -74.4 72h-61.6c-15.2 0 -25.6 -8.80002 -25.6 -22.4v-125.6h45.6c52.8 0 53.6 8.79999 55.2 44.8c4 4 18.4 4 22.4 0c-0.799988 -16 -1.60001 -34.6 -1.60001 -56.8c0 -22.8 0.800018 -41.6 1.60001 -58.4
-c-4 -4 -18.4 -4 -22.4 0c-1.60001 27 -3.39999 44.8 -55.2 44.8h-45.6v-70.4c0 -65.6 8.79999 -69.6 57.6 -72.8c4.80002 -4.8 4.80002 -21.6 0 -26.4c-29.6 0.799995 -60.8 1.6 -88.8 1.6c-26.6 0 -59.2 -0.800003 -89.6 -1.6c-4.79999 4.8 -4.79999 21.6 0 26.4
-c48.8 4 57.6 6.39999 57.6 72.8zM378.2 -15.2c-182.2 0 -329 148.5 -329 330.9c0 182.4 146.8 329.5 329 329.5s330.5 -147.1 330.5 -329.5c0 -182.4 -148.3 -330.9 -330.5 -330.9zM378.2 608.5c-162.4 0 -292.3 -131.6 -292.3 -292.8c0 -162.6 129.9 -294.1 292.3 -294.1
-c161 0 293.7 131.5 293.7 294.1c0 162.6 -131.3 292.8 -293.7 292.8z" />
-    <glyph glyph-name="uni24BC" unicode="&#x24bc;" horiz-adv-x="759" 
-d="M536.6 195v-25.8c0 -5.59999 3.20001 -12.8 8.80005 -18.4c-53.2 -28.8 -112 -36.8 -166.4 -36.8c-114.4 0 -190.4 82.4 -190.4 184c0 126.4 91.2 200 205.6 200c44.8 0 104 -12.8 128 -12.8c7.5 -36.3 9.5 -69.6 10.4 -102.4c-8 -5.19998 -16 -4.89999 -24 -2.39999
-c-12 51.2 -45.6 91.2 -124.8 91.2c-76.8 0 -123.2 -66.4 -123.2 -163.2c0 -65.6 32.8 -168 132.8 -168c28 0 54.4 4 80 11.2v43.2c0 66.4 -4 69.6 -52.8 72.8c-4.80002 4.79999 -4.80002 21.6 0 26.4c23.2 -0.799988 59.7 -1.60001 84 -1.60001
-c24.5 0 47.2 0.800018 61.6 1.60001c4.79999 -4.79999 4.79999 -21.6 0 -26.4c-24.8 -4 -29.6 -6.39999 -29.6 -72.6zM378.2 -15.2c-182.2 0 -329 148.5 -329 330.9c0 182.4 146.8 329.5 329 329.5s330.5 -147.1 330.5 -329.5c0 -182.4 -148.3 -330.9 -330.5 -330.9z
-M378.2 608.5c-162.4 0 -292.3 -131.6 -292.3 -292.8c0 -162.6 129.9 -294.1 292.3 -294.1c161 0 293.7 131.5 293.7 294.1c0 162.6 -131.3 292.8 -293.7 292.8z" />
-    <glyph glyph-name="uni24BD" unicode="&#x24bd;" horiz-adv-x="759" 
-d="M543 397.4v-172.8c0 -66.4 8.79999 -69.6 57.6 -72.8c4.80005 -4.8 4.80005 -21.6 0 -26.4c-31.2 0.799995 -64.5 1.6 -88.8 1.6c-27.8 0 -60 -0.800003 -89.6 -1.6c-4.80002 4.8 -4.80002 21.6 0 26.4c48.8 4 57.6 6.39999 57.6 72.8v77.6h-184.8v-77.6
-c0 -66.4 8.79999 -69.6 57.6 -72.8c4.79999 -4.8 4.79999 -21.6 0 -26.4c-31.2 0.799995 -63.4 1.6 -88.8 1.6c-25.5 0 -57.6 -0.800003 -89.6 -1.6c-4.8 4.8 -4.8 21.6 0 26.4c48.8 4 57.6 6.39999 57.6 72.8v172.8c0 66.4 -8.8 69.6 -57.6 72.8
-c-4.8 4.79999 -4.8 21.6 0 26.4c32 -0.800018 65.1 -1.60001 88.8 -1.60001c25.4 0 59.2 0.799988 89.6 1.60001c4.79999 -4.80002 4.79999 -21.6 0 -26.4c-48.8 -4 -57.6 -6.40002 -57.6 -72.8v-68.8h184.8v68.8c0 66.4 -8.79999 69.6 -57.6 72.8
-c-4.80002 4.79999 -4.80002 21.6 0 26.4c31.2 -0.800018 66.4 -1.60001 88.8 -1.60001c26.4 0 61.6 0 89.6 1.60001c4.80005 -4.80002 4.80005 -21.6 0 -26.4c-48.8 -4 -57.6 -6.40002 -57.6 -72.8zM378.2 -15.2c-182.2 0 -329 148.5 -329 330.9
-c0 182.4 146.8 329.5 329 329.5s330.5 -147.1 330.5 -329.5c0 -182.4 -148.3 -330.9 -330.5 -330.9zM378.2 608.5c-162.4 0 -292.3 -131.6 -292.3 -292.8c0 -162.6 129.9 -294.1 292.3 -294.1c161 0 293.7 131.5 293.7 294.1c0 162.6 -131.3 292.8 -293.7 292.8z" />
-    <glyph glyph-name="uni24BE" unicode="&#x24be;" horiz-adv-x="759" 
-d="M415 392.4v-172.8c0 -66.4 8.79999 -69.6 57.6 -72.8c4.79999 -4.8 4.79999 -21.6 0 -26.4c-28 0.799995 -62.9 1.6 -88.8 1.6c-26.9 0 -60 -0.800003 -89.6 -1.6c-4.80002 4.8 -4.80002 21.6 0 26.4c48.8 4 57.6 6.39999 57.6 72.8v172.8
-c0 66.4 -8.79999 69.6 -57.6 72.8c-4.80002 4.79999 -4.80002 21.6 0 26.4c31.2 -0.800018 64.5 -1.60001 88.8 -1.60001c24.5 0 59.2 0.799988 89.6 1.60001c4.79999 -4.80002 4.79999 -21.6 0 -26.4c-48.8 -4 -57.6 -6.40002 -57.6 -72.8zM378.2 -15.2
-c-182.2 0 -329 148.5 -329 330.9c0 182.4 146.8 329.5 329 329.5s330.5 -147.1 330.5 -329.5c0 -182.4 -148.3 -330.9 -330.5 -330.9zM378.2 608.5c-162.4 0 -292.3 -131.6 -292.3 -292.8c0 -162.6 129.9 -294.1 292.3 -294.1c161 0 293.7 131.5 293.7 294.1
-c0 162.6 -131.3 292.8 -293.7 292.8z" />
-    <glyph glyph-name="uni24BF" unicode="&#x24bf;" horiz-adv-x="759" 
-d="M325 95c26 0 47 29 47 150v219c0 18 -10 25 -35 25h-22c-3 0 -5 1 -5 4v17l1 2s64 -2 88 -2c23 0 80 2 80 2l2 -2v-17c0 -3 -2 -4 -5 -4h-10c-26 0 -34 -9 -34 -25v-207c0 -79 -17 -127 -46 -155c-17 -17 -40 -29 -62 -29c-38 0 -72 12 -72 40c0 19 10 30 24 30
-c19 0 29 -20 30 -33c1 -7 2 -15 19 -15zM378.2 -15.2c-182.2 0 -329 148.5 -329 330.9c0 182.4 146.8 329.5 329 329.5s330.5 -147.1 330.5 -329.5c0 -182.4 -148.3 -330.9 -330.5 -330.9zM378.2 608.5c-162.4 0 -292.3 -131.6 -292.3 -292.8
-c0 -162.6 129.9 -294.1 292.3 -294.1c161 0 293.7 131.5 293.7 294.1c0 162.6 -131.3 292.8 -293.7 292.8z" />
-    <glyph glyph-name="uni24C0" unicode="&#x24c0;" horiz-adv-x="759" 
-d="M248.6 392.4c0 66.4 -8.8 68.8 -57.6 72.8c-4.8 4.79999 -4.8 21.6 0 26.4c31.2 -0.800018 66.6 -1.60001 89.6 -1.60001c25.1 0 51.2 0.799988 76.8 1.60001c4.80002 -4.80002 4.80002 -21.6 0 -26.4c-38.4 -4 -45.6 -6.40002 -45.6 -72.8v-71.2
-c26.4 0 49.9 12.6 84 51.2c61.6 69.6 69.6 90.4 29.6 92.8c-4.79999 4.79999 -4.79999 21.6 0 26.4c23.5 -0.800018 49.6 -1.60001 72.8 -1.60001c20.8 0 46.9 0.799988 71.2 1.60001c4.79999 -4.80002 4.79999 -21.6 0 -26.4c-32 -1.60001 -61.4 -5.70001 -85.6 -33.6
-l-68.8 -79.2c-13.6 -14.4 -18.4 -23.2 -18.4 -29.6c0 -4.79999 3.19998 -8.79999 7.19998 -13.6l118.4 -139.2c10.4 -12.2 29.6 -20.8 51.2 -23.2c4.79999 -4.8 4.79999 -21.6 0 -26.4c0 0 -39.2 1.6 -61.6 1.6c-20.8 0 -40.8 -0.800003 -49.6 -1.6v11.2
-c0 10.4 -0.800018 19.2 -12 32l-88.8 110.4c-12 16 -32 20 -49.6 20v-74.4c0 -66.4 7.20001 -68.8 45.6 -72.8c4.80002 -4.8 4.80002 -21.6 0 -26.4c-26.4 0.799995 -53.9 1.6 -76.8 1.6c-23.5 0 -59.2 -0.800003 -89.6 -1.6c-4.8 4.8 -4.8 21.6 0 26.4
-c48.8 4 57.6 6.39999 57.6 72.8v172.8zM378.2 -15.2c-182.2 0 -329 148.5 -329 330.9c0 182.4 146.8 329.5 329 329.5s330.5 -147.1 330.5 -329.5c0 -182.4 -148.3 -330.9 -330.5 -330.9zM378.2 608.5c-162.4 0 -292.3 -131.6 -292.3 -292.8
-c0 -162.6 129.9 -294.1 292.3 -294.1c161 0 293.7 131.5 293.7 294.1c0 162.6 -131.3 292.8 -293.7 292.8z" />
-    <glyph glyph-name="uni24C1" unicode="&#x24c1;" horiz-adv-x="759" 
-d="M506.2 122h-179.2s-52.8 -0.800003 -92 -1.6c-4.8 4.8 -4.8 21.6 0 26.4c56 2.39999 57.6 6.39999 57.6 72.8v172.8c0 66.4 -8.80002 69.6 -57.6 72.8c-4.8 4.79999 -4.8 21.6 0 26.4c29.6 -0.800018 63.8 -1.60001 88.8 -1.60001c27.5 0 60 0.799988 89.6 1.60001
-c4.80002 -4.80002 4.80002 -21.6 0 -26.4c-48.8 -4 -57.6 -6.40002 -57.6 -72.8v-215.2c0 -15.2 11.2 -28 29.6 -28h36c50.4 0 73.6 39.2 86.4 86.4c8.79999 2.39999 15.2 0.799988 22.4 -3.20001c-5.60004 -33.6 -24 -110.4 -24 -110.4zM378.2 -15.2
-c-182.2 0 -329 148.5 -329 330.9c0 182.4 146.8 329.5 329 329.5s330.5 -147.1 330.5 -329.5c0 -182.4 -148.3 -330.9 -330.5 -330.9zM378.2 608.5c-162.4 0 -292.3 -131.6 -292.3 -292.8c0 -162.6 129.9 -294.1 292.3 -294.1c161 0 293.7 131.5 293.7 294.1
-c0 162.6 -131.3 292.8 -293.7 292.8z" />
-    <glyph glyph-name="uni24C2" unicode="&#x24c2;" horiz-adv-x="759" 
-d="M490 428l-117 -303c-2 -5 -5 -6 -9 -6s-8 2 -10 6l-125 297l3 -245c0 -30 6 -32 38 -32c2 0 6 -2 6 -5v-17l-1 -2s-38 2 -62 2c-19.1 0 -47.4 -1.5 -54.4 -1.9c53.4 -61.1 131.8 -99.5 219.6 -99.5c87.1 0 165.9 38.4 219.9 99.5c-8.79999 0.400002 -46 1.9 -67.1 1.9
-c-23 0 -77 -2 -77 -2l-1 2v17c0 3 2 5 5 5h17c17 0 21 6 21 25c0 0 -6 254 -6 258zM378.2 -15.2c-182.2 0 -329 148.5 -329 330.9c0 182.4 146.8 329.5 329 329.5s330.5 -147.1 330.5 -329.5c0 -182.4 -148.3 -330.9 -330.5 -330.9zM378.2 608.5
-c-162.4 0 -292.3 -131.6 -292.3 -292.8c0 -73.2 26.3 -140.1 70.1 -191.5v15.8c0 3 3 5 6 5c31 0 43 6 43 36v269c0 16 -11 19 -42 19c-4 0 -6 2 -6 4v17l2 2l104 -2l117 -285l109 285l100 2l2 -2v-14c0 -5 -2 -7 -7 -7c-39 0 -40 -5 -40 -24l7 -267c1 -32 16 -33 44 -33
-c3 0 7 -2 7 -5v-14.4c43.5 51.3 69.9 117.6 69.9 190.1c0 162.6 -131.3 292.8 -293.7 292.8z" />
-    <glyph glyph-name="uni24C3" unicode="&#x24c3;" horiz-adv-x="759" 
-d="M273 219.6c0 -66.4 8.79999 -68.8 57.6 -72.8c4.79999 -4.8 4.79999 -21.6 0 -26.4c-24 0.799995 -52.8 1.6 -76.8 1.6c-24 0 -52 -0.800003 -76 -1.6c-4.8 4.8 -4.8 21.6 0 26.4c48.8 3.2 57.6 6.39999 57.6 72.8v219.2c-8 14.4 -16.8 24 -47.2 26.4
-c-2.39999 0 -7.2 1.59998 -7.2 4.79999v19.2l1.60001 2.39999l113.6 -1.60001l183.2 -248.8c24.8 -33.6 27.2 -20 27.2 1.60001v149.6c0 66.4 -8.80002 69.6 -57.6 72.8c-4.79999 4.79999 -4.79999 21.6 0 26.4c24 -0.800018 52 -1.60001 76 -1.60001
-s52.8 0.799988 76.8 1.60001c4.79999 -4.80002 4.79999 -21.6 0 -26.4c-48.8 -4 -57.6 -6.40002 -57.6 -72.8v-258.4c0 -16 -8 -21.6 -17.6 -21.6c-12 0 -24.8 4.8 -36.8 17.6l-188 250.4c-18.7 23 -28.8 30.6 -28.8 -8.79999v-152zM378.2 -15.2
-c-182.2 0 -329 148.5 -329 330.9c0 182.4 146.8 329.5 329 329.5s330.5 -147.1 330.5 -329.5c0 -182.4 -148.3 -330.9 -330.5 -330.9zM378.2 608.5c-162.4 0 -292.3 -131.6 -292.3 -292.8c0 -162.6 129.9 -294.1 292.3 -294.1c161 0 293.7 131.5 293.7 294.1
-c0 162.6 -131.3 292.8 -293.7 292.8z" />
-    <glyph glyph-name="uni24C4" unicode="&#x24c4;" horiz-adv-x="759" 
-d="M378.2 476.6c-60 0 -120 -54.4 -120 -162.4c0 -98.4 55.2 -168.8 132.8 -168.8c71.2 0 120 60 120 158.4c0 107.2 -61.6 172.8 -132.8 172.8zM580.6 315c0 -104 -70.4 -196 -201.6 -196c-108 0 -190.4 76.8 -190.4 185.6c0 117.6 85.6 198.4 196.8 198.4
-c104 0 195.2 -74.4 195.2 -188zM378.2 -15.2c-182.2 0 -329 148.5 -329 330.9c0 182.4 146.8 329.5 329 329.5s330.5 -147.1 330.5 -329.5c0 -182.4 -148.3 -330.9 -330.5 -330.9zM378.2 608.5c-162.4 0 -292.3 -131.6 -292.3 -292.8c0 -162.6 129.9 -294.1 292.3 -294.1
-c161 0 293.7 131.5 293.7 294.1c0 162.6 -131.3 292.8 -293.7 292.8z" />
-    <glyph glyph-name="uni24C5" unicode="&#x24c5;" horiz-adv-x="759" 
-d="M360.2 429.2v-124.8c16 -6.39999 36 -8.79999 52 -8.79999c48 0 68.8 31.1 68.8 88.8c0 56.1 -25.6 80.8 -72.8 80.8c-38.4 0 -48 -10.4 -48 -36zM360.2 219.6c0 -66.4 8.79999 -69.6 57.6 -72.8c4.80002 -4.8 4.80002 -21.6 0 -26.4c-26.4 0.799995 -54.4 1.6 -88.8 1.6
-c-35.2 0 -63.2 -0.800003 -89.6 -1.6c-4.79999 4.8 -4.79999 21.6 0 26.4c48.8 4 57.6 6.39999 57.6 72.8v172.8c0 66.4 -8.79999 69.6 -57.6 72.8c-4.79999 4.79999 -4.79999 21.6 0 26.4c32 -0.800018 65.8 -1.60001 88.8 -1.60001c21.6 0 55.2 1.60001 84.8 1.60001
-c113.6 0 137.6 -56 137.6 -97.6c0 -48 -32.8 -124.8 -140 -124.8c-20 0 -36 3.19998 -50.4 9.59998v-59.2zM378.2 -15.2c-182.2 0 -329 148.5 -329 330.9c0 182.4 146.8 329.5 329 329.5s330.5 -147.1 330.5 -329.5c0 -182.4 -148.3 -330.9 -330.5 -330.9zM378.2 608.5
-c-162.4 0 -292.3 -131.6 -292.3 -292.8c0 -162.6 129.9 -294.1 292.3 -294.1c161 0 293.7 131.5 293.7 294.1c0 162.6 -131.3 292.8 -293.7 292.8z" />
-    <glyph glyph-name="uni24C6" unicode="&#x24c6;" horiz-adv-x="759" 
-d="M378.2 476.6c-60 0 -120 -54.4 -120 -162.4c0 -98.4 55.2 -168.8 132.8 -168.8c71.2 0 120 60 120 158.4c0 107.2 -61.6 172.8 -132.8 172.8zM378.2 -15.2c-182.2 0 -329 148.5 -329 330.9c0 182.4 146.8 329.5 329 329.5s330.5 -147.1 330.5 -329.5
-c0 -182.4 -148.3 -330.9 -330.5 -330.9zM378.2 608.5c-162.4 0 -292.3 -131.6 -292.3 -292.8c0 -162.6 129.9 -294.1 292.3 -294.1c161 0 293.7 131.5 293.7 294.1c0 162.6 -131.3 292.8 -293.7 292.8zM470.8 137.1c11.4 -19.9 20.9 -35.1 50.2 -35.1c9 0 18 2 25 6l9 -12
-c-19 -13 -35 -19 -54 -19c-36.9 0 -64 24 -80.6 45.3c-13 -2.2 -26.9 -3.3 -41.4 -3.3c-108 0 -190.4 76.8 -190.4 185.6c0 117.6 85.6 198.4 196.8 198.4c104 0 195.2 -74.4 195.2 -188c0 -76.3 -37.8 -146.1 -109.8 -177.9z" />
-    <glyph glyph-name="uni24C7" unicode="&#x24c7;" horiz-adv-x="759" 
-d="M466.6 399.8c0 48 -16.4 68 -72 68c-44.6 0 -52.8 -8 -52.8 -50.4v-104h35.2c70.8 0 89.6 23.2 89.6 86.4zM341.8 220.6c0 -66.4 7.60001 -70.4 45.6 -72.8c4.80002 -4.8 4.80002 -21.6 0 -26.4c-25.6 0.799995 -52.3 1.6 -76.8 1.6c-26.4 0 -59.2 -0.800003 -89.6 -1.6
-c-4.8 4.8 -4.8 21.6 0 26.4c48.8 4 57.6 6.39999 57.6 72.8v172.8c0 66.4 -8.80002 69.6 -57.6 72.8c-4.8 4.79999 -4.8 21.6 0 26.4c32 -0.800018 65.6 -1.60001 88.8 -1.60001c24.3 0 69.6 3.20001 89.6 3.20001c94.9 0 136.8 -28 136.8 -94.4
-c0 -55.2 -40.8 -88.3 -68 -97.6v-1.60001c10 -10.4 20 -24 29.6 -48.8l23.2 -60c16.1 -41.6 31.2 -46.4 60 -46.4c5.20001 -6.29999 6.79999 -14.1 4.79999 -22.4c-13.9 -3.5 -38.4 -5.6 -50.4 -5.6c-34.4 0 -61.7 18.8 -80 68.8l-17.6 48c-10.8 29.5 -22 56 -52 56h-44
-v-69.6zM378.2 -15.2c-182.2 0 -329 148.5 -329 330.9c0 182.4 146.8 329.5 329 329.5s330.5 -147.1 330.5 -329.5c0 -182.4 -148.3 -330.9 -330.5 -330.9zM378.2 608.5c-162.4 0 -292.3 -131.6 -292.3 -292.8c0 -162.6 129.9 -294.1 292.3 -294.1
-c161 0 293.7 131.5 293.7 294.1c0 162.6 -131.3 292.8 -293.7 292.8z" />
-    <glyph glyph-name="uni24C8" unicode="&#x24c8;" horiz-adv-x="759" 
-d="M497.2 483.4c4.39999 -30.4 4.79999 -61.6 3.19998 -84.8c-7.19998 -4 -14.4 -4 -21.6 -1.60001c-12 51.2 -47.2 77.6 -86.4 77.6c-41.6 0 -64 -22.4 -64 -56.8c0 -34 37.6 -53.6 77.6 -72.8c38.4 -18.5 111.2 -54.4 111.2 -116.8c0 -68.8 -45.6 -112.8 -116.8 -112.8
-c-61.6 0 -84.8 13.6 -100 13.6c-9.60001 0 -17.6 -1.6 -26.4 -4.8c-5.60001 25.6 -7 56.4 -8.79999 112.8c7.89999 3.10001 15.2 3.60001 25.6 1.60001c14.4 -71.2 50.4 -96.8 95.2 -96.8c47.2 0 68.8 22.4 68.8 68.8c0 45.6 -34.4 64 -86.4 88
-c-32.8 15.2 -95.2 46.4 -95.2 104.8c0 65.6 62.4 97.6 118.4 97.6c64.8 0 85.6 -17.6 105.6 -17.6zM378.2 -15.2c-182.2 0 -329 148.5 -329 330.9c0 182.4 146.8 329.5 329 329.5s330.5 -147.1 330.5 -329.5c0 -182.4 -148.3 -330.9 -330.5 -330.9zM378.2 608.5
-c-162.4 0 -292.3 -131.6 -292.3 -292.8c0 -162.6 129.9 -294.1 292.3 -294.1c161 0 293.7 131.5 293.7 294.1c0 162.6 -131.3 292.8 -293.7 292.8z" />
-    <glyph glyph-name="uni24C9" unicode="&#x24c9;" horiz-adv-x="759" 
-d="M418.2 219.6c0 -66.4 8.79999 -69.6 57.6 -72.8c4.80002 -4.8 4.80002 -21.6 0 -26.4c-29.6 0.799995 -61.2 1.6 -88.8 1.6s-60 -0.800003 -89.6 -1.6c-4.79999 4.8 -4.79999 21.6 0 26.4c48.8 4 57.6 6.39999 57.6 72.8v202.4c0 31.2 -9.60001 40.8 -34.4 40.8h-19.2
-c-52 0 -60.8 -16 -76.8 -73.6c-7.20001 -0.700012 -14.4 -0.200012 -21.6 2.39999c4.39999 37.6 5.2 68.8 5.60001 106.4c21.6 -3.70001 68 -8 146.4 -8h63.2c67.2 0 118.7 4.5 146.4 8c1.20001 -38 2.40002 -67.6 6.40002 -106.4
-c-6.09998 -3.70001 -13.4 -4.10001 -21.6 -2.39999c-16 57.6 -26.4 73.6 -76.8 73.6h-20.8c-25.6 0 -33.6 -12 -33.6 -41.6v-201.6zM378.2 -15.2c-182.2 0 -329 148.5 -329 330.9c0 182.4 146.8 329.5 329 329.5s330.5 -147.1 330.5 -329.5
-c0 -182.4 -148.3 -330.9 -330.5 -330.9zM378.2 608.5c-162.4 0 -292.3 -131.6 -292.3 -292.8c0 -162.6 129.9 -294.1 292.3 -294.1c161 0 293.7 131.5 293.7 294.1c0 162.6 -131.3 292.8 -293.7 292.8z" />
-    <glyph glyph-name="uni24CA" unicode="&#x24ca;" horiz-adv-x="759" 
-d="M506 388.4c0 66.4 -8.79999 69.6 -57.6 72.8c-4.79999 4.79999 -4.79999 21.6 0 26.4c24 -0.800018 52 -1.60001 76 -1.60001c24 0 52.8 0.799988 76.8 1.60001c4.79999 -4.80002 4.79999 -21.6 0 -26.4c-48.8 -4 -57.6 -6.40002 -57.6 -72.8v-91.2
-c0 -116.8 -32.8 -187.2 -156.8 -187.2c-87.6 0 -145.6 32.8 -145.6 152.8v125.6c0 66.4 -8.8 69.6 -57.6 72.8c-4.8 4.79999 -4.8 21.6 0 26.4c28.8 -0.800018 60.3 -1.60001 88.8 -1.60001c26 0 58.4 0.799988 89.6 1.60001c4.79999 -4.80002 4.79999 -21.6 0 -26.4
-c-48.8 -4 -57.6 -6.40002 -57.6 -72.8v-108.8c0 -74.4 16.8 -136.8 96 -136.8c105.6 0 105.6 75.2 105.6 144v101.6zM378.2 -15.2c-182.2 0 -329 148.5 -329 330.9c0 182.4 146.8 329.5 329 329.5s330.5 -147.1 330.5 -329.5c0 -182.4 -148.3 -330.9 -330.5 -330.9z
-M378.2 608.5c-162.4 0 -292.3 -131.6 -292.3 -292.8c0 -162.6 129.9 -294.1 292.3 -294.1c161 0 293.7 131.5 293.7 294.1c0 162.6 -131.3 292.8 -293.7 292.8z" />
-    <glyph glyph-name="uni24CB" unicode="&#x24cb;" horiz-adv-x="759" 
-d="M314.3 405.6l83.5 -199.5c1.80002 -2.40001 3.30002 -2.40001 5.5 0l86.8 199.5c16.3 40.8 12.3 50.4 -30.9 53.6c-4.80002 4.79999 -4.80002 21.6 0 26.4c21.6 -0.800018 44 -1.60001 73.6 -1.60001c20.8 0 40 0.799988 57.6 1.60001
-c4.79999 -4.80002 4.79999 -21.6 0 -26.4c-43.2 -3.20001 -52.1 -22.5 -68.5 -59.2l-117.1 -261.6c-11.3 -25.3 -14.4 -32 -20 -32c-9.09998 0 -13.1 8.6 -23.2 32l-113.3 262.4c-19.7 45.7 -25.1 54.7 -64.3 58.4c-4.8 4.79999 -4.8 21.6 0 26.4
-c20.8 -0.800018 44.5 -1.60001 70.4 -1.60001c33.1 0 60 0.799988 84.8 1.60001c4.79999 -4.80002 4.79999 -21.6 0 -26.4c-42.9 -4 -43.9 -8.30002 -24.9 -53.6zM378.2 -15.2c-182.2 0 -329 148.5 -329 330.9c0 182.4 146.8 329.5 329 329.5s330.5 -147.1 330.5 -329.5
-c0 -182.4 -148.3 -330.9 -330.5 -330.9zM378.2 608.5c-162.4 0 -292.3 -131.6 -292.3 -292.8c0 -162.6 129.9 -294.1 292.3 -294.1c161 0 293.7 131.5 293.7 294.1c0 162.6 -131.3 292.8 -293.7 292.8z" />
-    <glyph glyph-name="uni24CC" unicode="&#x24cc;" horiz-adv-x="759" 
-d="M417 405l71 -226l60 254c0 16 -1 27 -18 27h-17c-3 0 -5 2 -5 4v17l1 2s47 -1 73 -1c11.3 0 26.6 0.299988 37.9 0.600006c-53 76.3 -141.4 125.9 -241.7 125.9c-99.9 0 -187.5 -49.8 -240.1 -125.6c7.59999 -0.399994 34.4 -1.89999 53.9 -1.89999c32 0 85 2 85 2l1 -2
-v-16c0 -4 -4 -5 -6 -5h-8c-18 0 -19 -11 -19 -25l67 -254l46 185c12 47 18 65 36 65c15 0 17 -7 23 -26zM378.2 -15.2c-182.2 0 -329 148.5 -329 330.9c0 182.4 146.8 329.5 329 329.5s330.5 -147.1 330.5 -329.5c0 -182.4 -148.3 -330.9 -330.5 -330.9zM633.5 461.1
-c-2 -1.10001 -4.5 -1.10001 -4.5 -1.10001c-19 0 -40 -5 -46 -27l-73 -297c-3 -10 -13 -32 -34 -32c-24 0 -33 21 -36 32l-52 187c-2 10 -6 16 -9 16s-5 -5 -8 -14l-46 -189c-4 -15 -12 -32 -33 -32c-15 0 -24 22 -26 31l-81 294c-4 15 -17 31 -35 31h-7c-5 0 -8 2 -8 5
-v13.3c-31 -46.6 -49.1 -102.5 -49.1 -162.6c0 -162.6 129.9 -294.1 292.3 -294.1c161 0 293.7 131.5 293.7 294.1c0 53 -13.9 102.7 -38.4 145.4z" />
-    <glyph glyph-name="uni24CD" unicode="&#x24cd;" horiz-adv-x="759" 
-d="M321.2 429.2l52 -77.6c6.39999 -9.60001 9.69998 -10.5 16 -1.60001l55.2 78.4c20.8 28.8 10.4 33.6 -20.8 36.8c-4.80002 4.79999 -4.80002 21.6 0 26.4c22.4 -0.800018 47.2 -1.60001 72.8 -1.60001s45.6 0.799988 62.4 1.60001
-c4.79999 -4.80002 4.79999 -21.6 0 -26.4c-31.2 -2.40002 -51.2 -8.80002 -83.2 -48.8l-72 -92c-4 -4.79999 -3.70001 -7.69998 0 -12.8l79.2 -108.8c34.4 -48.8 44.8 -53.6 84 -56c4.79999 -4.8 4.79999 -21.6 0 -26.4c-20.8 0.799995 -44 1.6 -76.8 1.6
-c-31.2 0 -60 -0.800003 -85.6 -1.6c-4.79999 4.8 -4.79999 21.6 0 26.4c27.2 3.2 40.8 6.39999 11.2 47.2l-48.8 68.8c-5.29999 7.40002 -7.89999 8.70001 -15.2 -1.59998l-55.2 -78.4c-19.2 -28 -11.2 -32.8 20 -36c4.80002 -4.8 4.80002 -21.6 0 -26.4
-c-22.4 0.799995 -46.4 1.6 -72 1.6c-25.6 0 -44.8 -0.800003 -61.6 -1.6c-4.8 4.8 -4.8 21.6 0 26.4c30.4 1.59999 49.6 5.59999 83.2 49.6l72 92.8c3.20001 4 3.60001 6.59998 -0.799988 12.8l-76.8 108.8c-24 35.2 -46.4 52 -75.2 54.4c-4.8 4.79999 -4.8 21.6 0 26.4
-c22.4 -0.800018 48 -1.60001 73.6 -1.60001c25.6 0 64 0.799988 87.2 1.60001c4.79999 -4.80002 4.79999 -21.6 0 -26.4c-38.4 -4 -44.8 -7.20001 -24.8 -36zM378.2 -15.2c-182.2 0 -329 148.5 -329 330.9c0 182.4 146.8 329.5 329 329.5s330.5 -147.1 330.5 -329.5
-c0 -182.4 -148.3 -330.9 -330.5 -330.9zM378.2 608.5c-162.4 0 -292.3 -131.6 -292.3 -292.8c0 -162.6 129.9 -294.1 292.3 -294.1c161 0 293.7 131.5 293.7 294.1c0 162.6 -131.3 292.8 -293.7 292.8z" />
-    <glyph glyph-name="uni24CE" unicode="&#x24ce;" horiz-adv-x="759" 
-d="M457.3 411.6c21.8 38.4 21.9 48.8 -29.3 53.6c-4.79999 4.79999 -4.79999 21.6 0 26.4c20.8 -0.800018 43.2 -1.60001 72.8 -1.60001c20.8 0 39.2 0.799988 56.8 1.60001c4.80005 -4.80002 4.80005 -21.6 0 -26.4c-37.1 -4.30002 -51.1 -26.4 -70.1 -59.2l-64.3 -111.2
-c-6 -8.29999 -8.30002 -19.2 -8 -34l0.799988 -41.2c0 -66.4 8 -69.6 56.8 -72.8c4.80002 -4.8 4.80002 -21.6 0 -26.4c-28.8 0.799995 -59.7 1.6 -88.8 1.6c-28.8 0 -60 -0.800003 -89.6 -1.6c-4.79999 4.8 -4.79999 21.6 0 26.4c48.8 4 56.8 6.39999 56.8 72.8
-l0.799988 39.6c0.299988 14.4 -5.79999 25.4 -11.6 34.8l-68.9 112.8c-22.4 37.5 -32.7 54 -69.9 58.4c-4.8 4.79999 -4.8 21.6 0 26.4c23.2 -0.800018 47.2 -1.60001 70.4 -1.60001c29.6 0 57.6 0.799988 84.8 1.60001c4.80002 -4.80002 4.80002 -21.6 0 -26.4
-c-48 -2.80002 -40.1 -18.3 -19.3 -53.6l60.9 -100.8h1.60001zM378.2 -15.2c-182.2 0 -329 148.5 -329 330.9c0 182.4 146.8 329.5 329 329.5s330.5 -147.1 330.5 -329.5c0 -182.4 -148.3 -330.9 -330.5 -330.9zM378.2 608.5c-162.4 0 -292.3 -131.6 -292.3 -292.8
-c0 -162.6 129.9 -294.1 292.3 -294.1c161 0 293.7 131.5 293.7 294.1c0 162.6 -131.3 292.8 -293.7 292.8z" />
-    <glyph glyph-name="uni24CF" unicode="&#x24cf;" horiz-adv-x="759" 
-d="M313.2 490h155.2c18.4 0 45.6 1.60001 54.4 1.60001c3.60004 0 4.79999 -1 4.79999 -4c0 -6.39999 -3.19995 -12 -15.2 -28.8c-71.2 -97.2 -134.4 -191.5 -198.4 -289.6c-7.5 -11.2 -8.10001 -21.9 11.2 -21.6l95.2 3.2c49.8 1.7 67.4 37.9 88.8 85.6
-c8.29999 0.5 15.4 -1.59999 21.6 -5.59999c-13.6 -46.4 -22.4 -84 -25.6 -108.8h-273.6c-8.8 0 -12 3.2 -12 8s2.39999 8.8 5.59999 13.6c64.8 100.4 129.9 200.5 205.6 302.4c3.60001 4.79999 11.1 18.6 -1.59998 18.4l-112.8 -3.19998
-c-23.2 -0.700012 -50.4 -16 -67.2 -73.6c-6.89999 -0.899994 -13.9 0 -20.8 2.39999c7.20001 39.2 11.2 69.6 12 105.6c0 1.89999 1.3 2.39999 3.20001 2.39999c14 -2.79999 43.9 -8 69.6 -8zM378.2 -15.2c-182.2 0 -329 148.5 -329 330.9c0 182.4 146.8 329.5 329 329.5
-s330.5 -147.1 330.5 -329.5c0 -182.4 -148.3 -330.9 -330.5 -330.9zM378.2 608.5c-162.4 0 -292.3 -131.6 -292.3 -292.8c0 -162.6 129.9 -294.1 292.3 -294.1c161 0 293.7 131.5 293.7 294.1c0 162.6 -131.3 292.8 -293.7 292.8z" />
-    <glyph glyph-name="uni24D0" unicode="&#x24d0;" horiz-adv-x="758" 
-d="M424 318c-85 -22 -109 -40 -109 -71c0 -21 11 -41 45 -41c21 0 38 10 64 33v79zM467 174c-25 0 -39 21 -42 39c-34 -30 -52 -39 -85 -39c-42 0 -77 27 -77 70c0 42 40 70 103 86l58 15c0 75 -31 83 -54 83c-33 0 -54 -11 -54 -27c0 -7 1 -11 2 -13s2 -7 2 -12
-c0 -8 -7 -21 -26 -21c-15 0 -26 10 -26 25c0 40 62 73 104 73c49 0 106 -20 106 -114v-75c0 -41 5 -57 14 -57c4 0 9 2 12 5c7.29999 -2.7 10.6 -8 10 -16c-9 -10 -28 -22 -47 -22zM378.2 -15.2c-182.2 0 -329 148.5 -329 330.9c0 182.4 146.8 329.6 329 329.6
-s330.4 -147.2 330.4 -329.6c0 -182.4 -148.2 -330.9 -330.4 -330.9zM378.2 608.5c-162.4 0 -292.3 -131.6 -292.3 -292.8c0 -162.6 129.9 -294.1 292.3 -294.1c161 0 293.7 131.5 293.7 294.1c0 162.6 -131.3 292.8 -293.7 292.8z" />
-    <glyph glyph-name="uni24D1" unicode="&#x24d1;" horiz-adv-x="759" 
-d="M298 438c0 42 -6 49 -19 49l-21 1c-2 0 -4 1 -4 3l-1 18c26 2 72 10 88 17c6 0 8 -2 8 -7c0 0 -2 -26 -2 -68v-58c25 16 48 25 74 25c62 0 99 -62 99 -130c0 -74 -54 -143 -119 -143c-30 0 -55 10 -71 24c-6 -8 -14 -17 -20 -24l-14 4c2 15 2 26 2 52v237zM347 365v-129
-c0 -52 33 -65 55 -65c23.5 0 64 12 64 105c0 73 -30 111 -60 111c-26 0 -38 -6 -59 -22zM378.2 -15.2c-182.2 0 -329 148.5 -329 330.9c0 182.4 146.8 329.5 329 329.5s330.5 -147.1 330.5 -329.5c0 -182.4 -148.3 -330.9 -330.5 -330.9zM378.2 608.5
-c-162.4 0 -292.3 -131.6 -292.3 -292.8c0 -162.6 129.9 -294.1 292.3 -294.1c161 0 293.7 131.5 293.7 294.1c0 162.6 -131.3 292.8 -293.7 292.8z" />
-    <glyph glyph-name="uni24D2" unicode="&#x24d2;" horiz-adv-x="759" 
-d="M383 437c63 0 96 -33 96 -67c0 -20 -11 -29 -25 -29s-27 7 -29 23c-2 22 -7 46 -45 46c-31 0 -73 -33 -73 -114c0 -25 4 -49 16 -68c14 -23 38 -38 60 -38c38 0 57 21 77 43l19 -16c-25 -35 -56 -59 -101 -59c-85 0 -125 61 -125 134s44 145 130 145zM378.2 -15.2
-c-182.2 0 -329 148.5 -329 330.9c0 182.4 146.8 329.5 329 329.5s330.5 -147.1 330.5 -329.5c0 -182.4 -148.3 -330.9 -330.5 -330.9zM378.2 608.5c-162.4 0 -292.3 -131.6 -292.3 -292.8c0 -162.6 129.9 -294.1 292.3 -294.1c161 0 293.7 131.5 293.7 294.1
-c0 162.6 -131.3 292.8 -293.7 292.8z" />
-    <glyph glyph-name="uni24D3" unicode="&#x24d3;" horiz-adv-x="759" 
-d="M409 253v103c-16 19 -39 39 -64 39c-34 0 -67 -37 -67 -111c0 -80 31.5 -96 61 -96c22 0 61.7 41 70 65zM404 203c-17 -32 -57 -51 -81 -51c-63 0 -99 50 -99 117c0 80 39 152 116 152c36 0 53 -11 69 -26v46c0 42 -7 49 -20 49l-21 1c-2 0 -4 1 -4 3l-1 18
-c26 2 72 10 88 17c6 0 8 -2 8 -7c0 0 -2 -26 -2 -68v-216c0 -40 9 -45 42 -48c1 -4 3 -18 2 -22c-43 -6 -63 -12 -80 -20c-5 0 -6 3 -7 6c-3 7 -5 20 -5 48c0 3 -0.899994 8.7 -5 1zM378.2 -15.2c-182.2 0 -329 148.5 -329 330.9c0 182.4 146.8 329.5 329 329.5
-s330.5 -147.1 330.5 -329.5c0 -182.4 -148.3 -330.9 -330.5 -330.9zM378.2 608.5c-162.4 0 -292.3 -131.6 -292.3 -292.8c0 -162.6 129.9 -294.1 292.3 -294.1c161 0 293.7 131.5 293.7 294.1c0 162.6 -131.3 292.8 -293.7 292.8z" />
-    <glyph glyph-name="uni24D4" unicode="&#x24d4;" horiz-adv-x="759" 
-d="M389 198c38 0 68 17 87 39c8.70001 0 16.3 -6.3 20 -16c-26 -35 -72 -58 -118 -58c-34.5 0 -62.4 8.89999 -81.2 25.5c-27.6 24.3 -37.8 64.1 -37.8 107.5c0 74 44.3 145 130 145c85 0 104.3 -59.5 105 -131l-180 2c-1 -4 -1 -9 -1 -11c0 -25 4 -50 16 -69
-c15 -22 35 -34 60 -34zM437 341c0.299988 64.5 -33 75 -57 75c-28.2 0 -58.2 -36 -63 -76zM378.2 -15.2c-182.2 0 -329 148.5 -329 330.9c0 182.4 146.8 329.5 329 329.5s330.5 -147.1 330.5 -329.5c0 -182.4 -148.3 -330.9 -330.5 -330.9zM378.2 608.5
-c-162.4 0 -292.3 -131.6 -292.3 -292.8c0 -162.6 129.9 -294.1 292.3 -294.1c161 0 293.7 131.5 293.7 294.1c0 162.6 -131.3 292.8 -293.7 292.8z" />
-    <glyph glyph-name="uni24D5" unicode="&#x24d5;" horiz-adv-x="759" 
-d="M309 184v152h-42c-3 0 -3 1 -3 3v14c0 5 3 12 14 12h31c0 96 53 141 105 141c23 0 39 -6 54 -17c13 -9 20 -20 20 -31c0 -12 -11 -23 -23 -23s-22 8 -27 19c-8 20 -18 27 -36 27c-20 0 -44 -11 -44 -106v-10h68c3 0 5 -1 5 -3v-18c0 -6 -8 -8 -14 -8h-59v-152
-c0 -18 6.79999 -26.2 26 -28l21 -2c2 -0.199997 5 -1 5 -5v-17l-1 -1s-54 1 -78 1c-22 0 -63 -1 -63 -1l-2 1v17c0 4 2 4.5 5 5l12 2c20.8 3.5 26 10 26 28zM378.2 -15.2c-182.2 0 -329 148.5 -329 330.9c0 182.4 146.8 329.5 329 329.5s330.5 -147.1 330.5 -329.5
-c0 -182.4 -148.3 -330.9 -330.5 -330.9zM378.2 608.5c-162.4 0 -292.3 -131.6 -292.3 -292.8c0 -162.6 129.9 -294.1 292.3 -294.1c161 0 293.7 131.5 293.7 294.1c0 162.6 -131.3 292.8 -293.7 292.8z" />
-    <glyph glyph-name="uni24D6" unicode="&#x24d6;" horiz-adv-x="759" 
-d="M502 443c-10 0 -16 5 -18 12c-3 6 -9 9 -18 9c-7 0 -13 -8 -16 -14c17 -19 28 -34 28 -63c0 -60 -53 -90 -104 -90c-23 0 -41 4 -55 12c-7 -10 -9 -21 -9 -34c0 -26 19 -31 36 -31c3 0 10 1 19 2c14 1 29 3 39 3c22 0 63 -4 87 -26c17 -15 26 -30 26 -50
-c0 -67 -87 -95 -166 -95c-45 0 -100 14 -100 68c0 26 19 49 50 69c-19 4.5 -32 23 -32 45c0 21 9.5 45 34 61c-17 16 -34 35 -34 68c0 57 53 91 105 91c29 0 48 -9 57 -15c16 18 34 27 56 27c25 0 38 -13 38 -25c0 -14 -11 -24 -23 -24zM315 209c-19 -18 -21 -30 -21 -51
-c0 -46 53 -50 74 -50c49 0 110 4 110 49c0 16 -11 24.5 -28 34c-16.8 9.39999 -32 15 -62 15c-9 0 -17 0 -25 -1c-9 0 -18 -1 -25 -1s-17 2 -23 5zM426 385c0 50 -20 73 -57 73c-32 0 -49 -15 -49 -63c0 -32 8 -76 57 -76c22 0 49 4 49 66zM378.2 -15.2
-c-182.2 0 -329 148.5 -329 330.9c0 182.4 146.8 329.5 329 329.5s330.5 -147.1 330.5 -329.5c0 -182.4 -148.3 -330.9 -330.5 -330.9zM378.2 608.5c-162.4 0 -292.3 -131.6 -292.3 -292.8c0 -162.6 129.9 -294.1 292.3 -294.1c161 0 293.7 131.5 293.7 294.1
-c0 162.6 -131.3 292.8 -293.7 292.8z" />
-    <glyph glyph-name="uni24D7" unicode="&#x24d7;" horiz-adv-x="759" 
-d="M333 451v-84c14 16 49 51 85 51c45 0 75 -25 75 -92v-124c0 -19 6.20001 -23.7 26 -27l6 -1c4 -1 5 -3 5 -5v-18s-38 1 -62 1c-25 0 -65 -1 -65 -1v18c0 2 1 5 5 5l11 1c18.8 1.7 25 6 25 27v114c0 51 -20 68 -50 68c-21 0 -42 -22 -61 -45v-137
-c0 -21 7.10001 -25.4 25 -27l11 -1c2 0 5 -1 5 -5v-18s-40 1 -66 1c-24 0 -61 -1 -61 -1v18c0 2 0 5 4 5l8 1c23.6 3 25 6 25 27v236c0 42 -6 49 -19 49l-21 1c-2 0 -4 1 -4 3l-1 18c26 2 72 10 88 17c6 0 8 -2 8 -7c0 0 -2 -26 -2 -68zM378.2 -15.2
-c-182.2 0 -329 148.5 -329 330.9c0 182.4 146.8 329.5 329 329.5s330.5 -147.1 330.5 -329.5c0 -182.4 -148.3 -330.9 -330.5 -330.9zM378.2 608.5c-162.4 0 -292.3 -131.6 -292.3 -292.8c0 -162.6 129.9 -294.1 292.3 -294.1c161 0 293.7 131.5 293.7 294.1
-c0 162.6 -131.3 292.8 -293.7 292.8z" />
-    <glyph glyph-name="uni24D8" unicode="&#x24d8;" horiz-adv-x="759" 
-d="M380 519c16 0 29 -13 29 -29s-13 -29 -29 -29s-29 13 -29 29s13 29 29 29zM407 205c0 -41 17 -44 51 -46c4 -8 4 -22 0 -29c-30 1 -51.3 1 -76 1c-23 0 -46 0 -76 -1c-4 6 -5 21 0 29c40 2 53 5 53 46v109c0 53 -11 48 -43 50c-4 6 -5 13 -4 21c26 2 73 10 89 17
-c6 0 8 -2 8 -7c0 0 -2 -27 -2 -54v-136zM378.2 -15.2c-182.2 0 -329 148.5 -329 330.9c0 182.4 146.8 329.5 329 329.5s330.5 -147.1 330.5 -329.5c0 -182.4 -148.3 -330.9 -330.5 -330.9zM378.2 608.5c-162.4 0 -292.3 -131.6 -292.3 -292.8
-c0 -162.6 129.9 -294.1 292.3 -294.1c161 0 293.7 131.5 293.7 294.1c0 162.6 -131.3 292.8 -293.7 292.8z" />
-    <glyph glyph-name="uni24D9" unicode="&#x24d9;" horiz-adv-x="759" 
-d="M403 528c22 0 30 -15 30 -29c0 -15 -13 -28 -30 -28s-30 13 -30 28c0 16 11 29 30 29zM382 338c0 42 -6 49 -19 49l-21 1c-2 0 -4 1 -4 3l-1 18c26 2 72 10 88 17c6 0 8 -2 8 -7c0 0 -2 -27 -2 -54v-146c0 -85 -5 -112 -32 -142c-16 -18 -36 -25 -52 -25
-c-27 0 -61 13 -61 33c0 16 9 25 21 25c15 0 23 -15 27 -29c1 -6 5 -10 10 -10c29 0 38 35 38 128v139zM378.2 -15.2c-182.2 0 -329 148.5 -329 330.9c0 182.4 146.8 329.5 329 329.5s330.5 -147.1 330.5 -329.5c0 -182.4 -148.3 -330.9 -330.5 -330.9zM378.2 608.5
-c-162.4 0 -292.3 -131.6 -292.3 -292.8c0 -162.6 129.9 -294.1 292.3 -294.1c161 0 293.7 131.5 293.7 294.1c0 162.6 -131.3 292.8 -293.7 292.8z" />
-    <glyph glyph-name="uni24DA" unicode="&#x24da;" horiz-adv-x="759" 
-d="M283 215v212c0 42 -7 49 -20 49l-21 1c-2 0 -4 1 -4 3l-1 18c26 2 72 10 88 17c6 0 8 -2 8 -7c0 0 -2 -26 -2 -68v-150.5c21.8 8.79999 39.8 18.4 61 40l25 25.5c7.70001 8.29999 23 23 -9 26c-3 0.299988 -5 3 -5 5v20l1 1s30 -1 52 -1c24 0 64 1 64 1l2 -1v-20
-c0 -3 -4 -4.79999 -6 -5c-24.5 -3 -45.9 -8.10001 -68 -32l-38 -41c-1.89999 -2.10001 -2 -6 -2 -8c0 -3 1 -6 3 -8l63 -93c7 -10 19.5 -27 52 -30c4 -0.399994 8 -2 8 -5v-22l-2 -2s-37 1 -61 1c-22 0 -38 -1 -38 -1l-2 2v16c0 6 -2 10 -14 27l-45 64c-9 11 -16 22 -31 22
-c-2.89999 0 -6.20001 -0.700012 -10 -1.89999v-54.1c0 -41 7 -44 41 -46c4 -8 4 -22 0 -29c-30 1 -41 1 -66 1c-23 0 -46 0 -76 -1c-4 6 -5 21 0 29c40 2 53 5 53 46zM378.2 -15.2c-182.2 0 -329 148.5 -329 330.9c0 182.4 146.8 329.5 329 329.5s330.5 -147.1 330.5 -329.5
-c0 -182.4 -148.3 -330.9 -330.5 -330.9zM378.2 608.5c-162.4 0 -292.3 -131.6 -292.3 -292.8c0 -162.6 129.9 -294.1 292.3 -294.1c161 0 293.7 131.5 293.7 294.1c0 162.6 -131.3 292.8 -293.7 292.8z" />
-    <glyph glyph-name="uni24DB" unicode="&#x24db;" horiz-adv-x="759" 
-d="M354 221v211c0 52 -8 48 -40 50c-4 4 -4 16 -3 21c25 2 70 11 86 17c6 0 8 -2 8 -6c0 0 -2 -26 -2 -66v-227c0 -51 7 -53 40 -55c4 -4 4 -18 0 -22c-22 1 -39 1 -64 1s-44 0 -65 -1c-4 4 -4 16 0 20c33 2 40 6 40 57zM378.2 -15.2c-182.2 0 -329 148.5 -329 330.9
-c0 182.4 146.8 329.5 329 329.5s330.5 -147.1 330.5 -329.5c0 -182.4 -148.3 -330.9 -330.5 -330.9zM378.2 608.5c-162.4 0 -292.3 -131.6 -292.3 -292.8c0 -162.6 129.9 -294.1 292.3 -294.1c161 0 293.7 131.5 293.7 294.1c0 162.6 -131.3 292.8 -293.7 292.8z" />
-    <glyph glyph-name="uni24DC" unicode="&#x24dc;" horiz-adv-x="759" 
-d="M257 378c-4 -5 -9 -14 -9 -22v-100c0 -41 3 -44 37 -46c4 -8 4 -22 0 -29c-30 1 -37 1 -62 1c-23 0 -46 0 -76 -1c-4 6 -5 21 0 29c40 2 53 5 53 46v107c0 40 -9 45 -42 48c-1 4 -3 18 -2 22c43 6 64 12 81 20c5 0 6 -3 7 -6c3 -7 5 -20 5 -48c0 -3 0 -8.29999 5 -1
-c24.3 35.3 49 55 85 55c35 0 57.3 -14.5 65.9 -50.9c14.6 17.4 49.9 50.9 85.1 50.9c46 0 80 -25 80 -92v-105c0 -41 8 -44 48 -46c5 -8 4 -23 0 -29c-30 1 -35.7 1 -71 1c-23.8 0 -31 0 -61 -1c-4 7 -4 21 0 29c34 2 36 5 36 46v95c0 51 -25 68 -56 68
-c-19.7 0 -39.5 -19.5 -57.6 -40.9c0.399994 -5.39999 0.600006 -11.1 0.600006 -17.1v-105c0 -41 7.5 -43.5 38 -46c5 -8 4 -23 0 -29c-30 1 -25.7 1 -61 1c-23.8 0 -31 0 -61 -1c-4 7 -4 21 0 29c34 2 36 5 36 46v95c0 51 -15 68 -46 68c-21 0 -39 -18 -58 -41z
-M378.2 -15.2c-182.2 0 -329 148.5 -329 330.9c0 182.4 146.8 329.5 329 329.5s330.5 -147.1 330.5 -329.5c0 -182.4 -148.3 -330.9 -330.5 -330.9zM378.2 608.5c-162.4 0 -292.3 -131.6 -292.3 -292.8c0 -162.6 129.9 -294.1 292.3 -294.1c161 0 293.7 131.5 293.7 294.1
-c0 162.6 -131.3 292.8 -293.7 292.8z" />
-    <glyph glyph-name="uni24DD" unicode="&#x24dd;" horiz-adv-x="759" 
-d="M340 367c-4 -5 -9 -14 -9 -22v-100c0 -41 3 -44 37 -46c4 -8 4 -22 0 -29c-30 1 -37 1 -62 1c-23 0 -46 0 -76 -1c-4 6 -5 21 0 29c40 2 53 5 53 46v107c0 40 -9 45 -42 48c-1 4 -3 18 -2 22c43 6 64 12 81 20c5 0 6 -3 7 -6c3 -7 5 -20 5 -48c0 -3 0 -8.29999 5 -1
-c24.3 35.3 65 55 101 55c46 0 70 -25 70 -92v-105c0 -41 8 -44 48 -46c5 -8 4 -23 0 -29c-30 1 -35.7 1 -71 1c-23.8 0 -31 0 -61 -1c-4 7 -4 21 0 29c34 2 36 5 36 46v95c0 51 -15 68 -46 68c-21 0 -55 -18 -74 -41zM378.2 -15.2c-182.2 0 -329 148.5 -329 330.9
-c0 182.4 146.8 329.5 329 329.5s330.5 -147.1 330.5 -329.5c0 -182.4 -148.3 -330.9 -330.5 -330.9zM378.2 608.5c-162.4 0 -292.3 -131.6 -292.3 -292.8c0 -162.6 129.9 -294.1 292.3 -294.1c161 0 293.7 131.5 293.7 294.1c0 162.6 -131.3 292.8 -293.7 292.8z" />
-    <glyph glyph-name="uni24DE" unicode="&#x24de;" horiz-adv-x="759" 
-d="M376 443c92 0 129 -70.9 129 -143c0 -65 -46.9 -135 -130 -135c-81 0 -128 68 -128 132c0 71 40 146 129 146zM446 281c0 79 -34 137 -76 137c-34.2 0 -64 -30 -64 -109c0 -78 39 -119 80 -119c29 0 60 30 60 91zM378.2 -15.2c-182.2 0 -329 148.5 -329 330.9
-c0 182.4 146.8 329.5 329 329.5s330.5 -147.1 330.5 -329.5c0 -182.4 -148.3 -330.9 -330.5 -330.9zM378.2 608.5c-162.4 0 -292.3 -131.6 -292.3 -292.8c0 -162.6 129.9 -294.1 292.3 -294.1c161 0 293.7 131.5 293.7 294.1c0 162.6 -131.3 292.8 -293.7 292.8z" />
-    <glyph glyph-name="uni24DF" unicode="&#x24df;" horiz-adv-x="759" 
-d="M346 157c0 -41 17 -44 51 -46c4 -8 4 -22 0 -29c-30 1 -51 1 -76 1c-23 0 -46 0 -76 -1c-4 6 -5 21 0 29c40 2 53 5 53 46v234c0 40 -9 45 -42 48c-1 4 -3 18 -2 22c43 6 63 12 80 20c5 0 6 -3 7 -6c3 -7 5 -20 5 -48c0 -3 -0.299988 -7.79999 5 -1
-c18.5 23.5 57 49 86 49c58 0 93 -40 93 -108c0 -74 -49 -154 -114 -154c-20 0 -56 8 -70 20v-76zM346 284c12.5 -40 49 -45 71 -45c23 0 59 23 59 116c0 73 -23 89 -51 89c-25 0 -72.5 -35 -79 -62v-98zM378.2 -15.2c-182.2 0 -329 148.5 -329 330.9
-c0 182.4 146.8 329.5 329 329.5s330.5 -147.1 330.5 -329.5c0 -182.4 -148.3 -330.9 -330.5 -330.9zM378.2 608.5c-162.4 0 -292.3 -131.6 -292.3 -292.8c0 -162.6 129.9 -294.1 292.3 -294.1c161 0 293.7 131.5 293.7 294.1c0 162.6 -131.3 292.8 -293.7 292.8z" />
-    <glyph glyph-name="uni24E0" unicode="&#x24e0;" horiz-adv-x="759" 
-d="M410 265v143c-16 19 -38 39 -63 39c-34 0 -62 -25 -62 -99c0 -90 36 -111 70 -111c22 0 35 7 55 28zM440 471c4 3 10 8 14 8c3 0 5 -3 5 -9v-339c0 -20 0.799988 -23.5 25 -27l7 -1c4 -0.599998 5 -2 5 -4v-19s-37 1 -61 1c-26 0 -66 -1 -66 -1v18c0 4 2 4.7 5 5l11 1
-c14.4 1.3 25 5 25 27v107c-19 -16 -38 -27 -61 -27c-66 0 -118 45 -118 122c0 64 37 140 114 140c29 0 55 -9 70 -26zM378.2 -15.2c-182.2 0 -329 148.5 -329 330.9c0 182.4 146.8 329.5 329 329.5s330.5 -147.1 330.5 -329.5c0 -182.4 -148.3 -330.9 -330.5 -330.9z
-M378.2 608.5c-162.4 0 -292.3 -131.6 -292.3 -292.8c0 -162.6 129.9 -294.1 292.3 -294.1c161 0 293.7 131.5 293.7 294.1c0 162.6 -131.3 292.8 -293.7 292.8z" />
-    <glyph glyph-name="uni24E1" unicode="&#x24e1;" horiz-adv-x="759" 
-d="M418 393c-7 0 -23 -8 -39 -31c-4 -5 -9 -14 -9 -22v-100c0 -41 17 -44 51 -46c4 -8 4 -22 0 -29c-30 1 -51 1 -76 1c-23 0 -46 0 -76 -1c-4 6 -5 21 0 29c40 2 53 5 53 46v107c0 40 -9 45 -42 48c-1 4 -3 18 -2 22c43 6 63 12 80 20c5 0 6 -3 7 -6c3 -7 5 -20 5 -48
-c0 -3 1 -9 5 -1c14 27 42 55 74 55c26 0 37 -21 37 -34c0 -17 -14 -35 -29 -35c-13 0 -20 14 -26 21c-4 4 -9 4 -13 4zM378.2 -15.2c-182.2 0 -329 148.5 -329 330.9c0 182.4 146.8 329.5 329 329.5s330.5 -147.1 330.5 -329.5c0 -182.4 -148.3 -330.9 -330.5 -330.9z
-M378.2 608.5c-162.4 0 -292.3 -131.6 -292.3 -292.8c0 -162.6 129.9 -294.1 292.3 -294.1c161 0 293.7 131.5 293.7 294.1c0 162.6 -131.3 292.8 -293.7 292.8z" />
-    <glyph glyph-name="uni24E2" unicode="&#x24e2;" horiz-adv-x="759" 
-d="M278 263h22c1 -14 7 -41 23 -57c7 -6 26 -18 49 -18c24 0 48 11 48 38c0 21 -8 41 -58 62c-46 19 -77 35 -77 80c0 42 45 74 94 74c31 0 70 -10 81 -17l9 -75l-23 -1c-14 58 -48 68 -67 68c-25 0 -46 -13 -46 -40c0 -24 10 -33 44 -47c51 -21 97 -40 97 -90
-c0 -61 -66 -77 -100 -77c-30 0 -52 14 -72 14c-3 0 -13 -1 -19 -2c0 24 -2 56 -5 88zM378.2 -15.2c-182.2 0 -329 148.5 -329 330.9c0 182.4 146.8 329.5 329 329.5s330.5 -147.1 330.5 -329.5c0 -182.4 -148.3 -330.9 -330.5 -330.9zM378.2 608.5
-c-162.4 0 -292.3 -131.6 -292.3 -292.8c0 -162.6 129.9 -294.1 292.3 -294.1c161 0 293.7 131.5 293.7 294.1c0 162.6 -131.3 292.8 -293.7 292.8z" />
-    <glyph glyph-name="uni24E3" unicode="&#x24e3;" horiz-adv-x="759" 
-d="M380 366v-148c0 -38 6 -56 21 -56c16 0 36 0 52 12l16 -17c-26 -27 -59 -35 -87 -35c-29 0 -50 17 -50 61v183h-40c-2 0 -3.20001 0 -3 2l2 24c0 2 1 3 3 3c37 0 48 24 48 71v11l38 13v-95h80c3 0 5.29999 -1 5 -4l-2 -18c-0.700012 -6 -9 -7 -14 -7h-69zM378.2 -15.2
-c-182.2 0 -329 148.5 -329 330.9c0 182.4 146.8 329.5 329 329.5s330.5 -147.1 330.5 -329.5c0 -182.4 -148.3 -330.9 -330.5 -330.9zM378.2 608.5c-162.4 0 -292.3 -131.6 -292.3 -292.8c0 -162.6 129.9 -294.1 292.3 -294.1c161 0 293.7 131.5 293.7 294.1
-c0 162.6 -131.3 292.8 -293.7 292.8z" />
-    <glyph glyph-name="uni24E4" unicode="&#x24e4;" horiz-adv-x="759" 
-d="M269 354c0 46 -8 55 -38 57c-4 4 -4 19 0 23c23 -1 42 -2 62 -2c9 0 19 1 22 2c3 0 4 -2 4 -4c0 0 -2 -51 -2 -72v-96c0 -51 20 -67 50 -67c21 0 44 20 63 42v117c0 46 -8 55 -38 57c-4 4 -4 19 0 23c23 -1 42 -2 62 -2c9 0 19 1 22 2c3 0 4 -2 4 -4c0 0 -2 -51 -2 -72
-v-108c0 -40 9 -45 42 -48c1 -4 3 -18 2 -22c-43 -6 -63 -12 -80 -20c-5 0 -6 3 -7 6c-3 7 -5 19.8 -5 38c0 3 -1.70001 5.5 -5 1c-12.7 -17.6 -45 -45 -82 -45c-45 0 -74 25 -74 92v102zM378.2 -15.2c-182.2 0 -329 148.5 -329 330.9c0 182.4 146.8 329.5 329 329.5
-s330.5 -147.1 330.5 -329.5c0 -182.4 -148.3 -330.9 -330.5 -330.9zM378.2 608.5c-162.4 0 -292.3 -131.6 -292.3 -292.8c0 -162.6 129.9 -294.1 292.3 -294.1c161 0 293.7 131.5 293.7 294.1c0 162.6 -131.3 292.8 -293.7 292.8z" />
-    <glyph glyph-name="uni24E5" unicode="&#x24e5;" horiz-adv-x="759" 
-d="M416 395c-4 4 -4 19 0 23c23 -1 37 -2 60 -2c16 0 27 1 41 2c4 -4 4 -19 0 -23c-31.5 -3.5 -39.1 -21.4 -53 -52l-83.2 -182.8c-5 -11 -8.69998 -16.1 -14.9 -16.1c-8.10001 0 -11.2 4.79999 -15.5 14.7l-79.4 185.2c-15.1 35.1 -17 47 -50 51c-4 4 -4 19 0 23
-c23 -1 33 -2 55 -2c25.8 0 43 1 66 2c4 -4 4 -19 0 -23c-32.5 -3 -31.7 -15.4 -19 -47l42.1 -105.3c11.4 -28.5 13.9 -28.8 26 -2.09999l46.9 107.4c14.2 32.4 11 44 -22 47zM378.2 -15.2c-182.2 0 -329 148.5 -329 330.9c0 182.4 146.8 329.5 329 329.5
-s330.5 -147.1 330.5 -329.5c0 -182.4 -148.3 -330.9 -330.5 -330.9zM378.2 608.5c-162.4 0 -292.3 -131.6 -292.3 -292.8c0 -162.6 129.9 -294.1 292.3 -294.1c161 0 293.7 131.5 293.7 294.1c0 162.6 -131.3 292.8 -293.7 292.8z" />
-    <glyph glyph-name="uni24E6" unicode="&#x24e6;" horiz-adv-x="759" 
-d="M510 385c-4 4 -4 19 0 23c23 -1 37 -2 60 -2c16 0 27 1 41 2c4 -4 4 -19 0 -23c-31.5 -3.5 -39.1 -21.4 -53 -52l-83.2 -182.8c-5 -11 -8.69998 -16.1 -14.9 -16.1c-8.10001 0 -11.5 4.7 -15.5 14.7l-52.6 131l-59 -129.6c-5 -11 -8.69998 -16.1 -14.9 -16.1
-c-8.10001 0 -11.2 4.79999 -15.5 14.7l-79.4 185.2c-15.1 35.1 -17 47 -50 51c-4 4 -4 19 0 23c23 -1 33 -2 55 -2c25.8 0 43 1 66 2c4 -4 4 -19 0 -23c-32.5 -3 -31.7 -15.4 -19 -47l42.1 -105.3c11.4 -28.5 13.9 -28.8 26 -2.09999l35.6 81.6l-8.70001 21.8
-c-14.2 35.5 -16.8 46.5 -45 51c-4 4 -4 19 0 23c23 -1 28 -2 50 -2c25.8 0 43 1 66 2c4 -4 4 -19 0 -23c-32.5 -3 -30.5 -14.3 -19 -47l37.1 -105.3c10.2 -28.9 13.9 -28.8 26 -2.09999l46.9 107.4c14.2 32.4 11 44 -22 47zM378.2 -15.2c-182.2 0 -329 148.5 -329 330.9
-c0 182.4 146.8 329.5 329 329.5s330.5 -147.1 330.5 -329.5c0 -182.4 -148.3 -330.9 -330.5 -330.9zM378.2 608.5c-162.4 0 -292.3 -131.6 -292.3 -292.8c0 -162.6 129.9 -294.1 292.3 -294.1c161 0 293.7 131.5 293.7 294.1c0 162.6 -131.3 292.8 -293.7 292.8z" />
-    <glyph glyph-name="uni24E7" unicode="&#x24e7;" horiz-adv-x="759" 
-d="M454.2 369l-52.2 -67l52.2 -74c26.3 -37.3 32.7 -40.2 60.8 -42c4 -4 4 -18 0 -22c-18 1 -33 2 -56 2c-24 0 -50 -1 -68 -2c-4 4 -4 18 0 22c29 1 26 9 14 28c0 0 -27 42 -32 50c-16 -21 -40 -50 -40 -50c-14 -18 -15 -27 14 -28c4 -4 4 -18 0 -22c-18 1 -34 2 -58 2
-c-23 0 -30 -1 -48 -2c-4 4 -4 18 0 22c28.1 1.8 30.4 6.5 60.8 42c0 0 49.2 58 52.2 61l-56.2 80c-26.6 37.8 -27.7 40.2 -55.8 42c-4 4 -4 18 0 22c18 -1 28 -2 51 -2c24 0 53 1 71 2c4 -4 4 -18 0 -22c-29 -1 -29 -8 -17 -28l36 -57c40 56 41 57 41 57
-c13.2 18.8 15 27 -14 28c-4 4 -4 18 0 22c18 -1 33 -2 57 -2c23 0 30 1 48 2c4 -4 4 -18 0 -22c-28.1 -1.79999 -32.8 -6.10001 -60.8 -42zM378.2 -15.2c-182.2 0 -329 148.5 -329 330.9c0 182.4 146.8 329.5 329 329.5s330.5 -147.1 330.5 -329.5
-c0 -182.4 -148.3 -330.9 -330.5 -330.9zM378.2 608.5c-162.4 0 -292.3 -131.6 -292.3 -292.8c0 -162.6 129.9 -294.1 292.3 -294.1c161 0 293.7 131.5 293.7 294.1c0 162.6 -131.3 292.8 -293.7 292.8z" />
-    <glyph glyph-name="uni24E8" unicode="&#x24e8;" horiz-adv-x="759" 
-d="M363 433c0 -3 -4 -5 -7 -5c-18 0 -25 -4 -25 -11c0 -3 1 -9 2 -13l66 -156l69 153c2 5 3 12 3 15c0 10 -11 12 -26 12h-3c-3 0 -5 3 -5 5v16l1 2s41 -2 64 -2c17 0 43 2 43 2l1 -2v-16c0 -3 -2 -5 -6 -5c-24 0 -36 -20 -45 -38c-33 -70 -60 -135 -111 -256
-c-19 -44 -28 -66 -72 -66c-11 0 -43 10 -43 33c0 18 19 27 29 27s15 -3 20 -8c5 -6 10 -11 16 -11c8 0 15 16 30 54c3 8 5 14 5 20c0 5 -5 22 -11 35l-75 174c-11 26 -15 36 -42 36c-4 0 -7 2 -7 5v16l2 2s28 -2 47 -2c29 0 79 2 79 2l1 -2v-16zM378.2 -15.2
-c-182.2 0 -329 148.5 -329 330.9c0 182.4 146.8 329.5 329 329.5s330.5 -147.1 330.5 -329.5c0 -182.4 -148.3 -330.9 -330.5 -330.9zM378.2 608.5c-162.4 0 -292.3 -131.6 -292.3 -292.8c0 -162.6 129.9 -294.1 292.3 -294.1c161 0 293.7 131.5 293.7 294.1
-c0 162.6 -131.3 292.8 -293.7 292.8z" />
-    <glyph glyph-name="uni24E9" unicode="&#x24e9;" horiz-adv-x="759" 
-d="M308 431h118c18 0 46 2 48 2c4 0 8 0 8 -3v-1c0 -2 0 -6 -13 -25l-142 -210h74c36 0 46 8 61 41l7 17c7.60001 0.300003 14.9 -1.2 22 -4c-11 -36 -17 -65 -20 -84h-197c-10 0 -14 3 -14 7s0 5 5 13l146 218h-76c-19 0 -40 -6 -52 -50
-c-7.29999 -0.899994 -15.8 0.299988 -22 3c5 30 9 55 9 83l6 1c4.79999 -5 22 -8 32 -8zM378.2 -15.2c-182.2 0 -329 148.5 -329 330.9c0 182.4 146.8 329.5 329 329.5s330.5 -147.1 330.5 -329.5c0 -182.4 -148.3 -330.9 -330.5 -330.9zM378.2 608.5
-c-162.4 0 -292.3 -131.6 -292.3 -292.8c0 -162.6 129.9 -294.1 292.3 -294.1c161 0 293.7 131.5 293.7 294.1c0 162.6 -131.3 292.8 -293.7 292.8z" />
-    <glyph glyph-name="uni24EA" unicode="&#x24ea;" horiz-adv-x="759" 
-d="M385.8 506.8c-29.2 0 -68.9 -29.9 -68.9 -189.8c0 -56.5 6.5 -167.8 66.9 -167.8c11.7 0 43.6 5.90001 57.9 59.2c9.09998 33.1 11.1 74.1 11.1 133.9c0 87.1 -17.6 136.5 -37.8 153.4c-7.79999 7.09998 -18.2 11.1 -29.2 11.1zM383.2 126.5
-c-25.1 0 -47.4 8.89999 -65.9 27.3c-35.5 35.4 -57 101 -57 170.3c0 128.7 61.2 205.4 125.5 205.4c35.1 0 62.3 -19.8 79.3 -42.3c28.6 -37.7 44.2 -92.9 44.2 -157.2c0 -152.8 -76.1 -203.5 -126.1 -203.5zM378.2 -15.2c-182.2 0 -329 148.5 -329 330.9
-c0 182.4 146.8 329.5 329 329.5s330.5 -147.1 330.5 -329.5c0 -182.4 -148.3 -330.9 -330.5 -330.9zM378.2 608.5c-162.4 0 -292.3 -131.6 -292.3 -292.8c0 -162.6 129.9 -294.1 292.3 -294.1c161 0 293.7 131.5 293.7 294.1c0 162.6 -131.3 292.8 -293.7 292.8z" />
-    <glyph glyph-name="afii10146" unicode="&#x462;" horiz-adv-x="710" 
-d="M523 550c21 0 22 17 22 24l26 4c4 -50 11 -101 22 -155l-30 -5c-20 80 -33 93 -88 93h-175v-138h79c36 0 100 -2 133 -14c102 -38 153 -92 153 -185c0 -86 -59 -176 -258 -176c-89 0 -90 2 -148 2c-50 0 -127 -2 -127 -2l-2 2v19c0 5 2 8 8 8h29c40 0 52 12 52 47v437
-h-91c-55 0 -68 -13 -88 -93l-30 5c11 54 18 105 22 155l26 -4c0 -7 1 -24 22 -24h139v24c0 30 -15 44 -54 44h-27c-4 0 -8 3 -8 8v19l2 1s87 -1 126 -1c35 0 129 1 129 1l2 -1v-19c0 -5 -3 -8 -8 -8h-27c-41 0 -54 -15 -54 -43v-25h223zM300 338v-266c0 -33 7 -40 89 -40
-c152 0 186 92 186 153c0 90 -63 153 -181 153h-94z" />
-    <glyph glyph-name="afii10194" unicode="&#x463;" horiz-adv-x="534" 
-d="M260 251h63c95 0 180 -23 180 -118c0 -84 -64 -135 -176 -135c-41 0 -64 2 -106 2c-40 0 -103 -2 -103 -2l-2 2v19c0 5 3 8 8 8h19c33 0 43 16 43 45v320h-31c-81 0 -96 -28 -113 -109l-27 4c6 46 10 84 11 142h160v75c0 52 -17 112 -87 155l15 21
-c74 -34 99 -79 109 -107c12 28 35 69 109 107l15 -21c-69 -43 -87 -103 -87 -155v-75h177c1 -58 5 -89 12 -135l-29 -4c-17 82 -32 102 -113 102h-47v-141zM428 124c0 52 -24 95 -95 95h-73v-145c0 -35 22 -45 69 -45c49 0 99 13 99 95z" />
-    <glyph glyph-name="estimated" unicode="&#x212e;" horiz-adv-x="513" 
-d="M113 233h284v103c0 18 -61 75 -141 75c-82 0 -143 -59 -143 -78v-100zM113 205v-102c0 -23 61 -84 143 -84c58 0 109 24 144 69l34 -11c-41 -52 -106 -87 -179 -87c-124 0 -225 100 -225 225c0 124 101 225 225 225c108 0 225 -86 225 -235h-367z" />
-    <glyph glyph-name="uni25C9" unicode="&#x25c9;" horiz-adv-x="564" 
-d="M178 220c0 57 46 103 102 103c57 0 103 -46 103 -103c0 -56 -46 -102 -103 -102c-56 0 -102 46 -102 102zM282 -15c-129 0 -233 105 -233 234s104 233 233 233s234 -104 234 -233s-105 -234 -234 -234zM282 426c-115 0 -207 -93 -207 -207c0 -115 92 -208 207 -208
-c114 0 208 93 208 208s-93 207 -208 207z" />
-    <glyph glyph-name="lozenge" unicode="&#x25ca;" horiz-adv-x="667" 
-d="M125 208l200 -265l199 265l-199 266zM66 208l259 346l258 -346l-258 -345z" />
-    <glyph glyph-name="uni25C6" unicode="&#x25c6;" horiz-adv-x="666" 
-d="M28.6 214.7l304 304l304.1 -304l-304.1 -304.1z" />
-    <glyph glyph-name="uni25C7" unicode="&#x25c7;" horiz-adv-x="666" 
-d="M80.2 218.2l256 -256l248.9 248.9l-256 256zM28.6 214.7l304 304l304.1 -304l-304.1 -304.1z" />
-    <glyph glyph-name="c_k" unicode="&#xe03a;" horiz-adv-x="851" 
-d="M382 91c-44 -76 -92 -101 -151 -101c-130 0 -194 88 -194 218c0 141 88 231 195 231c96 0 147 -46 147 -99c0 -29 -28 -44 -48 -44c-22 0 -32 11 -35 36c-3 33 -10 73 -69 73c-66 0 -104 -68 -104 -176c0 -112 63 -194 130 -194c43 0 76 27 107 72c9 -1 19.2 -6.8 22 -16
-zM458 122v437c0 84 -12 79 -64 82c-6 6 -8 22 -6 30c40 3 115 17 140 27c9 0 13 -3 13 -10c0 0 -4 -40 -4 -105v-345.5c26.6 7.7 76.4 52 129 109.5c10.5 10.5 42.5 48 -18 51c-6 6 -6 27 0 33c37 -1 54 -2 92 -2c36 0 50 1 87 2c6 -6 6 -27 0 -33
-c-50 -2 -80.3 -13.3 -110 -44l-76 -84c-3 -3 -4 -6 -4 -10c0 -5 2 -10 5 -14l117 -173c22.8 -33.8 52 -38 86 -42c6 -6 6 -27 0 -33c-30 1 -51 2 -82 2c-30 0 -49 -1 -69 -2c-3 0 -4 2 -4 5v16c0 13 -3 25 -23 54l-73 103c-19.5 28.2 -33.2 35.6 -57 36v-90
-c0 -83 11 -87 52 -91c6 -6 6 -27 0 -33c-43 1 -56 2 -91 2c-34 0 -54 -1 -87 -2c-6 6 -6 27 0 33c35 5 47 8 47 91z" />
-    <glyph glyph-name="c_h" unicode="&#xe03b;" horiz-adv-x="882" 
-d="M382 91c-44 -76 -92 -101 -151 -101c-130 0 -194 88 -194 218c0 141 88 231 195 231c96 0 147 -46 147 -99c0 -29 -28 -44 -48 -44c-22 0 -32 11 -35 36c-3 33 -10 73 -69 73c-66 0 -104 -68 -104 -176c0 -112 63 -194 130 -194c43 0 76 26 107 71c9 -1 19.2 -5.8 22 -15
-zM526 285.9v-163.9c0 -83 9 -87 59.8 -91c6 -6 6 -27 0 -33c-42.1 1 -59.8 2 -98.8 2c-43 0 -48.6 -1 -89.8 -2c-6 6 -6 27 0 33c37.8 3 49.8 8 49.8 91v437c0 84 -12 79 -64 82c-6 6 -8 22 -6 30c40 3 115 17 140 27c9 0 13 -3 13 -10c0 0 -4 -40 -4 -105l-0.799988 -225
-c0 -14 6.39996 -3.79999 9.79999 0c61 68 108.9 81 158 81c35 0 66.2 -12 83 -34c23.3 -30.5 27 -79 27 -134v-149c0 -82 11 -86 67 -91c5 -6 5 -27 0 -33c-43 1 -65 2 -106 2c-40 0 -60 -1 -102 -2c-5 6 -5 27 0 33c52 5 62 9 62 91v152c0 30 -2 57.2 -12 77
-c-11.6 22.9 -32.6 36 -53 36c-39.4 0 -78 -21.7 -116 -59c-8 -8.70001 -17 -21 -17 -42.1z" />
-
-<!--
-Alternative Akzente fuer Grossbuchstaben
--->
-    <glyph glyph-name="uni0360" unicode="&#x360;" 
-d="M-455 547c30 65 156 128 299 128c54 0 109 -14 166 -32c63 -20 127 -33 178 -33c66 0 171 17 222 67l29 -6c-73 -107 -224 -120 -280 -120c-54 0 -112 15 -168 33c-57 18 -122 32 -181 32c-82 0 -181 -29 -235 -73z" />
-
-<!--
-Alternative Akzente fuer Grossbuchstaben
--->
-    <glyph glyph-name="uni0361" unicode="&#x361;" 
-d="M0 698c150 0 284 -60 368 -182l-17 -18c-61 67 -159 142 -351 142c-196 0 -289 -80 -351 -142l-17 18c94 122 232 182 368 182z" />
-    <glyph glyph-name="uni0362" unicode="&#x362;" 
-d="M-268 -119h461c-9 12 -39 38 -53 73h34c13 -16 54 -63 104 -81v-11c-38 -20 -76 -52 -104 -83h-35c14 32 36 52 54 72h-461v30z" />
-    <glyph glyph-name="uniE009" unicode="&#xe009;" horiz-adv-x="616" 
-d="M469 127v-191c0 -62 7 -92 34 -92c26 0 45 8 71 28l18 -18c-38 -43 -79 -65 -124 -65c-47 0 -73 27 -73 99v239h-171l-78 1c-12 0 -127 -2 -127 -2l-2 2v19c0 5 4 7.7 8 8l30 2c41.4 2.8 51 9 51 44v371c0 30 -16.4 41.2 -54 44l-27 2c-4 0.299988 -8 3 -8 8v19l2 1
-s87 -1 126 -1c36 0 129 1 129 1l2 -1v-19c0 -5 -3 -7.59998 -8 -8l-26 -2c-40.8 -3.09998 -55 -16 -55 -44v-356c0 -31 18 -50 47 -50h92c58 0 86 25 86 89v19l57 20v-128h111c4 0 7 -2 7 -6v-20c0 -9 -13 -13 -23 -13h-95z" />
-    <glyph glyph-name="zero.slashfitted" unicode="&#xe00f;" horiz-adv-x="491" 
-d="M247 575c-45 0 -106 -46 -106 -292c0 -36.9 1.8 -88.9 11 -136.6l160 386.4c-6.29999 11 -13 19.4 -20 25.2c-12 11 -28 17 -45 17zM243 -10c-38.7 0 -73 13.6 -101.4 42l-0.100006 0.0999985l-28.5 -69.1l-32 12l35.9 86.7c-39.8 57.4 -62.9 142.9 -62.9 232.3
-c0 198 94 316 193 316c33.3 0 62 -11.5 85.2 -28.5l23.8 57.5l31 -11l-28.8 -70c3.89999 -4.20001 7.39999 -8.59998 10.8 -13c44 -58 68 -143 68 -242c0 -235 -117 -313 -194 -313zM166.6 93.2c15.3 -39.7 39.4 -68.2 77.4 -68.2c18 0 67 9 89 91c14 51 17 114 17 206
-c0 72.4 -7.89999 127.8 -20 167.6z" />
-    <glyph glyph-name="uniE042" unicode="&#xe042;" 
-d="M-105 286c0 267 -217 485 -485 485c-267 0 -485 -218 -485 -485c0 -268 218 -485 485 -485c268 0 485 217 485 485zM-590 777c272 0 492 -220 492 -491c0 -272 -220 -492 -492 -492c-271 0 -492 220 -492 492c0 271 221 491 492 491zM-541 619c12 0 16 8 16 10
-c0 3 -6 9 -6 17c0 12 12 30 32 30s31 -17 34 -21c-36 -3 -41 -29 -55 -40c17 -4 19 -6 20 -6c8 0 12 4 19 4c8 0 18 -6 21 -9c9 -7 3 -15 12 -32c-4 1 -6 2 -9 2c-6 0 -10 -2 -16 -2c-7 0 -13 3 -18 6c-12 7 -7 16 -22 25c-14 3 -33 7 -58 8c10 -14 10 -40 44 -50
-c-10 -9 -19 -14 -31 -14c-19 0 -32 16 -32 32c0 10 10 18 10 22c0 0 -1 8 -13 11c-31 0 -59 -3 -86 -11c15 -11 25 -37 56 -37h4c-4 -5 -14 -24 -36 -24c-19 0 -32 18 -32 29c0 7 4 14 4 17s-6 9 -15 9h-4c-27 -10 -52 -23 -76 -39c14 -4 28 -16 49 -16c9 0 13 1 21 4
-c-5 -30 -22 -39 -37 -39c-5 0 -11 1 -17 5c-25 14 -4 34 -26 34c-4 0 -6 -1 -9 -2c-22 -18 -42 -39 -59 -61h3c10 0 18 -4 33 -4c22 0 31 9 37 14c0 -3 1 -7 1 -12c0 -24 -16 -40 -35 -40c-33 0 -25 28 -39 28c-5 0 -9 -2 -12 -4c-18 -27 -31 -58 -40 -90c20 11 48 -4 73 33
-c3 -8 6 -15 6 -26c0 -20 -14 -36 -37 -36c-21 0 -24 18 -30 18c-9 0 -14 -6 -17 -11c-4 -21 -6 -41 -6 -63c0 -14 2 -27 3 -39c15 15 47 18 54 60c9 -8 21 -20 21 -38c0 -24 -21 -37 -35 -37c-12 0 -19 8 -23 8c-2 0 -10 -4 -12 -14c4 -18 10 -34 15 -50
-c6 -16 80 -40 80 -57c0 -3 -4 -4 -11 -4c-14 0 -41 4 -51 4c-9 0 -15 -3 -21 -3c-7 0 -11 7 -11 19c0 6 1 12 1 18c0 7 -4 16 -8 30c-3 4 -8 6 -15 6c-6 0 -6 -22 -35 -22c-21 0 -38 17 -38 40c0 9 3 17 5 23c10 -12 22 -25 60 -25c7 0 13 -1 18 -3c-4 18 -8 43 -9 75
-c-1 7 -5 21 -17 21c-6 0 -12 -15 -29 -15c-20 0 -38 14 -38 37c0 12 5 22 11 31c7 -15 17 -29 51 -37c11 -2 18 -5 23 -10c2 33 8 66 19 95v5c0 12 -7 17 -10 17c-4 0 -11 -5 -19 -5c-15 0 -33 15 -33 35c0 23 22 36 25 38c2 -43 35 -48 46 -68c14 32 32 61 55 86
-c2 3 3 7 3 11c0 3 -1 12 -9 12h-5c-24 0 -30 24 -30 33c0 8 3 30 38 38c-3 -7 -4 -11 -4 -19c0 -27 21 -40 22 -59c20 19 41 37 65 51l8 5c4 2 8 7 8 14c0 10 -23 6 -23 34c0 19 15 35 36 35c8 0 12 -2 18 -3c-8 -8 -18 -17 -18 -44c0 -9 1 -10 1 -17c0 -3 -1 -6 -1 -9
-c30 14 62 24 97 29c6 2 13 6 13 14c0 5 -13 10 -13 24c0 18 14 33 33 33c12 0 21 -4 29 -10c-36 -16 -28 -43 -40 -59c8 1 16 1 24 1c14 0 30 -1 45 -3c3 0 5 -1 9 -1zM-786 28c0 2 5 5 9 5c7 0 16 -8 16 -14c0 -17 -30 -10 -35 -17l9 -7c1 -1 2 -1 3 -1s2 1 5 3l2 -3l-7 -7
-l-22 16c10 12 38 3 38 20c0 4 -3 6 -5 6c-6 0 -4 -6 -8 -6c-2 0 -5 3 -5 5zM-728 -3c0 3 0 4 -2 4h-1c-6 0 -19 -22 -19 -30c0 -3 2 -4 3 -4c8 0 19 21 19 30zM-744 -37c-5 0 -11 3 -11 14c0 14 11 28 22 28c7 0 12 -5 12 -13c0 -11 -9 -29 -23 -29zM-682 -24c0 3 -1 6 -4 6
-c-6 0 -14 -22 -14 -30c0 -5 2 -7 3 -7c7 0 15 21 15 31zM-695 -58c-7 0 -13 7 -13 16c0 12 9 28 20 28c6 0 13 -4 13 -16s-8 -28 -20 -28zM-635 -34c0 3 -1 6 -4 6c-9 0 -5 -8 -10 -8c-2 0 -4 1 -4 3c0 1 3 8 13 8c8 0 13 -4 13 -9c0 -6 -7 -9 -9 -10c4 -1 8 -5 8 -11
-c0 -8 -6 -15 -16 -15c-8 0 -14 4 -14 7c0 1 1 2 3 2c6 0 4 -6 9 -6s10 6 10 13c0 6 -5 8 -8 8h-3v3c5 0 12 3 12 9zM-596 -59c-3 0 -5 2 -5 5c0 5 4 6 5 6c3 0 5 -3 5 -6c0 -5 -5 -5 -5 -5zM-363 523c-1 0 -1 -1 -1 -2c0 -11 106 -64 106 -247c0 -90 -44 -173 -85 -187
-c-1 0 -1 -1 -1 -2s0 -1 1 -1c18 0 89 63 89 190c0 60 -4 152 -107 249h-2zM-269 570c4 0 7 -19 8 -19c0 2 -1 6 -1 10c0 2 1 4 2 4c2 0 6 -11 6 -22c0 -4 0 -8 -1 -12l13 -17c1 -1 3 -5 3 -9c0 -2 -4 -8 -5 -12c-2 -12 -10 -21 -18 -32c24 -29 35 -57 35 -105v-14
-c21 22 16 25 24 25c13 0 20 -20 23 -26c-1 5 -4 10 -4 13s3 4 4 4c3 0 4 -2 5 -4c0 3 1 7 4 7s4 -5 4 -5s0 6 5 6c2 0 5 0 5 -8c1 0 2 2 3 2c3 0 4 -2 4 -4c0 -3 -5 -12 -5 -12s4 6 7 6c2 0 2 -2 2 -4c0 -5 -8 -40 -31 -40c-17 0 -19 20 -19 20s-14 -23 -23 -37
-c-5 -7 -11 -11 -15 -13c-1 -13 -3 -27 -4 -42c-7 -81 -65 -153 -123 -153c-1 0 -1 0 -1 1c0 0 0 1 2 2c49 19 79 114 79 167c0 5 -1 10 -1 15c-17 5 -32 26 -42 33v-3c0 -10 -3 -23 -19 -23c-20 0 -34 31 -34 33s1 3 2 3c2 0 7 -4 7 -4s-7 9 -7 12c0 2 1 2 2 2
-c2 0 8 -4 8 -4s-5 6 -5 10c0 2 1 3 3 3c4 0 8 -10 8 -10s-2 5 -2 8c0 4 2 4 3 4c4 0 5 -12 5 -12s0 11 4 11c2 0 5 -1 5 -7c0 -3 -1 -9 -1 -9s7 32 18 32c5 0 7 -5 21 -16c-11 25 -24 51 -24 90c-23 -19 -44 -21 -44 -21c-2 0 -3 0 -19 31c-21 4 -30 13 -30 16c0 1 0 2 1 2
-c3 0 11 -5 13 -5c0 1 -16 10 -16 14c0 1 1 1 2 1c4 0 12 -8 13 -8c0 1 -11 11 -11 15c0 1 0 1 1 1c3 0 12 -8 14 -8h1c0 3 -8 10 -8 14c0 1 1 2 2 2c4 0 14 -14 16 -15v1c0 2 -4 9 -4 12c0 1 1 1 1 1c3 0 9 -6 14 -20c7 -17 18 -25 20 -25c13 0 14 20 31 22
-c-6 14 -19 32 -42 40c-21 7 -31 35 -38 48c-5 11 -12 21 -12 29c0 6 3 13 13 13c5 0 57 -15 74 -31c5 -5 9 -14 11 -23c3 -21 28 -24 45 -38c7 12 15 9 18 22c-4 11 -4 16 -16 25c-9 8 -13 16 -13 20c0 2 0 3 1 3c3 0 9 -10 10 -10v1c0 2 -7 14 -7 19c0 1 1 2 1 2
-c4 0 8 -13 11 -13c1 0 1 1 1 1c0 3 -3 11 -3 15c0 2 1 2 1 2c4 0 9 -16 10 -16c0 1 -3 9 -3 14c0 2 1 2 2 2zM-817 35c-3 0 -5 3 -5 5c0 4 4 6 6 6s4 -3 4 -6c0 -4 -5 -5 -5 -5z" />
-    <glyph glyph-name="zero.fitted" unicode="&#xe010;" horiz-adv-x="491" 
-d="M247 575c-45 0 -106 -46 -106 -292c0 -87 10 -258 103 -258c18 0 67 9 89 91c14 51 17 114 17 206c0 134 -27 210 -58 236c-12 11 -28 17 -45 17zM243 -10c-38.7 0 -73 13.6 -101.4 42c-54.7 54.5 -87.6 155.4 -87.6 262c0 198 94 316 193 316c54 0 95.8 -30.3 122 -65
-c44 -58 68 -143 68 -242c0 -235 -117 -313 -194 -313z" />
-    <glyph glyph-name="semicolon" unicode=";" horiz-adv-x="236" 
-d="M70 355c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53zM123 95c40 0 66 -39 66 -99c0 -70 -58 -118 -118 -129c-7 7 -9 14 -9 24c52 13 88 59 88 80c0 23 -17 29 -36 31c-18 3 -44 12.5 -44 44c0 28 22 49 53 49z" />
-    <glyph glyph-name="seven.fitted" unicode="&#xe017;" horiz-adv-x="438" 
-d="M158 535c-32 0 -65 -7 -87 -87c-11 -1.29999 -21.1 -0.100006 -32 3c8 52 19 112 20 160c0 3 1 3 4 3c18 -4 16 -14 50 -14h206c38 0 60 6 77 11l16 -12c-112 -273 -167 -439 -224 -609l-68 -3l-8 7c68 152 147 347 225 541h-179z" />
-    <glyph glyph-name="nine.fitted" unicode="&#xe019;" horiz-adv-x="474" 
-d="M332.8 292c5.90002 28.8 8.20001 55.5 8.20001 78c0 171 -57 205 -120 205c-49 0 -91 -50 -91 -160c0 -50 22 -146 120 -146c17.4 0 50 1.39999 82.8 23zM323.7 255.7c-29.8 -13.7 -68.7 -21.7 -94.7 -21.7c-136 0 -182 77 -182 163s54 213 185 213
-c77 0 192 -40 192 -243c0 -79 -31 -170 -93 -242c-56 -65 -118 -107 -219 -137c-8 5 -12 14 -12 26c133 49.8 196.6 150.8 223.7 241.7z" />
-    <glyph glyph-name="Euro.fitted" unicode="&#xe01a;" horiz-adv-x="642" 
-d="M26 331l25 44h87.2c29.4 143.6 133.9 235 259.8 235c99 0 142 -19 186 -26c12 -55 18 -106 23 -160c-8 -7 -18 -9 -32 -6c-29 91 -82 157 -165 157c-62.9 0 -161.8 -50.4 -185.7 -200h265.7l-23 -44h-247.3c-0.5 -8.70001 -0.699997 -17.7 -0.699997 -27
-c0 -10 0.399994 -20 1.2 -30h224.8l-23 -45h-195.4c21.8 -108 88.9 -204 178.4 -204c110 0 144 73 168 142c15 0 24 -4 31 -9c-9 -57 -21 -106 -40 -153c-31 -5 -96 -15 -151 -15c-167.9 0 -258.6 100.2 -278.7 239h-129.3l25 45h100.3
-c-0.199997 5.60001 -0.300003 11.3 -0.300003 17c0 13.7 0.600006 27 1.8 40h-105.8z" />
-    <glyph glyph-name="k.sc" unicode="&#xe05b;" horiz-adv-x="554" 
-d="M112 338c0 83 -11 86 -72 91c-6 6 -6 27 0 33c39 -1 83.2 -2 112 -2c31.4 0 64 1 96 2c6 -6 6 -27 0 -33c-48 -5 -57 -8 -57 -91v-89c33 0 62.3 15.8 105 64c77 87 87 113 37 116c-6 6 -6 27 0 33c29.3 -1 62 -2 91 -2c26 0 58.7 1 89 2c6 -6 6 -27 0 -33
-c-40 -2 -76.7 -7.10001 -107 -42l-86 -99c-17 -18 -23 -29 -23 -37c0 -6 4 -11 9 -17l148 -174c13.1 -15.2 37 -26 64 -29c6 -6 6 -27 0 -33c0 0 -49 2 -77 2c-26 0 -51 -1 -62 -2v14c0 13 -1 24 -15 40l-111 138c-15 20 -40 25 -62 25v-93c0 -83 9 -86 57 -91
-c6 -6 6 -27 0 -33c-33 1 -67.3 2 -96 2c-29.4 0 -74 -1 -112 -2c-6 6 -6 27 0 33c61 5 72 8 72 91v216z" />
-    <glyph glyph-name="a.sc" unicode="&#xe051;" horiz-adv-x="556" 
-d="M95 105l162.8 356.8c20.5 2.80002 39.3 11.3 54.4 19.4l153.8 -377.2c23.6 -58 27 -66 80 -73c6 -6 6 -27 0 -33c-29 1 -58.2 2 -88 2c-32.5 0 -71 -1 -106 -2c-6 6 -6 27 0 33c54 5 52.5 12.9 31 67l-21 54h-187c-16.3 0 -18.3 -3.8 -21.7 -11.3l-19.3 -42.7
-c-23 -50 -16 -63 38 -67c6 -6 6 -27 0 -33c-31 1 -69.2 2 -96 2c-26 0 -48 -1 -66 -2c-6 6 -6 27 0 33c53 5 65 30 85 74zM350 186l-80 203l-7 -1l-74 -169c-8.5 -19.5 -10 -33 10 -33h151z" />
-    <glyph glyph-name="b.sc" unicode="&#xe052;" horiz-adv-x="507" 
-d="M188 388v-123h78c65 0 94 26 94 86c0 67 -52 78 -96 78c-69 0 -76 -10 -76 -41zM188 232v-150c0 -37 8.89999 -51 74 -51c102 0 118 57 118 101c0 54.1 -23 100 -114 100h-78zM149 0c-27.7 0 -70 -1 -112 -2c-6 6 -6 27 0 33c61 5 72 8 72 91v216c0 83 -11 87 -72 91
-c-6 6 -6 27 0 33c37 -1 82 -2 111 -2c29.3 0 64 2 117 2c145 0 171 -54 171 -110c0 -39 -32 -84 -72 -102c70 -16 103 -60 103 -125c0 -72.4 -47 -127 -180 -127c-56 0 -108 2 -138 2z" />
-    <glyph glyph-name="c.sc" unicode="&#xe053;" horiz-adv-x="492" 
-d="M276 -10c-74 0 -130.1 20.3 -170 57c-49.1 45.2 -69 113.5 -69 177c0 146 102 246 234 246c80 0 125 -16 163 -16c9.79999 -45.1 11.7 -86.9 12 -128c-10 -6.39999 -20 -6 -30 -3c-12 70 -59 114 -139 114c-75 0 -153 -35 -153 -203c0 -99 58 -206 157 -206
-c67 0 102 20 148 74c8 -2.3 18 -13 20 -20c-47 -63 -95 -92 -173 -92z" />
-    <glyph glyph-name="d.sc" unicode="&#xe054;" horiz-adv-x="565" 
-d="M188 76c0 -28 7 -45 83 -45c110 0 172 37 172 177c0 104 -23 221 -191 221c-39 0 -64 -6 -64 -31v-322zM148 460c29.3 0 65.3 2 133 2c167 0 249 -104 249 -237c0 -175 -124 -227 -235 -227c-80 0 -119.7 2 -146 2c-28.7 0 -74 -1 -112 -2c-6 6 -6 27 0 33
-c61 5 72 8 72 91v216c0 83 -11 87 -72 91c-6 6 -6 27 0 33c39 -1 83.6 -2 111 -2z" />
-    <glyph glyph-name="e.sc" unicode="&#xe055;" horiz-adv-x="477" 
-d="M248 225h-57v-150c0 -33.2 9.8 -44 52 -44h43c83 0 112 50 128 109c11 3 19 1 28 -4c-7 -42 -18 -97 -30 -138c0 0 -66 2 -106 2h-154c-32 0 -76 -1 -112 -2c-6 6 -6 27 0 33c61 5 72 8 72 91v216c0 83 -11 87 -72 91c-6 6 -6 27 0 33c36 -1 82.2 -2 111 -2h207
-c16.8 0 27.2 1 41 4c2 0 3 -1 3 -3c2 -7 14 -85 18 -119c-8 -4 -17 -6 -27 -5c-18 57 -31 90 -113 90h-57c-19 0 -32 -11 -32 -28v-142h57c64.8 0 67 11 69 56c5 5 23 5 28 0c-1 -25 -2 -57.5 -2 -71c0 -15.9 1 -50 2 -73c-5 -5 -23 -5 -28 0c-2 37 -3.20001 56 -69 56z" />
-    <glyph glyph-name="f.sc" unicode="&#xe056;" horiz-adv-x="458" 
-d="M110 122v216c0 83 -11 87 -72 91c-6 6 -6 27 0 33c40 -1 81 -2 111 -2h207c20 0 27 2 41 4c2 0 3 -1 3 -3c2 -7 14 -85 18 -119c-8 -4 -17 -6 -27 -5c-18 57 -31 90 -93 90h-77c-19 0 -32 -11 -32 -28v-157h57c66 0 67 11 69 56c5 5 23 5 28 0c-1 -20 -2 -43.3 -2 -71
-c0 -28.5 1 -52 2 -73c-5 -5 -23 -5 -28 0c-2 33.8 -4.20001 56 -69 56h-57v-88c0 -82 11 -87 72 -91c6 -6 6 -27 0 -33c-37 1 -76 2 -111 2c-33.2 0 -74 -1 -112 -2c-6 6 -6 27 0 33c61 5 72 8 72 91z" />
-    <glyph glyph-name="g.sc" unicode="&#xe057;" horiz-adv-x="541" 
-d="M472 91.2v-32.2c0 -7 4 -16 11 -23c-66.5 -36 -140 -46 -208 -46c-143 0 -238 103 -238 230c0 158 114 250 257 250c56 0 130 -16 160 -16c9.39999 -45.3 11.9 -87 13 -128c-10 -6.5 -20 -6.10001 -30 -3c-15 64 -57 114 -156 114c-96 0 -154 -83 -154 -204
-c0 -82 41 -210 166 -210c35 0 68 5 100 14v54c0 83 -5 87 -66 91c-6 6 -6 27 0 33c29 -1 74.7 -2 105 -2c30.7 0 59 1 77 2c6 -6 6 -27 0 -33c-31 -5 -37 -8 -37 -90.8z" />
-    <glyph glyph-name="h.sc" unicode="&#xe058;" horiz-adv-x="611" 
-d="M500 338v-216c0 -83 11 -87 72 -91c6 -6 6 -27 0 -33c-39 1 -80.7 2 -111 2c-34.8 0 -75 -1 -112 -2c-6 6 -6 27 0 33c61 5 72 8 72 91v97h-231v-97c0 -83 11 -87 72 -91c6 -6 6 -27 0 -33c-39 1 -79.2 2 -111 2s-72 -1 -112 -2c-6 6 -6 27 0 33c61 5 72 8 72 91v216
-c0 83 -11 87 -72 91c-6 6 -6 27 0 33c40 -1 81.4 -2 111 -2c31.8 0 74 1 112 2c6 -6 6 -27 0 -33c-61 -5 -72 -8 -72 -91v-86h231v86c0 83 -11 87 -72 91c-6 6 -6 27 0 33c39 -1 83 -2 111 -2c33 0 77 0 112 2c6 -6 6 -27 0 -33c-61 -5 -72 -8 -72 -91z" />
-    <glyph glyph-name="i.sc" unicode="&#xe059;" horiz-adv-x="311" 
-d="M195 338v-216c0 -83 11 -87 72 -91c6 -6 6 -27 0 -33c-35 1 -78.6 2 -111 2c-33.7 0 -75 -1 -112 -2c-6 6 -6 27 0 33c61 5 72 8 72 91v216c0 83 -11 87 -72 91c-6 6 -6 27 0 33c39 -1 80.7 -2 111 -2c30.7 0 74 1 112 2c6 -6 6 -27 0 -33c-61 -5 -72 -8 -72 -91z" />
-    <glyph glyph-name="j.sc" unicode="&#xe05a;" horiz-adv-x="311" 
-d="M129 338c0 83 -16 87 -77 91c-6 6 -6 27 0 33c39 -1 87 -2 116 -2c32.6 0 76 1 112 2c6 -6 6 -27 0 -33c-61 -5 -72 -8 -72 -91v-242c0 -126 -34 -192 -88 -235c-42 -35 -83 -36 -106 -36c-21 0 -60 17 -60 50c0 21 23 34 36 34c28 0 39 -13 48 -25c7 -10 13 -17 26 -17
-c31 0 65 28 65 208v263z" />
-    <glyph glyph-name="l.sc" unicode="&#xe05c;" horiz-adv-x="431" 
-d="M379 0h-224s-66 -1 -115 -2c-6 6 -6 27 0 33c70 3 72 8 72 91v216c0 83 -11 87 -72 91c-6 6 -6 27 0 33c37 -1 79.7 -2 111 -2c34.3 0 75 1 112 2c6 -6 6 -27 0 -33c-61 -5 -72 -8 -72 -91v-269c0 -19 14 -35 37 -35h45c63 0 92 49 108 108c11 3 19 1 28 -4
-c-7 -42 -30 -138 -30 -138z" />
-    <glyph glyph-name="m.sc" unicode="&#xe05d;" horiz-adv-x="667" 
-d="M483 382l-164 -386c-2.10001 -5 -7 -8 -11 -8c-5 0 -10.1 3 -12 8l-142 379h-2l-29 -254c-8.5 -74.1 -8.7 -85.8 48 -90c6 -6 6 -27 0 -33c-20 1 -57.2 2 -77 2c-16.4 0 -46 -1 -66 -2c-6 6 -6 27 0 33c37.8 3 51 6.6 60.3 90l31.5 280.8c2 19 -7 24.2 -55.8 27.2
-c-6 6 -6 27 0 33l139 -2l128 -358l150 358l135 2c6 -6 6 -27 0 -33c-50 -4 -58.7 -7.79999 -56 -48l19.9 -258c6.19995 -81 7.09998 -86.8 58.1 -92c6 -6 6 -27 0 -33c-27 1 -56 2 -86 2c-28 0 -65 -1 -100 -2c-6 6 -6 27 0 33c54.4 5.2 54.9 9 51.3 92l-13.3 259h-7z" />
-    <glyph glyph-name="n.sc" unicode="&#xe05e;" horiz-adv-x="602" 
-d="M155 122c0 -83 11 -86 72 -91c6 -6 6 -27 0 -33c-30 1 -66 2 -96 2s-65 -1 -95 -2c-6 6 -6 27 0 33c61 4 72 8 72 91v274c-10 18 -21 30 -59 33c-3 0 -9 2 -9 6v24l2 3l142 -2l229 -311c31 -42 34 -25 34 2v187c0 83 -11 87 -72 91c-6 6 -6 27 0 33c30 -1 65 -2 95 -2
-s66 1 96 2c6 -6 6 -27 0 -33c-61 -5 -72 -8 -72 -91v-323c0 -20 -10 -27 -22 -27c-15 0 -31 6 -46 22l-235 313c-23.3 28.7 -36 38.2 -36 -11v-190z" />
-    <glyph glyph-name="o.sc" unicode="&#xe05f;" horiz-adv-x="563" 
-d="M274 437c-75 0 -150 -68 -150 -203c0 -123 69 -211 166 -211c89 0 150 75 150 198c0 134 -77 216 -166 216zM527 235c0 -130 -88 -245 -252 -245c-135 0 -238 96 -238 232c0 147 107 248 246 248c130 0 244 -93 244 -235z" />
-    <glyph glyph-name="p.sc" unicode="&#xe060;" horiz-adv-x="461" 
-d="M189 384v-156c20 -8 45 -11 65 -11c60 0 86 38.9 86 111c0 70.1 -32 101 -91 101c-48 0 -60 -13 -60 -45zM189 122c0 -83 11 -87 72 -91c6 -6 6 -27 0 -33c-33 1 -68 2 -111 2c-44 0 -79 -1 -112 -2c-6 6 -6 27 0 33c61 5 72 8 72 91v216c0 83 -11 87 -72 91
-c-6 6 -6 27 0 33c40 -1 82.3 -2 111 -2c27 0 69 2 106 2c142 0 172 -70 172 -122c0 -60 -41 -156 -175 -156c-25 0 -45 4 -63 12v-74z" />
-    <glyph glyph-name="q.sc" unicode="&#xe061;" horiz-adv-x="563" 
-d="M274 437c-75 0 -150 -68 -150 -203c0 -123 69 -211 166 -211c89 0 150 75 150 198c0 134 -77 216 -166 216zM241.8 -51.4c2.89999 0.200001 5.59999 0.400002 8.2 0.400002c89 0 147 -65 218 -65c23 0 52 8 69 29l14 -10c-31 -45 -65 -66 -116 -66
-c-103 0 -148 77 -222 77c-5.3 0 -14.3 -1.9 -24.1 -7.3c-12.4 -12.1 -24.2 -25.6 -34.9 -40.7l-33 16c25 35.7 75.5 78.8 130.8 109c-123.4 10.3 -214.8 102.9 -214.8 231c0 147 107 248 246 248c130 0 244 -93 244 -235c0 -110.7 -63.8 -210.5 -184.1 -237.7
-c-25.8 -9 -63.3 -24.1 -101.1 -48.7z" />
-    <glyph glyph-name="r.sc" unicode="&#xe062;" horiz-adv-x="511" 
-d="M347 346c0 60 -20.5 85 -90 85c-55.7 0 -66 -10 -66 -63v-130h44c88.5 0 112 29 112 108zM191 122c0 -83 9.5 -88 57 -91c6 -6 6 -27 0 -33c-32 1 -65.3 2 -96 2c-33.1 0 -74 -1 -112 -2c-6 6 -6 27 0 33c61 5 72 8 72 91v216c0 83 -11 87 -72 91c-6 6 -6 27 0 33
-c40 -1 82 -2 111 -2c30.3 0 87 4 112 4c118.7 0 171 -35 171 -118c0 -69 -51 -110.3 -85 -122v-2c12.5 -13 25 -30 37 -61l29 -75c20.1 -52 39 -58 75 -58c6.5 -7.8 8.5 -17.7 6 -28c-17.3 -4.3 -48 -7 -63 -7c-43 0 -77.1 23.5 -100 86l-22 60c-13.5 36.9 -27.5 70 -65 70
-h-55v-87z" />
-    <glyph glyph-name="s.sc" unicode="&#xe063;" horiz-adv-x="412" 
-d="M339 448c5.5 -38 6 -77 4 -106c-9 -5 -18 -5 -27 -2c-15 64 -59 97 -108 97c-52 0 -80 -28 -80 -71c0 -42.5 47 -67 97 -91c48.1 -23.1 139 -68 139 -146c0 -86.1 -57 -141 -146 -141c-77 0 -106 17 -125 17c-12 0 -22 -2 -33 -6c-7 32 -8.7 70.5 -11 141
-c9.9 3.8 19 4.5 32 2c18 -89 63 -121 119 -121c59 0 86 28 86 86c0 57 -43 80 -108 110c-41 19 -119 58 -119 131c0 82 78 122 148 122c81 0 107 -22 132 -22z" />
-    <glyph glyph-name="t.sc" unicode="&#xe064;" horiz-adv-x="529" 
-d="M304 122c0 -83 11 -87 72 -91c6 -6 6 -27 0 -33c-37 1 -76.5 2 -111 2s-75 -1 -112 -2c-6 6 -6 27 0 33c61 5 72 8 72 91v253c0 39 -12 51 -43 51h-24c-65 0 -76 -20 -96 -92c-9 -0.899994 -18 -0.200012 -27 3c5.5 47 6.5 86 7 133c27 -4.70001 85 -10 183 -10h79
-c84 0 148.3 5.70001 183 10c1.5 -47.5 3 -84.5 8 -133c-7.60001 -4.70001 -16.8 -5.10001 -27 -3c-20 72 -33 92 -96 92h-26c-32 0 -42 -15 -42 -52v-252z" />
-    <glyph glyph-name="u.sc" unicode="&#xe065;" horiz-adv-x="576" 
-d="M435 338c0 83 -11 87 -72 91c-6 6 -6 27 0 33c30 -1 65 -2 95 -2s66 1 96 2c6 -6 6 -27 0 -33c-61 -5 -72 -8 -72 -91v-114c0 -146 -41 -234 -196 -234c-109.5 0 -182 41 -182 191v157c0 83 -11 87 -72 91c-6 6 -6 27 0 33c36 -1 75.4 -2 111 -2c32.5 0 73 1 112 2
-c6 -6 6 -27 0 -33c-61 -5 -72 -8 -72 -91v-136c0 -93 21 -171 120 -171c132 0 132 94 132 180v127z" />
-    <glyph glyph-name="v.sc" unicode="&#xe066;" horiz-adv-x="548" 
-d="M182.9 362l104.3 -249.3c2.29999 -3 4.09998 -3 6.89999 0l108.6 249.3c20.3 51 15.3 63 -38.7 67c-6 6 -6 27 0 33c27 -1 55 -2 92 -2c26 0 50 1 72 2c6 -6 6 -27 0 -33c-54 -4 -65.1 -28.2 -85.6 -74l-146.4 -327c-14.2 -31.7 -18 -40 -25 -40
-c-11.4 0 -16.4 10.7 -29 40l-141.6 328c-24.7 57.2 -31.4 68.3 -80.4 73c-6 6 -6 27 0 33c26 -1 55.7 -2 88 -2c41.3 0 75 1 106 2c6 -6 6 -27 0 -33c-53.7 -5 -54.8 -10.4 -31.1 -67z" />
-    <glyph glyph-name="w.sc" unicode="&#xe067;" horiz-adv-x="796" 
-d="M651.6 361c14 34.4 24.4 64 -49.6 68c-6 6 -6 27 0 33c28 -1 57 -2 95 -2c36 0 58 1 79 2c6 -6 6 -27 0 -33c-51 -3 -67.2 -31.7 -83.4 -72l-128.6 -319c-11.8 -30.3 -21.9 -50 -33 -50c-13.1 0 -23.3 20.3 -35 50l-90.5 220c-5.20001 12.5 -9.29999 11.6 -16 -4
-l-92.5 -216c-18.4 -43 -24 -50 -35 -50c-9.10001 0 -17 13.1 -32 49l-135.9 325c-21.7 52 -27 62.2 -74.1 67c-6 6 -6 27 0 33c26.2 -1 54 -2 92 -2c36 0 69 1 100 2c6 -6 6 -27 0 -33c-48 -3 -49 -18.7 -30.1 -67l96.8 -246.5c2.5 -9.6 6.79999 -9.4 9.79999 -2.5l76.5 173
-c14 31.7 15.5 43.7 12.6 51c-29.6 74.5 -36.6 88.5 -83.6 92c-6 6 -6 27 0 33c25 -1 53 -2 88 -2s68 1 100 2c6 -6 6 -27 0 -33c-53 -4 -55 -13.7 -36.5 -61l98.2 -251.5c2.89996 -6.9 5.5 -7.7 8 0z" />
-    <glyph glyph-name="x.sc" unicode="&#xe068;" horiz-adv-x="532" 
-d="M199 384l65 -97c8 -12 12.2 -13.1 20 -2l69 98c26 36 13 42 -26 46c-6 6 -6 27 0 33c28 -1 59 -2 91 -2s57 1 78 2c6 -6 6 -27 0 -33c-39 -3 -64 -11 -104 -61l-90 -115c-5 -6 -4.60001 -9.7 0 -16l99 -136c43 -61 56 -67 105 -70c6 -6 6 -27 0 -33c-26 1 -55 2 -96 2
-c-39 0 -75 -1 -107 -2c-6 6 -6 27 0 33c34 4 51 8 14 59l-61 86c-6.60001 9.3 -9.89999 10.9 -19 -2l-69 -98c-24 -35 -14 -41 25 -45c6 -6 6 -27 0 -33c-28 1 -58 2 -90 2s-56 -1 -77 -2c-6 6 -6 27 0 33c38 2 62 7 104 62l90 116c4 5 4.39999 8.3 -1 16l-96 136
-c-30 44 -58 65 -94 68c-6 6 -6 27 0 33c28 -1 60 -2 92 -2s80 1 109 2c6 -6 6 -27 0 -33c-48 -5 -56 -9 -31 -45z" />
-    <glyph glyph-name="y.sc" unicode="&#xe069;" horiz-adv-x="489" 
-d="M341.7 362c27.3 48 27.3 61 -36.7 67c-6 6 -6 27 0 33c26 -1 54 -2 91 -2c26 0 49 1 71 2c6 -6 6 -27 0 -33c-46.3 -5.29999 -63.9 -33.1 -87.6 -74l-80.4 -139c-7.5 -10.4 -10.4 -24 -10 -42.5l1 -51.5c0 -83 10 -87 71 -91c6 -6 6 -27 0 -33c-36 1 -74.7 2 -111 2
-c-36 0 -75 -1 -112 -2c-6 6 -6 27 0 33c61 5 71 8 71 91l1 49.5c0.399994 18 -7.10001 31.8 -14.4 43.5l-86.2 141c-28 46.9 -40.9 67.5 -87.4 73c-6 6 -6 27 0 33c29 -1 59 -2 88 -2c37 0 72 1 106 2c6 -6 6 -27 0 -33c-60 -3.5 -50.1 -22.8 -24.1 -67l76.1 -126h2z" />
-    <glyph glyph-name="z.sc" unicode="&#xe06a;" horiz-adv-x="453" 
-d="M154 460h194c23 0 57 2 68 2c4.5 0 6 -1.20001 6 -5c0 -8 -4 -15 -19 -36c-89 -121.5 -168.1 -239.4 -248 -362c-9.39999 -14 -10.1 -27.4 14 -27l119 4c62.2 2.1 84.3 47.4 111 107c10.4 0.600006 19.3 -1.89999 27 -7c-17 -58 -28 -105 -32 -136h-342
-c-11 0 -15 4 -15 10s3 11 7 17c81 125.5 162.3 250.7 257 378c4.39999 6 13.9 23.2 -2 23l-141 -4c-29 -0.799988 -63 -20 -84 -92c-8.7 -1.10001 -17.3 0.100006 -26 3c9 49 14 87 15 132c0 2.39999 1.6 3 4 3c17.5 -3.39999 54.9 -10 87 -10z" />
-    <glyph glyph-name="agrave.sc" unicode="&#xe070;" horiz-adv-x="556" 
-d="M95 105l162.8 356.8c20.5 2.80002 39.3 11.3 54.4 19.4l153.8 -377.2c23.6 -58 27 -66 80 -73c6 -6 6 -27 0 -33c-29 1 -58.2 2 -88 2c-32.5 0 -71 -1 -106 -2c-6 6 -6 27 0 33c54 5 52.5 12.9 31 67l-21 54h-187c-16.3 0 -18.3 -3.8 -21.7 -11.3l-19.3 -42.7
-c-23 -50 -16 -63 38 -67c6 -6 6 -27 0 -33c-31 1 -69.2 2 -96 2c-26 0 -48 -1 -66 -2c-6 6 -6 27 0 33c53 5 65 30 85 74zM350 186l-80 203l-7 -1l-74 -169c-8.5 -19.5 -10 -33 10 -33h151zM292 672l70 -126c5 -10 6 -17 6 -24c0 -5 -7 -11 -15 -11c-6 0 -13 5 -29 20
-l-114 109l2 11c8 6 31 23 65 23c5 0 11 -1 15 -2z" />
-    <glyph glyph-name="aacute.sc" unicode="&#xe071;" horiz-adv-x="556" 
-d="M95 105l162.8 356.8c20.5 2.80002 39.3 11.3 54.4 19.4l153.8 -377.2c23.6 -58 27 -66 80 -73c6 -6 6 -27 0 -33c-29 1 -58.2 2 -88 2c-32.5 0 -71 -1 -106 -2c-6 6 -6 27 0 33c54 5 52.5 12.9 31 67l-21 54h-187c-16.3 0 -18.3 -3.8 -21.7 -11.3l-19.3 -42.7
-c-23 -50 -16 -63 38 -67c6 -6 6 -27 0 -33c-31 1 -69.2 2 -96 2c-26 0 -48 -1 -66 -2c-6 6 -6 27 0 33c53 5 65 30 85 74zM350 186l-80 203l-7 -1l-74 -169c-8.5 -19.5 -10 -33 10 -33h151zM304 666c3 1 9 2 14 2c6.39999 0 32 -1 55 -23l3 -11l-115 -109
-c-15 -15 -23 -19 -30 -19s-14 6 -14 13c0 11.2 3.3 15.2 11.4 28z" />
-    <glyph glyph-name="acircumflex.sc" unicode="&#xe072;" horiz-adv-x="556" 
-d="M95 105l162.8 356.8c20.5 2.80002 39.3 11.3 54.4 19.4l153.8 -377.2c23.6 -58 27 -66 80 -73c6 -6 6 -27 0 -33c-29 1 -58.2 2 -88 2c-32.5 0 -71 -1 -106 -2c-6 6 -6 27 0 33c54 5 52.5 12.9 31 67l-21 54h-187c-16.3 0 -18.3 -3.8 -21.7 -11.3l-19.3 -42.7
-c-23 -50 -16 -63 38 -67c6 -6 6 -27 0 -33c-31 1 -69.2 2 -96 2c-26 0 -48 -1 -66 -2c-6 6 -6 27 0 33c53 5 65 30 85 74zM350 186l-80 203l-7 -1l-74 -169c-8.5 -19.5 -10 -33 10 -33h151zM304 665c29 -47 73 -100 109 -140c-5 -7 -13.6 -15.1 -23 -17
-c-38 24 -73 52 -103 83c-32 -32 -65 -61 -104 -83c-9 2 -16 8 -22 17c36 40 82 94 111 140c10.7 2.29999 21.3 3 32 0z" />
-    <glyph glyph-name="atilde.sc" unicode="&#xe073;" horiz-adv-x="556" 
-d="M95 105l162.8 356.8c20.5 2.80002 39.3 11.3 54.4 19.4l153.8 -377.2c23.6 -58 27 -66 80 -73c6 -6 6 -27 0 -33c-29 1 -58.2 2 -88 2c-32.5 0 -71 -1 -106 -2c-6 6 -6 27 0 33c54 5 52.5 12.9 31 67l-21 54h-187c-16.3 0 -18.3 -3.8 -21.7 -11.3l-19.3 -42.7
-c-23 -50 -16 -63 38 -67c6 -6 6 -27 0 -33c-31 1 -69.2 2 -96 2c-26 0 -48 -1 -66 -2c-6 6 -6 27 0 33c53 5 65 30 85 74zM350 186l-80 203l-7 -1l-74 -169c-8.5 -19.5 -10 -33 10 -33h151zM355 574c22 0 33 10 47 52c11 1 21 -2 27 -6c-12 -60 -41 -99 -87 -99
-c-22 0 -43 18 -64 32c-18 11 -37 19 -54 19c-26 0 -36 -15 -46 -48c-11 -2 -21 -1 -27 5c14 59 37 98 80 98c30 0 52 -20 72 -34c16 -12 33 -19 52 -19z" />
-    <glyph glyph-name="adieresis.sc" unicode="&#xe074;" horiz-adv-x="556" 
-d="M95 105l162.8 356.8c20.5 2.80002 39.3 11.3 54.4 19.4l153.8 -377.2c23.6 -58 27 -66 80 -73c6 -6 6 -27 0 -33c-29 1 -58.2 2 -88 2c-32.5 0 -71 -1 -106 -2c-6 6 -6 27 0 33c54 5 52.5 12.9 31 67l-21 54h-187c-16.3 0 -18.3 -3.8 -21.7 -11.3l-19.3 -42.7
-c-23 -50 -16 -63 38 -67c6 -6 6 -27 0 -33c-31 1 -69.2 2 -96 2c-26 0 -48 -1 -66 -2c-6 6 -6 27 0 33c53 5 65 30 85 74zM350 186l-80 203l-7 -1l-74 -169c-8.5 -19.5 -10 -33 10 -33h151zM157 573c0 26 21 48 47 48s47 -22 47 -48s-21 -47 -47 -47s-47 21 -47 47zM326 573
-c0 26 21 48 47 48s47 -22 47 -48s-21 -47 -47 -47s-47 21 -47 47z" />
-    <glyph glyph-name="aring.sc" unicode="&#xe075;" horiz-adv-x="556" 
-d="M95 105l162.8 356.8c20.5 2.80002 39.3 11.3 54.4 19.4l153.8 -377.2c23.6 -58 27 -66 80 -73c6 -6 6 -27 0 -33c-29 1 -58.2 2 -88 2c-32.5 0 -71 -1 -106 -2c-6 6 -6 27 0 33c54 5 52.5 12.9 31 67l-21 54h-187c-16.3 0 -18.3 -3.8 -21.7 -11.3l-19.3 -42.7
-c-23 -50 -16 -63 38 -67c6 -6 6 -27 0 -33c-31 1 -69.2 2 -96 2c-26 0 -48 -1 -66 -2c-6 6 -6 27 0 33c53 5 65 30 85 74zM350 186l-80 203l-7 -1l-74 -169c-8.5 -19.5 -10 -33 10 -33h151zM287 634c-31 0 -48 -23 -48 -53c0 -28 17 -53 48 -53s48 25 48 53
-c0 31 -18 53 -48 53zM199 581c0 46 42 85 88 85s88 -38 88 -85c0 -45 -40 -85 -88 -85c-46 0 -88 39 -88 85z" />
-    <glyph glyph-name="ae.sc" unicode="&#xe076;" horiz-adv-x="662" 
-d="M505 34c61 0 84 40 99 90l26 -3c-12 -49 -20 -89 -21 -121h-240c-39 0 -99 -2 -99 -2l-1 2v22c0 2 1 4.5 5 5l17 2c31.6 3.7 41 12 41 32v155h-112c-19 0 -25 -5 -29 -13l-72 -144c-9 -18 3 -21 33 -30l10 -2c3 -1 6 -3 6 -6v-21l-1 -2s-82 2 -101 2s-60 -2 -60 -2l-1 2
-v21c0 3 2 5.6 6 6c33.5 3 52 20 60 34c20 32 66 117 97 177c16 32 73 146 73 174c0 12 -6.5 18 -33 21c-6 0.700012 -6 3 -6 4v23l2 2s88 -2 164 -2h137c30 0 101 2 101 2l2 -2c1 -43 8 -82 15 -120l-25 -4c-11 37 -30 90 -94 90h-70c-19 0 -29 -6 -29 -23v-156h61
-c27 0 34 12 39 32l5 21c1 4 3 6 6 6h17c2 0 3 -1 3 -3c-2 -23 -6 -51 -6 -75c0 -25 3 -45 6 -69l-2 -2h-18c-4 0 -6 3 -7 5l-4 22c-5 21 -13 31 -39 31h-61v-156c0 -19 12 -25 29 -25h71zM276 393l-59 -136c-1 -2 -2 -4 -2 -5c0 -4 6 -5 20 -5h97v144c0 31 -9 42 -22 42
-c-10 0 -23 -16 -34 -40z" />
-    <glyph glyph-name="ccedilla.sc" unicode="&#xe077;" horiz-adv-x="492" 
-d="M263 -96c-19 0 -29 -1 -45 -6l-6 6l36.3 87c-60.5 4.5 -107.6 24 -142.3 56c-49.1 45.2 -69 113.5 -69 177c0 146 102 246 234 246c80 0 125 -16 163 -16c9.79999 -45.1 11.7 -86.9 12 -128c-10 -6.39999 -20 -6 -30 -3c-12 70 -59 114 -139 114
-c-75 0 -153 -35 -153 -203c0 -99 58 -206 157 -206c67 0 102 20 148 74c8 -2.3 18 -13 20 -20c-45.7 -61.3 -92.4 -90.4 -166.7 -91.9l-21.3 -57.1c8 2 17 3 26 3c40 0 71 -24 71 -62c0 -43 -46 -74 -107 -74c-32 0 -49 6 -74 17c0 12 3 19 10 26c27 -10 38 -14 58 -14
-c30 0 51 14 51 40c0 21 -10 35 -33 35z" />
-    <glyph glyph-name="egrave.sc" unicode="&#xe078;" horiz-adv-x="477" 
-d="M248 225h-57v-150c0 -33.2 9.8 -44 52 -44h43c83 0 112 50 128 109c11 3 19 1 28 -4c-7 -42 -18 -97 -30 -138c0 0 -66 2 -106 2h-154c-32 0 -76 -1 -112 -2c-6 6 -6 27 0 33c61 5 72 8 72 91v216c0 83 -11 87 -72 91c-6 6 -6 27 0 33c36 -1 82.2 -2 111 -2h207
-c16.8 0 27.2 1 41 4c2 0 3 -1 3 -3c2 -7 14 -85 18 -119c-8 -4 -17 -6 -27 -5c-18 57 -31 90 -113 90h-57c-19 0 -32 -11 -32 -28v-142h57c64.8 0 67 11 69 56c5 5 23 5 28 0c-1 -25 -2 -57.5 -2 -71c0 -15.9 1 -50 2 -73c-5 -5 -23 -5 -28 0c-2 37 -3.20001 56 -69 56z
-M229 682l70 -126c5 -10 6 -17 6 -24c0 -5 -7 -11 -15 -11c-6 0 -13 5 -29 20l-114 109l2 11c8 6 31 23 65 23c5 0 11 -1 15 -2z" />
-    <glyph glyph-name="eacute.sc" unicode="&#xe079;" horiz-adv-x="477" 
-d="M248 225h-57v-150c0 -33.2 9.8 -44 52 -44h43c83 0 112 50 128 109c11 3 19 1 28 -4c-7 -42 -18 -97 -30 -138c0 0 -66 2 -106 2h-154c-32 0 -76 -1 -112 -2c-6 6 -6 27 0 33c61 5 72 8 72 91v216c0 83 -11 87 -72 91c-6 6 -6 27 0 33c36 -1 82.2 -2 111 -2h207
-c16.8 0 27.2 1 41 4c2 0 3 -1 3 -3c2 -7 14 -85 18 -119c-8 -4 -17 -6 -27 -5c-18 57 -31 90 -113 90h-57c-19 0 -32 -11 -32 -28v-142h57c64.8 0 67 11 69 56c5 5 23 5 28 0c-1 -25 -2 -57.5 -2 -71c0 -15.9 1 -50 2 -73c-5 -5 -23 -5 -28 0c-2 37 -3.20001 56 -69 56z
-M259 663c3 1 9 2 14 2c6.39999 0 32 -1 55 -23l3 -11l-115 -109c-15 -15 -23 -19 -30 -19s-14 6 -14 13c0 11.2 3.3 15.2 11.4 28z" />
-    <glyph glyph-name="ecircumflex.sc" unicode="&#xe07a;" horiz-adv-x="477" 
-d="M248 225h-57v-150c0 -33.2 9.8 -44 52 -44h43c83 0 112 50 128 109c11 3 19 1 28 -4c-7 -42 -18 -97 -30 -138c0 0 -66 2 -106 2h-154c-32 0 -76 -1 -112 -2c-6 6 -6 27 0 33c61 5 72 8 72 91v216c0 83 -11 87 -72 91c-6 6 -6 27 0 33c36 -1 82.2 -2 111 -2h207
-c16.8 0 27.2 1 41 4c2 0 3 -1 3 -3c2 -7 14 -85 18 -119c-8 -4 -17 -6 -27 -5c-18 57 -31 90 -113 90h-57c-19 0 -32 -11 -32 -28v-142h57c64.8 0 67 11 69 56c5 5 23 5 28 0c-1 -25 -2 -57.5 -2 -71c0 -15.9 1 -50 2 -73c-5 -5 -23 -5 -28 0c-2 37 -3.20001 56 -69 56z
-M261 664c29 -47 73 -100 109 -140c-5 -7 -13.6 -15.1 -23 -17c-38 24 -73 52 -103 83c-32 -32 -65 -61 -104 -83c-9 2 -16 8 -22 17c36 40 82 94 111 140c10.7 2.29999 21.3 3 32 0z" />
-    <glyph glyph-name="edieresis.sc" unicode="&#xe07b;" horiz-adv-x="477" 
-d="M248 225h-57v-150c0 -33.2 9.8 -44 52 -44h43c83 0 112 50 128 109c11 3 19 1 28 -4c-7 -42 -18 -97 -30 -138c0 0 -66 2 -106 2h-154c-32 0 -76 -1 -112 -2c-6 6 -6 27 0 33c61 5 72 8 72 91v216c0 83 -11 87 -72 91c-6 6 -6 27 0 33c36 -1 82.2 -2 111 -2h207
-c16.8 0 27.2 1 41 4c2 0 3 -1 3 -3c2 -7 14 -85 18 -119c-8 -4 -17 -6 -27 -5c-18 57 -31 90 -113 90h-57c-19 0 -32 -11 -32 -28v-142h57c64.8 0 67 11 69 56c5 5 23 5 28 0c-1 -25 -2 -57.5 -2 -71c0 -15.9 1 -50 2 -73c-5 -5 -23 -5 -28 0c-2 37 -3.20001 56 -69 56z
-M115 574c0 26 21 48 47 48s47 -22 47 -48s-21 -47 -47 -47s-47 21 -47 47zM284 574c0 26 21 48 47 48s47 -22 47 -48s-21 -47 -47 -47s-47 21 -47 47z" />
-    <glyph glyph-name="igrave.sc" unicode="&#xe07c;" horiz-adv-x="311" 
-d="M195 338v-216c0 -83 11 -87 72 -91c6 -6 6 -27 0 -33c-35 1 -78.6 2 -111 2c-33.7 0 -75 -1 -112 -2c-6 6 -6 27 0 33c61 5 72 8 72 91v216c0 83 -11 87 -72 91c-6 6 -6 27 0 33c39 -1 80.7 -2 111 -2c30.7 0 74 1 112 2c6 -6 6 -27 0 -33c-61 -5 -72 -8 -72 -91z
-M112 665l70 -126c5 -10 6 -17 6 -24c0 -5 -7 -11 -15 -11c-6 0 -13 5 -29 20l-114 109l2 11c8 6 31 23 65 23c5 0 11 -1 15 -2z" />
-    <glyph glyph-name="iacute.sc" unicode="&#xe07d;" horiz-adv-x="311" 
-d="M195 338v-216c0 -83 11 -87 72 -91c6 -6 6 -27 0 -33c-35 1 -78.6 2 -111 2c-33.7 0 -75 -1 -112 -2c-6 6 -6 27 0 33c61 5 72 8 72 91v216c0 83 -11 87 -72 91c-6 6 -6 27 0 33c39 -1 80.7 -2 111 -2c30.7 0 74 1 112 2c6 -6 6 -27 0 -33c-61 -5 -72 -8 -72 -91z
-M173 663c3 1 9 2 14 2c6.39999 0 32 -1 55 -23l3 -11l-115 -109c-15 -15 -23 -19 -30 -19s-14 6 -14 13c0 11.2 3.3 15.2 11.4 28z" />
-    <glyph glyph-name="icircumflex.sc" unicode="&#xe07e;" horiz-adv-x="311" 
-d="M195 338v-216c0 -83 11 -87 72 -91c6 -6 6 -27 0 -33c-35 1 -78.6 2 -111 2c-33.7 0 -75 -1 -112 -2c-6 6 -6 27 0 33c61 5 72 8 72 91v216c0 83 -11 87 -72 91c-6 6 -6 27 0 33c39 -1 80.7 -2 111 -2c30.7 0 74 1 112 2c6 -6 6 -27 0 -33c-61 -5 -72 -8 -72 -91z
-M167 665c29 -47 73 -100 109 -140c-5 -7 -13.6 -15.1 -23 -17c-38 24 -73 52 -103 83c-32 -32 -65 -61 -104 -83c-9 2 -16 8 -22 17c36 40 82 94 111 140c10.7 2.29999 21.3 3 32 0z" />
-    <glyph glyph-name="idieresis.sc" unicode="&#xe07f;" horiz-adv-x="311" 
-d="M195 338v-216c0 -83 11 -87 72 -91c6 -6 6 -27 0 -33c-35 1 -78.6 2 -111 2c-33.7 0 -75 -1 -112 -2c-6 6 -6 27 0 33c61 5 72 8 72 91v216c0 83 -11 87 -72 91c-6 6 -6 27 0 33c39 -1 80.7 -2 111 -2c30.7 0 74 1 112 2c6 -6 6 -27 0 -33c-61 -5 -72 -8 -72 -91zM16 574
-c0 26 21 48 47 48s47 -22 47 -48s-21 -47 -47 -47s-47 21 -47 47zM185 574c0 26 21 48 47 48s47 -22 47 -48s-21 -47 -47 -47s-47 21 -47 47z" />
-    <glyph glyph-name="eth.sc" unicode="&#xe080;" horiz-adv-x="565" 
-d="M239 247v-39h-51v-132c0 -28 7 -45 83 -45c110 0 172 37 172 177c0 104 -23 221 -191 221c-39 0 -64 -6 -64 -31v-151h51zM148 460c29.3 0 65.3 2 133 2c167 0 249 -104 249 -237c0 -175 -124 -227 -235 -227c-80 0 -119.7 2 -146 2c-28.7 0 -74 -1 -112 -2
-c-6 6 -6 27 0 33c61 5 72 8 72 91v86h-79v39h79v91c0 83 -11 87 -72 91c-6 6 -6 27 0 33c39 -1 83.6 -2 111 -2z" />
-    <glyph glyph-name="ntilde.sc" unicode="&#xe081;" horiz-adv-x="602" 
-d="M375 574c22 0 33 10 47 52c11 1 21 -2 27 -6c-12 -60 -41 -99 -87 -99c-22 0 -43 18 -64 32c-18 11 -37 19 -54 19c-26 0 -36 -15 -46 -48c-11 -2 -21 -1 -27 5c14 59 37 98 80 98c30 0 52 -20 72 -34c16 -12 33 -19 52 -19zM155 122c0 -83 11 -86 72 -91
-c6 -6 6 -27 0 -33c-30 1 -66 2 -96 2s-65 -1 -95 -2c-6 6 -6 27 0 33c61 4 72 8 72 91v274c-10 18 -21 30 -59 33c-3 0 -9 2 -9 6v24l2 3l142 -2l229 -311c31 -42 34 -25 34 2v187c0 83 -11 87 -72 91c-6 6 -6 27 0 33c30 -1 65 -2 95 -2s66 1 96 2c6 -6 6 -27 0 -33
-c-61 -5 -72 -8 -72 -91v-323c0 -20 -10 -27 -22 -27c-15 0 -31 6 -46 22l-235 313c-23.3 28.7 -36 38.2 -36 -11v-190z" />
-    <glyph glyph-name="ograve.sc" unicode="&#xe082;" horiz-adv-x="563" 
-d="M274 437c-75 0 -150 -68 -150 -203c0 -123 69 -211 166 -211c89 0 150 75 150 198c0 134 -77 216 -166 216zM527 235c0 -130 -88 -245 -252 -245c-135 0 -238 96 -238 232c0 147 107 248 246 248c130 0 244 -93 244 -235zM265 668l70 -126c5 -10 6 -17 6 -24
-c0 -5 -7 -11 -15 -11c-6 0 -13 5 -29 20l-114 109l2 11c8 6 31 23 65 23c5 0 11 -1 15 -2z" />
-    <glyph glyph-name="oacute.sc" unicode="&#xe083;" horiz-adv-x="563" 
-d="M274 437c-75 0 -150 -68 -150 -203c0 -123 69 -211 166 -211c89 0 150 75 150 198c0 134 -77 216 -166 216zM527 235c0 -130 -88 -245 -252 -245c-135 0 -238 96 -238 232c0 147 107 248 246 248c130 0 244 -93 244 -235zM309 663c3 1 9 2 14 2c6.39999 0 32 -1 55 -23
-l3 -11l-115 -109c-15 -15 -23 -19 -30 -19s-14 6 -14 13c0 11.2 3.3 15.2 11.4 28z" />
-    <glyph glyph-name="ocircumflex.sc" unicode="&#xe084;" horiz-adv-x="563" 
-d="M274 437c-75 0 -150 -68 -150 -203c0 -123 69 -211 166 -211c89 0 150 75 150 198c0 134 -77 216 -166 216zM527 235c0 -130 -88 -245 -252 -245c-135 0 -238 96 -238 232c0 147 107 248 246 248c130 0 244 -93 244 -235zM299 661c29 -47 73 -100 109 -140
-c-5 -7 -13.6 -15.1 -23 -17c-38 24 -73 52 -103 83c-32 -32 -65 -61 -104 -83c-9 2 -16 8 -22 17c36 40 82 94 111 140c10.7 2.29999 21.3 3 32 0z" />
-    <glyph glyph-name="otilde.sc" unicode="&#xe085;" horiz-adv-x="563" 
-d="M274 437c-75 0 -150 -68 -150 -203c0 -123 69 -211 166 -211c89 0 150 75 150 198c0 134 -77 216 -166 216zM527 235c0 -130 -88 -245 -252 -245c-135 0 -238 96 -238 232c0 147 107 248 246 248c130 0 244 -93 244 -235zM339 574c22 0 33 10 47 52c11 1 21 -2 27 -6
-c-12 -60 -41 -99 -87 -99c-22 0 -43 18 -64 32c-18 11 -37 19 -54 19c-26 0 -36 -15 -46 -48c-11 -2 -21 -1 -27 5c14 59 37 98 80 98c30 0 52 -20 72 -34c16 -12 33 -19 52 -19z" />
-    <glyph glyph-name="odieresis.sc" unicode="&#xe086;" horiz-adv-x="563" 
-d="M274 437c-75 0 -150 -68 -150 -203c0 -123 69 -211 166 -211c89 0 150 75 150 198c0 134 -77 216 -166 216zM527 235c0 -130 -88 -245 -252 -245c-135 0 -238 96 -238 232c0 147 107 248 246 248c130 0 244 -93 244 -235zM151 573c0 26 21 48 47 48s47 -22 47 -48
-s-21 -47 -47 -47s-47 21 -47 47zM320 573c0 26 21 48 47 48s47 -22 47 -48s-21 -47 -47 -47s-47 21 -47 47z" />
-    <glyph glyph-name="oe.sc" unicode="&#xe087;" horiz-adv-x="679" 
-d="M282 27c35 0 41 10 41 33v341c0 30 -24 32 -67 32c-75 0 -142 -49 -142 -199c0 -138 65 -207 168 -207zM530 426h-101c-19 0 -31 -6 -31 -23v-151h80c27 0 34 12 39 32l5 21c1 3 3 6 6 6h17c2 0 3 -1 3 -3c-2 -23 -6 -51 -6 -75c0 -25 3 -45 6 -69l-2 -2h-18
-c-4 0 -6 3 -7 5l-4 22c-4 20 -13 31 -39 31h-80v-162c0 -19 14 -24 31 -24h112c51 0 74 32 86 84l25 -3l-20 -115l-2 -2s-59 2 -89 2h-176c-38 0 -80 -2 -98 -2c-135 0 -238 84 -238 224s96 240 237 240c4 0 59 -2 96 -2h169c30 0 101 2 101 2l2 -2c1 -43 8 -82 15 -120
-l-25 -4c-11 37 -30 90 -94 90z" />
-    <glyph glyph-name="oslash.sc" unicode="&#xe088;" horiz-adv-x="563" 
-d="M274 437c-75 0 -150 -68 -150 -203c0 -56.7 14.7 -106 40 -142.6l214 301.5c-28.8 28.6 -65.3 44.1 -104 44.1zM527 235c0 -130 -88 -245 -252 -245c-44.2 0 -85 10.4 -119.9 29l-46.1 -65l-29 19l45.8 64.6c-54.7 41.1 -88.8 106.1 -88.8 184.4c0 147 107 248 246 248
-c45.6 0 89.3 -11.4 126.7 -32.4l39.3 55.4l29 -19l-39.4 -55.5c53.4 -41.1 88.4 -104.8 88.4 -183.5zM400.8 365.2l-213.6 -301c27.6 -26.2 62.8 -41.2 102.8 -41.2c89 0 150 75 150 198c0 59 -14.9 107.9 -39.2 144.2z" />
-    <glyph glyph-name="ugrave.sc" unicode="&#xe089;" horiz-adv-x="576" 
-d="M435 338c0 83 -11 87 -72 91c-6 6 -6 27 0 33c30 -1 65 -2 95 -2s66 1 96 2c6 -6 6 -27 0 -33c-61 -5 -72 -8 -72 -91v-114c0 -146 -41 -234 -196 -234c-109.5 0 -182 41 -182 191v157c0 83 -11 87 -72 91c-6 6 -6 27 0 33c36 -1 75.4 -2 111 -2c32.5 0 73 1 112 2
-c6 -6 6 -27 0 -33c-61 -5 -72 -8 -72 -91v-136c0 -93 21 -171 120 -171c132 0 132 94 132 180v127zM268 668l70 -126c5 -10 6 -17 6 -24c0 -5 -7 -11 -15 -11c-6 0 -13 5 -29 20l-114 109l2 11c8 6 31 23 65 23c5 0 11 -1 15 -2z" />
-    <glyph glyph-name="uacute.sc" unicode="&#xe08a;" horiz-adv-x="576" 
-d="M435 338c0 83 -11 87 -72 91c-6 6 -6 27 0 33c30 -1 65 -2 95 -2s66 1 96 2c6 -6 6 -27 0 -33c-61 -5 -72 -8 -72 -91v-114c0 -146 -41 -234 -196 -234c-109.5 0 -182 41 -182 191v157c0 83 -11 87 -72 91c-6 6 -6 27 0 33c36 -1 75.4 -2 111 -2c32.5 0 73 1 112 2
-c6 -6 6 -27 0 -33c-61 -5 -72 -8 -72 -91v-136c0 -93 21 -171 120 -171c132 0 132 94 132 180v127zM343 663c3 1 9 2 14 2c6.39999 0 32 -1 55 -23l3 -11l-115 -109c-15 -15 -23 -19 -30 -19s-14 6 -14 13c0 11.2 3.29999 15.2 11.4 28z" />
-    <glyph glyph-name="ucircumflex.sc" unicode="&#xe08b;" horiz-adv-x="576" 
-d="M435 338c0 83 -11 87 -72 91c-6 6 -6 27 0 33c30 -1 65 -2 95 -2s66 1 96 2c6 -6 6 -27 0 -33c-61 -5 -72 -8 -72 -91v-114c0 -146 -41 -234 -196 -234c-109.5 0 -182 41 -182 191v157c0 83 -11 87 -72 91c-6 6 -6 27 0 33c36 -1 75.4 -2 111 -2c32.5 0 73 1 112 2
-c6 -6 6 -27 0 -33c-61 -5 -72 -8 -72 -91v-136c0 -93 21 -171 120 -171c132 0 132 94 132 180v127zM329 660c29 -47 73 -100 109 -140c-5 -7 -13.6 -15.1 -23 -17c-38 24 -73 52 -103 83c-32 -32 -65 -61 -104 -83c-9 2 -16 8 -22 17c36 40 82 94 111 140
-c10.7 2.29999 21.3 3 32 0z" />
-    <glyph glyph-name="udieresis.sc" unicode="&#xe08c;" horiz-adv-x="576" 
-d="M435 338c0 83 -11 87 -72 91c-6 6 -6 27 0 33c30 -1 65 -2 95 -2s66 1 96 2c6 -6 6 -27 0 -33c-61 -5 -72 -8 -72 -91v-114c0 -146 -41 -234 -196 -234c-109.5 0 -182 41 -182 191v157c0 83 -11 87 -72 91c-6 6 -6 27 0 33c36 -1 75.4 -2 111 -2c32.5 0 73 1 112 2
-c6 -6 6 -27 0 -33c-61 -5 -72 -8 -72 -91v-136c0 -93 21 -171 120 -171c132 0 132 94 132 180v127zM172 573c0 26 21 48 47 48s47 -22 47 -48s-21 -47 -47 -47s-47 21 -47 47zM341 573c0 26 21 48 47 48s47 -22 47 -48s-21 -47 -47 -47s-47 21 -47 47z" />
-    <glyph glyph-name="yacute.sc" unicode="&#xe08d;" horiz-adv-x="489" 
-d="M300 669c3 1 9 2 14 2c6.39999 0 32 -1 55 -23l3 -11l-115 -109c-15 -15 -23 -19 -30 -19s-14 6 -14 13c0 11.2 3.3 15.2 11.4 28zM341.7 362c27.3 48 27.3 61 -36.7 67c-6 6 -6 27 0 33c26 -1 54 -2 91 -2c26 0 49 1 71 2c6 -6 6 -27 0 -33
-c-46.3 -5.29999 -63.9 -33.1 -87.6 -74l-80.4 -139c-7.5 -10.4 -10.4 -24 -10 -42.5l1 -51.5c0 -83 10 -87 71 -91c6 -6 6 -27 0 -33c-36 1 -74.7 2 -111 2c-36 0 -75 -1 -112 -2c-6 6 -6 27 0 33c61 5 71 8 71 91l1 49.5c0.399994 18 -7.10001 31.8 -14.4 43.5l-86.2 141
-c-28 46.9 -40.9 67.5 -87.4 73c-6 6 -6 27 0 33c29 -1 59 -2 88 -2c37 0 72 1 106 2c6 -6 6 -27 0 -33c-60 -3.5 -50.1 -22.8 -24.1 -67l76.1 -126h2z" />
-    <glyph glyph-name="thorn.sc" unicode="&#xe08e;" horiz-adv-x="470" 
-d="M189.1 107.7c1.39999 -69.2 14.6 -72.9 71.9 -76.7c6 -6 6 -27 0 -33c-43 1 -68 2 -111 2c-44 0 -70 -1 -112 -2c-6 6 -6 27 0 33c61 5 72 8 72 91v216c0 83 -11 87 -72 91c-6 6 -6 27 0 33c43 -1 68 -2 111 -2c44 0 70 1 112 2c6 -6 6 -27 0 -33
-c-53.5 -4.39999 -68.5 -7.20001 -71.4 -63.9c25.7 1 57.7 1.89999 72.4 1.89999c151 0 178 -77 178 -129c0 -55 -44 -135 -189 -135c-28.2 0 -48.8 1 -61.9 4.7zM189 326.2v-186.5c8.5 -2.7 27.3 -3.7 58 -3.7c75 0 109 23 109 103c0 74 -32 95 -95 95
-c-15.7 0 -53.6 -3.89999 -72 -7.79999z" />
-    <glyph glyph-name="ydieresis.sc" unicode="&#xe08f;" horiz-adv-x="489" 
-d="M126 573c0 26 21 48 47 48s47 -22 47 -48s-21 -47 -47 -47s-47 21 -47 47zM295 573c0 26 21 48 47 48s47 -22 47 -48s-21 -47 -47 -47s-47 21 -47 47zM341.7 362c27.3 48 27.3 61 -36.7 67c-6 6 -6 27 0 33c26 -1 54 -2 91 -2c26 0 49 1 71 2c6 -6 6 -27 0 -33
-c-46.3 -5.29999 -63.9 -33.1 -87.6 -74l-80.4 -139c-7.5 -10.4 -10.4 -24 -10 -42.5l1 -51.5c0 -83 10 -87 71 -91c6 -6 6 -27 0 -33c-36 1 -74.7 2 -111 2c-36 0 -75 -1 -112 -2c-6 6 -6 27 0 33c61 5 71 8 71 91l1 49.5c0.399994 18 -7.10001 31.8 -14.4 43.5l-86.2 141
-c-28 46.9 -40.9 67.5 -87.4 73c-6 6 -6 27 0 33c29 -1 59 -2 88 -2c37 0 72 1 106 2c6 -6 6 -27 0 -33c-60 -3.5 -50.1 -22.8 -24.1 -67l76.1 -126h2z" />
-    <glyph glyph-name="ij.sc" unicode="&#xe090;" horiz-adv-x="586" 
-d="M404 338c0 83 -16 87 -77 91c-6 6 -6 27 0 33c39 -1 87 -2 116 -2c32.6 0 76 1 112 2c6 -6 6 -27 0 -33c-61 -5 -72 -8 -72 -91v-242c0 -126 -34 -192 -88 -235c-42 -35 -83 -36 -106 -36c-21 0 -60 17 -60 50c0 21 23 34 36 34c28 0 39 -13 48 -25c7 -10 13 -17 26 -17
-c31 0 65 28 65 208v263zM195 338v-216c0 -83 11 -87 72 -91c6 -6 6 -27 0 -33c-35 1 -78.6 2 -111 2c-33.7 0 -75 -1 -112 -2c-6 6 -6 27 0 33c61 5 72 8 72 91v216c0 83 -11 87 -72 91c-6 6 -6 27 0 33c39 -1 80.7 -2 111 -2c30.7 0 74 1 112 2c6 -6 6 -27 0 -33
-c-61 -5 -72 -8 -72 -91z" />
-    <glyph glyph-name="germandbls.scalt" unicode="&#xe091;" horiz-adv-x="769" 
-d="M725 448c5.5 -38 6 -77 4 -106c-9 -5 -18 -5 -27 -2c-15 64 -59 97 -108 97c-52 0 -80 -28 -80 -71c0 -42.5 47 -67 97 -91c48.1 -23.1 139 -68 139 -146c0 -86.1 -57 -141 -146 -141c-77 0 -106 17 -125 17c-12 0 -22 -2 -33 -6c-7 32 -8.70001 70.5 -11 141
-c9.89999 3.8 19 4.5 32 2c18 -89 63 -121 119 -121c59 0 86 28 86 86c0 57 -43 80 -108 110c-41 19 -119 58 -119 131c0 82 78 122 148 122c81 0 107 -22 132 -22zM339 448c5.5 -38 6 -77 4 -106c-9 -5 -18 -5 -27 -2c-15 64 -59 97 -108 97c-52 0 -80 -28 -80 -71
-c0 -42.5 47 -67 97 -91c48.1 -23.1 139 -68 139 -146c0 -86.1 -57 -141 -146 -141c-77 0 -106 17 -125 17c-12 0 -22 -2 -33 -6c-7 32 -8.7 70.5 -11 141c9.9 3.8 19 4.5 32 2c18 -89 63 -121 119 -121c59 0 86 28 86 86c0 57 -43 80 -108 110c-41 19 -119 58 -119 131
-c0 82 78 122 148 122c81 0 107 -22 132 -22z" />
-    <glyph glyph-name="hyphen.sc" unicode="&#xe06d;" horiz-adv-x="338" 
-d="M271 204h-216c-9 0 -15 9 -15 19c0 18 13 41 25 41h219c10 0 14 -10 14 -20c0 -12 -14 -40 -27 -40z" />
-    <glyph glyph-name="ampersand.alt" unicode="&#xe050;" horiz-adv-x="722" 
-d="M125 131l131 230c-9 14 -25 26 -47 26c-67 0 -117 -82 -117 -151c0 -20 8 -66 33 -105zM39 179c0 192 141 259 235 259c8 0 16 -2 23 -5l68 118c10 19 19 35 19 51c0 17 -17 32 -37 32c-28 0 -44 -22 -44 -52c0 -4 1 -9 1 -13l-22 -2c-1 7 -2 15 -2 21c0 52 35 83 89 83
-c35 0 55 -22 55 -46c0 -12 -14 -43 -25 -63l-258 -453c26 -28 63 -50 116 -50c193 0 261 183 267 315c-24 19 -54 39 -97 39c-17 0 -30 -4 -30 -17c0 -15 8 -21 17 -27c8 -7 17 -14 17 -32c0 -21 -18 -41 -36 -41c-19 0 -41 11 -41 51c0 56 33 105 112 105
-c47 0 86 -21 116 -39c18 -10 32 -18 43 -18c8 0 11 3 11 8s-3 12 -7 19c-5 10 -9 21 -9 31c0 25 14 38 31 38c18 0 36 -12 36 -38c0 -76 -57 -105 -81 -105c-18 0 -37 2 -52 11c-14 -229 -169 -371 -327 -371c-103 0 -188 85 -188 191z" />
-    <glyph glyph-name="uni032D" unicode="&#x32d;" 
-d="M-169 -82c28 -46 66 -89 101 -129l-21 -14c-39 29 -73 54 -106 90c-37 -38 -70 -63 -107 -90l-20 14c35 39 73 84 103 129h50z" />
-    <glyph glyph-name="uni032C" unicode="&#x32c;" 
-d="M-229 -220c-29 47 -66 90 -101 130l20 13c39 -28 72 -54 106 -90c37 38 71 63 108 90l19 -13c-35 -39 -73 -84 -102 -130h-50z" />
-    <glyph glyph-name="uni02AE" unicode="&#x2ae;" horiz-adv-x="570" 
-d="M216 167c0 -70 16 -132 78 -132c29 0 72 26 120 73v250c0 29 -10 44 -43 44h-19c-4 0 -8 3 -8 8v19l2 2s68 -2 107 -2c36 0 104 2 104 2l2 -2v-19c0 -5 -3 -8 -8 -8h-19c-34 0 -43 -16 -43 -44v-467c0 -47 10 -67 30 -67l32 3c3 1 5 -2 5 -5l2 -25c-16 0 -52 -5 -69 -9
-c-18 -3 -33 -8 -53 -17h-22v299c-67 -67 -125 -82 -164 -82c-104 0 -108 100 -108 209c0 151 -4 216 -39 216c-11 0 -16 -5 -20 -15c-4 -16 -15 -40 -38 -40c-3 0 -28 3 -28 35c0 34 60 49 89 49c107 0 110 -100 110 -275z" />
-
-<!--
-Ende{IPA Extensions}
--->
-    <glyph glyph-name="uni02AF" unicode="&#x2af;" horiz-adv-x="592" 
-d="M489 9c0 -141 17 -209 48 -209c10 0 16 5 19 14c5 17 15 40 38 40c4 0 29 -3 29 -35c0 -33 -61 -48 -90 -48c-99 0 -119 110 -119 268v31c-67 -67 -125 -82 -164 -82c-108 0 -108 121 -108 206c0 150 -1 219 -23 219c-10 0 -15 -5 -19 -15c-5 -16 -15 -40 -38 -40
-c-3 0 -29 3 -29 35c0 34 61 49 90 49c89 0 93 -108 93 -278c0 -69 16 -129 78 -129c29 0 72 26 120 73v250c0 29 -10 44 -43 44h-19c-4 0 -8 3 -8 8v19l2 2s68 -2 107 -2c36 0 104 2 104 2l2 -2v-19c0 -5 -3 -8 -8 -8h-19c-34 0 -43 -16 -43 -44v-349z" />
-    <glyph glyph-name="uni2474" unicode="&#x2474;" horiz-adv-x="844" 
-d="M475 122c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-50 1 -74.4 2 -122 2c-54.2 0 -90 -1 -139 -2c-6 6 -6 27 0 33c70 3 97 8 97 91v326c0 34 -3.5 58 -20 58c-19 0 -41.5 -6 -87 -25c-9 6.10001 -13.4 15.6 -15 27c88 41 140.7 65.7 196 100c3.5 0 6 -0.200012 6 -5
-c-1.70001 -13 -3 -74 -3 -134v-347zM56.7 271.8c0 142.3 71.1 270.1 162.1 348.1c8.7 -0.600037 13.5 -6 16.1 -13.8c-24.5 -27.5 -114.7 -133.1 -114.7 -334.3c0 -201.2 89.5 -306.8 114.7 -335.9c-2.29999 -6.1 -8.39999 -11.5 -16.1 -13
-c-159.1 137.7 -162.1 314.5 -162.1 348.9zM774.3 269.8c0 -142.3 -71.2 -270.1 -162.2 -348.1c-8.69995 0.600006 -13.4 6 -16 13.8c24.5 27.5 114.7 133.1 114.7 334.3c0 201.2 -89.5 306.7 -114.7 335.8c2.30005 6.10004 8.40002 11.5 16 13
-c159.1 -137.7 162.2 -314.4 162.2 -348.8z" />
-    <glyph glyph-name="uni2475" unicode="&#x2475;" horiz-adv-x="844" 
-d="M247 468c0 60 69 142 180 142c81 0 169 -44 169 -152c0 -76 -43 -120 -100 -175l-101 -97c-5 -5 -74 -73 -74 -121h178c36 0 53 25 70 96c10 2 23 0 29 -5c-1 -30 -11 -105 -24 -158c0 0 -46 2 -78 2h-175c-32 0 -83 -2 -83 -2c0 59 16 107 114 207l74 73
-c59 60 82 112 82 176c0 96 -51 121 -87 121c-73 0 -99 -36 -99 -61c0 -8 6 -17 8 -24s4 -13 4 -21c0 -22.1 -30 -40 -47 -40c-21 0 -40 18 -40 39zM50.7 271.8c0 142.3 71.1 270.1 162.1 348.1c8.7 -0.600037 13.5 -6 16.1 -13.8c-24.5 -27.5 -114.7 -133.1 -114.7 -334.3
-c0 -201.2 89.5 -306.8 114.7 -335.9c-2.29999 -6.1 -8.39999 -11.5 -16.1 -13c-159.1 137.7 -162.1 314.5 -162.1 348.9zM770.3 269.8c0 -142.3 -71.2 -270.1 -162.2 -348.1c-8.69995 0.600006 -13.4 6 -16 13.8c24.5 27.5 114.7 133.1 114.7 334.3
-c0 201.2 -89.5 306.7 -114.7 335.8c2.30005 6.10004 8.40002 11.5 16 13c159.1 -137.7 162.2 -314.4 162.2 -348.8z" />
-    <glyph glyph-name="uni2476" unicode="&#x2476;" horiz-adv-x="844" 
-d="M412 575c-26 0 -95 -12 -95 -76c0 -19 -4 -52 -39 -52c-24 0 -34 20 -34 34c0 33 42 129 189 129c52.3 0 87.2 -16.9 109 -39c24.3 -24.6 31.4 -49.1 31.4 -79.1c0 -52.7 -23.1 -94.3 -105.4 -132.9l1 -2c59 -10 141 -49 141 -158c0 -132 -106 -209 -225 -209
-c-60 0 -144 27 -144 67c0 16 21 35 42 35c20 0 33 -12 43 -26c12 -18 21 -41 72 -41c35 0 124 27 124 160c0 113 -74 129 -131 129c-13 0 -31 0 -48 -2l-5 32c99.1 14.1 157.1 90.5 157.1 140.7c0 64.3 -39.9 90.3 -83.1 90.3zM58.7 271.8c0 142.3 71.1 270.1 162.1 348.1
-c8.7 -0.600037 13.5 -6 16.1 -13.8c-24.5 -27.5 -114.7 -133.1 -114.7 -334.3c0 -201.2 89.5 -306.8 114.7 -335.9c-2.29999 -6.1 -8.39999 -11.5 -16.1 -13c-159.1 137.7 -162.1 314.5 -162.1 348.9zM777.3 269.8c0 -142.3 -71.2 -270.1 -162.2 -348.1
-c-8.69995 0.600006 -13.4 6 -16 13.8c24.5 27.5 114.7 133.1 114.7 334.3c0 201.2 -89.5 306.7 -114.7 335.8c2.30005 6.10004 8.40002 11.5 16 13c159.1 -137.7 162.2 -314.4 162.2 -348.8z" />
-    <glyph glyph-name="uni2477" unicode="&#x2477;" horiz-adv-x="844" 
-d="M468 507c-69 -94.2 -139.7 -205.8 -191 -288h191v288zM627 219c11 0 15 -6 15 -16c0 -12 -15 -31 -29 -31h-69v-92c0 -47 21 -45 70 -49c6 -6 6 -27 0 -33c-32 1 -69.6 2 -109 2c-46 0 -86 -1 -118 -2c-6 6 -6 27 0 33c43 3 81 3 81 49v92h-204c-30 0 -36 27 -39 42
-c91.5 143 208 307.5 271 385c3.70001 4.5 9 11 16 11h32l2 -2c-1.70001 -7.79999 -2 -47 -2 -97v-292h83zM66.7 271.8c0 142.3 71.1 270.1 162.1 348.1c8.7 -0.600037 13.5 -6 16.1 -13.8c-24.5 -27.5 -114.7 -133.1 -114.7 -334.3c0 -201.2 89.5 -306.8 114.7 -335.9
-c-2.29999 -6.1 -8.39999 -11.5 -16.1 -13c-159.1 137.7 -162.1 314.5 -162.1 348.9zM787.3 269.8c0 -142.3 -71.2 -270.1 -162.2 -348.1c-8.69995 0.600006 -13.4 6 -16 13.8c24.5 27.5 114.7 133.1 114.7 334.3c0 201.2 -89.5 306.7 -114.7 335.8
-c2.30005 6.10004 8.40002 11.5 16 13c159.1 -137.7 162.2 -314.4 162.2 -348.8z" />
-    <glyph glyph-name="uni2478" unicode="&#x2478;" horiz-adv-x="844" 
-d="M522 189c0 109 -51 152 -116 152c-36 0 -74 -4 -127 -24l34 288c35 -3 71 -5 108 -5c53 0 107 5 164 11l7 -4l-16 -68c-41 -4 -75 -6 -105 -6c-48 0 -80 5 -117 9l-20 -167c18 7 55 16 98 16c112 0 179 -87 179 -184c0 -126 -88 -218 -212 -218c-57 0 -142 34 -142 75
-c0 20 19 37 38 37c21 0 38 -15 51 -32c15 -20 28 -45 66 -45c60 0 110 70 110 165zM58.7 271.8c0 142.3 71.1 270.1 162.1 348.1c8.7 -0.600037 13.5 -6 16.1 -13.8c-24.5 -27.5 -114.7 -133.1 -114.7 -334.3c0 -201.2 89.5 -306.8 114.7 -335.9
-c-2.29999 -6.1 -8.39999 -11.5 -16.1 -13c-159.1 137.7 -162.1 314.5 -162.1 348.9zM785.3 269.8c0 -142.3 -71.2 -270.1 -162.2 -348.1c-8.69995 0.600006 -13.4 6 -16 13.8c24.5 27.5 114.7 133.1 114.7 334.3c0 201.2 -89.5 306.7 -114.7 335.8
-c2.30005 6.10004 8.40002 11.5 16 13c159.1 -137.7 162.2 -314.4 162.2 -348.8z" />
-    <glyph glyph-name="uni2479" unicode="&#x2479;" horiz-adv-x="844" 
-d="M330.2 307c-5.90002 -28.8 -8.20001 -55.5 -8.20001 -78c0 -171 57 -205 120 -205c49 0 91 50 91 160c0 50 -22 146 -120 146c-17.4 0 -50 -1.39999 -82.8 -23zM339.3 343.3c29.8 13.7 68.7 21.7 94.7 21.7c136 0 182 -77 182 -163s-54 -213 -185 -213
-c-77 0 -192 40 -192 243c0 79 31 170 93 242c56 65 118 107 219 137c8 -5 12 -14 12 -26c-133 -49.8 -196.6 -150.8 -223.7 -241.7zM57.7 271.8c0 142.3 71.1 270.1 162.1 348.1c8.7 -0.600037 13.5 -6 16.1 -13.8c-24.5 -27.5 -114.7 -133.1 -114.7 -334.3
-c0 -201.2 89.5 -306.8 114.7 -335.9c-2.29999 -6.1 -8.39999 -11.5 -16.1 -13c-159.1 137.7 -162.1 314.5 -162.1 348.9zM777.3 269.8c0 -142.3 -71.2 -270.1 -162.2 -348.1c-8.69995 0.600006 -13.4 6 -16 13.8c24.5 27.5 114.7 133.1 114.7 334.3
-c0 201.2 -89.5 306.7 -114.7 335.8c2.30005 6.10004 8.40002 11.5 16 13c159.1 -137.7 162.2 -314.4 162.2 -348.8z" />
-    <glyph glyph-name="uni247A" unicode="&#x247a;" horiz-adv-x="844" 
-d="M370 535c-32 0 -65 -7 -87 -87c-11 -1.29999 -21.1 -0.100006 -32 3c8 52 19 112 20 160c0 3 1 3 4 3c18 -4 16 -14 50 -14h206c38 0 60 6 77 11l16 -12c-112 -273 -167 -439 -224 -609l-68 -3l-8 7c68 152 147 347 225 541h-179zM45.7 271.8
-c0 142.3 71.1 270.1 162.1 348.1c8.7 -0.600037 13.5 -6 16.1 -13.8c-24.5 -27.5 -114.7 -133.1 -114.7 -334.3c0 -201.2 89.5 -306.8 114.7 -335.9c-2.29999 -6.1 -8.39999 -11.5 -16.1 -13c-159.1 137.7 -162.1 314.5 -162.1 348.9zM804.3 269.8
-c0 -142.3 -71.2 -270.1 -162.2 -348.1c-8.69995 0.600006 -13.4 6 -16 13.8c24.5 27.5 114.7 133.1 114.7 334.3c0 201.2 -89.5 306.7 -114.7 335.8c2.30005 6.10004 8.40002 11.5 16 13c159.1 -137.7 162.2 -314.4 162.2 -348.8z" />
-    <glyph glyph-name="uni247B" unicode="&#x247b;" horiz-adv-x="844" 
-d="M427 554c-57 0 -94 -45 -94 -89c0 -29 15 -63 75 -102l28 -19c26 19 85 65 85 116c0 44 -32 94 -94 94zM580 459c0 -61 -69 -108 -111 -136l58 -40c48 -32 74 -75 74 -130c0 -72 -59 -165 -183 -165c-100 0 -168 53 -168 150c0 37 15 80 54 114c24 21 44 38 68 55l-17 11
-c-57 38 -85 76 -85 129c0 73 65 131 162 131c93 0 148 -51 148 -119zM420 16c43 0 118 23 118 118c0 45 -26 90 -86 126l-45 27c-81 -55 -99 -121 -99 -149c0 -85 69 -122 112 -122zM65.7 271.8c0 142.3 71.1 270.1 162.1 348.1c8.7 -0.600037 13.5 -6 16.1 -13.8
-c-24.5 -27.5 -114.7 -133.1 -114.7 -334.3c0 -201.2 89.5 -306.8 114.7 -335.9c-2.29999 -6.1 -8.39999 -11.5 -16.1 -13c-159.1 137.7 -162.1 314.5 -162.1 348.9zM785.3 269.8c0 -142.3 -71.2 -270.1 -162.2 -348.1c-8.69995 0.600006 -13.4 6 -16 13.8
-c24.5 27.5 114.7 133.1 114.7 334.3c0 201.2 -89.5 306.7 -114.7 335.8c2.30005 6.10004 8.40002 11.5 16 13c159.1 -137.7 162.2 -314.4 162.2 -348.8z" />
-    <glyph glyph-name="uni247C" unicode="&#x247c;" horiz-adv-x="844" 
-d="M549.8 292c5.90002 28.8 8.20001 55.5 8.20001 78c0 171 -57 205 -120 205c-49 0 -91 -50 -91 -160c0 -50 22 -146 120 -146c17.4 0 50 1.39999 82.8 23zM540.7 255.7c-29.8 -13.7 -68.7 -21.7 -94.7 -21.7c-136 0 -182 77 -182 163s54 213 185 213
-c77 0 192 -40 192 -243c0 -79 -31 -170 -93 -242c-56 -65 -118 -107 -219 -137c-8 5 -12 14 -12 26c133 49.8 196.6 150.8 223.7 241.7zM59.7 271.8c0 142.3 71.1 270.1 162.1 348.1c8.7 -0.600037 13.5 -6 16.1 -13.8c-24.5 -27.5 -114.7 -133.1 -114.7 -334.3
-c0 -201.2 89.5 -306.8 114.7 -335.9c-2.29999 -6.1 -8.39999 -11.5 -16.1 -13c-159.1 137.7 -162.1 314.5 -162.1 348.9zM787.3 269.8c0 -142.3 -71.2 -270.1 -162.2 -348.1c-8.69995 0.600006 -13.4 6 -16 13.8c24.5 27.5 114.7 133.1 114.7 334.3
-c0 201.2 -89.5 306.7 -114.7 335.8c2.30005 6.10004 8.40002 11.5 16 13c159.1 -137.7 162.2 -314.4 162.2 -348.8z" />
-    <glyph glyph-name="uni247D" unicode="&#x247d;" horiz-adv-x="1235" 
-d="M794 575c-45 0 -106 -46 -106 -292c0 -87 10 -258 103 -258c18 0 67 9 89 91c14 51 17 114 17 206c0 134 -27 210 -58 236c-12 11 -28 17 -45 17zM790 -10c-38.7 0 -73 13.6 -101.4 42c-54.7 54.5 -87.6 155.4 -87.6 262c0 198 94 316 193 316c54 0 95.8 -30.3 122 -65
-c44 -58 68 -143 68 -242c0 -235 -117 -313 -194 -313zM470 122c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-50 1 -74.4 2 -122 2c-54.2 0 -90 -1 -139 -2c-6 6 -6 27 0 33c70 3 97 8 97 91v326c0 34 -3.5 58 -20 58c-19 0 -41.5 -6 -87 -25c-9 6.10001 -13.4 15.6 -15 27
-c88 41 140.7 65.7 196 100c3.5 0 6 -0.200012 6 -5c-1.70001 -13 -3 -74 -3 -134v-347zM64.7 271.8c0 142.3 71.1 270.1 162.1 348.1c8.7 -0.600037 13.5 -6 16.1 -13.8c-24.5 -27.5 -114.7 -133.1 -114.7 -334.3c0 -201.2 89.5 -306.8 114.7 -335.9
-c-2.29999 -6.1 -8.39999 -11.5 -16.1 -13c-159.1 137.7 -162.1 314.5 -162.1 348.9zM1164.3 269.8c0 -142.3 -71.2001 -270.1 -162.2 -348.1c-8.69995 0.600006 -13.4 6 -16 13.8c24.5 27.5 114.7 133.1 114.7 334.3c0 201.2 -89.5001 306.7 -114.7 335.8
-c2.30005 6.10004 8.40002 11.5 16 13c159.1 -137.7 162.2 -314.4 162.2 -348.8z" />
-    <glyph glyph-name="uni247E" unicode="&#x247e;" horiz-adv-x="1235" 
-d="M841 122c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-50 1 -74.4 2 -122 2c-54.2 0 -90 -1 -139 -2c-6 6 -6 27 0 33c70 3 97 8 97 91v326c0 34 -3.5 58 -20 58c-19 0 -41.5 -6 -87 -25c-9 6.10001 -13.4 15.6 -15 27c88 41 140.7 65.7 196 100c3.5 0 6 -0.200012 6 -5
-c-1.70001 -13 -3 -74 -3 -134v-347zM488 122c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-50 1 -74.4 2 -122 2c-54.2 0 -90 -1 -139 -2c-6 6 -6 27 0 33c70 3 97 8 97 91v326c0 34 -3.5 58 -20 58c-19 0 -41.5 -6 -87 -25c-9 6.10001 -13.4 15.6 -15 27
-c88 41 140.7 65.7 196 100c3.5 0 6 -0.200012 6 -5c-1.70001 -13 -3 -74 -3 -134v-347zM70.7 271.8c0 142.3 71.1 270.1 162.1 348.1c8.7 -0.600037 13.5 -6 16.1 -13.8c-24.5 -27.5 -114.7 -133.1 -114.7 -334.3c0 -201.2 89.5 -306.8 114.7 -335.9
-c-2.29999 -6.1 -8.39999 -11.5 -16.1 -13c-159.1 137.7 -162.1 314.5 -162.1 348.9zM1166.3 269.8c0 -142.3 -71.2001 -270.1 -162.2 -348.1c-8.69995 0.600006 -13.4 6 -16 13.8c24.5 27.5 114.7 133.1 114.7 334.3c0 201.2 -89.5001 306.7 -114.7 335.8
-c2.30005 6.10004 8.40002 11.5 16 13c159.1 -137.7 162.2 -314.4 162.2 -348.8z" />
-    <glyph glyph-name="uni247F" unicode="&#x247f;" horiz-adv-x="1235" 
-d="M635 468c0 60 69 142 180 142c81 0 169 -44 169 -152c0 -76 -43 -120 -100 -175l-101 -97c-5 -5 -74 -73 -74 -121h178c36 0 53 25 70 96c10 2 23 0 29 -5c-1 -30 -11 -105 -24 -158c0 0 -46 2 -78 2h-175c-32 0 -83 -2 -83 -2c0 59 16 107 114 207l74 73
-c59 60 82 112 82 176c0 96 -51 121 -87 121c-73 0 -99 -36 -99 -61c0 -8 6 -17 8 -24s4 -13 4 -21c0 -22.1 -30 -40 -47 -40c-21 0 -40 18 -40 39zM488 122c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-50 1 -74.4 2 -122 2c-54.2 0 -90 -1 -139 -2c-6 6 -6 27 0 33
-c70 3 97 8 97 91v326c0 34 -3.5 58 -20 58c-19 0 -41.5 -6 -87 -25c-9 6.10001 -13.4 15.6 -15 27c88 41 140.7 65.7 196 100c3.5 0 6 -0.200012 6 -5c-1.70001 -13 -3 -74 -3 -134v-347zM70.7 271.8c0 142.3 71.1 270.1 162.1 348.1c8.7 -0.600037 13.5 -6 16.1 -13.8
-c-24.5 -27.5 -114.7 -133.1 -114.7 -334.3c0 -201.2 89.5 -306.8 114.7 -335.9c-2.29999 -6.1 -8.39999 -11.5 -16.1 -13c-159.1 137.7 -162.1 314.5 -162.1 348.9zM1166.3 269.8c0 -142.3 -71.2001 -270.1 -162.2 -348.1c-8.69995 0.600006 -13.4 6 -16 13.8
-c24.5 27.5 114.7 133.1 114.7 334.3c0 201.2 -89.5001 306.7 -114.7 335.8c2.30005 6.10004 8.40002 11.5 16 13c159.1 -137.7 162.2 -314.4 162.2 -348.8z" />
-    <glyph glyph-name="uni2480" unicode="&#x2480;" horiz-adv-x="1235" 
-d="M804 575c-26 0 -95 -12 -95 -76c0 -19 -4 -52 -39 -52c-24 0 -34 20 -34 34c0 33 42 129 189 129c52.3 0 87.2 -16.9 109 -39c24.3 -24.6 31.4 -49.1 31.4 -79.1c0 -52.7 -23.1 -94.3 -105.4 -132.9l1 -2c59 -10 141 -49 141 -158c0 -132 -106 -209 -225 -209
-c-60 0 -144 27 -144 67c0 16 21 35 42 35c20 0 33 -12 43 -26c12 -18 21 -41 72 -41c35 0 124 27 124 160c0 113 -74 129 -131 129c-13 0 -31 0 -48 -2l-5 32c99.1 14.1 157.1 90.5 157.1 140.7c0 64.3 -39.9 90.3 -83.1 90.3zM488 122c0 -83 17 -88 87 -91
-c6 -6 6 -27 0 -33c-50 1 -74.4 2 -122 2c-54.2 0 -90 -1 -139 -2c-6 6 -6 27 0 33c70 3 97 8 97 91v326c0 34 -3.5 58 -20 58c-19 0 -41.5 -6 -87 -25c-9 6.10001 -13.4 15.6 -15 27c88 41 140.7 65.7 196 100c3.5 0 6 -0.200012 6 -5c-1.70001 -13 -3 -74 -3 -134v-347z
-M70.7 271.8c0 142.3 71.1 270.1 162.1 348.1c8.7 -0.600037 13.5 -6 16.1 -13.8c-24.5 -27.5 -114.7 -133.1 -114.7 -334.3c0 -201.2 89.5 -306.8 114.7 -335.9c-2.29999 -6.1 -8.39999 -11.5 -16.1 -13c-159.1 137.7 -162.1 314.5 -162.1 348.9zM1166.3 269.8
-c0 -142.3 -71.2001 -270.1 -162.2 -348.1c-8.69995 0.600006 -13.4 6 -16 13.8c24.5 27.5 114.7 133.1 114.7 334.3c0 201.2 -89.5001 306.7 -114.7 335.8c2.30005 6.10004 8.40002 11.5 16 13c159.1 -137.7 162.2 -314.4 162.2 -348.8z" />
-    <glyph glyph-name="uni2481" unicode="&#x2481;" horiz-adv-x="1235" 
-d="M832 507c-69 -94.2 -139.7 -205.8 -191 -288h191v288zM991 219c11 0 15 -6 15 -16c0 -12 -15 -31 -29 -31h-69v-92c0 -47 21 -45 70 -49c6 -6 6 -27 0 -33c-32 1 -69.6 2 -109 2c-46 0 -86 -1 -118 -2c-6 6 -6 27 0 33c43 3 81 3 81 49v92h-204c-30 0 -36 27 -39 42
-c91.5 143 208 307.5 271 385c3.70001 4.5 9 11 16 11h32l2 -2c-1.70001 -7.79999 -2 -47 -2 -97v-292h83zM488 122c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-50 1 -74.4 2 -122 2c-54.2 0 -90 -1 -139 -2c-6 6 -6 27 0 33c70 3 97 8 97 91v326c0 34 -3.5 58 -20 58
-c-19 0 -41.5 -6 -87 -25c-9 6.10001 -13.4 15.6 -15 27c88 41 140.7 65.7 196 100c3.5 0 6 -0.200012 6 -5c-1.70001 -13 -3 -74 -3 -134v-347zM70.7 271.8c0 142.3 71.1 270.1 162.1 348.1c8.7 -0.600037 13.5 -6 16.1 -13.8c-24.5 -27.5 -114.7 -133.1 -114.7 -334.3
-c0 -201.2 89.5 -306.8 114.7 -335.9c-2.29999 -6.1 -8.39999 -11.5 -16.1 -13c-159.1 137.7 -162.1 314.5 -162.1 348.9zM1166.3 269.8c0 -142.3 -71.2001 -270.1 -162.2 -348.1c-8.69995 0.600006 -13.4 6 -16 13.8c24.5 27.5 114.7 133.1 114.7 334.3
-c0 201.2 -89.5001 306.7 -114.7 335.8c2.30005 6.10004 8.40002 11.5 16 13c159.1 -137.7 162.2 -314.4 162.2 -348.8z" />
-    <glyph glyph-name="uni2482" unicode="&#x2482;" horiz-adv-x="1235" 
-d="M909 189c0 109 -51 152 -116 152c-36 0 -74 -4 -127 -24l34 288c35 -3 71 -5 108 -5c53 0 107 5 164 11l7 -4l-16 -68c-41 -4 -75 -6 -105 -6c-48 0 -80 5 -117 9l-20 -167c18 7 55 16 98 16c112 0 179 -87 179 -184c0 -126 -88 -218 -212 -218c-57 0 -142 34 -142 75
-c0 20 19 37 38 37c21 0 38 -15 51 -32c15 -20 28 -45 66 -45c60 0 110 70 110 165zM489 122c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-50 1 -74.4 2 -122 2c-54.2 0 -90 -1 -139 -2c-6 6 -6 27 0 33c70 3 97 8 97 91v326c0 34 -3.5 58 -20 58c-19 0 -41.5 -6 -87 -25
-c-9 6.10001 -13.4 15.6 -15 27c88 41 140.7 65.7 196 100c3.5 0 6 -0.200012 6 -5c-1.70001 -13 -3 -74 -3 -134v-347zM70.7 271.8c0 142.3 71.1 270.1 162.1 348.1c8.7 -0.600037 13.5 -6 16.1 -13.8c-24.5 -27.5 -114.7 -133.1 -114.7 -334.3
-c0 -201.2 89.5 -306.8 114.7 -335.9c-2.29999 -6.1 -8.39999 -11.5 -16.1 -13c-159.1 137.7 -162.1 314.5 -162.1 348.9zM1166.3 269.8c0 -142.3 -71.2001 -270.1 -162.2 -348.1c-8.69995 0.600006 -13.4 6 -16 13.8c24.5 27.5 114.7 133.1 114.7 334.3
-c0 201.2 -89.5001 306.7 -114.7 335.8c2.30005 6.10004 8.40002 11.5 16 13c159.1 -137.7 162.2 -314.4 162.2 -348.8z" />
-    <glyph glyph-name="uni2483" unicode="&#x2483;" horiz-adv-x="1235" 
-d="M692.2 307c-5.90002 -28.8 -8.20001 -55.5 -8.20001 -78c0 -171 57 -205 120 -205c49 0 91 50 91 160c0 50 -22 146 -120 146c-17.4 0 -50 -1.39999 -82.8 -23zM701.3 343.3c29.8 13.7 68.7 21.7 94.7 21.7c136 0 182 -77 182 -163s-54 -213 -185 -213
-c-77 0 -192 40 -192 243c0 79 31 170 93 242c56 65 118 107 219 137c8 -5 12 -14 12 -26c-133 -49.8 -196.6 -150.8 -223.7 -241.7zM488 122c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-50 1 -74.4 2 -122 2c-54.2 0 -90 -1 -139 -2c-6 6 -6 27 0 33c70 3 97 8 97 91v326
-c0 34 -3.5 58 -20 58c-19 0 -41.5 -6 -87 -25c-9 6.10001 -13.4 15.6 -15 27c88 41 140.7 65.7 196 100c3.5 0 6 -0.200012 6 -5c-1.70001 -13 -3 -74 -3 -134v-347zM70.7 271.8c0 142.3 71.1 270.1 162.1 348.1c8.7 -0.600037 13.5 -6 16.1 -13.8
-c-24.5 -27.5 -114.7 -133.1 -114.7 -334.3c0 -201.2 89.5 -306.8 114.7 -335.9c-2.29999 -6.1 -8.39999 -11.5 -16.1 -13c-159.1 137.7 -162.1 314.5 -162.1 348.9zM1166.3 269.8c0 -142.3 -71.2001 -270.1 -162.2 -348.1c-8.69995 0.600006 -13.4 6 -16 13.8
-c24.5 27.5 114.7 133.1 114.7 334.3c0 201.2 -89.5001 306.7 -114.7 335.8c2.30005 6.10004 8.40002 11.5 16 13c159.1 -137.7 162.2 -314.4 162.2 -348.8z" />
-    <glyph glyph-name="uni2484" unicode="&#x2484;" horiz-adv-x="1235" 
-d="M719 535c-32 0 -65 -7 -87 -87c-11 -1.29999 -21.1 -0.100006 -32 3c8 52 19 112 20 160c0 3 1 3 4 3c18 -4 16 -14 50 -14h206c38 0 60 6 77 11l16 -12c-112 -273 -167 -439 -224 -609l-68 -3l-8 7c68 152 147 347 225 541h-179zM478 122c0 -83 17 -88 87 -91
-c6 -6 6 -27 0 -33c-50 1 -74.4 2 -122 2c-54.2 0 -90 -1 -139 -2c-6 6 -6 27 0 33c70 3 97 8 97 91v326c0 34 -3.5 58 -20 58c-19 0 -41.5 -6 -87 -25c-9 6.10001 -13.4 15.6 -15 27c88 41 140.7 65.7 196 100c3.5 0 6 -0.200012 6 -5c-1.70001 -13 -3 -74 -3 -134v-347z
-M60.7 271.8c0 142.3 71.1 270.1 162.1 348.1c8.7 -0.600037 13.5 -6 16.1 -13.8c-24.5 -27.5 -114.7 -133.1 -114.7 -334.3c0 -201.2 89.5 -306.8 114.7 -335.9c-2.29999 -6.1 -8.39999 -11.5 -16.1 -13c-159.1 137.7 -162.1 314.5 -162.1 348.9zM1156.3 269.8
-c0 -142.3 -71.2001 -270.1 -162.2 -348.1c-8.69995 0.600006 -13.4 6 -16 13.8c24.5 27.5 114.7 133.1 114.7 334.3c0 201.2 -89.5001 306.7 -114.7 335.8c2.30005 6.10004 8.40002 11.5 16 13c159.1 -137.7 162.2 -314.4 162.2 -348.8z" />
-    <glyph glyph-name="uni2485" unicode="&#x2485;" horiz-adv-x="1235" 
-d="M791 554c-57 0 -94 -45 -94 -89c0 -29 15 -63 75 -102l28 -19c26 19 86 65 86 116c0 44 -33 94 -95 94zM944 459c0 -61 -69 -108 -111 -136l59 -40c47 -32 73 -75 73 -130c0 -72 -59 -165 -182 -165c-100 0 -169 53 -169 150c0 37 15 80 54 114c24 21 44 38 68 55l-16 11
-c-58 38 -86 76 -86 129c0 73 66 131 162 131c93 0 148 -51 148 -119zM785 16c43 0 117 23 117 118c0 45 -26 90 -86 126l-45 27c-81 -55 -99 -121 -99 -149c0 -85 69 -122 113 -122zM488 122c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-50 1 -74.4 2 -122 2
-c-54.2 0 -90 -1 -139 -2c-6 6 -6 27 0 33c70 3 97 8 97 91v326c0 34 -3.5 58 -20 58c-19 0 -41.5 -6 -87 -25c-9 6.10001 -13.4 15.6 -15 27c88 41 140.7 65.7 196 100c3.5 0 6 -0.200012 6 -5c-1.70001 -13 -3 -74 -3 -134v-347zM70.7 271.8
-c0 142.3 71.1 270.1 162.1 348.1c8.7 -0.600037 13.5 -6 16.1 -13.8c-24.5 -27.5 -114.7 -133.1 -114.7 -334.3c0 -201.2 89.5 -306.8 114.7 -335.9c-2.29999 -6.1 -8.39999 -11.5 -16.1 -13c-159.1 137.7 -162.1 314.5 -162.1 348.9zM1166.3 269.8
-c0 -142.3 -71.2001 -270.1 -162.2 -348.1c-8.69995 0.600006 -13.4 6 -16 13.8c24.5 27.5 114.7 133.1 114.7 334.3c0 201.2 -89.5001 306.7 -114.7 335.8c2.30005 6.10004 8.40002 11.5 16 13c159.1 -137.7 162.2 -314.4 162.2 -348.8z" />
-    <glyph glyph-name="uni2486" unicode="&#x2486;" horiz-adv-x="1235" 
-d="M918.8 292c5.90002 28.8 8.20001 55.5 8.20001 78c0 171 -57 205 -120 205c-49 0 -91 -50 -91 -160c0 -50 22 -146 120 -146c17.4 0 50 1.39999 82.8 23zM909.7 255.7c-29.8 -13.7 -68.7 -21.7 -94.7 -21.7c-136 0 -182 77 -182 163s54 213 185 213
-c77 0 192 -40 192 -243c0 -79 -31 -170 -93 -242c-56 -65 -118 -107 -219 -137c-8 5 -12 14 -12 26c133 49.8 196.6 150.8 223.7 241.7zM483 122c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-50 1 -74.4 2 -122 2c-54.2 0 -90 -1 -139 -2c-6 6 -6 27 0 33c70 3 97 8 97 91v326
-c0 34 -3.5 58 -20 58c-19 0 -41.5 -6 -87 -25c-9 6.10001 -13.4 15.6 -15 27c88 41 140.7 65.7 196 100c3.5 0 6 -0.200012 6 -5c-1.70001 -13 -3 -74 -3 -134v-347zM65.7 271.8c0 142.3 71.1 270.1 162.1 348.1c8.7 -0.600037 13.5 -6 16.1 -13.8
-c-24.5 -27.5 -114.7 -133.1 -114.7 -334.3c0 -201.2 89.5 -306.8 114.7 -335.9c-2.29999 -6.1 -8.39999 -11.5 -16.1 -13c-159.1 137.7 -162.1 314.5 -162.1 348.9zM1161.3 269.8c0 -142.3 -71.2001 -270.1 -162.2 -348.1c-8.69995 0.600006 -13.4 6 -16 13.8
-c24.5 27.5 114.7 133.1 114.7 334.3c0 201.2 -89.5001 306.7 -114.7 335.8c2.30005 6.10004 8.40002 11.5 16 13c159.1 -137.7 162.2 -314.4 162.2 -348.8z" />
-    <glyph glyph-name="uni2487" unicode="&#x2487;" horiz-adv-x="1235" 
-d="M835 575c-45 0 -106 -46 -106 -292c0 -87 10 -258 103 -258c18 0 67 9 89 91c14 51 17 114 17 206c0 134 -27 210 -58 236c-12 11 -28 17 -45 17zM831 -10c-38.7 0 -73 13.6 -101.4 42c-54.7 54.5 -87.6 155.4 -87.6 262c0 198 94 316 193 316c54 0 95.8 -30.3 122 -65
-c44 -58 68 -143 68 -242c0 -235 -117 -313 -194 -313zM259 468c0 60 69 142 180 142c81 0 169 -44 169 -152c0 -76 -43 -120 -100 -175l-101 -97c-5 -5 -74 -73 -74 -121h178c36 0 53 25 70 96c10 2 23 0 29 -5c-1 -30 -11 -105 -24 -158c0 0 -46 2 -78 2h-175
-c-32 0 -83 -2 -83 -2c0 59 16 107 114 207l74 73c59 60 82 112 82 176c0 96 -51 121 -87 121c-73 0 -99 -36 -99 -61c0 -8 6 -17 8 -24s4 -13 4 -21c0 -22.1 -30 -40 -47 -40c-21 0 -40 18 -40 39zM68.7 271.8c0 142.3 71.1 270.1 162.1 348.1
-c8.7 -0.600037 13.5 -6 16.1 -13.8c-24.5 -27.5 -114.7 -133.1 -114.7 -334.3c0 -201.2 89.5 -306.8 114.7 -335.9c-2.29999 -6.1 -8.39999 -11.5 -16.1 -13c-159.1 137.7 -162.1 314.5 -162.1 348.9zM1164.3 269.8c0 -142.3 -71.2001 -270.1 -162.2 -348.1
-c-8.69995 0.600006 -13.4 6 -16 13.8c24.5 27.5 114.7 133.1 114.7 334.3c0 201.2 -89.5001 306.7 -114.7 335.8c2.30005 6.10004 8.40002 11.5 16 13c159.1 -137.7 162.2 -314.4 162.2 -348.8z" />
-    <glyph glyph-name="uni24EB" unicode="&#x24eb;" horiz-adv-x="759" 
-d="M378 646c183 0 329 -149 329 -331s-147 -330 -329 -330s-329 148 -329 330c0 184 147 331 329 331zM450 413c12 0 14 -10 14 -42v-152c0 -22 -14 -37 -30 -37h-36c-3 0 -7 -3 -7 -5v-21s60 1 98 1c33 0 86 -1 86 -1v21c0 4 -3 5 -6 5h-28c-14 0 -25 15 -25 37v261h-16
-c-44 -27 -70 -39 -117 -56l10 -27c14 7 44 16 57 16zM236 413c13 0 15 -10 15 -42v-152c0 -22 -14 -37 -30 -37h-36c-4 0 -7 -3 -7 -5v-21s59 1 97 1c34 0 86 -1 86 -1v21c0 4 -3 5 -6 5h-27c-14 0 -26 15 -26 37v261h-16c-43 -27 -69 -39 -116 -56l9 -27c15 7 45 16 57 16z
-" />
-    <glyph glyph-name="uni24EC" unicode="&#x24ec;" horiz-adv-x="759" 
-d="M378 646c183 0 329 -149 329 -331s-147 -330 -329 -330s-329 148 -329 330c0 184 147 331 329 331zM406 376c10 0 28 8 28 24c0 8 -5 16 -5 24c0 14 11 29 54 29c18 0 53 -13 53 -60c0 -54 -22 -77 -67 -112c-48 -38 -91 -80 -91 -128h206c3 29 10 64 19 94l-24 6
-c-11 -29 -27 -67 -58 -67h-81c0 30 24 59 66 89c56 40 89 74 89 120c0 63 -58 83 -108 83c-79 0 -107 -51 -107 -78c0 -13 14 -24 26 -24zM227 413c12 0 14 -10 14 -42v-152c0 -22 -14 -37 -30 -37h-36c-4 0 -7 -3 -7 -5v-21s60 1 98 1c33 0 86 -1 86 -1v21c0 4 -3 5 -6 5
-h-28c-14 0 -26 15 -26 37v261h-16c-43 -27 -69 -39 -116 -56l9 -27c15 7 45 16 58 16z" />
-    <glyph glyph-name="uni24ED" unicode="&#x24ed;" horiz-adv-x="759" 
-d="M378 646c183 0 329 -149 329 -331s-147 -330 -329 -330s-329 148 -329 330c0 184 147 331 329 331zM520 413c0 -41 -30 -67 -74 -73l2 -24c8 1 13 2 20 2c24 0 78 -7 78 -64c0 -69 -57 -82 -76 -82c-32 0 -42 8 -50 18c-6 7 -12 14 -26 14c-11 0 -24 -10 -24 -20
-c0 -21 52 -37 89 -37c80 0 146 46 146 115c0 58 -47 85 -80 88c29 16 51 39 51 68c0 37 -33 59 -85 59c-87 0 -116 -53 -116 -70c0 -3 4 -18 23 -18c23 0 25 17 26 29c1 25 35 35 55 35s41 -9 41 -40zM221 413c12 0 14 -10 14 -42v-152c0 -22 -13 -37 -30 -37h-35
-c-4 0 -8 -3 -8 -5v-21s60 1 98 1c33 0 86 -1 86 -1v21c0 4 -3 5 -6 5h-28c-13 0 -25 15 -25 37v261h-16c-43 -27 -70 -39 -117 -56l10 -27c15 7 44 16 57 16z" />
-    <glyph glyph-name="uni24EE" unicode="&#x24ee;" horiz-adv-x="759" 
-d="M378 646c183 0 329 -149 329 -331s-147 -330 -329 -330s-329 148 -329 330c0 184 147 331 329 331zM530 393c0 8 -8 10 -13 10c-7 0 -19 -12 -26 -21c-2 -3 -7 -11 -7 -18v-76h-91c23 34 82 116 127 186l-30 9c-41 -56 -109 -152 -154 -218l4 -12h144v-50
-c0 -21 -5 -24 -23 -24h-14c-4 0 -5 -3 -5 -4v-21s37 1 61 1c27 0 70 -1 70 -1v20c0 2 -1 5 -5 5h-16c-18 0 -22 6 -22 25v49h52l2 35h-54v105zM236 413c13 0 15 -10 15 -42v-152c0 -22 -14 -37 -30 -37h-36c-4 0 -7 -3 -7 -5v-21s59 1 97 1c34 0 86 -1 86 -1v21
-c0 4 -3 5 -6 5h-27c-14 0 -26 15 -26 37v261h-16c-43 -27 -69 -39 -116 -56l9 -27c15 7 45 16 57 16z" />
-    <glyph glyph-name="uni24EF" unicode="&#x24ef;" horiz-adv-x="759" 
-d="M378 646c183 0 329 -149 329 -331s-147 -330 -329 -330s-329 148 -329 330c0 184 147 331 329 331zM532 250c0 -42 -17 -79 -62 -79c-22 0 -33 10 -42 19c-8 8 -15 15 -29 15c-10 0 -22 -9 -22 -21c0 -24 60 -38 94 -38c70 0 118 54 118 113c0 54 -36 106 -113 106
-c-15 0 -40 -5 -49 -10l12 81h125v1l5 33h-153l-21 -142l5 -4c15 8 36 14 57 14c72 0 75 -59 75 -88zM227 413c12 0 14 -10 14 -42v-152c0 -22 -14 -37 -30 -37h-36c-4 0 -7 -3 -7 -5v-21s60 1 98 1c33 0 86 -1 86 -1v21c0 4 -3 5 -6 5h-28c-14 0 -26 15 -26 37v261h-16
-c-43 -27 -69 -39 -116 -56l9 -27c15 7 45 16 58 16z" />
-    <glyph glyph-name="uni24F0" unicode="&#x24f0;" horiz-adv-x="759" 
-d="M378 646c183 0 329 -149 329 -331s-147 -330 -329 -330s-329 148 -329 330c0 184 147 331 329 331zM534 244c0 -37 -8 -72 -52 -72c-28 0 -67 23 -67 107v19c22 17 43 23 57 23c57 0 62 -55 62 -77zM590 249c0 17 -10 96 -107 96c-25 0 -52 -16 -66 -31
-c11 59 46 125 155 144v20c-153 -12 -211 -115 -211 -197c0 -104 72 -133 121 -133c80 0 108 65 108 101zM236 413c13 0 15 -10 15 -42v-152c0 -22 -14 -37 -30 -37h-36c-4 0 -7 -3 -7 -5v-21s59 1 97 1c34 0 86 -1 86 -1v21c0 4 -3 5 -6 5h-27c-14 0 -26 15 -26 37v261h-16
-c-43 -27 -69 -39 -116 -56l9 -27c15 7 45 16 57 16z" />
-    <glyph glyph-name="uni24F1" unicode="&#x24f1;" horiz-adv-x="759" 
-d="M378 646c183 0 329 -149 329 -331s-147 -330 -329 -330s-329 148 -329 330c0 184 147 331 329 331zM441 435h100c-26 -46 -82 -170 -117 -281h34c31 105 88 227 141 318h-174c-16 0 -21 1 -21 6h-18c-1 -27 -8 -67 -13 -95l22 -3c11 48 19 55 46 55zM240 413
-c13 0 15 -10 15 -42v-152c0 -22 -14 -37 -30 -37h-36c-4 0 -7 -3 -7 -5v-21s59 1 97 1c34 0 86 -1 86 -1v21c0 4 -3 5 -6 5h-27c-14 0 -26 15 -26 37v261h-16c-43 -27 -69 -39 -116 -56l9 -27c15 7 45 16 57 16z" />
-    <glyph glyph-name="uni24F2" unicode="&#x24f2;" horiz-adv-x="759" 
-d="M378 646c183 0 329 -149 329 -331s-147 -330 -329 -330s-329 148 -329 330c0 184 147 331 329 331zM482 455c36 0 51 -18 51 -45c0 -30 -23 -57 -39 -67l-20 11c-36 20 -44 42 -44 58c0 29 23 43 52 43zM577 410c0 39 -46 67 -91 67c-52 0 -100 -29 -100 -74
-c0 -29 15 -55 55 -74l12 -6c-38 -21 -82 -57 -82 -94c0 -65 67 -82 111 -82c90 0 121 58 121 90c0 31 -18 56 -49 73l-39 21c59 34 62 64 62 79zM475 312l29 -15c40 -20 45 -45 45 -70c0 -41 -29 -58 -66 -58c-23 0 -64 16 -64 60c0 34 40 74 56 83zM236 413
-c13 0 15 -10 15 -42v-152c0 -22 -14 -37 -30 -37h-36c-4 0 -7 -3 -7 -5v-21s59 1 97 1c34 0 86 -1 86 -1v21c0 4 -3 5 -6 5h-27c-14 0 -26 15 -26 37v261h-16c-43 -27 -69 -39 -116 -56l9 -27c15 7 45 16 57 16z" />
-    <glyph glyph-name="uni24F3" unicode="&#x24f3;" horiz-adv-x="759" 
-d="M378 646c183 0 329 -149 329 -331s-147 -330 -329 -330s-329 148 -329 330c0 184 147 331 329 331zM438 381c0 37 7 72 51 72c29 0 68 -23 68 -107v-19c-22 -17 -44 -23 -58 -23c-57 0 -61 55 -61 77zM382 376c0 -17 10 -96 106 -96c25 0 52 16 67 31
-c-12 -59 -46 -125 -156 -144v-20c154 12 214 115 214 197c0 104 -74 133 -124 133c-79 0 -107 -65 -107 -101zM234 413c13 0 15 -10 15 -42v-152c0 -22 -14 -37 -30 -37h-36c-4 0 -7 -3 -7 -5v-21s59 1 97 1c34 0 86 -1 86 -1v21c0 4 -3 5 -5 5h-28c-14 0 -26 15 -26 37v261
-h-16c-43 -27 -69 -39 -116 -56l9 -27c15 7 45 16 57 16z" />
-    <glyph glyph-name="uni24F4" unicode="&#x24f4;" horiz-adv-x="759" 
-d="M378 646c183 0 329 -149 329 -331s-147 -330 -329 -330s-329 148 -329 330c0 184 147 331 329 331zM502 452c48 0 63 -73 63 -127c0 -77 -6 -154 -65 -154c-54 0 -62 78 -62 134c0 53 1 147 64 147zM499 147c59 0 125 49 125 168c0 121 -64 162 -122 162
-c-68 0 -123 -73 -123 -166c0 -85 51 -164 120 -164zM160 376c9 0 28 8 28 24c0 8 -5 16 -5 24c0 14 11 29 54 29c18 0 53 -13 53 -60c0 -54 -22 -77 -67 -112c-48 -38 -91 -80 -91 -128h206c3 29 10 64 18 94l-23 6c-11 -29 -27 -67 -59 -67h-80c0 30 24 59 66 89
-c55 40 89 74 89 120c0 63 -58 83 -108 83c-79 0 -107 -51 -107 -78c0 -13 13 -24 26 -24z" />
-    <glyph glyph-name="uni24F5" unicode="&#x24f5;" horiz-adv-x="777" 
-d="M417.5 235.4c0 -48.6 9.89999 -51.5 50.9 -53.3c3.5 -3.5 3.5 -15.8 0 -19.3c-29.2 0.599991 -43.6 1.2 -71.4 1.2c-31.7 0 -52.6 -0.600006 -81.3 -1.2c-3.5 3.5 -3.5 15.8 0 19.3c40.9 1.79999 56.7 4.7 56.7 53.3v190.7c0 19.9 -2 33.9 -11.7 33.9
-c-11.1 0 -24.3 -3.5 -50.9 -14.6c-5.19998 3.60001 -7.79999 9.10001 -8.69998 15.8c51.5 24 82.2 38.4 114.6 58.5c2 0 3.5 -0.100037 3.5 -2.90002c-1 -7.59998 -1.70001 -43.3 -1.70001 -78.4v-203zM387.4 -15c-190.5 0 -344 154 -344 343.2s153.5 341.7 344 341.7
-c190.5 0 345.5 -152.5 345.5 -341.7s-155 -343.2 -345.5 -343.2zM387.4 647.9c-178.7 0 -321.9 -143.7 -321.9 -319.7c0 -176 143.2 -319.7 321.9 -319.7c177.2 0 321.9 142.2 321.9 319.7c0 177.5 -143.2 319.7 -321.9 319.7zM387.4 51c-155 0 -280.5 126.1 -280.5 280.1
-s128.4 269.8 280.5 269.8c152.1 0 282.1 -115.8 282.1 -269.8c0 -155.5 -127.1 -280.1 -282.1 -280.1zM387.4 583.3c-141.8 0 -256.9 -114.3 -256.9 -255.1c0 -140.8 113.7 -256.7 256.9 -256.7c141.8 0 258.4 114.4 258.4 256.7c0 140.8 -116.6 255.1 -258.4 255.1z" />
-    <glyph glyph-name="uni24F6" unicode="&#x24f6;" horiz-adv-x="779" 
-d="M290.7 436.8c0 35.1 40.4 83 105.3 83c47.4 0 98.8 -25.7 98.8 -88.9c0 -44.5 -25.2 -70.1 -58.5 -102.3l-59 -56.8c-2.89999 -2.89999 -43.3 -42.7 -43.3 -70.8h104.1c21.1 0 31.1 14.7 41 56.2c5.89999 1.19998 13.4 0 16.9 -2.90001
-c-0.600006 -17.5 -6.39999 -61.5 -14 -92.5c0 0 -27 1.2 -45.7 1.2h-102.3c-18.7 0 -48.6 -1.2 -48.6 -1.2c0 34.5 9.39999 62.6 66.7 121.1l43.3 42.7c34.5 35.1 48 65.6 48 103c0 56.2 -29.8 70.8 -50.9 70.8c-42.7 0 -57.9 -21.1 -57.9 -35.7
-c0 -4.70001 3.39999 -9.90002 4.60001 -14c1.19998 -4.10001 2.39999 -7.60001 2.39999 -12.3c0 -12.9 -17.6 -23.4 -27.5 -23.4c-12.3 0 -23.4 10.5 -23.4 22.8zM387.4 -15c-190.5 0 -344 154 -344 343.2s153.5 341.7 344 341.7c190.5 0 345.5 -152.5 345.5 -341.7
-s-155 -343.2 -345.5 -343.2zM387.4 647.9c-178.7 0 -321.9 -143.7 -321.9 -319.7c0 -176 143.2 -319.7 321.9 -319.7c177.2 0 321.9 142.2 321.9 319.7c0 177.5 -143.2 319.7 -321.9 319.7zM387.4 51c-155 0 -280.5 126.1 -280.5 280.1s128.4 269.8 280.5 269.8
-c152.1 0 282.1 -115.8 282.1 -269.8c0 -155.5 -127.1 -280.1 -282.1 -280.1zM387.4 583.3c-141.8 0 -256.9 -114.3 -256.9 -255.1c0 -140.8 113.7 -256.7 256.9 -256.7c141.8 0 258.4 114.4 258.4 256.7c0 140.8 -116.6 255.1 -258.4 255.1z" />
-    <glyph glyph-name="uni24F7" unicode="&#x24f7;" horiz-adv-x="777" 
-d="M384.8 502.4c-15.2 0 -55.6 -7.10001 -55.6 -44.5c0 -11.1 -2.30002 -30.4 -22.8 -30.4c-14 0 -19.9 11.7 -19.9 19.9c0 19.3 24.6 75.4 110.6 75.4c30.6 0 50.9 -9.79999 63.7 -22.7c14.2 -14.4 18.4 -28.7 18.4 -46.3c0 -30.8 -13.5 -55.2 -61.7 -77.8
-l0.600006 -1.20001c34.5 -5.79999 82.5 -28.6 82.5 -92.4c0 -77.2 -62 -122.2 -131.6 -122.2c-35.1 0 -84.3 15.7 -84.3 39.1c0 9.39999 12.3 20.5 24.6 20.5c11.7 0 19.4 -7 25.2 -15.2c7 -10.5 12.3 -24 42.1 -24c20.5 0 72.5 15.8 72.5 93.6
-c0 66.1 -43.3 75.5 -76.6 75.5c-7.60001 0 -18.2 0 -28.1 -1.20001l-2.89999 18.7c58 8.19998 91.9 52.9 91.9 82.3c0 37.6 -23.3 52.9 -48.6 52.9zM387.4 -15c-190.5 0 -344 154 -344 343.2s153.5 341.7 344 341.7c190.5 0 345.5 -152.5 345.5 -341.7
-s-155 -343.2 -345.5 -343.2zM387.4 647.9c-178.7 0 -321.9 -143.7 -321.9 -319.7c0 -176 143.2 -319.7 321.9 -319.7c177.2 0 321.9 142.2 321.9 319.7c0 177.5 -143.2 319.7 -321.9 319.7zM387.4 51c-155 0 -280.5 126.1 -280.5 280.1s128.4 269.8 280.5 269.8
-c152.1 0 282.1 -115.8 282.1 -269.8c0 -155.5 -127.1 -280.1 -282.1 -280.1zM387.4 583.3c-141.8 0 -256.9 -114.3 -256.9 -255.1c0 -140.8 113.7 -256.7 256.9 -256.7c141.8 0 258.4 114.4 258.4 256.7c0 140.8 -116.6 255.1 -258.4 255.1z" />
-    <glyph glyph-name="uni24F8" unicode="&#x24f8;" horiz-adv-x="777" 
-d="M400.5 460.6c-40.3 -55.1 -81.7 -120.4 -111.7 -168.5h111.7v168.5zM493.5 292.1c6.39999 0 8.79999 -3.39999 8.79999 -9.30002c0 -7 -8.69998 -18.2 -16.9 -18.2h-40.4v-53.8c0 -27.5 12.2 -26.4 40.9 -28.7c3.5 -3.5 3.5 -15.8 0 -19.3
-c-18.7 0.599991 -40.7 1.2 -63.7 1.2c-26.9 0 -50.3 -0.600006 -69 -1.2c-3.5 3.5 -3.5 15.8 0 19.3c25.2 1.79999 47.3 1.79999 47.3 28.7v53.8h-119.3c-17.6 0 -21 15.8 -22.8 24.6c53.5 83.7 121.6 179.9 158.5 225.2c2.20001 2.59998 5.30002 6.39996 9.39999 6.39996
-h18.7l1.20001 -1.09998c-1 -4.60004 -1.20001 -27.6 -1.20001 -56.8v-170.8h48.5zM387.4 -15c-190.5 0 -344 154 -344 343.2s153.5 341.7 344 341.7c190.5 0 345.5 -152.5 345.5 -341.7s-155 -343.2 -345.5 -343.2zM387.4 647.9c-178.7 0 -321.9 -143.7 -321.9 -319.7
-c0 -176 143.2 -319.7 321.9 -319.7c177.2 0 321.9 142.2 321.9 319.7c0 177.5 -143.2 319.7 -321.9 319.7zM387.4 51c-155 0 -280.5 126.1 -280.5 280.1s128.4 269.8 280.5 269.8c152.1 0 282.1 -115.8 282.1 -269.8c0 -155.5 -127.1 -280.1 -282.1 -280.1zM387.4 583.3
-c-141.8 0 -256.9 -114.3 -256.9 -255.1c0 -140.8 113.7 -256.7 256.9 -256.7c141.8 0 258.4 114.4 258.4 256.7c0 140.8 -116.6 255.1 -258.4 255.1z" />
-    <glyph glyph-name="uni24F9" unicode="&#x24f9;" horiz-adv-x="777" 
-d="M448.6 275.6c0 63.8 -29.8 88.9 -67.8 88.9c-21.1 0 -43.3 -2.39999 -74.3 -14.1l19.8 168.5c20.5 -1.80005 41.6 -2.90002 63.2 -2.90002c31 0 62.7 2.90002 96 6.40002l4.10001 -2.30005l-9.39999 -39.8c-24 -2.29999 -43.9 -3.5 -61.4 -3.5
-c-28.1 0 -46.9 3 -68.5 5.30002l-11.7 -97.7c10.5 4.10001 32.2 9.30002 57.4 9.30002c65.5 0 104.7 -50.9 104.7 -107.6c0 -73.7 -51.5 -127.5 -124 -127.5c-33.3 0 -83.1 19.8 -83.1 43.8c0 11.7 11.1 21.7 22.2 21.7c12.3 0 22.3 -8.8 29.9 -18.7
-c8.79999 -11.7 16.4 -26.4 38.6 -26.4c35.1 0 64.3 41 64.3 96.6zM387.4 -15c-190.5 0 -344 154 -344 343.2s153.5 341.7 344 341.7c190.5 0 345.5 -152.5 345.5 -341.7s-155 -343.2 -345.5 -343.2zM387.4 647.9c-178.7 0 -321.9 -143.7 -321.9 -319.7
-c0 -176 143.2 -319.7 321.9 -319.7c177.2 0 321.9 142.2 321.9 319.7c0 177.5 -143.2 319.7 -321.9 319.7zM387.4 51c-155 0 -280.5 126.1 -280.5 280.1s128.4 269.8 280.5 269.8c152.1 0 282.1 -115.8 282.1 -269.8c0 -155.5 -127.1 -280.1 -282.1 -280.1zM387.4 583.3
-c-141.8 0 -256.9 -114.3 -256.9 -255.1c0 -140.8 113.7 -256.7 256.9 -256.7c141.8 0 258.4 114.4 258.4 256.7c0 140.8 -116.6 255.1 -258.4 255.1z" />
-    <glyph glyph-name="uni24FA" unicode="&#x24fa;" horiz-adv-x="777" 
-d="M323.1 342.6c-3.39999 -16.8 -4.80002 -32.4 -4.80002 -45.6c0 -100 33.3 -120 70.2 -120c28.7 0 53.2 29.3 53.2 93.6c0 29.2 -12.9 85.4 -70.2 85.4c-10.2 0 -29.2 -0.799988 -48.4 -13.4zM328.4 363.9c17.4 8 40.2 12.6 55.4 12.6c79.6 0 106.5 -45 106.5 -95.3
-c0 -50.3 -31.6 -124.6 -108.2 -124.6c-45 0 -112.4 23.3 -112.4 142.1c0 46.2 18.1 99.5 54.4 141.6c32.8 38 69.1 62.6 128.2 80.1c4.70001 -2.90002 7 -8.20001 7 -15.2c-77.8 -29.1 -115.1 -88.1 -130.9 -141.3zM387.4 -15c-190.5 0 -344 154 -344 343.2
-s153.5 341.7 344 341.7c190.5 0 345.5 -152.5 345.5 -341.7s-155 -343.2 -345.5 -343.2zM387.4 647.9c-178.7 0 -321.9 -143.7 -321.9 -319.7c0 -176 143.2 -319.7 321.9 -319.7c177.2 0 321.9 142.2 321.9 319.7c0 177.5 -143.2 319.7 -321.9 319.7zM387.4 51
-c-155 0 -280.5 126.1 -280.5 280.1s128.4 269.8 280.5 269.8c152.1 0 282.1 -115.8 282.1 -269.8c0 -155.5 -127.1 -280.1 -282.1 -280.1zM387.4 583.3c-141.8 0 -256.9 -114.3 -256.9 -255.1c0 -140.8 113.7 -256.7 256.9 -256.7c141.8 0 258.4 114.4 258.4 256.7
-c0 140.8 -116.6 255.1 -258.4 255.1z" />
-    <glyph glyph-name="uni24FB" unicode="&#x24fb;" horiz-adv-x="777" 
-d="M368.5 479c-18.7 0 -38 -4.10001 -50.9 -50.9c-6.39999 -0.800018 -12.4 -0.100006 -18.8 1.69998c4.70001 30.4 11.1 65.5 11.7 93.6c0 1.79999 0.600006 1.79999 2.39999 1.79999c10.5 -2.29999 9.30002 -8.20001 29.2 -8.20001h120.5c22.2 0 35.2 3.5 45.1 6.40002
-l9.29999 -7c-65.5 -159.7 -97.7 -256.8 -131 -356.2l-39.8 -1.8l-4.70001 4.10001c39.8 88.9 86.1 203 131.7 316.5h-104.7zM387.4 -15c-190.5 0 -344 154 -344 343.2s153.5 341.7 344 341.7c190.5 0 345.5 -152.5 345.5 -341.7s-155 -343.2 -345.5 -343.2zM387.4 647.9
-c-178.7 0 -321.9 -143.7 -321.9 -319.7c0 -176 143.2 -319.7 321.9 -319.7c177.2 0 321.9 142.2 321.9 319.7c0 177.5 -143.2 319.7 -321.9 319.7zM387.4 51c-155 0 -280.5 126.1 -280.5 280.1s128.4 269.8 280.5 269.8c152.1 0 282.1 -115.8 282.1 -269.8
-c0 -155.5 -127.1 -280.1 -282.1 -280.1zM387.4 583.3c-141.8 0 -256.9 -114.3 -256.9 -255.1c0 -140.8 113.7 -256.7 256.9 -256.7c141.8 0 258.4 114.4 258.4 256.7c0 140.8 -116.6 255.1 -258.4 255.1z" />
-    <glyph glyph-name="uni24FC" unicode="&#x24fc;" horiz-adv-x="777" 
-d="M388 490c-34 0 -55 -26 -55 -52c0 -17 8 -37 43 -60l17 -10c15 11 50 37 50 67c0 26 -19 55 -55 55zM477 435c0 -36 -40 -64 -64 -80l33 -23c29 -19 43 -44 43 -76c0 -43 -34 -97 -106 -97c-59 0 -99 31 -99 88c0 22 9 47 31 67c15 12 26 21 40 32l-9 6
-c-34 23 -50 44 -50 76c0 42 38 76 95 76c54 0 86 -29 86 -69zM384 175c25 0 69 14 69 70c0 26 -15 52 -51 73l-26 16c-47 -32 -58 -71 -58 -87c0 -50 40 -72 66 -72zM387.4 -15c-190.5 0 -344 154 -344 343.2s153.5 341.7 344 341.7c190.5 0 345.5 -152.5 345.5 -341.7
-s-155 -343.2 -345.5 -343.2zM387.4 647.9c-178.7 0 -321.9 -143.7 -321.9 -319.7c0 -176 143.2 -319.7 321.9 -319.7c177.2 0 321.9 142.2 321.9 319.7c0 177.5 -143.2 319.7 -321.9 319.7zM387.4 51c-155 0 -280.5 126.1 -280.5 280.1s128.4 269.8 280.5 269.8
-c152.1 0 282.1 -115.8 282.1 -269.8c0 -155.5 -127.1 -280.1 -282.1 -280.1zM387.4 583.3c-141.8 0 -256.9 -114.3 -256.9 -255.1c0 -140.8 113.7 -256.7 256.9 -256.7c141.8 0 258.4 114.4 258.4 256.7c0 140.8 -116.6 255.1 -258.4 255.1z" />
-    <glyph glyph-name="uni24FD" unicode="&#x24fd;" horiz-adv-x="777" 
-d="M475.5 337.8c3.39999 16.8 4.70001 32.5 4.70001 45.7c0 100 -33.3 119.9 -70.2 119.9c-28.7 0 -53.2 -29.3 -53.2 -93.6c0 -29.2 12.9 -85.4 70.2 -85.4c10.2 0 29.3 0.800018 48.5 13.4zM470.1 316.6c-17.5 -8 -40.2 -12.7 -55.4 -12.7c-79.6 0 -106.5 45 -106.5 95.3
-c0 50.3 31.7 124.6 108.3 124.6c45 0 112.3 -23.3 112.3 -142.1c0 -46.2 -18.1 -99.5 -54.4 -141.6c-32.8 -38 -69 -62.6 -128.1 -80.1c-4.69998 2.89999 -7 8.2 -7 15.2c77.8 29.1 115 88.2 130.8 141.4zM387.4 -15c-190.5 0 -344 154 -344 343.2s153.5 341.7 344 341.7
-c190.5 0 345.5 -152.5 345.5 -341.7s-155 -343.2 -345.5 -343.2zM387.4 647.9c-178.7 0 -321.9 -143.7 -321.9 -319.7c0 -176 143.2 -319.7 321.9 -319.7c177.2 0 321.9 142.2 321.9 319.7c0 177.5 -143.2 319.7 -321.9 319.7zM387.4 51c-155 0 -280.5 126.1 -280.5 280.1
-s128.4 269.8 280.5 269.8c152.1 0 282.1 -115.8 282.1 -269.8c0 -155.5 -127.1 -280.1 -282.1 -280.1zM387.4 583.3c-141.8 0 -256.9 -114.3 -256.9 -255.1c0 -140.8 113.7 -256.7 256.9 -256.7c141.8 0 258.4 114.4 258.4 256.7c0 140.8 -116.6 255.1 -258.4 255.1z" />
-    <glyph glyph-name="uni24FE" unicode="&#x24fe;" horiz-adv-x="787" 
-d="M330.5 235.4c0 -48.6 9.89999 -51.5 50.9 -53.3c3.5 -3.5 3.5 -15.8 0 -19.3c-29.2 0.599991 -43.6 1.2 -71.4 1.2c-31.7 0 -52.6 -0.600006 -81.3 -1.2c-3.5 3.5 -3.5 15.8 0 19.3c40.9 1.79999 56.7 4.7 56.7 53.3v190.7c0 19.9 -2 33.9 -11.7 33.9
-c-11.1 0 -24.3 -3.5 -50.9 -14.6c-5.2 3.60001 -7.8 9.10001 -8.7 15.8c51.5 24 82.2 38.4 114.6 58.5c2 0 3.5 -0.100037 3.5 -2.90002c-1 -7.59998 -1.70001 -43.3 -1.70001 -78.4v-203zM493.7 505.4c-26.3 0 -62 -26.9 -62 -170.8c0 -50.9 5.89999 -151 60.3 -151
-c10.5 0 39.1 5.29999 52 53.3c8.20001 29.8 10 66.7 10 120.5c0 78.4 -15.9 122.8 -34 138c-7 6.39999 -16.4 10 -26.3 10zM491.4 163.2c-22.6 0 -42.8 7.90001 -59.4 24.5c-32 31.9 -51.2 91 -51.2 153.3c0 115.8 55 184.8 112.9 184.8c31.6 0 56.1 -17.7 71.4 -38
-c25.7 -33.9 39.8 -83.6 39.8 -141.5c0 -137.5 -68.5 -183.1 -113.5 -183.1zM387.4 -15c-190.5 0 -344 154 -344 343.2s153.5 341.7 344 341.7c190.5 0 345.5 -152.5 345.5 -341.7s-155 -343.2 -345.5 -343.2zM387.4 647.9c-178.7 0 -321.9 -143.7 -321.9 -319.7
-c0 -176 143.2 -319.7 321.9 -319.7c177.2 0 321.9 142.2 321.9 319.7c0 177.5 -143.2 319.7 -321.9 319.7zM387.4 51c-155 0 -280.5 126.1 -280.5 280.1s128.4 269.8 280.5 269.8c152.1 0 282.1 -115.8 282.1 -269.8c0 -155.5 -127.1 -280.1 -282.1 -280.1zM387.4 583.3
-c-141.8 0 -256.9 -114.3 -256.9 -255.1c0 -140.8 113.7 -256.7 256.9 -256.7c141.8 0 258.4 114.4 258.4 256.7c0 140.8 -116.6 255.1 -258.4 255.1z" />
-    <glyph glyph-name="uni24FF" unicode="&#x24ff;" horiz-adv-x="759" 
-d="M378 646c183 0 329 -149 329 -331s-147 -330 -329 -330s-329 148 -329 330c0 184 147 331 329 331zM378 452c48 0 63 -73 63 -127c0 -77 -6 -154 -65 -154c-54 0 -63 78 -63 134c0 53 2 147 65 147zM375 146c59 0 125 50 125 169c0 121 -64 161 -122 161
-c-69 0 -123 -72 -123 -166c0 -85 50 -164 120 -164z" />
-    <glyph glyph-name="uni25CE" unicode="&#x25ce;" horiz-adv-x="564" 
-d="M282 -15c-129 0 -233 105 -233 234s104 233 233 233s234 -104 234 -233s-105 -234 -234 -234zM282 437c-121 0 -218 -98 -218 -218s97 -218 218 -218c120 0 218 97 218 218s-97 218 -218 218zM282 30c-105 0 -190 86 -190 191s87 184 190 184s191 -79 191 -184
-c0 -106 -86 -191 -191 -191zM282 393c-96 0 -174 -78 -174 -174s77 -175 174 -175c96 0 175 78 175 175c0 96 -79 174 -175 174z" />
-    <glyph glyph-name="interrobang" unicode="&#x203d;" horiz-adv-x="446" 
-d="M114 538c0 -14 2 -19 6 -24c4 -4 7 -9 7 -21c0 -21 -20 -32 -40 -32c-16 0 -41 7 -41 39c0 35 21 59 51 81c17.4 13.4 42 23.4 69.8 29.4c8.2 34.7 33.2 47.6 52.2 47.6c21 0 43.3 -14 52.1 -43.8c79.1 -11.4 128.9 -57.3 128.9 -120.2c0 -72 -52 -115 -99 -146
-c-23 -15 -43 -30 -52 -44c-4.8 -8.5 -8.5 -16.9 -11.3 -25.2c-3.2 -39.2 -4.09999 -62.7 -4.7 -70.8c-1 -12 -4 -20 -14 -20c-12 0 -14 7 -14 13c-2 20 -8 111 -15 188c-9.8 87.6 -25.5 124.9 -26 192.8c-29.6 -10.1 -50 -27.2 -50 -43.8zM165 43c0 29 24 53 53 53
-s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53zM274.9 575c-1.5 -59.8 -16.4 -104.5 -25.9 -186c-1.3 -10.6 -2.39999 -20.7 -3.5 -30.4c7.39999 8.39999 16.1 16.9 26.5 25.4c40 33 53 64 53 106c0 32.3 -19.9 65.8 -50.1 85z" />
-    <glyph glyph-name="partialdiff" unicode="&#x2202;" horiz-adv-x="502" 
-d="M371.7 319.1c2.39999 28.1 3.29999 52.8 3.29999 70.9c0 100 -26 194 -93 194c-34 0 -52 -9 -62 -15c-28 -16 -50 -45 -71 -45c-19 0 -31 12 -31 30c0 26 24 41 56 47c30 6 73 16 123 16c101 0 157 -106 157 -233c0 -104 -41 -394 -249 -394c-90 0 -169 61 -169 157
-c0 112 88 223 219 223c45.2 0 83.9 -20.4 116.7 -50.9zM367.7 281.3c-36.9 28.9 -78.8 50.7 -124.7 50.7c-80 0 -126 -89 -126 -178c0 -73 35 -131 103 -131c94.3 0 133.3 143.6 147.7 258.3z" />
-    <glyph glyph-name="equivalence" unicode="&#x2261;" horiz-adv-x="527" 
-d="M461 364v-44h-395v44h395zM461 256v-44h-395v44h395zM461 149v-44h-395v44h395z" />
-    <glyph glyph-name="uni2262" unicode="&#x2262;" horiz-adv-x="527" 
-d="M461 364v-44h-149.6l-21.6 -64h171.2v-44h-185.9l-21.2 -63h207.1v-44h-221.9l-53.1 -158l-38 12l49.2 146h-131.2v44h146.1l21.2 63h-167.3v44h182.1l21.6 64h-203.7v44h218.6l68.4 203l38 -10l-64.9 -193h134.9z" />
-    <glyph glyph-name="integral" unicode="&#x222b;" horiz-adv-x="365" 
-d="M140 23c0 80 -2 106 -2 186v131c0 246 58 358 164 358c29 0 53 -18 53 -43c0 -22 -20 -39 -44 -39c-32 0 -34 33 -58 33c-21 0 -41 -37 -41 -170c0 -50 4 -122 4 -185v-119c0 -305 -64 -396 -162 -396c-32 0 -54 18 -54 43c0 20 20 37 39 37c27 0 41 -31 58 -31
-c28 0 43 118 43 195z" />
-    <glyph glyph-name="uni2776" unicode="&#x2776;" horiz-adv-x="759" 
-d="M378 646c183 0 329 -149 329 -331s-147 -330 -329 -330s-329 148 -329 330c0 184 147 331 329 331zM347 409c12 0 14 -10 14 -43v-151c0 -23 -14 -37 -30 -37h-36c-3 0 -7 -3 -7 -5v-21s60 1 98 1c33 0 86 -1 86 -1v21c0 4 -3 5 -6 5h-28c-14 0 -25 14 -25 37v261h-17
-c-43 -28 -69 -38 -116 -56l10 -26c14 5 44 15 57 15z" />
-    <glyph glyph-name="uni2777" unicode="&#x2777;" horiz-adv-x="759" 
-d="M378 646c183 0 329 -149 329 -331s-147 -330 -329 -330s-329 148 -329 330c0 184 147 331 329 331zM302 376c9 0 27 8 27 24c0 8 -4 16 -4 24c0 14 10 29 53 29c18 0 54 -13 54 -60c0 -54 -22 -77 -68 -112c-47 -38 -91 -80 -91 -128h206c4 29 11 64 19 94l-24 6
-c-10 -29 -26 -68 -58 -68h-81c0 31 24 60 66 90c56 40 89 74 89 120c0 63 -57 83 -107 83c-79 0 -108 -51 -108 -78c0 -13 14 -24 27 -24z" />
-    <glyph glyph-name="uni2778" unicode="&#x2778;" horiz-adv-x="759" 
-d="M378 646c183 0 329 -149 329 -331s-147 -330 -329 -330s-329 148 -329 330c0 184 147 331 329 331zM416 413c0 -41 -29 -67 -73 -73l2 -24c8 1 12 2 19 2c25 0 79 -7 79 -64c0 -69 -57 -82 -76 -82c-32 0 -42 8 -51 18c-5 7 -12 14 -25 14c-11 0 -24 -10 -24 -20
-c0 -21 51 -37 89 -37c80 0 146 46 146 115c0 58 -47 85 -80 88c28 16 50 39 50 68c0 37 -33 59 -84 59c-87 0 -117 -53 -117 -70c0 -3 4 -18 24 -18c22 0 25 17 26 29c1 25 35 35 55 35s40 -9 40 -40z" />
-    <glyph glyph-name="uni2779" unicode="&#x2779;" horiz-adv-x="759" 
-d="M378 646c183 0 329 -149 329 -331s-147 -330 -329 -330s-329 148 -329 330c0 184 147 331 329 331zM422 393c0 8 -7 10 -13 10c-7 0 -18 -12 -26 -21c-2 -3 -7 -11 -7 -18v-76h-91c23 34 82 116 127 186l-30 9c-41 -56 -109 -152 -153 -218l3 -12h144v-50
-c0 -21 -4 -24 -22 -24h-15c-4 0 -5 -3 -5 -4v-21s38 1 62 1c27 0 69 -1 69 -1v20c0 2 -1 5 -5 5h-16c-18 0 -22 6 -22 25v49h52l3 35h-55v105z" />
-    <glyph glyph-name="uni277A" unicode="&#x277a;" horiz-adv-x="759" 
-d="M378 646c183 0 329 -149 329 -331s-147 -330 -329 -330s-329 148 -329 330c0 184 147 331 329 331zM425 250c0 -42 -17 -79 -62 -79c-21 0 -33 10 -42 19c-8 8 -15 15 -28 15c-11 0 -22 -9 -22 -21c0 -24 59 -38 93 -38c70 0 118 54 118 113c0 54 -36 106 -113 106
-c-15 0 -40 -5 -48 -10l12 81h125v1l5 33h-153l-22 -142l6 -4c14 8 35 14 57 14c72 0 74 -59 74 -88z" />
-    <glyph glyph-name="uni277B" unicode="&#x277b;" horiz-adv-x="759" 
-d="M378 646c183 0 329 -149 329 -331s-147 -330 -329 -330s-329 148 -329 330c0 184 147 331 329 331zM433 244c0 -37 -8 -72 -52 -72c-28 0 -68 23 -68 107c0 6 0 14 1 19c21 17 43 23 57 23c57 0 62 -55 62 -77zM489 249c0 17 -10 96 -107 96c-25 0 -52 -16 -66 -31
-c11 59 46 125 155 144v20c-153 -12 -211 -115 -211 -197c0 -104 72 -133 121 -133c79 0 108 65 108 101z" />
-    <glyph glyph-name="uni277C" unicode="&#x277c;" horiz-adv-x="759" 
-d="M378 646c183 0 329 -149 329 -331s-147 -330 -329 -330s-329 148 -329 330c0 184 147 331 329 331zM340 435h100c-26 -46 -82 -170 -117 -281h34c31 105 88 227 141 318h-174c-16 0 -21 1 -21 6h-18c-1 -27 -8 -67 -13 -95l21 -3c12 48 19 55 47 55z" />
-    <glyph glyph-name="uni277D" unicode="&#x277d;" horiz-adv-x="759" 
-d="M378 646c183 0 329 -149 329 -331s-147 -330 -329 -330s-329 148 -329 330c0 184 147 331 329 331zM379 455c35 0 51 -18 51 -45c0 -30 -23 -57 -39 -67l-20 11c-37 20 -44 42 -44 58c0 29 23 43 52 43zM474 410c0 39 -46 67 -91 67c-52 0 -100 -29 -100 -74
-c0 -29 15 -55 55 -74l12 -6c-38 -21 -82 -57 -82 -94c0 -65 67 -82 111 -82c90 0 121 58 121 90c0 31 -18 56 -49 73l-39 21c59 34 62 64 62 79zM372 312l29 -15c40 -20 45 -45 45 -70c0 -41 -29 -58 -66 -58c-24 0 -65 16 -65 60c0 34 41 74 57 83z" />
-    <glyph glyph-name="uni277E" unicode="&#x277e;" horiz-adv-x="759" 
-d="M378 646c183 0 329 -149 329 -331s-147 -330 -329 -330s-329 148 -329 330c0 184 147 331 329 331zM319 381c0 37 7 72 51 72c28 0 68 -23 68 -107v-19c-22 -17 -44 -23 -58 -23c-56 0 -61 55 -61 77zM263 376c0 -17 9 -96 106 -96c25 0 52 16 67 31
-c-12 -59 -46 -125 -155 -144v-20c153 12 213 115 213 197c0 104 -74 133 -124 133c-79 0 -107 -65 -107 -101z" />
-    <glyph glyph-name="uni277F" unicode="&#x277f;" horiz-adv-x="759" 
-d="M378 646c183 0 329 -149 329 -331s-147 -330 -329 -330s-329 148 -329 330c0 184 147 331 329 331zM236 413c13 0 15 -10 15 -42v-152c0 -22 -14 -37 -30 -37h-36c-4 0 -7 -3 -7 -5v-21s59 1 97 1c34 0 86 -1 86 -1v21c0 4 -3 5 -6 5h-27c-14 0 -26 15 -26 37v261h-16
-c-43 -27 -69 -39 -116 -56l9 -27c15 7 45 16 57 16zM487 457c48 0 63 -73 63 -127c0 -78 -7 -154 -65 -154c-54 0 -63 77 -63 134c0 53 2 147 65 147zM484 151c58 0 124 50 124 169c0 120 -64 161 -121 161c-69 0 -123 -72 -123 -166c0 -85 50 -164 120 -164z" />
-    <glyph glyph-name="fraction" unicode="&#x2044;" horiz-adv-x="44" 
-d="M224 601h42l-459 -655h-41z" />
-    <glyph glyph-name="uni202F" unicode="&#x202f;" horiz-adv-x="125" 
- />
-    <glyph glyph-name="ae.alt" unicode="&#xe046;" horiz-adv-x="698" 
-d="M508 42c54 0 98 16 133 54l17 -10c-26 -35 -72 -93 -160 -93c-102 0 -148 51 -164 74c-5 -5 -9 -6 -32 -25l-32 -23c-28 -20 -67 -28 -103 -28c-78 0 -128 45 -128 113c0 80 59 125 163 151l91 23c0 25 0 83 -28 111c-15 15 -37 25 -58 25c-39 0 -84 -17 -84 -48
-c0 -26 6 -15 6 -38c0 -16 -14 -33 -39 -33c-31 0 -40 25 -40 45c0 58 78 104 160 104c24 0 101 -3 138 -70c39 45 85 70 142 70c137 0 172 -113 172 -209h-290c-1 -9 -1 -6 -1 -15c0 -107 62 -178 137 -178zM582 274c0 107 -56 136 -93 136c-72 0 -107 -79 -114 -136h207z
-M293 248c-157 -38 -182 -83 -182 -139c0 -29 14 -77 91 -77c24 0 53 15 91 46v170z" />
-    <glyph glyph-name="afii10147" unicode="&#x472;" horiz-adv-x="702" 
-d="M331 622c-99 0 -198 -85 -198 -295v-0.200012c39.3 29.6 98.7 43.2 135 43.2c98 0 128 -47 191 -47c31.2 0 76.5 12.1 108.9 34.7c-15.6 171.6 -115.7 264.3 -236.9 264.3zM666 329c0 -84 -22 -156.3 -61.8 -213c-54.9 -78.3 -143.4 -126 -254.2 -126
-c-170 0 -313 123 -313 320c0 193.9 113.3 348 307 348c179 0 322 -122 322 -329zM570 315.3c-41.8 -38 -91.4 -49.3 -129 -49.3c-92 0 -116 46 -191 46c-28.7 0 -80.3 -4.79999 -115.1 -26.6c15.3 -166 122.2 -259.4 235.1 -259.4c114 0 200 105 200 284v5.29999z" />
-    <glyph glyph-name="afii10195" unicode="&#x473;" horiz-adv-x="455" 
-d="M37 203c0 136 65 239 192 239c143 0 190 -121 190 -225c0 -100 -53 -229 -192 -229c-129 0 -190 112 -190 215zM338.9 237.2c-9.60001 112.3 -51.9 171.8 -120.9 171.8c-72 0 -101.2 -93.5 -102 -179.6c16.3 10.1 46.9 18.6 77 18.6c44 0 61 -19 100 -19
-c17.7 0 32.8 3.3 45.9 8.2zM117 202.6c6.1 -76.7 42 -179.6 127 -179.6c41 0 97 30 97 162c0 8.60001 -0.200012 17 -0.5 25.1c-21.3 -11.8 -57.1 -30.1 -91.5 -30.1c-43 0 -72 27 -107 27c-10.2 0 -18.5 -3.10001 -25 -4.39999z" />
-    <glyph glyph-name="afii10148" unicode="&#x474;" horiz-adv-x="673" 
-d="M587 658c41 0 82 -36 82 -76c0 -24 -20 -60 -47 -60c-25 0 -39 16 -39 38c0 16 19 27 19 42c0 9 -5 20 -28 20c-24 0 -40 -10 -116 -231c0 0 -63 -168 -128 -380c-6 -15 -17 -23 -27 -23c-11 0 -20 8 -25 23l-197 561c-10 29 -28 46 -67 46h-6c-4 0 -8 3 -8 8v19l2 1
-s78 -1 117 -1c35 0 124 1 124 1l2 -1v-19c0 -5 -3 -8 -8 -8h-27c-36 0 -48 -10 -48 -26c0 -6 2 -12 4 -20l125 -356l29 -88c35 108 95 274 95 274c65 187 91 256 172 256z" />
-    <glyph glyph-name="afii10196" unicode="&#x475;" horiz-adv-x="537" 
-d="M431 402c-30 0 -59 -47 -78 -112l-85 -279c-6 -14 -14 -23 -24 -23c-13 0 -20 9 -25 21l-136 345c-13 34 -23 48 -53 48h-11c-5 0 -10 3 -10 7v20l3 2s53 -2 87 -2c39 0 100 2 100 2l4 -2v-19c0 -7 -6 -8 -9 -8h-17c-20 -1 -29 -7 -29 -17c0 -7 4 -15 10 -29l86 -218
-l12 -41l58 197c32 111 66 148 134 148c40 0 73 -33 73 -73c0 -24 -12 -49 -40 -49c-24 0 -43 14 -43 36c0 17 11 18 11 33c0 9 -4 13 -18 13z" />
-    <glyph glyph-name="afii10050" unicode="&#x490;" horiz-adv-x="497" 
-d="M147 645h205s3.70001 0 9.89999 0.0999756c48.5 3.20001 75.3 66.3 81.1 119.9c9.70001 3.79999 19 4.70001 29 1l3.20001 -139.3c4.39999 -30.1 8.5 -68.5 11.8 -136.7c-9.70001 -4.29999 -19.3 -5.20001 -29 -4c-21 69 -37 119 -112 119h-120c-24 0 -36 -10 -36 -34
-v-449c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-40 1 -91.2 2 -129 2s-91 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c50 -1 129 -2 129 -2z" />
-    <glyph glyph-name="afii10098" unicode="&#x491;" horiz-adv-x="416" 
-d="M186 307v-185c0 -83 11 -87 72 -91c6 -6 6 -27 0 -33c-32 1 -67.7 2 -111 2c-43.7 0 -79 -1 -112 -2c-6 6 -6 27 0 33c61 5 72 8 72 91v185c0 83 -11 87 -72 91c-6 6 -6 27 0 33c33 -1 67.7 -1.60001 111 -2h126c5.5 0 12.3 0.100006 19.9 0.200012
-c40.5 4.89999 52.5 27 55.1 100.8c10.3 5.79999 21.4 6.59998 33 2l8.89999 -132.6c3.89999 -40.8 6.89999 -77.5 10.1 -120.4c-8.5 -3.60001 -17.9 -5.5 -29 -4c-14 58 -38 115 -120 115h-22c-35 0 -42 -26 -42 -83z" />
-    <glyph glyph-name="uni2648" unicode="&#x2648;" horiz-adv-x="892" 
-d="M409 -121c0 318 -83 690 -216 690c-47 0 -79 -45 -79 -110c0 -43 14 -88 42 -134l-22 -8l-54 8c-27 50 -41 96 -41 139c0 92 74 157 152 157c154 0 224 -248 250 -468h10c21 170 80 469 256 469c82 0 146 -69 146 -156c0 -44 -14 -91 -41 -141l-23 -9l-52 9
-c28 50 41 95 41 137c0 69 -31 112 -79 112c-132 0 -215 -374 -215 -682l-63 -31z" />
-    <glyph glyph-name="uni2649" unicode="&#x2649;" horiz-adv-x="788" 
-d="M394 -55c107 0 186 83 186 182c0 102 -80 184 -186 184c-101 0 -186 -78 -186 -184c0 -99 79 -182 186 -182zM287 343c-48 20 -73 41 -112 112l-22 40c-28 49 -59 74 -94 74h-10v47h28c49 0 94 -39 134 -109l31 -53c21 -36 42 -61 64 -75c23 -14 52 -21 88 -21
-s65 7 88 21c22 14 44 39 64 75l32 53c40 70 84 109 133 109h28v-47h-10c-35 0 -66 -25 -94 -74l-22 -40c-35 -64 -59 -90 -112 -112c73 -40 135 -112 135 -215c0 -128 -109 -240 -242 -240c-131 0 -242 111 -242 240c0 103 62 175 135 215z" />
-    <glyph glyph-name="uni264A" unicode="&#x264a;" horiz-adv-x="718" 
-d="M186 37v487c-46 5 -91 15 -137 27v48c84 -24 188 -36 310 -36c123 0 226 12 310 36v-48c-45 -12 -91 -23 -136 -29v-485c42 -6 87 -15 136 -28v-47c-96 25 -199 38 -310 38c-110 0 -214 -13 -310 -38v47c49 13 94 22 137 28zM260 42c30 3 63 5 99 5c37 0 70 -2 99 -5v478
-c-27 -2 -60 -3 -99 -3c-38 0 -71 1 -99 3v-478z" />
-    <glyph glyph-name="uni264B" unicode="&#x264b;" horiz-adv-x="836" 
-d="M202 269c61 0 106 49 106 106c0 60 -50 105 -107 105c-60 0 -104 -46 -104 -104c0 -62 48 -107 105 -107zM206 229c-81 0 -157 65 -157 152c0 66 48 108 125 150c76 42 173 62 288 62c100 0 207 -26 318 -76l-2 -19l-18 -34c-112 49 -220 73 -324 73
-c-72 0 -131 -10 -177 -29c74 -36 96 -81 96 -125c0 -82 -64 -154 -149 -154zM635 354c-61 0 -106 -50 -106 -107c0 -56 46 -105 107 -105c55 0 104 42 104 105c0 61 -48 107 -105 107zM636 395c82 0 152 -62 152 -146c0 -66 -48 -116 -125 -157c-76 -42 -172 -63 -288 -63
-c-100 0 -205 26 -316 76l-1 21l19 33c111 -49 219 -74 324 -74c73 0 131 10 177 29c-48 24 -97 62 -97 135c0 84 72 146 155 146z" />
-    <glyph glyph-name="uni264C" unicode="&#x264c;" horiz-adv-x="725" 
-d="M191 248c-56 0 -102 -46 -102 -105c0 -62 46 -106 103 -106s103 45 103 105c0 58 -42 106 -104 106zM484 -32c0 -50 27 -78 59 -78c41 0 69 11 111 50l22 -19c-47 -58 -92 -86 -134 -86c-77 0 -131 52 -131 121c0 91 57 170 111 230c50 54 71 102 71 200
-c0 94 -81 181 -175 181c-88 0 -162 -56 -162 -137c0 -72 10 -118 54 -172c33 -40 47 -76 47 -113c0 -82 -76 -158 -163 -158c-84 0 -155 65 -155 156c0 85 68 154 152 154c16 0 25 0 42 -4c-40 52 -51 88 -51 128c0 112 114 193 231 193c164 0 251 -112 251 -210
-c0 -99 -34 -179 -91 -244c-63 -71 -89 -133 -89 -192z" />
-    <glyph glyph-name="uni264D" unicode="&#x264d;" horiz-adv-x="764" 
-d="M539 15c52 52 101 128 101 230c0 46 -10 89 -30 131c-28 -34 -53 -80 -71 -138v-223zM349 13l-64 -31l-11 18v376c0 70 -8 118 -24 145c-40 -45 -71 -101 -91 -167v-341l-63 -31l-12 18v409c0 49 -12 95 -35 137l44 15l23 2c21 -28 35 -65 43 -111c19 47 44 84 69 111
-l22 18l33 -7c25 -32 59 -76 66 -130c12 41 38 81 71 119l55 11c30 -42 64 -89 64 -140v-108c15 43 33 77 50 101l67 17c40 -62 60 -127 60 -195c0 -132 -96 -231 -171 -291c4 -63 20 -95 60 -140l-17 -14c-51 29 -85 71 -107 126c-35 -20 -79 -34 -129 -42l-9 33
-c50 15 93 36 127 58c-4 24 -6 48 -6 73v343c0 56 -8 98 -24 126c-40 -42 -72 -103 -91 -181v-327z" />
-    <glyph glyph-name="uni264E" unicode="&#x264e;" horiz-adv-x="737" 
-d="M66 228c-9 0 -15 8 -15 17c0 16 13 37 25 37h158c-30 31 -53 64 -53 103c0 95 89 177 191 177c99 0 186 -76 186 -175c0 -39 -23 -74 -54 -105h168c11 0 15 -9 15 -17c0 -12 -14 -37 -27 -37h-233l5 50c45 21 62 62 62 106c0 69 -57 129 -124 129
-c-68 0 -125 -60 -125 -129c0 -44 17 -81 61 -106l-6 -50h-234zM66 57c-9 0 -15 8 -15 17c0 15 13 36 25 36h595c11 0 15 -8 15 -17c0 -11 -14 -36 -27 -36h-593z" />
-    <glyph glyph-name="uni264F" unicode="&#x264f;" horiz-adv-x="678" 
-d="M44 546l43 15l23 2c22 -32 36 -69 44 -110c17 44 40 81 66 110l72 12c26 -30 42 -73 49 -128c14 40 37 78 69 116l73 12c31 -41 46 -90 46 -146v-351c0 -81 7 -123 34 -149l25 -25c6 -6 11 -8 14 -8c8 0 10 12 10 24v9l15 16l8 -120l-118 7l16 17c4 -1 8 -1 11 -1
-c11 0 20 2 20 8c0 4 -2 9 -9 15l-36 36c-39 37 -65 89 -65 171v321c0 58 -8 99 -25 123c-42 -48 -71 -108 -88 -182v-327l-63 -31l-11 18v379c0 69 -9 117 -25 143c-41 -45 -70 -102 -88 -169v-340l-64 -31l-11 18v402c0 58 -12 106 -35 144z" />
-    <glyph glyph-name="uni2650" unicode="&#x2650;" horiz-adv-x="646" 
-d="M589 541l6 -7c-6 -32 -10 -62 -10 -92c0 -47 9 -91 22 -131l-42 -10c-18 39 -26 83 -26 120c0 11 1 21 2 30l-251 -250l119 -120l-40 -40l-119 121l-177 -175l-39 40l176 175l-119 119l40 40l119 -120l252 249c-11 -1 -23 -2 -35 -2c-37 0 -77 7 -113 20l8 42
-c34 -11 81 -18 132 -18c31 0 64 3 95 9z" />
-    <glyph glyph-name="uni2651" unicode="&#x2651;" horiz-adv-x="821" 
-d="M719 141c0 54 -30 104 -80 104c-56 0 -96 -65 -128 -151c41 -45 92 -52 134 -52c38 0 74 39 74 99zM361 525c-43 -50 -118 -178 -118 -358l-41 -12l-15 12c0 122 -38 274 -55 306c-23 44 -34 51 -73 68l9 22c45 -1 90 -19 105 -46c19 -36 35 -99 49 -185
-c22 95 57 172 107 231l74 15c51 -114 48 -317 73 -410c36 70 119 124 183 124c84 0 135 -63 135 -147s-71 -145 -148 -145c-54 0 -105 14 -145 55c-64 -166 -141 -168 -194 -168h-52v47h25c100 0 117 32 169 183c-27 47 -33 47 -52 198c-13 102 -19 174 -36 210z" />
-    <glyph glyph-name="uni2652" unicode="&#x2652;" horiz-adv-x="830" 
-d="M66 377l171 133c3 2 5 4 8 4c2 0 4 -1 6 -5l73 -100l122 100c4 3 6 5 9 5c2 0 4 -2 7 -6l72 -99l120 98c4 4 8 6 10 6s4 -2 8 -7l93 -149l-44 -27l-72 99c-3 4 -4 6 -6 6s-6 -2 -9 -5l-117 -96c-2 -2 -4 -2 -5 -2c-2 0 -3 1 -5 3l-67 93c-2 5 -4 7 -7 7c-2 0 -4 -1 -7 -3
-l-118 -98c-2 -2 -4 -2 -5 -2c-2 0 -3 1 -5 3l-68 95c-2 4 -4 5 -6 5s-3 -1 -6 -3l-126 -102zM66 85l170 133c4 2 6 4 8 4c3 0 5 -2 7 -5l73 -100l122 100c4 3 6 5 8 5c3 0 4 -2 8 -6l71 -99l120 98c5 4 8 6 11 6c2 0 4 -2 7 -7l94 -149l-44 -27l-72 99c-3 4 -4 6 -7 6
-c-1 0 -5 -3 -8 -6l-117 -95c-3 -2 -4 -3 -5 -3c-2 0 -3 2 -5 4l-68 93c-2 4 -3 7 -6 7c-2 0 -4 -1 -7 -4l-118 -97c-3 -2 -4 -3 -5 -3c-2 0 -3 1 -5 4l-69 95c-2 3 -3 5 -5 5s-4 -1 -6 -3l-126 -102z" />
-    <glyph glyph-name="uni2653" unicode="&#x2653;" horiz-adv-x="645" 
-d="M500 -14c-58 66 -119 172 -119 285h-116c0 -86 -40 -195 -119 -285l-65 -5l-15 5c82 87 124 181 124 285h-120v46h120c-5 90 -46 176 -124 261l34 3l43 -3c71 -77 111 -162 122 -261h116c10 99 51 184 122 261l37 6l41 -6c-79 -85 -120 -171 -125 -261h120v-46h-120
-c0 -104 42 -198 125 -285l-41 -7z" />
-    <glyph glyph-name="uni262F" unicode="&#x262f;" horiz-adv-x="643" 
-d="M322 -16c-170 0 -293 132 -293 291c0 170 135 294 293 294c161 0 292 -125 292 -294c0 -160 -121 -291 -292 -291zM457 140c82 0 133 62 133 139c0 151 -121 265 -268 265c-156 0 -259 -109 -268 -269h1c11.7 89.4 52.1 139 129 139c61 0 135 -42 135 -137
-c0 -109 89 -137 138 -137zM420 279c0 21 18 38 38 38c21 0 40 -17 40 -38s-19 -39 -40 -39c-20 0 -38 18 -38 39zM146 275c0 -21 17 -39 38 -39s39 18 39 39s-18 38 -39 38s-38 -17 -38 -38z" />
-    <glyph glyph-name="uni2695" unicode="&#x2695;" horiz-adv-x="467" 
-d="M203 15c-18 -5 -35 -8 -47 -8c-44 0 -75 37 -75 77c0 91 100 95 145 95c42 0 100 0 100 50c0 31 -26 37 -65 38l1 45c59 -4 116 -16 116 -92c0 -70 -93 -89 -147 -89c-37 0 -100 -4 -100 -44c0 -25 22 -39 70 -40zM199 186l-10 202c22 5 44 9 67 10l-3 -211
-c-19 0 -40 -1 -54 -1zM189 263c-25 -6 -47 -8 -64 -8c-67 0 -84 48 -84 84c0 87 121 113 182 117c47 3 102 10 122 10s17 -18 31 -21c11 -3 31 -15 31 -25c0 -5 -2 -7 -4 -9l-24 4l10 -6l1 1l9 -2l9 -1h9h4l-5 -5l2 -9l-14 10l-8 3l-6 2l6 -3c-13 -7 -25 -9 -39 -9
-c-34 0 -38 11 -90 11c-39 0 -168 -14 -168 -70c0 -25 14 -38 42 -38c3 0 31 5 46 9zM258 469c-24 0 -49 -3 -72 -7c-2 11 -7 59 -7 69c0 23 12 52 39 52c34 0 42 -23 42 -66c0 -20 -1 -40 -2 -48zM254 -103l1 -44v-2c0 -21 -10 -32 -21 -32c-12 0 -18 8 -18 21l-1 41
-c10 4 21 9 39 16zM235 -102c-25 -8 -37 -21 -64 -34c-7 -4 -23 -8 -33 -8c-6 0 -11 2 -11 6c0 7 24 14 43 31c21 18 44 33 64 41c24 9 81 36 81 65c0 24 -25 26 -32 26c-9 0 -19 -4 -26 -6l1 33c8 3 20 5 27 5c32 0 67 -21 67 -61s-47 -74 -117 -98zM214 -67l-11 189l49 3
-v-176zM342 451c0 -3 2 -5 4 -5c3 0 5 2 5 5c0 2 -2 4 -5 4c-2 0 -4 -2 -4 -4z" />
-    <glyph glyph-name="uni2698" unicode="&#x2698;" horiz-adv-x="407" 
-d="M204 432c-31 0 -58 -29 -58 -62s28 -62 58 -62c26 0 58 23 58 62c0 40 -25 62 -58 62zM193 140v138c-47 3 -84 41 -84 93c0 51 41 94 95 94c48 0 94 -38 94 -94c0 -54 -40 -88 -84 -93v-138c31 82 86 152 159 153c1 0 6 -2 10 -10c0 -32 -21 -59 -53 -89
-c-69 -63 -113 -44 -116 -193c0 -14 -3 -20 -10 -20c-4 0 -11 5 -11 20c-1 146 -57 129 -115 196c-10 11 -54 41 -54 86c3 6 7 9 11 9c96 -1 136 -73 158 -152z" />
-    <glyph glyph-name="uni263F" unicode="&#x263f;" horiz-adv-x="557" 
-d="M279 500c-96 0 -171 -77 -171 -170s72 -172 171 -172s171 79 171 172c0 91 -73 170 -171 170zM249 111c-126 18 -191 124 -191 219c0 84 47 160 121 197c-73 40 -99 126 -99 169h50c0 -66 62 -145 149 -145c103 0 150 95 150 145h50c0 -50 -32 -131 -99 -169
-c76 -38 120 -119 120 -197c0 -105 -75 -203 -192 -219l-3 -111h106v-46h-107l-3 -123h-47l-2 123h-107v46h106z" />
-    <glyph glyph-name="uni2643" unicode="&#x2643;" horiz-adv-x="645" 
-d="M189 527c-45 0 -67 -6 -67 -36c0 -12 2 -17 3 -21c2 -3 3 -11 3 -18c0 -13 -10 -33 -39 -33c-24 0 -40 16 -40 40c0 59 57 109 149 109c104 0 156 -115 156 -220c0 -94 -46 -178 -87 -208h195c4 0 6 3 6 6v402l49 11l22 -2v-417l59 -1c5 -3 8 -13 8 -22s-2 -16 -6 -19
-l-61 -2v-182l-60 -31l-11 18v189c0 2 -2 4 -6 4l-364 -9c-1 0 -4 5 -4 10v21c0 8 15 16 23 16h1c21 0 61 9 78 16c58 24 89 94 89 178c0 78 -31 201 -96 201z" />
-    <glyph glyph-name="uni2644" unicode="&#x2644;" horiz-adv-x="510" 
-d="M122 610l48 10l23 -1v-91h95c11 0 15 -5 15 -13c0 -12 -14 -34 -27 -34h-83v-167c27 36 91 70 141 70c70 0 138 -43 138 -128c0 -48 -30 -114 -51 -153c-19 -36 -33 -100 -33 -144c0 -51 17 -80 62 -118l-8 -11l-64 8c-37 33 -57 68 -57 121c0 49 30 112 46 146
-c18 37 37 98 37 147c0 46 -41 85 -75 85c-63 0 -105 -28 -137 -74v-253l-59 -31l-11 18v484h-68c-10 0 -15 9 -15 18c0 16 13 29 24 29h59v82z" />
-    <glyph glyph-name="uni2645" unicode="&#x2645;" horiz-adv-x="617" 
-d="M261 1c0 -37 23 -60 54 -60c27 0 51 23 51 60c0 24 -18 53 -52 53c-32 0 -53 -28 -53 -53zM104 483c0 29 -13 44 -54 44h-3c-5 0 -8 3 -8 9v19l2 2s70 -3 105 -3l28 1v-207h102v174l19 15h32l19 -15v-174h97v207l28 -1c35 0 105 3 105 3l2 -2v-19c0 -6 -3 -9 -8 -9h-3
-c-41 0 -54 -15 -54 -44v-308c0 -28 13 -44 54 -44h3c5 0 8 -3 8 -8v-19l-2 -2s-69 3 -105 3l-28 -1v197h-97v-220c40 -11 71 -39 71 -81c0 -61 -56 -91 -105 -91c-47 0 -103 32 -103 89c0 47 29 74 67 84v219h-102v-197h-28c-36 0 -105 -2 -105 -2l-2 2v18c0 5 3 8 8 8h3
-c41 0 54 16 54 44v309z" />
-    <glyph glyph-name="uni2646" unicode="&#x2646;" horiz-adv-x="810" 
-d="M433 -46l-3 -123h-48l-2 123h-107v46h106l-1 74v1c-183 18 -257 145 -257 328c0 21 -6 29 -15 29c-12 0 -30 -16 -44 -32l-33 3l151 176s8 0 8 1v-177c0 -155 40 -270 189 -281l-7 382c0 25 -5 37 -13 37c-9 0 -24 -14 -45 -40l-33 3l130 143l125 -143l-35 -3
-c-21 26 -35 40 -43 40s-11 -12 -11 -37l-9 -382c146 12 189 135 189 285v174c1 0 3 0 4 1l152 -175l-35 -3c-11 14 -28 32 -40 32c-8 0 -14 -8 -14 -29c0 -177 -74 -314 -257 -332l-1 -75h106v-46h-107z" />
-    <glyph glyph-name="uni2647" unicode="&#x2647;" horiz-adv-x="495" 
-d="M273 269v-285l174 6l4 -13l-9 -36l-240 -5v335l-82 3v-267l-46 -21l-25 14v587l209 8c102 0 179 -50 179 -148c0 -103 -70 -175 -164 -178zM364 446c0 76 -67 100 -112 100l-132 -8v-215l82 -3v97l51 17l20 -4v-111c54 9 91 65 91 127z" />
-    <glyph glyph-name="uni263E" unicode="&#x263e;" horiz-adv-x="507" 
-d="M389 592c-184 0 -309 -161 -309 -321c0 -171 157 -314 281 -314c-102 58 -186 171 -186 314c0 153 88 259 214 321zM479 -63c-24 -6 -76 -13 -101 -13c-215 0 -349 162 -349 351c0 180 153 349 358 349c50 0 76 -6 100 -17c-124 -30 -262 -162 -262 -335
-c0 -165 130 -303 254 -335z" />
-    <glyph glyph-name="uni261B" unicode="&#x261b;" horiz-adv-x="997" 
-d="M76 82c0 8 8 15 19 15c10 0 19 -7 19 -15s-9 -15 -19 -15c-11 0 -19 7 -19 15zM650 301c37 -20 51 -38 51 -55c0 -20 -14 -37 -45 -53c0 0 26 -20 26 -42c0 -20 -12 -33 -37 -41c6 -11 23 -5 23 -27c0 -19 -11 -34 -33 -42c-54 -24 -120 -32 -173 -32
-c-25 0 -79 8 -155 53c-15 7 -104 14 -117 17c-21 30 -31 70 -31 122c0 60 15 109 44 143h9c20 0 70 3 100 18c67 35 145 59 160 59c24 0 163 -18 252 -23c100 -5 249 -9 249 -50c0 -58 -190 -28 -323 -47zM137 205c0 -100 22 -150 57 -150c6 0 11 0 14 1
-c-7 -12 -17 -17 -32 -17h-5l-147 9v14l122 -8c-25 29 -35 95 -35 144c0 62 14 138 45 170l-126 -6v9l154 11c2 1 4 1 6 1c14 0 23 -7 28 -20l-2 -2c-6 3 -11 7 -15 7c-47 0 -64 -133 -64 -163z" />
-    <glyph glyph-name="uni261E" unicode="&#x261e;" horiz-adv-x="894" 
-d="M193 343c82 0 123 75 196 75c17 0 36 -4 58 -15h121c128 0 302 -7 302 -78c0 -57 -116 -59 -211 -59h-62c12 -12 18 -24 18 -36c0 -6 -3 -14 -7 -23c23 -10 34 -25 34 -46c0 -11 -3 -22 -10 -33c17 -10 25 -24 25 -41c0 -50 -74 -79 -135 -79c-27 0 -46 9 -59 28
-c-5 -1 -7 -1 -7 0c-20 -2 -33 -2 -38 -2c-137 0 -141 66 -216 66l-9 -49l-169 -14v336l165 7zM53 345v-264l114 9v261zM502 230c9 0 45 5 45 25c0 12 -104 138 -159 138c-65 0 -107 -79 -189 -79v-189c101 0 71 -66 256 -66l3 12c-26 2 -38 15 -38 40c0 3 2 10 5 18h-4
-c-38 0 -55 19 -55 59c-18 -4 -32 -6 -44 -6c-22 0 -46 9 -72 30v10c29 -9 53 -14 70 -14c29 0 57 13 84 39l-48 54l8 10c7 -7 94 -81 138 -81zM615 157c0 16 -8 25 -25 25c-7 0 -118 -48 -143 -52c-1 -2 -1 -4 -1 -4c0 -14 0 -33 36 -33c42 0 133 24 133 64zM527 34
-c47 0 104 25 104 52c0 15 -6 23 -19 23c0 0 -13 -5 -36 -14c-64 -25 -98 -19 -98 -34c0 -17 23 -27 49 -27zM838 326c0 33 -99 51 -262 51c-26 0 -70 -1 -102 -2c31 -30 56 -57 74 -81c51 -3 87 -4 108 -4c73 0 182 1 182 36zM435 228c-22 0 -47 -20 -47 -37
-c0 -24 13 -35 37 -35c42 0 164 38 164 76c0 10 -9 19 -26 30c2 -5 3 -10 3 -15c0 -29 -30 -43 -66 -43c-20 0 -46 24 -65 24z" />
-    <glyph glyph-name="uni263C" unicode="&#x263c;" horiz-adv-x="693" 
-d="M339 458c-96 0 -171 -77 -171 -171c0 -92 72 -171 171 -171s171 79 171 171c0 91 -73 171 -171 171zM359 -13h-40v80c-47 5 -88 22 -120 49l-57 -55l-29 28l56 56c-27 34 -45 76 -50 120h-79v41h79c4 46 22 89 49 123l-53 54l27 29l55 -55c33 28 75 46 123 50v78h40v-78
-c49 -4 90 -23 122 -51l55 55l29 -28l-56 -56c29 -35 45 -79 49 -123h80v-39h-80c-5 -46 -23 -87 -51 -119l57 -58l-28 -28l-58 57c-33 -28 -75 -46 -120 -50v-80z" />
-    <glyph glyph-name="uni263D" unicode="&#x263d;" horiz-adv-x="507" 
-d="M118 -44c184 0 309 161 309 321c0 171 -157 314 -281 314c102 -58 186 -171 186 -314c0 -153 -88 -259 -214 -321zM28 611c24 6 76 13 101 13c215 0 349 -162 349 -351c0 -180 -153 -349 -358 -349c-50 0 -76 6 -100 17c124 30 262 162 262 335c0 165 -130 303 -254 335z
-" />
-    <glyph glyph-name="uni1FFE" unicode="&#x1ffe;" horiz-adv-x="168" 
-d="M89 644c36 0 47 -18 47 -34c0 -17 -5 -42 -46 -42c-7 0 -11 -7 -11 -18c0 -23 18 -60 60 -68l-4 -17c-91 4 -106 80 -106 106c0 35 22 73 60 73z" />
-    <glyph glyph-name="underscoredbl" unicode="&#x2017;" horiz-adv-x="486" 
-d="M482 -110v-44h-477v44h477zM482 -4v-44h-477v44h477z" />
-    <glyph glyph-name="uni04C1" unicode="&#x4c1;" horiz-adv-x="889" 
-d="M429 729c33 0 56 17 56 34c0 5 -1 11 -1 13c0 15 10 30 33 30c27 0 37 -14 37 -33c0 -52 -59 -75 -125 -75s-125 23 -125 75c0 19 10 33 37 33c23 0 33 -15 33 -30c0 -2 -1 -8 -1 -13c0 -17 23 -34 56 -34zM487 122c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33
-c-45 1 -93.4 2 -129 2c-36.3 0 -85 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v201.8c-102.4 -2.5 -120.5 -36.7 -158 -132.8c-43 -110 -80 -191 -158 -192l-79 -1c-5.5 10.2 -5.8 23.2 0 33c65.8 2.9 101.4 50.9 160 203c27 70 65 113 134 113v5c-76 28 -99 114 -108 176
-c-4.2 29.1 -10 62 -40 62c-13 0 -21 -5 -32 -16c-10 -10 -24 -15 -37 -15c-21 0 -44 11 -44 40c0 23 18 52 71 52c79 0 109 -56 119 -118c9 -56 23 -120 82 -152c21.2 -12.3 57.1 -14.5 90 -14.9v156.9c0 83 -17 88 -87 91c-6 6 -6 27 0 33c47 -1 95.5 -2 129 -2
-c38.5 0 86 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-156.9c32.9 0.399994 68.8 2.60001 90 14.9c59 32 73 96 82 152c10 62 40 118 119 118c53 0 71 -29 71 -52c0 -29 -23 -40 -44 -40c-13 0 -27 5 -37 15c-11 11 -19 16 -32 16c-30 0 -35.8 -32.9 -40 -62
-c-9 -62 -32 -148 -108 -176v-5c69 0 107 -43 134 -113c58.6 -152.1 94.2 -200.1 160 -203c5.79999 -9.8 5.5 -22.8 0 -33l-79 1c-78 1 -115 82 -158 192c-37.5 96.1 -55.6 130.3 -158 132.8v-201.8z" />
-    <glyph glyph-name="uni04C2" unicode="&#x4c2;" horiz-adv-x="706" 
-d="M459 580c0 -55 -58 -87 -122 -87c-65 0 -120 33 -120 87c0 18 16 33 39 33c22 0 34 -14 34 -30c0 -3 0 -5 -1 -8s-1 -6 -1 -8c0 -22 20 -43 50 -43c29 0 50 20 50 42c0 3 0 6 -1 9c-1 2 -1 4 -1 7c0 17 17 31 35 31c24 0 38 -14 38 -33zM115 0c0 0 -74 -1 -94 -2
-c-6 6 -6 27 0 33c39 2 49 10 66 42l45 85c25 47 58 71 115 71v3c-39 11 -56 46 -71 86c-12 31 -24 50 -45 50c-9 0 -17 -3 -23 -7s-17 -7 -30 -7c-22 0 -40 19 -40 39c0 22 24 45 57 45c58 0 85 -54 104 -101c22 -55 52 -93 123 -93v63c0 83 -12 87 -63 91c-6 6 -6 27 0 33
-c23 -1 59.6 -2 99 -2c39.8 0 76 1 100 2c6 -6 6 -27 0 -33c-51 -5 -63 -8 -63 -91v-63c71 0 101 38 123 93c19 47 46 101 104 101c33 0 57 -23 57 -45c0 -20 -18 -39 -40 -39c-13 0 -24 3 -30 7s-14 7 -23 7c-21 0 -33 -19 -45 -50c-15 -40 -32 -75 -71 -86v-3
-c57 0 90 -24 115 -71l45 -85c17 -32 27 -40 66 -42c6 -6 6 -27 0 -33c-20 1 -94 2 -94 2c-20 1 -37 24 -50 51l-43 90c-18 37 -46 64 -114 68v-87c0 -83 12 -87 63 -91c6 -6 6 -27 0 -33c-22 1 -59.6 2 -99 2c-39.8 0 -77 -1 -100 -2c-6 6 -6 27 0 33c51 5 63 8 63 91v87
-c-68 -4 -96 -31 -114 -68l-43 -90c-13 -27 -30 -50 -50 -51z" />
-    <glyph glyph-name="uni04F6" unicode="&#x4f6;" horiz-adv-x="526" 
-d="M98 -2h-79l-2 2v23c0 5 4 7.6 8 8l28 3c41.9 4.5 58 15 58 46v487c0 35 -10.9 39.9 -55 44l-32 3c-4 0.400024 -7 3 -7 7v24l2 1s120 -1 134 -1h338l21 -161l-32 -4c-16 72 -45 125 -115 125h-131c-23 0 -38 -5 -38 -31v-497c0 -31 1.89999 -40.1 37 -44l18 -2
-c12.7 -1.4 21 -10 22 -24l7 -148h-30c-9 84 -49 139 -152 139z" />
-    <glyph glyph-name="uni04F7" unicode="&#x4f7;" horiz-adv-x="441" 
-d="M110 0l-77 -2l-2 2v23c0 5 3 7 8 8l25 3c33 4 46 16 46 45v268c0 38 -6 44 -44 48l-32 3c-3 0 -6 2 -6 5v26l3 2l118 -2h257l12 -155h-29c-13 58 -29 111 -88 111h-112v-307c0 -36 6 -41 38 -45l18 -2c7 -1 21 -12 22 -24l4 -135h-27c-14 64 -32 127 -134 128z" />
-    <glyph glyph-name="uni0492" unicode="&#x492;" horiz-adv-x="497" 
-d="M147 645h205s81 1 120 2c5.5 -33.8 10.9 -72.7 15 -157c-9.70001 -4.29999 -19.3 -5.20001 -29 -4c-21 69 -37 119 -112 119h-120c-24 0 -36 -10 -36 -34v-245h99v-39h-99v-165c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-40 1 -91.2 2 -129 2s-91 -1 -130 -2
-c-6 6 -6 27 0 33c70 3 87 8 87 91v165h-86v39h86v197c0 83 -17 88 -87 91c-6 6 -6 27 0 33c50 -1 129 -2 129 -2z" />
-    <glyph glyph-name="uni0493" unicode="&#x493;" horiz-adv-x="416" 
-d="M107 248v59c0 83 -11 87 -72 91c-6 6 -6 27 0 33c33 -1 67.7 -1.60001 111 -2h126c32 0 112 2 112 2l2 -2c5.5 -53.5 9 -97 13 -150c-8.5 -3.60001 -17.9 -5.5 -29 -4c-14 58 -38 115 -120 115h-22c-35 0 -42 -26 -42 -83v-59h88c6.70001 -11.3 6.29999 -25.7 0 -39h-88
-v-87c0 -83 11 -87 72 -91c6 -6 6 -27 0 -33c-32 1 -67.7 2 -111 2c-43.7 0 -79 -1 -112 -2c-6 6 -6 27 0 33c61 5 72 8 72 91v87h-86c-6 12.7 -6 26 0 39h86z" />
-    <glyph glyph-name="uni04AF" unicode="&#x4af;" horiz-adv-x="574" 
-d="M250 -157v145l-160 370c-6 13 -16 31 -29 39c-5 3 -15 5 -29 5h-12c-3 0 -10 1 -10 7v20l1 2s93 -2 106 -2c6 0 109 2 109 2l1 -2v-19c0 -4 -2 -8 -6 -8h-29c-19 0 -25 -4 -25 -13c0 -6 4 -19 9 -29l130 -312l127 312c4 9 7 23 7 29c0 10 -4 13 -25 13h-29
-c-5 0 -6 4 -6 7v20l1 2s79 -2 92 -2c9 0 88 2 88 2l1 -2v-19c0 -6 -3 -8 -9 -8h-22c-30 0 -45 -16 -57 -44l-149 -358v-157c0 -29 10 -44 43 -44h19c5 0 9 -3 9 -8v-19l-2 -2s-69 2 -108 2c-36 0 -103 -2 -103 -2l-2 2v19c0 5 3 8 7 8h20c33 0 42 15 42 44z" />
-
-<!--
-Möglicherweise eher so wie in der Times?
--->
-    <glyph glyph-name="uni04BB" unicode="&#x4bb;" horiz-adv-x="543" 
-d="M177 72c0 -29 10 -44 43 -44h15c5 0 9 -3 9 -8v-19l-2 -2s-65 2 -104 2c-36 0 -104 -2 -104 -2l-2 2v19c0 5 3 8 8 8h19c34 0 43 15 43 44v286c0 28 -10 44 -43 44h-19c-4 0 -8 3 -8 8v19l2 2s68 -2 107 -2c36 0 100 2 100 2l2 -2v-19c0 -5 -3 -8 -8 -8h-15
-c-34 0 -43 -16 -43 -44v-91c66.6 66.2 124.2 81 163 81c73 0 120 -55 120 -158v-118c0 -29 10 -44 43 -44h19c4 0 8 -3 8 -8v-19l-2 -2s-68 2 -107 2c-36 0 -104 -2 -104 -2l-2 2v19c0 5 3 8 8 8h19c34 0 43 15 43 44v129c0 81 -33 100 -89 100
-c-28.8 0 -71.4 -25.6 -119 -72v-157z" />
-    <glyph glyph-name="uni04BA" unicode="&#x4ba;" horiz-adv-x="658" 
-d="M187 320v-249c0 -30 15 -43 55 -43h19c4 0 8 -3 8 -8v-19l-2 -2s-79 2 -119 2c-35 0 -128 -2 -128 -2l-2 2v19c0 5 3 8 7 8h27c41 0 54 15 54 43v503c0 30 -15 44 -54 44h-27c-4 0 -8 3 -8 8v19l2 1s87 -1 126 -1c36 0 129 1 129 1l2 -1v-19c0 -5 -3 -8 -8 -8h-26
-c-41 0 -55 -16 -55 -44v-211c94 55 168 78 231 78c100 0 147 -56 147 -159v-210c0 -29 11 -44 46 -44h21c5 0 10 -3 10 -8v-19l-3 -2s-74 2 -116 2c-39 0 -104 -2 -104 -2l-2 2v19c0 5 3 8 8 8h13c37 0 46 15 46 44v202c0 81 -45 121 -121 121c-31 0 -106 -25 -176 -75z" />
-    <glyph glyph-name="uni02CD" unicode="&#x2cd;" horiz-adv-x="390" 
-d="M291 -131h-205c-8 0 -12 8 -12 15c0 12 10 29 22 29h205c9 0 13 -7 13 -14c0 -12 -10 -30 -23 -30z" />
-    <glyph glyph-name="uni02CE" unicode="&#x2ce;" horiz-adv-x="257" 
-d="M36 -119c11 18 34 41 63 41c4 0 9 -1 10 -2l98 -103c8 -9 11 -15 11 -22c0 -6 -7 -14 -14 -14c-6 0 -14.3 3.2 -30 12l-138 78v10z" />
-    <glyph glyph-name="uni02CF" unicode="&#x2cf;" horiz-adv-x="269" 
-d="M59 -214c-13 0 -14 11 -14 14c0 9 11 18 23 29l120 103l10 -4c8 -10 18 -29 18 -57c0 -8 -3 -21 -6 -24l-131 -56c-8 -4 -15 -5 -20 -5z" />
-    <glyph glyph-name="rhookturned.superior" unicode="&#x2b5;" horiz-adv-x="256" 
-d="M176 397c0 -93 10 -128 39 -128c5 0 9 4 10 11c4 13 12 29 27 29c12 0 21 -9 21 -26c0 -19 -34 -33 -61 -33c-16 0 -36 7 -52 25c-27 31 -32 57 -32 142h-2c-17 -25 -45 -59 -76 -59c-27 0 -37 14 -37 31s11 27 29 27c12 0 20 -5 26 -12c4 -4 9 -6 13 -6c7 0 22 12 38 35
-c4 5 7 14 7 23v125c0 24 -8 25 -25 25h-18c-2 0 -5 2 -5 5v19l74 -1l73 1v-19c0 -3 -1 -5 -6 -5h-18c-24 0 -25 -5 -25 -25v-184z" />
-    <glyph glyph-name="Rsmallinverted.superior" unicode="&#x2b6;" horiz-adv-x="276" 
-d="M28 608c-2 0 -6 1 -6 3v19l1 1s35 -1 58 -1c20 0 51 1 51 1l1 -2v-17c0 -3 -1 -4 -3 -4c-22 0 -24 -7 -24 -27v-63h47l23 62c13 36 33 58 66 58c7 0 13 0 20 -1v-18c-18 0 -34 -19 -44 -47l-23 -62c32 -5 55 -32 55 -66c0 -62 -59 -80 -99 -80h-127v17c0 2 1 2 3 2l15 1
-c14 0 15 6 15 18v179c0 21 -1 27 -29 27zM196 442c0 24 -12 57 -56 57h-34v-110c9 -2 18 -3 27 -3c55 0 63 32 63 56z" />
-    <glyph glyph-name="l" unicode="l" horiz-adv-x="264" 
-d="M95 122v437c0 75 -6 78 -64 82c-6 6 -8 22 -6 30c40 3 115 17 140 27c9 0 13 -3 13 -10c0 0 -4 -40 -4 -105v-461c0 -83 11 -88 72 -91c6 -6 6 -27 0 -33c-33 1 -71 2 -111 2s-77 -1 -112 -2c-6 6 -6 27 0 33c61 3 72 8 72 91z" />
-    <glyph glyph-name="s" unicode="s" horiz-adv-x="390" 
-d="M48 138c6 6 25 7 31 1c6 -25 17 -69 39 -92c10.3 -10.7 32 -24 71 -24c37 0 85 21 85 70c0 43 -19 64 -102 98c-77 32 -110 63 -110 136c0 64 67 112 141 112c52 0 100 -14 131 -19c-1 -33 -3 -70 -6 -106c-6 -6 -26 -7 -32 -1c-13 85 -71 93 -93 93
-c-34 0 -70 -23 -70 -64c0 -55 39.8 -70.5 100 -92.8c68 -25.2 117 -64.9 117 -133.2c0 -99 -103 -126 -159 -126c-37 0 -64 4 -91 11c-7 2 -13 2 -20 2c-5 0 -15 -1 -25 -3c0 42 -3 89 -7 138z" />
-    <glyph glyph-name="x" unicode="x" horiz-adv-x="490" 
-d="M182 358l61 -90c7.60001 -11.2 11.8 -12 19 -2l65 91c24.2 33.9 12.7 37 -24 41c-6 6 -6 27 0 33c26 -1 54 -2 84 -2s53 1 73 2c6 -6 6 -27 0 -33c-36.5 -3 -60 -8 -97 -55l-84 -107c-4.70001 -6 -4.20001 -9.10001 0 -15l90 -127c40.3 -56.9 54.7 -60 100 -63
-c6 -6 6 -27 0 -33c-24 1 -51 2 -89 2c-36 0 -69 -1 -99 -2c-6 6 -6 27 0 33c31.7 3.3 47.8 5.1 13 53l-58 80c-6.3 8.60001 -9.7 9.89999 -18 -2l-63 -91c-22.5 -32.5 -14 -36.3 22 -40c6 -6 6 -27 0 -33c-26 1 -54 2 -84 2s-52 -1 -72 -2c-6 6 -6 27 0 33
-c35 2 57.4 5.1 97 56l84 108c3.60001 4.60001 3.89999 7.8 -1 15l-87 127c-28 41 -56 58 -90 61c-6 6 -6 27 0 33c26 -1 56 -2 86 -2s74 1 101 2c6 -6 6 -27 0 -33c-44.7 -4.70001 -51.9 -6.20001 -29 -40z" />
-    <glyph glyph-name="uni03D8" unicode="&#x3d8;" horiz-adv-x="702" 
-d="M331 622c-99 0 -198 -85 -198 -295c0 -192 115 -301 237 -301c114 0 200 105 200 284c0 202 -107 312 -239 312zM666 329c0 -84 -22 -156.3 -61.8 -213c-46.3 -66 -116.5 -110.2 -203.8 -122.5c1.30002 -48.4 4.30002 -92.7 9.60001 -131.5l-2 -3s-17 3 -51 3
-c-35 0 -52 -3 -52 -3l-1 3c5.20001 36.5 8.20001 81.3 9.5 129.9c-153.5 16.3 -276.5 135.4 -276.5 318.1c0 193.9 113.3 348 307 348c179 0 322 -122 322 -329z" />
-    <glyph glyph-name="uni03D9" unicode="&#x3d9;" horiz-adv-x="504" 
-d="M41 205c0 63.2 19 121.4 55.3 164c36.6 43 90.9 70 156.7 70c153 0 210 -121 210 -225c0 -61.3 -20.3 -124.2 -65.1 -168c-26.3 -25.7 -61.1 -45.1 -105.2 -52.6c1.39999 -42.8 4.39999 -82.1 9.29999 -117.4l-2 -3s-11 3 -45 3c-35 0 -46 -3 -46 -3l-1 3
-c5.3 32.6 7.5 72.9 8.60001 116.3c-118.6 16.7 -175.6 119.3 -175.6 212.7zM238 404c-90 0 -111 -89 -111 -176c0 -77 34 -203 138 -203c47 0 112 31 112 157c0 144 -53 222 -139 222z" />
-    <glyph glyph-name="uni0476" unicode="&#x476;" horiz-adv-x="673" 
-d="M190 789c0 16.2 12 38 41 38c11 0 18 -4 23 -12l59.3 -109c2.5 -4.59998 3.70001 -8 3.70001 -11c0 -8 -8 -13 -13 -13c-3 0 -6 1 -8 3l-99 84c-4 4 -7 11 -7 20zM321 794c0 23.3 22.3 38 38 38c15 0 22 -4 27 -12l54.5 -110c1.89999 -3.79999 2.5 -9 2.5 -11
-c0 -7 -6 -12 -13 -12c-5.60001 0 -9.60001 3.5 -14 7.5l-88 80.5c-5 4 -7 11 -7 19zM587 658c41 0 82 -36 82 -76c0 -24 -20 -60 -47 -60c-25 0 -39 16 -39 38c0 16 19 27 19 42c0 9 -5 20 -28 20c-24 0 -40 -10 -116 -231c0 0 -63 -168 -128 -380c-6 -15 -17 -23 -27 -23
-c-11 0 -20 8 -25 23l-197 561c-10 29 -28 46 -67 46h-6c-4 0 -8 3 -8 8v19l2 1s78 -1 117 -1c35 0 124 1 124 1l2 -1v-19c0 -5 -3 -8 -8 -8h-27c-36 0 -48 -10 -48 -26c0 -6 2 -12 4 -20l125 -356l29 -88c35 108 95 274 95 274c65 187 91 256 172 256z" />
-    <glyph glyph-name="uni0477" unicode="&#x477;" horiz-adv-x="537" 
-d="M124 653c12 0 19 -2 24 -11l78 -139c1 -1 1 -3 1 -4c0 -9.70001 -10.4 -14 -13 -14c-3 0 -5 1 -7 3l-114 110c-5 6 -7 13 -7 19c0 17.9 14.6 36 38 36zM260 659c11 0 19 -5 23 -14l62.7 -143c1.29999 -3 1.29999 -5 1.29999 -6c0 -2.60001 -2.79999 -13 -14 -13
-c-3 0 -5 1 -7 3l-102 121c-5 5 -6 11 -6 16c0 13.8 10.5 36 42 36zM431 402c-30 0 -59 -47 -78 -112l-85 -279c-6 -14 -14 -23 -24 -23c-13 0 -20 9 -25 21l-136 345c-13 34 -23 48 -53 48h-11c-5 0 -10 3 -10 7v20l3 2s53 -2 87 -2c39 0 100 2 100 2l4 -2v-19
-c0 -7 -6 -8 -9 -8h-17c-20 -1 -29 -7 -29 -17c0 -7 4 -15 10 -29l86 -218l12 -41l58 197c32 111 66 148 134 148c40 0 73 -33 73 -73c0 -24 -12 -49 -40 -49c-24 0 -43 14 -43 36c0 17 11 18 11 33c0 9 -4 13 -18 13z" />
-    <glyph glyph-name="uni0496" unicode="&#x496;" horiz-adv-x="897" 
-d="M487 122c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-45 1 -93.4 2 -129 2c-36.3 0 -85 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v201.8c-102.4 -2.5 -120.5 -36.7 -158 -132.8c-43 -110 -80 -191 -158 -192l-79 -1c-5.5 10.2 -5.8 23.2 0 33
-c65.8 2.9 101.4 50.9 160 203c27 70 65 113 134 113v5c-76 28 -99 114 -108 176c-4.2 29.1 -10 62 -40 62c-13 0 -21 -5 -32 -16c-10 -10 -24 -15 -37 -15c-21 0 -44 11 -44 40c0 23 18 52 71 52c79 0 109 -56 119 -118c9 -56 23 -120 82 -152
-c21.2 -12.3 57.1 -14.5 90 -14.9v156.9c0 83 -17 88 -87 91c-6 6 -6 27 0 33c47 -1 95.5 -2 129 -2c38.5 0 86 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-156.9c32.9 0.399994 68.8 2.60001 90 14.9c59 32 73 96 82 152c10 62 40 118 119 118c53 0 71 -29 71 -52
-c0 -29 -23 -40 -44 -40c-13 0 -27 5 -37 15c-11 11 -19 16 -32 16c-30 0 -35.8 -32.9 -40 -62c-9 -62 -32 -148 -108 -176v-5c69 0 107 -43 134 -113c42.7 -110.8 73.2 -166.4 112 -189.5c9.79999 -4.7 18.3 -6.5 25 -6.5c17 0 29.3 -5 30 -22l6 -153
-c-6.70001 -4 -15.7 -5.3 -27 -2c-4 25 -18 67 -48 102c-16.6 19.5 -41.7 32.8 -63.7 48.1c-48.1 26.6 -77.9 94.5 -111.3 179.9c-37.5 96.1 -55.6 130.3 -158 132.8v-201.8z" />
-    <glyph glyph-name="uni0497" unicode="&#x497;" horiz-adv-x="706" 
-d="M670.8 36.8c16.8 -2 25.7 -5.8 26.2 -17.8l6 -142c-7.29999 -4 -17.2 -5.60001 -27 -4c-7.5 35.6 -18.7 64.2 -34.8 84.2c-18.3 22.8 -39.7 36 -53.9 44.6c-16.3 6.1 -30.2 26.2 -41.3 49.2l-43 90c-18 37 -46 64 -114 68v-87c0 -83 12 -87 63 -91c6 -6 6 -27 0 -33
-c-22 1 -59.6 2 -99 2c-39.8 0 -77 -1 -100 -2c-6 6 -6 27 0 33c51 5 63 8 63 91v87c-68 -4 -96 -31 -114 -68l-43 -90c-13 -27 -30 -50 -50 -51c0 0 -74 -1 -94 -2c-6 6 -6 27 0 33c39 2 49 10 66 42l45 85c25 47 58 71 115 71v3c-39 11 -56 46 -71 86c-12 31 -24 50 -45 50
-c-9 0 -17 -3 -23 -7s-17 -7 -30 -7c-22 0 -40 19 -40 39c0 22 24 45 57 45c58 0 85 -54 104 -101c22 -55 52 -93 123 -93v63c0 83 -12 87 -63 91c-6 6 -6 27 0 33c23 -1 59.6 -2 99 -2c39.8 0 76 1 100 2c6 -6 6 -27 0 -33c-51 -5 -63 -8 -63 -91v-63c71 0 101 38 123 93
-c19 47 46 101 104 101c33 0 57 -23 57 -45c0 -20 -18 -39 -40 -39c-13 0 -24 3 -30 7s-14 7 -23 7c-21 0 -33 -19 -45 -50c-15 -40 -32 -75 -71 -86v-3c57 0 90 -24 115 -71l45 -85c4.09998 -7.8 7.90002 -14.2 11.7 -19.4c12.1 -10.2 24.6 -15.5 35.1 -16.8z" />
-    <glyph glyph-name="uni049A" unicode="&#x49a;" horiz-adv-x="629" 
-d="M584.3 33.7c20.9 -1.7 26.1 -8.7 26.7 -22.7l7 -152h-28c-15 79 -46 104 -86 134c-32 24 -67.8 52.1 -107 114l-76 120c-44.6 75.6 -77 102.4 -130 103.9v-208.9c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-45 1 -93.4 2 -129 2c-36.3 0 -85 -1 -130 -2c-6 6 -6 27 0 33
-c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c47 -1 95.5 -2 129 -2c38.5 0 86 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-153c35.5 0.100006 82.2 1.60001 107 15c55 31 86 96 100 149c7.79999 29.4 50 124 143 124c52 0 68 -29 68 -52
-c0 -24 -23 -42 -44 -42c-26 0 -52 25 -79 25c-10 0 -35 -21 -51 -66c-22 -59 -57 -152 -130 -176c26 0 54 -25 70 -53l74 -119c70.2 -112.9 86.3 -137.3 135.3 -141.3z" />
-    <glyph glyph-name="uni049B" unicode="&#x49b;" horiz-adv-x="498" 
-d="M90 72v288c0 29 -9 42 -43 42h-7c-5 0 -8 3 -8 8v19l2 2s56 -2 92 -2c39 0 97 2 97 2l2 -2v-19c0 -5 -4 -8 -9 -8h-8c-33 0 -43 -13 -43 -42v-116h19c57 0 93 14 139 101c32 61 63 88 97 88c38 0 52 -17 52 -39c0 -20 -16 -39 -40 -39c-20 0 -40 8 -49 8
-c-13 0 -25 -21 -36 -43c-27 -51 -65 -88 -101 -93c40 0 91 -21 110 -70c16 -38 56 -130 93 -130c11 0 32 -2 33 -21l5 -134h-23c-6 44 -25 103 -67 115c-48 14 -80 85 -97 126c-24 59 -40 97 -135 97v-138c0 -29 10 -45 43 -45h8c5 0 9 -3 9 -8v-19l-2 -2s-58 2 -97 2
-c-36 0 -92 -2 -92 -2l-2 2v19c0 5 3 8 8 8h7c34 0 43 16 43 45z" />
-    <glyph glyph-name="uni049C" unicode="&#x49c;" horiz-adv-x="606" 
-d="M311 121h-44v194.4c-19.5 6 -43.9 8.60001 -76 8.60001v-202c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-45 1 -93.4 2 -129 2c-36.3 0 -85 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c47 -1 95.5 -2 129 -2c38.5 0 86 1 130 2
-c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-157c24.8 0 53 0.5 76 5.39999v178.6h44v-158c44.9 34.2 56.9 90.8 65 141c10 62 40 118 119 118c53 0 71 -29 71 -52c0 -29 -23 -40 -44 -40c-13 0 -27 5 -37 15c-11 11 -19 16 -32 16c-30 0 -35.8 -32.9 -40 -62
-c-8.79999 -60.3 -30.8 -143.4 -102 -173.6v-7.5c65.2 -2.39999 101.8 -45 128 -112.9c58.6 -152.1 94.2 -200.1 160 -203c5.79999 -9.8 5.5 -22.8 0 -33l-79 1c-78 1 -115 82 -158 192c-17.7 45.3 -31 76.9 -51 97.9v-167.9z" />
-    <glyph glyph-name="uni049D" unicode="&#x49d;" horiz-adv-x="557" 
-d="M290 72h-44v133.9c-18.6 2.5 -40.7 3.90001 -67 4.10001v-141c0 -39 32 -42 51 -42c4 0 8 -3 8 -8v-19l-2 -2s-57 2 -96 2c-36 0 -104 -2 -104 -2l-2 2v19c0 5 3 8 8 8h19c34 0 43 14 43 42v289c0 28 -9 44 -43 44h-19c-5 0 -8 3 -8 8v19l2 2s68 -2 104 -2
-c39 0 94 2 94 2l2 -2v-19c0 -5 -4 -8 -8 -8c-27 0 -49 -3 -49 -44v-114h67v110h44v-104.5c48.6 14.1 69.4 53.3 87 92.5c21 45 46 100 94 100c38 0 55 -20 55 -45c0 -20 -16 -38 -37 -38c-10 0 -22 5 -30 9c-5 4 -15 5 -22 5c-11 0 -24 -28 -34 -50c-16 -38 -42 -88 -93 -96
-c54 0 93 -21 113 -70c16 -38 56 -130 93 -130h8c4 0 11 -1 11 -8v-19l-2 -2l-73 1c-50 1 -79 73 -96 114c-15.3 37.7 -27.8 66.9 -74 83v-124z" />
-    <glyph glyph-name="uni04A2" unicode="&#x4a2;" horiz-adv-x="700" 
-d="M512 0c-33 0 -85 -2 -85 -2l-2 2v19c0 5 3 8 8 8h26c41 0 55 17 55 45v252h-327v-252c0 -31 15 -45 55 -45h26c4 0 8 -3 8 -8v-19l-2 -2s-86 2 -126 2c-35 0 -128 -2 -128 -2l-2 2v19c0 5 3 8 7 8h27c41 0 54 17 54 45v502c0 30 -15 44 -54 44h-27c-4 0 -8 3 -8 8v19l2 1
-s87 -1 126 -1c36 0 129 1 129 1l2 -1v-19c0 -5 -3 -8 -8 -8h-26c-41 0 -55 -16 -55 -44v-211h327v211c0 30 -15 44 -55 44h-26c-5 0 -9 3 -9 8v19l2 1s87 -1 126 -1c36 0 129 1 129 1l2 -1v-19c0 -5 -3 -8 -8 -8h-26c-41 0 -55 -16 -55 -44v-502c0 -36 5 -47 36 -47h16
-c7 0 21 -7 21 -20l7 -146h-28c-9 43 -40 141 -134 141z" />
-    <glyph glyph-name="uni04A3" unicode="&#x4a3;" horiz-adv-x="561" 
-d="M458 74c0 -35 4 -47 36 -47h16c14 0 21 -8 21 -20l5 -135h-20c-6 25 -28 127 -132 127l-66 -1l-2 2v21c0 4 2 6 5 6h21c37 0 41 8 41 47v138h-205v-137c0 -40 7 -47 41 -48h20c4 0 6 -2 6 -6v-21l-1 -2l-108 2l-103 -2l-1 2v22c0 3 2 5 5 5h26c36 1 41 10 41 48v280
-c0 38 -6 47 -41 47h-26c-3 0 -5 1 -5 5v22l1 2l103 -3l108 3l1 -2v-21c0 -4 -2 -6 -6 -6h-20c-34 0 -41 -6 -41 -47v-109h205v108c0 39 -5 48 -41 48h-21c-3 0 -5 1 -5 5v22l1 2l98 -2l113 2l1 -2v-22c0 -3 -2 -5 -6 -5h-25c-34 0 -40 -7 -40 -48v-280z" />
-    <glyph glyph-name="uni04B0" unicode="&#x4b0;" horiz-adv-x="575" 
-d="M337 122c0 -83 17 -88 97 -91c6 -6 6 -27 0 -33c-50 1 -100.3 2 -139 2c-38.6 0 -91 -1 -140 -2c-6 6 -6 27 0 33c80 3 97 8 97 91v88h-162v40h162c-0.100006 36.2 -3.60001 46.8 -21 76l-131.3 221c-34.5 58.1 -51.7 64 -93.7 67c-6 6 -7 27 -1 33c30 -1 63 -2 102 -2
-c40 0 78 1 114 2c6 -6 6 -27 0 -33c-56 -3 -60 -12.6 -35.8 -55.2l116 -204.8c9 -15.9 13.8 -17.2 21.8 -2l110.8 209c21.4 40.4 5.5 50 -38.8 53c-6 6 -6 27 0 33c32 -1 68 -2 91 -2s55 1 83 2c6 -6 6 -27 0 -33c-44.7 -4.29999 -67 -13.3 -95 -64l-119.5 -216
-c-16.4 -29.6 -17.5 -46.5 -17.5 -76.3v-7.70001h155v-40h-155v-88z" />
-    <glyph glyph-name="uni04B1" unicode="&#x4b1;" horiz-adv-x="574" 
-d="M250 -157v145l-5.2 12h-176.8v39h159.9l-137.9 319c-6 13 -16 31 -29 39c-5 3 -15 5 -29 5h-12c-3 0 -10 1 -10 7v20l1 2s93 -2 106 -2c6 0 109 2 109 2l1 -2v-19c0 -4 -2 -8 -6 -8h-29c-19 0 -25 -4 -25 -13c0 -6 4 -19 9 -29l130 -312l127 312c4 9 7 23 7 29
-c0 10 -4 13 -25 13h-29c-5 0 -6 4 -6 7v20l1 2s79 -2 92 -2c9 0 88 2 88 2l1 -2v-19c0 -6 -3 -8 -9 -8h-22c-30 0 -45 -16 -57 -44l-132.8 -319h159.8v-39h-176v-157c0 -29 10 -44 43 -44h19c5 0 9 -3 9 -8v-19l-2 -2s-69 2 -108 2c-36 0 -103 -2 -103 -2l-2 2v19
-c0 5 3 8 7 8h20c33 0 42 15 42 44z" />
-    <glyph glyph-name="uni04B3" unicode="&#x4b3;" horiz-adv-x="479" 
-d="M342 -1c-26 0 -66 -1 -66 -1l-2 2v19c0 5 2 8 8 8h11c18 0 23 2 23 9c0 4 -5 13 -27 48l-59 80c-3 5 -5 7 -7 7s-5 -4 -8 -8l-65 -92c-13 -20 -17 -28 -17 -33c0 -9 7 -11 24 -11h13c5 0 7 -3 7 -8v-19l-1 -2s-52 2 -85 2c-29 0 -76 -2 -76 -2l-2 2v17c0 6 4 10 13 10h9
-c30 0 46 17 69 47l92 122c2 2 3 4 3 6s-1 4 -3 7l-100 146c-20 30 -37 47 -71 47h-3c-6 0 -12 3 -12 7v19l2 3l84 -2l110 2l3 -3v-18c0 -5 -3 -8 -7 -8h-16c-20 0 -23 -5 -23 -12c0 -5 4 -15 16 -32l61 -92c4 -6 6 -9 8 -9s5 3 8 8l67 92c14 20 16 29 16 35
-c0 8 -3 10 -21 10h-15c-4 0 -7 2 -7 7v19l3 3s48 -2 78 -2c32 0 81 2 81 2l1 -2v-19c0 -7 -5 -8 -12 -8h-4c-32 0 -48 -10 -75 -47l-93 -122c-2 -2 -2 -4 -2 -5c0 -2 1 -4 2 -7l104 -147c31 -44 37 -47 55 -47h17c14 0 20 -6 21 -20l5 -135h-20c-12 56 -30 127 -115 127z
-" />
-    <glyph glyph-name="uni04B2" unicode="&#x4b2;" horiz-adv-x="645" 
-d="M521 1c-35 0 -101 -3 -101 -3l-3 2v20c0 4 3 7 6 7h24c24 0 32 4 32 12c0 7 -8 19 -19 34l-136 188c-6 8 -10 11 -14 11c-3 0 -8 -5 -15 -14l-132 -181c-9 -13 -14 -23 -14 -31c0 -11 10 -19 29 -19h19c5 -1 6 -4 6 -7v-20l-3 -2s-97 2 -112 2c-5 0 -84 -2 -84 -2l-1 2
-v20c0 5 5 7 11 7h12c36 0 63 22 86 54l154 210c7 9 10 17 10 23c0 10 -5 19 -14 30l-171 225c-23 31 -38 49 -70 49h-2c-5 0 -12 1 -12 7v20l5 1c26 0 90 -1 101 -1c5 0 97 1 127 1c0 0 4 -1 5 -1v-20c0 -5 -2 -7 -5 -7h-40c-17 0 -23 -4 -23 -11c0 -8 8 -21 18 -35
-l125 -176c5 -7 9 -11 12 -11s7 4 13 12l129 175c10 14 15 27 15 34c0 9 -7 12 -21 12h-30c-4 0 -7 2 -7 7v20l2 1c21 0 88 -1 99 -1c5 0 80 1 97 1l3 -1v-20c0 -3 -1 -7 -9 -7h-17c-28 0 -51 -8 -84 -53l-140 -190c-9 -12 -13 -21 -13 -30c0 -10 6 -20 16 -33l177 -232
-c25 -34 42 -53 56 -53c23 0 27 -9 27 -20l5 -148h-27c-8 41 -34 142 -102 142z" />
-    <glyph glyph-name="uni04B8" unicode="&#x4b8;" horiz-adv-x="634" 
-d="M325 127h-45v123.8c-7.79999 -0.600006 -15.5 -0.800003 -23 -0.800003c-114 0 -155 79 -155 178v95c0 83 -17 88 -87 91c-6 6 -6 27 0 33c40 -1 93 -2 129 -2c36.3 0 91 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-106c0 -74.5 33 -103.6 93 -108.3v206.3h45
-v-205.9c32.6 2.89999 80.1 12.7 128 43.9v170c0 83 -17 88 -87 91c-6 6 -6 27 0 33c38 -1 93.3 -2 129 -2c36.7 0 92 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-401c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-39 1 -92.9 2 -129 2c-35.7 0 -91 -1 -130 -2
-c-6 6 -6 27 0 33c70 3 87 8 87 91v192.9c-45 -30.9 -88.1 -48.5 -128 -57.4v-130.5z" />
-    <glyph glyph-name="uni04B9" unicode="&#x4b9;" horiz-adv-x="516" 
-d="M278 83h-44v53.9c-11.5 -2.5 -23.5 -3.89999 -36 -3.89999c-93 0 -114 37 -114 131v43c0 83 -11 87 -72 91c-6 6 -6 27 0 33c33 -1 67 -2 110 -2c40 0 78 1 102 2c6 -6 6 -27 0 -33c-51 -5 -62 -8 -62 -91v-17c0 -78 3 -112 68 -112c1.3 0 2.7 0.100006 4 0.100006v137.9
-h44v-129.6c28.2 10.3 51.5 28.8 74 48.6v72c0 83 -11 87 -62 91c-6 6 -6 27 0 33c23 -1 63 -2 102 -2c44 0 78 1 112 2c6 -6 6 -27 0 -33c-61 -5 -72 -8 -72 -91v-185c0 -83 11 -87 72 -91c6 -6 6 -27 0 -33c-32 1 -69 2 -112 2c-44 0 -79 -1 -112 -2c-6 6 -6 27 0 33
-c61 5 72 8 72 91v77c-21.9 -16 -46.4 -33.8 -74 -46.8v-69.2z" />
-    <glyph glyph-name="afii57799" unicode="&#x5b0;" 
-d="M114 -182c0 19 16 34 35 34s35 -15 35 -34s-16 -35 -35 -35s-35 16 -35 35zM114 -75c0 19 16 34 35 34s35 -15 35 -34s-16 -35 -35 -35s-35 16 -35 35z" />
-    <glyph glyph-name="afii57801" unicode="&#x5b1;" 
-d="M311 -182c0 19 16 34 35 34s35 -15 35 -34s-16 -35 -35 -35s-35 16 -35 35zM311 -75c0 19 16 34 35 34s35 -15 35 -34s-16 -35 -35 -35s-35 16 -35 35zM46 -75c0 19 16 34 35 34s35 -15 35 -34s-16 -35 -35 -35s-35 16 -35 35zM158 -75c0 19 16 34 35 34s35 -15 35 -34
-s-16 -35 -35 -35s-35 16 -35 35zM101 -181c0 19 16 34 35 34s35 -15 35 -34s-16 -35 -35 -35s-35 16 -35 35z" />
-    <glyph glyph-name="afii57800" unicode="&#x5b2;" 
-d="M37 -96v41h137v-41h-137zM271 -182c0 19 16 34 35 34s35 -15 35 -34s-16 -35 -35 -35s-35 16 -35 35zM271 -75c0 19 16 34 35 34s35 -15 35 -34s-16 -35 -35 -35s-35 16 -35 35z" />
-    <glyph glyph-name="afii57802" unicode="&#x5b3;" 
-d="M274 -182c0 19 16 34 35 34s35 -15 35 -34s-16 -35 -35 -35s-35 16 -35 35zM274 -75c0 19 16 34 35 34s35 -15 35 -34s-16 -35 -35 -35s-35 16 -35 35zM24 -97v42h164v-42h-64v-45.9c10.1 -5.90001 17 -16.6 17 -29.1c0 -19 -16 -35 -35 -35s-35 16 -35 35
-c0 12.9 7.3 23.9 18 29.7v45.3h-65z" />
-    <glyph glyph-name="afii57793" unicode="&#x5b4;" 
-d="M131 -112c0 19 16 34 35 34s35 -15 35 -34s-16 -35 -35 -35s-35 16 -35 35z" />
-    <glyph glyph-name="afii57794" unicode="&#x5b5;" 
-d="M188 -112c0 19 16 34 35 34s35 -15 35 -34s-16 -35 -35 -35s-35 16 -35 35zM75 -112c0 19 16 34 35 34s35 -15 35 -34s-16 -35 -35 -35s-35 16 -35 35z" />
-    <glyph glyph-name="afii57795" unicode="&#x5b6;" 
-d="M131 -181c0 19 16 34 35 34s35 -15 35 -34s-16 -35 -35 -35s-35 16 -35 35zM188 -75c0 19 16 34 35 34s35 -15 35 -34s-16 -35 -35 -35s-35 16 -35 35zM76 -75c0 19 16 34 35 34s35 -15 35 -34s-16 -35 -35 -35s-35 16 -35 35z" />
-    <glyph glyph-name="afii57798" unicode="&#x5b7;" 
-d="M85 -129v42h164v-42h-164z" />
-    <glyph glyph-name="afii57797" unicode="&#x5b8;" 
-d="M85 -106v42h164v-42h-64v-45.9c10.1 -5.90001 17 -16.6 17 -29.1c0 -19 -16 -35 -35 -35s-35 16 -35 35c0 12.9 7.3 23.9 18 29.7v45.3h-65z" />
-    <glyph glyph-name="afii57806" unicode="&#x5b9;" 
-d="M40 630c0 19 16 34 35 34s35 -15 35 -34s-16 -35 -35 -35s-35 16 -35 35z" />
-    <glyph glyph-name="afii57796" unicode="&#x5bb;" 
-d="M259 -182c0 19 16 34 35 34s35 -15 35 -34s-16 -35 -35 -35s-35 16 -35 35zM147 -129c0 19 16 34 35 34s35 -15 35 -34s-16 -35 -35 -35s-35 16 -35 35zM35 -75c0 19 16 34 35 34s35 -15 35 -34s-16 -35 -35 -35s-35 16 -35 35z" />
-    <glyph glyph-name="afii57807" unicode="&#x5bc;" 
-d="M131 253c0 19 16 34 35 34s35 -15 35 -34s-16 -35 -35 -35s-35 16 -35 35z" />
-    <glyph glyph-name="afii57839" unicode="&#x5bd;" 
-d="M145 -65h37v-138h-37v138z" />
-    <glyph glyph-name="afii57645" unicode="&#x5be;" horiz-adv-x="375" 
-d="M62 418l21 87h230l-20 -87h-231z" />
-    <glyph glyph-name="afii57841" unicode="&#x5bf;" 
-d="M84 601v42h164v-42h-164z" />
-    <glyph glyph-name="afii57842" unicode="&#x5c0;" horiz-adv-x="291" 
-d="M114 -7v579h57v-579h-57z" />
-    <glyph glyph-name="afii57804" unicode="&#x5c1;" 
-d="M317 628c0 19 16 34 35 34s35 -15 35 -34s-16 -35 -35 -35s-35 16 -35 35z" />
-    <glyph glyph-name="afii57803" unicode="&#x5c2;" 
-d="M-50 628c0 19 16 34 35 34s35 -15 35 -34s-16 -35 -35 -35s-35 16 -35 35z" />
-    <glyph glyph-name="afii57658" unicode="&#x5c3;" horiz-adv-x="352" 
-d="M264 425c-58 -24 -72 -47 -88 -89c-26 69 -32 67 -88 89c46 18 65 29 88 88c26 -67 39 -68 88 -88zM264 84c-48 -20 -62 -20 -88 -87c-24 63 -46 71 -88 87c64 25 79 67 88 89c17 -44 32 -66 88 -89z" />
-    <glyph glyph-name="afii57664" unicode="&#x5d0;" horiz-adv-x="481" 
-d="M453 442c0 -31 -15 -82 -19 -82c-11 0 -18 38 -42 40c-38 -50 -54 -92 -54 -126c0 -16.6 4.29999 -33.2 12.6 -48.5l65.4 -70.5c25 -29 38 -59 38 -90s-15 -74 -47 -74c-2 25 -11 46 -26 63l-258.5 285.2c-30.7 -20.8 -39.5 -69 -39.5 -95.2c0 -60 99 -121 99 -182
-c0 -32 -25 -62 -49 -62h-101c-1 2 -2 4 -2 6c0 4 3 8 7 9c15 2 33 16 33 32c0 30 -37 94 -37 137c0 49.9 19.4 128.5 78.5 167.4l-30.5 33.6c-25 29 -38 59 -38 90c0 27 11 54 34 79h13c1 -29 10 -52 25 -69l186 -206l1.29999 -1.39999c10.1 46.4 28 90.8 57.7 128.4
-c-48 12 -72 37 -72 76c0 69 33 77 33 77c21 -16 -16 -28 68 -54c26 -7 64 -19 64 -63z" />
-    <glyph glyph-name="afii57665" unicode="&#x5d1;" horiz-adv-x="468" 
-d="M238 520c168 0 170 -82 170 -231c0 -55 -4 -133 -43 -189h82l-23 -100h-404l24 100h306c9 42 20 81 20 143c0 156 -22 170 -103 170h-154c-49 0 -78 30 -78 71c0 72 49 81 49 81c5 -23 20 -45 47 -45h107z" />
-    <glyph glyph-name="afii57666" unicode="&#x5d2;" horiz-adv-x="335" 
-d="M234 296c0 -79 55 -147 71 -231c2 -10 4 -23 4 -35c0 -13 -2 -27 -8 -36c-46 0 -44 115 -74 164h-7l-74 -154l-122 -4c0 6 -3 17 -3 31c0 5 0 10 1 16c5 26 13 48 35 53c106 19 153 59 153 196c0 97 -32 107 -83 114c-19 3 -78 13 -78 66c0 68 44 78 44 78
-c7 -34 40 -34 65 -34c42 0 84 -11 84 -72c0 -37 -8 -114 -8 -152z" />
-    <glyph glyph-name="afii57667" unicode="&#x5d3;" horiz-adv-x="438" 
-d="M331 291c0 -69 11 -136 11 -206c0 -79 -44 -86 -68 -86h-11c8 12 12 29 12 50c0 63 -4 110 -4 158c0 90 28 161 85 206h-248c-50 0 -75 20 -75 61c0 74 42 80 42 80c6 -23 22 -34 49 -34h222c45 0 70 -18 70 -62c0 -83 -85 -59 -85 -167z" />
-    <glyph glyph-name="afii57668" unicode="&#x5d4;" horiz-adv-x="478" 
-d="M119 159c0 -19 4 -82 4 -101c0 -39 -24 -68 -73 -71l-7 11c8 9 13 27 13 43c0 18 -3 78 -3 97c0 68 24 110 73 110c6 0 12 -1 17 -4v-13c-16 -10 -24 -40 -24 -72zM400 296c0 -66 22 -145 22 -211c0 -58 -23 -90 -69 -97l-8 10c8 14 12 31 12 51c0 42 -7 132 -7 174
-c0 78 19 140 57 185h-295c-50 0 -79 30 -79 71c0 74 45 81 45 81c5 -23 24 -44 49 -44h246c53 0 63 -20 63 -58v-24c0 -40 -36 -38 -36 -138z" />
-    <glyph glyph-name="afii57669" unicode="&#x5d5;" horiz-adv-x="285" 
-d="M179 -6l10 342c0 57 -25 69 -78 77c-49 8 -84 40 -84 81c0 56 51 65 51 65c5 -30 41 -36 62 -40c55 -9 86 -15 86 -113l6 -355c0 -51 -53 -57 -53 -57z" />
-    <glyph glyph-name="afii57670" unicode="&#x5d6;" horiz-adv-x="289" 
-d="M117 51c0 58 -16 121 -16 179c0 62 13 122 39 177c-68 0 -102 24 -102 70c0 74 40 80 40 80c4 -19 15 -30 32 -34c120 -4 146 -18 146 -79c0 -9 -6 -31 -14 -42c-5 -2 -12 -3 -18 -3c-21 0 -46 10 -60 17c-12 -38 -15 -76 -15 -97c0 -78 31 -153 31 -225
-c0 -94 -78 -96 -78 -96c10 14 15 31 15 53z" />
-    <glyph glyph-name="afii57671" unicode="&#x5d7;" horiz-adv-x="479" 
-d="M396 299c0 -58 23 -153 23 -214c0 -85 -76 -87 -76 -87c9 13 13 30 13 51c0 42 -8 132 -8 174c0 79 22 145 59 190h-249c-32 -24 -49 -65 -49 -119c0 -62 19 -139 19 -201c0 -93 -79 -95 -79 -95c12 18 15 42 15 70c0 30 -5 89 -5 147c0 81 12 142 70 198
-c-63 0 -94 35 -94 81c0 65 51 66 51 66c5 -23 21 -40 48 -40h240c45 0 67 -21 67 -66c0 -76 -45 -58 -45 -155z" />
-    <glyph glyph-name="afii57672" unicode="&#x5d8;" horiz-adv-x="486" 
-d="M96 410c-41 7 -68 22 -68 71c0 77 38 78 38 78c3 -24 20 -37 53 -38c39 -1 58 -22 58 -63c0 -14 -2 -28 -6 -42c-10 -3 -22 -5 -34 -5c-6 0 -12 1 -18 1c-11 -37 -22 -78 -22 -104c0 -63 22 -132 55 -208h223c28 58 46 130 46 210c0 71 -31 109 -85 109
-c-45 0 -76 -19 -125 -103l-24 12c32 74 55 127 81 156c20 24 48 43 77 43c41 0 107 -32 107 -217c0 -88 -25 -193 -67 -310h-279c-1 71 -41 189 -41 275c0 42 14 91 31 135z" />
-    <glyph glyph-name="afii57673" unicode="&#x5d9;" horiz-adv-x="270" 
-d="M152 243l-6 7c35 26 45 65 45 111c0 33 -30 52 -79 54c-54 2 -85 28 -85 72c0 67 42 72 42 72c5 -38 40 -38 71 -38c70 0 88 -19 88 -110c0 -42 -10 -133 -76 -168z" />
-    <glyph glyph-name="afii57674" unicode="&#x5da;" horiz-adv-x="475" 
-d="M392 361l16 -447c0 -77 -49 -83 -61 -83l9 577h-253c-47 0 -71 28 -71 69c0 71 43 73 43 73c6 -23 23 -34 52 -34h242c59 0 68 -32 68 -58c0 -27 -14 -46 -29 -51c-9 -3 -16 -18 -16 -46z" />
-    <glyph glyph-name="afii57675" unicode="&#x5db;" horiz-adv-x="463" 
-d="M371 248c0 94 -9 165 -96 165h-166c-46 0 -69 21 -69 62c0 71 43 80 43 80c5 -23 21 -35 48 -35h132c103 0 146 -86 146 -255c0 -181 -26 -265 -192 -265h-189l26 100h210c78 0 107 51 107 148z" />
-    <glyph glyph-name="afii57676" unicode="&#x5dc;" horiz-adv-x="476" 
-d="M82 558c0 -33 28 -38 65 -38h170c88 0 97 -50 97 -159c0 -87 -8 -100 -79 -179c-43 -50 -73 -87 -73 -121c0 -15 7 -25 7 -36c0 -24 -17 -36 -39 -36s-38 14 -38 41c0 57 82 137 116 171c49 50 58 67 58 131c0 49 -11 81 -93 81h-148c-50 0 -83 21 -83 66
-c0 48 12 86 24 118c5 10 11 27 11 36c0 18 -19 25 -32 30c-12 4 -34 13 -34 35c0 45 30 47 30 48c2 -18 22 -25 30 -27c18 -5 39 -15 39 -41c0 -3 -16 -67 -19 -76c-5 -14 -9 -32 -9 -44z" />
-    <glyph glyph-name="afii57677" unicode="&#x5dd;" horiz-adv-x="527" 
-d="M184 413c-52 -61 -80 -113 -81 -167l-5 -146h337l-4 131c-5 148 -25 182 -101 182h-146zM51 0l8 263c1 42 51 107 92 150h-31c-48 0 -73 32 -73 73c0 69 44 69 44 69c6 -23 21 -35 47 -35h156c146 0 174 -35 179 -179l11 -341h-433z" />
-    <glyph glyph-name="afii57678" unicode="&#x5de;" horiz-adv-x="520" 
-d="M291 533c120 -20 181 -150 181 -281c0 -67 -23 -148 -30 -169l-29 -83h-244l36 100h207c11 35 26 91 26 141c0 92 -58 166 -142 166c-51 0 -114 -40 -157 -105c-44 -65 -67 -159 -67 -293c0 -5 -9 -14 -18 -14c-14 0 -17 19 -17 47c0 136 42 256 118 339
-c0 26 -11 33 -55 42c-41 9 -62 39 -62 74c0 63 34 68 34 68c8 -31 34 -35 54 -37c25 -2 55 -6 55 -43c0 -17 -3 -19 -3 -32s6 -29 16 -35c55 30 92 65 97 115z" />
-    <glyph glyph-name="afii57679" unicode="&#x5df;" horiz-adv-x="282" 
-d="M147 -203l11 467c0 23 9 54 27 85c6 12 10 24 10 33c0 17 -24 26 -63 28c-64 3 -99 27 -99 70c0 73 39 78 39 78c7 -35 44 -37 66 -38c48 -3 101 -6 101 -81c0 -11 -7 -36 -20 -74s-16 -84 -16 -129l16 -314c0 -137 -67 -123 -72 -125z" />
-    <glyph glyph-name="afii57680" unicode="&#x5e0;" horiz-adv-x="317" 
-d="M244 272c0 -90 30 -157 30 -209c0 -28 -1 -49 -4 -63h-254l32 100h170c-5 28 -7 52 -9 81c-1 7 -1 15 -1 23c0 52 9 116 9 165c0 25 -20 38 -47 40c-71 4 -115 33 -115 73c0 72 44 72 44 72c6 -33 41 -35 70 -36c46 -2 93 -10 93 -70c0 -57 -18 -118 -18 -176z" />
-    <glyph glyph-name="afii57681" unicode="&#x5e1;" horiz-adv-x="510" 
-d="M289 413h-156c-28 -47 -42 -100 -42 -156c0 -163 97 -167 162 -167c84 0 157 18 157 159c0 106 -25 164 -121 164zM250 -11c-65 0 -199 27 -199 226c0 78 18 145 53 199c-47 0 -61 51 -61 72c0 69 46 71 46 71c5 -23 21 -37 48 -37h134c104 0 175 -56 175 -254
-c0 -245 -99 -277 -196 -277z" />
-    <glyph glyph-name="afii57682" unicode="&#x5e2;" horiz-adv-x="499" 
-d="M131.3 410c-43.4 8 -75.4 36.4 -75.4 79.4c0 61.8 31.9 66.9 31.9 66.9c9.5 -33.6 44.6 -35.2 55.6 -35.7c27.1 -0.699951 73.2 -1.59998 73.2 -70.7c0 -11.6 -3.8 -32.7 -7.20001 -41.4c-14 2.5 -24.4 3.20001 -34.1 3.20001c-5.7 0 -11.2 -0.200012 -17.1 -0.5
-c-0.399994 -3.60001 -0.599991 -7.70001 -0.599991 -11.9c0 -17 3.09999 -31.5 5.59999 -42.4c5.8 -24.9 21.8 -53.1 39.9 -62.1c31.9 -15.8 62.3 -34 77.1 -72c6.79999 -17.4 12.5 -44.1 12.5 -66c0 -15.9 -3 -29.2 -10.8 -34.5c42.4 7.59999 28.2 30 100.1 183.7
-c18 38 27 66 27 76c0 19 -9 28 -25 32c-48 11 -72 34 -72 69c0 73 37 78 37 78c6 -26 18 -37 65 -44c35 -5 52 -23 52 -53c0 -71 -84 -189 -84 -310c0 -79 -46 -124 -136 -134l-213 -34l20 99l179.8 29.3c12.4 7.2 17.7 17.4 17.7 29c0 22.5 -20 50.1 -47.5 70.9
-c-35.8 27 -54.6 46.1 -67.2 91.4c-3.60001 13 -9.60001 42.2 -9.60001 71c0 13.8 1.4 21.5 5.10001 33.4z" />
-    <glyph glyph-name="afii57683" unicode="&#x5e3;" horiz-adv-x="476" 
-d="M170 196c-15 0 -30 20 -56 20c-28 0 -37 -20 -54 -20c-16 0 -29 19 -29 56c0 65 27 108 66 161c-54 13 -66 47 -66 82c0 56 59 72 59 72c5 -23 22 -47 48 -47h87c156 0 181 -29 188 -163l9 -225c4 -91 6 -209 6 -272s-47 -69 -67 -69l12 454c0 60 -12 109 -24 132
-c-12 24 -46 36 -92 36h-132c-22 -29 -31 -48 -31 -67c0 -30 5.1 -39.6 42 -48c35 -8 57 -34 57 -58c0 -24.2 -5 -44 -23 -44z" />
-    <glyph glyph-name="afii57684" unicode="&#x5e4;" horiz-adv-x="463" 
-d="M371 248c0 94 -9 165 -96 165h-149c-22 -29 -31 -48 -31 -67c0 -30 5.1 -39.6 42 -48c35 -8 57 -34 57 -58c0 -24.2 -5 -44 -23 -44c-15 0 -30 20 -56 20c-28 0 -37 -20 -54 -20c-16 0 -29 19 -29 56c0 65 27 108 66 161l0.400002 0.399994
-c-38.9 3.10001 -58.4 23.9 -58.4 61.6c0 71 43 80 43 80c5 -23 21 -35 48 -35h132c103 0 146 -86 146 -255c0 -181 -26 -265 -192 -265h-189l26 100h210c78 0 107 51 107 148z" />
-    <glyph glyph-name="afii57685" unicode="&#x5e5;" horiz-adv-x="482" 
-d="M176 81c0 -54 14 -134 14 -192c0 -88 -53 -91 -60 -91l-10 435v2c0 42 30 101 30 140c0 14 -5 26 -20 28c-71 14 -97 28 -97 73c0 71 35 86 35 86c6 -27 36 -41 55 -43c40 -6 85 -17 85 -71c0 -40 -50 -120 -50 -181l2 -88h8c46 92 119 170 188 226c-51 8 -77 32 -77 71
-c0 80 35 86 35 86c4 -32 32 -42 57 -43c42 -3 79 -13 79 -69c0 -10 -4 -53 -13 -64c-18 9 -32 13 -50 13c-41 -32 -78 -70 -96 -89c-74 -80 -115 -164 -115 -229z" />
-    <glyph glyph-name="afii57686" unicode="&#x5e6;" horiz-adv-x="480" 
-d="M343.9 189.3l71.1 -49.3c15 -11 22 -27 22 -43c0 -42 -38 -92 -59 -97h-342l31 100h266c0 8 -8 16 -15 22l-146 102c-21 16 -30 38 -30 61l3 72c0 34 -9 59 -40 59c-50 0 -83 27 -83 69c0 70 42 74 42 74c6 -34 36 -37 49 -38c48 -3 68 -9 68 -67c0 -23 -8 -73 -8 -96
-c0 -26 9 -54 27 -69l60.1 -41.7c23 61.9 58 125.8 87.9 165.7c-41 9 -70 38 -70 72c0 73 42 74 42 74c4 -33 41 -37 57 -38c35 -3 67 -8 67 -59c0 -11 -3 -50 -12 -63c-15 7 -25 10 -51 10c-33 -32 -65 -105 -65 -148c0 -26.9 6.39999 -50.5 27.9 -71.7z" />
-    <glyph glyph-name="afii57687" unicode="&#x5e7;" horiz-adv-x="497" 
-d="M66 -220l-10 4v467c0 28 15 53 38 73h9v-508c0 -11 -15 -23 -37 -36zM241 38c0 -7 1 -21 1 -35c0 -22 -11 -33 -34 -33c-20 0 -29 12 -29 38c0 77 106 148 141 172c13 8 87 60 87 130c0 44 -3 103 -82 103h-203c-47 0 -79 34 -79 75c0 66 51 67 51 67
-c5 -23 21 -35 49 -35h186c120 0 122 -106 122 -176c0 -127 -43 -153 -113 -196c-59 -35 -97 -59 -97 -110z" />
-    <glyph glyph-name="afii57688" unicode="&#x5e8;" horiz-adv-x="489" 
-d="M381 -12l9 246c0 134 -24 179 -112 179h-175c-47 0 -77 33 -77 74c0 63 49 70 49 70c6 -23 22 -37 49 -37h126c146 0 185 -33 185 -176v-311c0 -42 -54 -45 -54 -45z" />
-    <glyph glyph-name="afii57689" unicode="&#x5e9;" horiz-adv-x="612" 
-d="M580 452c0 -111 -150 -231 -169 -452h-293c-7 33 -3 61 -9 86c-21 82 -40 130 -40 190c0 49 12 95 25 134c-41 12 -61 34 -61 67c0 73 37 82 37 82c7 -24 16 -31 58 -39c33 -7 49 -33 49 -76c0 -11 -3 -29 -5 -35c-27 0 -38 -2 -55 -2c-9 -34 -16 -73 -16 -115
-c0 -53 24 -119 61 -192h20c44 82 83 189 117 312c-41 15 -61 39 -61 71c0 71 38 76 38 76c7 -33 28 -32 44 -36c25 -6 64 -11 64 -71c0 -13 -7 -42 -12 -53c-14 9 -25 12 -47 12c-25 -112 -60 -219 -106 -311h160c16 49 49 124 117 219c17 24 26 46 26 63
-c0 29 -24 33 -33 36c-32 11 -49 30 -49 58c0 80 41 83 41 83c4 -28 24 -30 40 -36c15 -5 59 -14 59 -71z" />
-    <glyph glyph-name="afii57690" unicode="&#x5ea;" horiz-adv-x="515" 
-d="M415 -12l9 246c0 134 -24 179 -112 179h-125.1c-21.1 -38.4 -53.9 -106.9 -53.9 -157c0 -83 28 -155 28 -198l-6 -58h-135l17 100h61c-2 35 -8 102 -8 112c0 87.9 34.1 146.6 68.7 201h-21.7c-47 0 -77 33 -77 74c0 63 49 70 49 70c6 -23 22 -37 49 -37h126
-c146 0 185 -33 185 -176v-311c0 -42 -54 -45 -54 -45z" />
-    <glyph glyph-name="afii57716" unicode="&#x5f0;" horiz-adv-x="557" 
-d="M446 -6l10 342c0 57 -25 69 -78 77c-49 8 -84 40 -84 81c0 56 51 65 51 65c5 -30 41 -36 62 -40c55 -9 86 -15 86 -113l6 -355c0 -51 -53 -57 -53 -57zM175 -6l10 342c0 57 -25 69 -78 77c-49 8 -84 40 -84 81c0 56 51 65 51 65c5 -30 41 -36 62 -40
-c55 -9 86 -15 86 -113l6 -355c0 -51 -53 -57 -53 -57z" />
-    <glyph glyph-name="afii57717" unicode="&#x5f1;" horiz-adv-x="545" 
-d="M152 243l-6 7c35 26 45 65 45 111c0 33 -30 52 -79 54c-54 2 -85 28 -85 72c0 67 42 72 42 72c5 -38 40 -38 71 -38c70 0 88 -19 88 -110c0 -42 -10 -133 -76 -168zM446 -6l10 342c0 57 -25 69 -78 77c-49 8 -84 40 -84 81c0 56 51 65 51 65c5 -30 41 -36 62 -40
-c55 -9 86 -15 86 -113l6 -355c0 -51 -53 -57 -53 -57z" />
-    <glyph glyph-name="afii57718" unicode="&#x5f2;" horiz-adv-x="533" 
-d="M418 243l-6 7c35 26 45 65 45 111c0 33 -30 52 -79 54c-54 2 -85 28 -85 72c0 67 42 72 42 72c5 -38 40 -38 71 -38c70 0 88 -19 88 -110c0 -42 -10 -133 -76 -168zM152 243l-6 7c35 26 45 65 45 111c0 33 -30 52 -79 54c-54 2 -85 28 -85 72c0 67 42 72 42 72
-c5 -38 40 -38 71 -38c70 0 88 -19 88 -110c0 -42 -10 -133 -76 -168z" />
-    <glyph glyph-name="uni05F3" unicode="&#x5f3;" horiz-adv-x="219" 
-d="M141 562c12 0 43 -6 43 -32c0 -24 -23 -62 -55 -111c-44 -68 -54 -82 -62 -82c-5 0 -17 4 -17 21c0 18 9 53 23 118c11 56 37 86 68 86z" />
-    <glyph glyph-name="uni05F4" unicode="&#x5f4;" horiz-adv-x="385" 
-d="M309 562c12 0 43 -6 43 -32c0 -24 -23 -62 -55 -111c-44 -68 -54 -82 -62 -82c-5 0 -17 4 -17 21c0 18 9 53 23 118c11 56 37 86 68 86zM141 562c12 0 43 -6 43 -32c0 -24 -23 -62 -55 -111c-44 -68 -54 -82 -62 -82c-5 0 -17 4 -17 21c0 18 9 53 23 118
-c11 56 37 86 68 86z" />
-    <glyph glyph-name="uni05BA" unicode="&#x5ba;" 
-d="M40 630c0 19 16 34 35 34s35 -15 35 -34s-16 -35 -35 -35s-35 16 -35 35z" />
-    <glyph glyph-name="uni05C6" unicode="&#x5c6;" horiz-adv-x="326" 
-d="M66 272c0 58 -18 119 -18 176c0 60 47 68 93 70c29 1 64 3 70 36c0 0 44 0 44 -72c0 -40 -44 -69 -115 -73c-27 -2 -47 -15 -47 -40c0 -56 8 -137 8 -188c0 -29 -4 -53 -9 -81h170l32 -100h-253c-4 14 -5 35 -5 63c0 52 30 119 30 209z" />
-    <glyph glyph-name="aleph" unicode="&#x2135;" horiz-adv-x="481" 
-d="M453 442c0 -31 -15 -82 -19 -82c-11 0 -18 38 -42 40c-38 -50 -54 -92 -54 -126c0 -16.6 4.29999 -33.2 12.6 -48.5l65.4 -70.5c25 -29 38 -59 38 -90s-15 -74 -47 -74c-2 25 -11 46 -26 63l-258.5 285.2c-30.7 -20.8 -39.5 -69 -39.5 -95.2c0 -60 99 -121 99 -182
-c0 -32 -25 -62 -49 -62h-101c-1 2 -2 4 -2 6c0 4 3 8 7 9c15 2 33 16 33 32c0 30 -37 94 -37 137c0 49.9 19.4 128.5 78.5 167.4l-30.5 33.6c-25 29 -38 59 -38 90c0 27 11 54 34 79h13c1 -29 10 -52 25 -69l186 -206l1.29999 -1.39999c10.1 46.4 28 90.8 57.7 128.4
-c-48 12 -72 37 -72 76c0 69 33 77 33 77c21 -16 -16 -28 68 -54c26 -7 64 -19 64 -63z" />
-    <glyph glyph-name="uni0495" unicode="&#x495;" horiz-adv-x="511" 
-d="M186 229.9c108.3 -2.09999 268 -34.3 268 -231.9c0 -124 -65 -232 -185 -232c-106 0 -158 59 -158 102c0 29 15 44 38 44s40 -12 44 -36c6 -33 16 -76 82 -76c73 0 101 68 101 176c0 174.4 -97.4 216.6 -190 219.8v-73.8c0 -83 11 -87 72 -91c6 -6 6 -27 0 -33
-c-32 1 -67.7 2 -111 2c-43.7 0 -79 -1 -112 -2c-6 6 -6 27 0 33c61 5 72 8 72 91v185c0 83 -11 87 -72 91c-6 6 -6 27 0 33c33 -1 67.7 -1.60001 111 -2h126c32 0 112 2 112 2l2 -2c5.5 -53.5 9 -97 13 -150c-8.5 -3.60001 -17.9 -5.5 -29 -4c-14 58 -38 115 -120 115h-22
-c-35 0 -42 -26 -42 -83v-77.1z" />
-    <glyph glyph-name="uni0494" unicode="&#x494;" horiz-adv-x="593" 
-d="M549 93c0 -147 -89 -265 -215 -265c-82 0 -104 26 -119 26c-10 0 -16 -6 -17 -9c-2 -5 -3 -34 -3 -39h-23v152h24c0 -27 13 -51 31 -68c21 -19 52 -33 100 -33c75 0 143 57 143 226c0 207.3 -129.5 258.7 -280 260v-221c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33
-c-40 1 -91.2 2 -129 2s-91 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c50 -1 129 -2 129 -2h205s81 1 120 2c5.5 -33.8 10.9 -72.7 15 -157c-9.70001 -4.29999 -19.3 -5.20001 -29 -4c-21 69 -37 119 -112 119h-120
-c-24 0 -36 -10 -36 -34v-197c149.7 -1.10001 359 -43.2 359 -281z" />
-    <glyph glyph-name="uni04C3" unicode="&#x4c3;" horiz-adv-x="604" 
-d="M558 93c0 -147 -98 -265 -224 -265c-82 0 -104 26 -119 26c-10 0 -16 -6 -17 -9c-2 -5 -3 -34 -3 -39h-23v152h24c0 -27 13 -51 31 -68c21 -19 52 -33 100 -33c75 0 152 57 152 226c0 208.6 -140.1 254.4 -292 255v-267c0 -30 15 -43 55 -43h26c4 0 8 -3 8 -8v-19l-2 -2
-s-86 2 -126 2c-35 0 -128 -2 -128 -2l-2 2v19c0 5 3 8 7 8h27c41 0 54 15 54 43v503c0 30 -15 44 -54 44h-27c-4 0 -8 3 -8 8v19l2 1s87 -1 126 -1c36 0 129 1 129 1l2 -1v-19c0 -5 -3 -8 -8 -8h-26c-41 0 -55 -16 -55 -44v-193c35.9 0.200012 80.8 2 105 15
-c57 32 82 95 103 146c24 58 54 110 139 110c53 0 69 -23 69 -46c0 -24 -23 -42 -44 -42c-14 0 -27 6 -39 13c-13 7 -27 12 -40 12c-12 0 -38 -29 -48 -57c-21.5 -56.6 -54.3 -144.5 -127.4 -172c5.39999 -0.899994 10.8 -1.89999 16.2 -3
-c1.10001 -0.200012 2 -0.299988 2.80002 -0.5c120 -24.2 234.4 -91.3 234.4 -263.5z" />
-    <glyph glyph-name="uni04C7" unicode="&#x4c7;" horiz-adv-x="713" 
-d="M514 71v253h-327v-252c0 -31 15 -44 55 -44h26c4 0 8 -3 8 -8v-19l-2 -2s-86 2 -126 2c-35 0 -128 -2 -128 -2l-2 2v19c0 5 3 8 7 8h27c41 0 54 16 54 44v502c0 30 -15 44 -54 44h-27c-4 0 -8 3 -8 8v19l2 1s87 -1 126 -1c36 0 129 1 129 1l2 -1v-19c0 -5 -3 -8 -8 -8
-h-26c-41 0 -55 -16 -55 -44v-211h327v211c0 30 -15 44 -55 44h-26c-5 0 -9 3 -9 8v19l2 1s87 -1 126 -1c36 0 129 1 129 1l2 -1v-19c0 -5 -3 -8 -8 -8h-26c-41 0 -55 -16 -55 -44v-502c0 -147 -89 -265 -215 -265c-82 0 -104 26 -119 26c-10 0 -16 -6 -17 -9
-c-2 -5 -3 -34 -3 -39h-23v152h24c0 -27 13 -51 31 -68c20 -19 52 -33 100 -33c75 0 142 66 142 235z" />
-    <glyph glyph-name="uni04A7" unicode="&#x4a7;" horiz-adv-x="787" 
-d="M437 429c40 0 78 1 108 2c6 -6 6 -27 0 -33c-55 -4 -68 -9 -68 -91v-77.6c106.6 -5 252 -43.8 252 -231.4c0 -124 -65 -232 -185 -232c-106 0 -158 59 -158 102c0 29 15 44 38 44c24 0 41 -12 45 -36c6 -33 15 -76 81 -76c73 0 102 68 102 176
-c0 164.4 -87.3 211.3 -175 218.8v-72.8c0 -82 9 -87 74 -91c5 -6 5 -27 0 -33c-28 1 -73 2 -113 2s-77 -1 -102 -2c-5 6 -5 27 0 33c52 4 62 9 62 91v217c0 40 -6 51 -43 51h-121c-39 0 -42 -20 -42 -51v-217c0 -82 10 -86 61 -91c6 -6 6 -27 0 -33c-30 1 -60 2 -100 2
-s-88 -1 -118 -2c-6 6 -6 27 0 33c65 4 78 9 78 91v185c0 82 -13 87 -68 91c-6 6 -6 27 0 33c30 -1 68 -2 108 -2h284z" />
-    <glyph glyph-name="uni04A6" unicode="&#x4a6;" horiz-adv-x="965" 
-d="M921 93c0 -147 -89 -265 -214 -265c-82 0 -105 26 -120 26c-10 0 -16 -6 -17 -9c-2 -5 -3 -34 -3 -39h-23v152h24c0 -27 13 -51 31 -68c21 -19 52 -33 100 -33c75 0 143 57 143 226c0 206.8 -129 258.5 -279 260v-221c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33
-c-38 1 -91.3 2 -130 2c-36.4 0 -91 -1 -129 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v409c0 62 -22 74 -46 74h-197c-24 0 -46 -12 -46 -74v-409c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-40 1 -91 2 -129 2c-39.7 0 -91 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401
-c0 83 -17 88 -87 91c-6 6 -6 27 0 33c50 -1 106 -2 129 -2h375c27 0 79 1 129 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-149c150.5 -1.20001 358 -43.7 358 -281z" />
-    <glyph glyph-name="uni0498" unicode="&#x498;" horiz-adv-x="558" 
-d="M121 -166l16 7c21 -23 38 -36 67 -36c36 0 61 26 61 51c0 67 -37 125 -100 144l1.8 1.9c-35.5 9 -60.4 22.3 -76.8 37.1c-27 24 -46 43 -46 76c0 24 13 40 33 40c28 0 43 -26 56 -52c25 -47 66 -77 144 -77c99 0 148 64 148 155c0 73 -44.5 147 -158 147
-c-33 0 -42 -6 -69 -6c-12 0 -29 5 -29 25s17 24 29 24c27 0 43 -6 70 -6c89.5 0 133 69 133 138c0 70 -29 121 -115 121c-114 0 -161 -73 -187 -161c-11.7 -2.29999 -22 -1.29999 -31 3c5.6 52.9 12.6 105.8 24 160c72 10.5 127 32 202 32c139 0 195 -66 195 -148
-c0 -84 -61 -133 -131 -153v-5c98.5 -7.79999 160 -82 160 -167c0 -131 -113 -195 -240 -195c-11.6 0 -22.6 0.3 -33.1 0.9c49.9 -33.1 79.1 -88.9 79.1 -139.9c0 -55 -43 -84 -96 -84c-41 0 -78 22 -107 67z" />
-    <glyph glyph-name="uni0499" unicode="&#x499;" horiz-adv-x="422" 
-d="M124 -155c2.7 7 12 14.3 20 16c22 -23 45 -39 74 -39c37 0 51 27 51 52c0 47.8 -20 97.1 -69 116.2c-69 2.3 -99.5 21.9 -123 38.8c-21 16 -34 32 -34 54c0 16 23 31 41 31c26 0 36.6 -13.6 45 -32c16.5 -36 27 -57 84 -57c70.5 0 93 32 93 91c0 44 -14 95 -88 95
-c-25 0 -36 -6 -55 -6c-9 0 -20 5 -20 21s10 22 19 22c19 0 36 -6 55 -6c64 0 71 47.5 71 89c0 40 -18 73 -73 73c-84 0 -109 -58 -128 -116c-9.4 -1.5 -18.9 0.399994 -27 4l13 119c54 9 100.5 28 154 28c101 0 141 -44 141 -102c0 -52 -16.5 -80 -77 -103v-3
-c70.5 -12 101 -52 101 -112c0 -81.8 -53.2 -116.5 -128.1 -126.1c46.3 -23.7 76.1 -65.2 76.1 -110.9c0 -73 -64 -98 -118 -98c-28.5 0 -68 16 -98 61z" />
-    <glyph glyph-name="uni049E" unicode="&#x49e;" horiz-adv-x="606" 
-d="M191 122c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-45 1 -93.4 2 -129 2c-36.3 0 -85 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v365h-89v39h89c-0.400002 80.1 -17.9 85 -87 88c-6 6 -6 27 0 33c47 -1 95.5 -2 129 -2c38.5 0 86 1 130 2c6 -6 6 -27 0 -33
-c-69.1 -3 -86.6 -7.90002 -87 -88h97v-39h-97v-121c36 0 79 1 103 15c59 32 73 96 82 152c10 62 40 118 119 118c53 0 71 -29 71 -52c0 -29 -23 -40 -44 -40c-13 0 -27 5 -37 15c-11 11 -19 16 -32 16c-30 0 -35.8 -32.9 -40 -62c-9 -62 -32 -148 -108 -176v-5
-c69 0 107 -43 134 -113c58.6 -152.1 94.2 -200.1 160 -203c5.79999 -9.8 5.5 -22.8 0 -33l-79 1c-78 1 -115 82 -158 192c-39 100 -57 133 -171 133v-202z" />
-    <glyph glyph-name="uni049F" unicode="&#x49f;" horiz-adv-x="479" 
-d="M178 69c0 -29 11 -42 44 -42h8c4 0 8 -3 8 -8v-19l-2 -2s-57 2 -96 2c-36 0 -104 -2 -104 -2l-2 2v19c0 5 3 8 8 8h19c34 0 43 15 43 45v406h-76v34h75.9c-1.7 50.1 -20.5 106.2 -86.9 147l15 21c74 -34 99 -79 109 -107c12 28 35 69 109 107l15 -21
-c-65.5 -40.8 -84.2 -96.9 -85.9 -147h155.9v-34h-156.1l-0.5 -234c79.7 0.199997 107.6 49.1 129.6 98c20 45 45 100 93 100c38 0 56 -20 56 -45c0 -20 -17 -38 -38 -38c-10 0 -22 5 -29 9c-6 4 -15 5 -23 5c-11 0 -24 -28 -34 -50c-16 -38 -42 -88 -93 -96
-c54 0 93 -21 114 -70c15 -38 55 -130 92 -130h8c4 0 11 -1 11 -8v-19l-2 -2l-73 1c-50 1 -79 73 -96 114c-21.1 54.2 -40.6 90.7 -115.7 96.3z" />
-    <glyph glyph-name="uni04A5" unicode="&#x4a5;" horiz-adv-x="724" 
-d="M497 430l48 1h6h43h99l20 -161l-26 -4c-16 72 -44 125 -110 125h-70.8c-22.1 -8.29999 -27.2 -27.8 -27.2 -84v-185c0 -83 11 -87 72 -91c6 -6 6 -27 0 -33c-39 1 -80.7 2 -111 2c-34.8 0 -72 -1 -108 -2c-6 6 -6 27 0 33c61 5 68 8 68 91v87h-214v-87
-c0 -83 7 -87 68 -91c6 -6 6 -27 0 -33c-36 1 -75.2 2 -107 2s-72 -1 -112 -2c-6 6 -6 27 0 33c61 5 72 8 72 91v185c0 83 -11 87 -72 91c-6 6 -6 27 0 33c40 -1 81.4 -2 111 -2c31.8 0 70 1 108 2c6 -6 6 -27 0 -33c-61 -5 -68 -8 -68 -91v-65h214v65c0 83 -7 87 -68 91
-c-6 6 -6 27 0 33c39 -1 79 -2 107 -2c16.7 0 36.2 0.299988 56 0.299988z" />
-    <glyph glyph-name="uni04A4" unicode="&#x4a4;" horiz-adv-x="883" 
-d="M618 122c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-44 1 -91.7 2 -129 2c-37.1 0 -85 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v199h-342v-199c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-44 1 -92.7 2 -129 2c-37.7 0 -86 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91
-v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c38 -1 79 -2 129 -2c51 0 92 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-160h342v160c0 83 -17 88 -87 91c-6 6 -6 27 0 33c44 -1 91.7 -2 129 -2c23.7 0 52.5 0.400024 80.8 0.900024c16.8 0.5 33.4 1.09998 49.2 1.09998
-h154c8.5 -53.4 14.9 -107.7 19 -162c-9.70001 -4.39999 -19 -5.70001 -29 -4c-21.1 95.1 -76.7 125 -176 125c-25.9 0 -40.6 -5.20001 -48.7 -25.2c-4.59998 -13.1 -6.29999 -31.5 -6.29999 -57.8v-401z" />
-    <glyph glyph-name="uni04B4" unicode="&#x4b4;" horiz-adv-x="863" 
-d="M250 572c0 31 -12 42 -48 42h-77c-55 0 -72 -11 -92 -91l-23 5l32 156l27 -7c0 -9 0 -24 16 -24h399c16 0 16 16 16 24l26 7l33 -156l-23 -5c-20 80 -37 91 -93 91h-64c-36 0 -48 -9 -48 -42v-489c0 -41 8 -46 39 -46h269c36 0 39 14 39 46v489c0 32 -1 45 -39 46h-30
-c-3 0 -5 1 -5 5v22l2 1l108 -1l116 1l3 -1v-22c0 -3 -2 -5 -6 -5h-30c-36 -1 -38 -13 -38 -46v-495c0 -31 2 -49 35 -49h17c7 0 21 -6 21 -20l4 -149h-26c-15 71 -42 142 -143 142c0 0 -178 1 -321 1h-60l-108 -3l-2 2v17c0 5 4 10 9 10h26c33 1 39 7 39 47v497z" />
-    <glyph glyph-name="uni04B5" unicode="&#x4b5;" horiz-adv-x="721" 
-d="M301 401c-30 0 -38 -5 -38 -46v-267c0 -37 5 -49 40 -49h203c37 0 40 15 40 49v266c0 39 -5 48 -40 48h-21c-4 0 -6 1 -6 5v22l2 2l98 -2l112 2l2 -2v-22c0 -3 -2 -5 -6 -5h-25c-34 0 -41 -7 -41 -48v-278c0 -36 5 -48 36 -48h17c10 0 20 -7 21 -21l4 -135h-21
-c0 25 -25 128 -131 128h-326l-93 -1l-2 2v21c0 4 2 6 5 6h16c36 0 41 4 41 43v284c0 38 -5 47 -41 47h-32c-50 0 -41 -9 -61 -85h-20l1 139l26 -4c0 -6 4 -11 20 -11h299c14 0 20 5 20 11l27 4v-139h-21c-16 75 -10 84 -69 84h-36z" />
-    <glyph glyph-name="uni04A0" unicode="&#x4a0;" horiz-adv-x="752" 
-d="M741 -2l-73 1c-80 1 -110 73 -154 181c-41.2 99.1 -58.3 155.8 -177 157.9v-266.9c0 -30 16 -44 55 -44h26c5 0 9 -3 9 -8v-19l-2 -2s-87 2 -126 2c-36 0 -129 -2 -129 -2l-2 2v19c0 5 3 8 8 8h26c41 0 55 16 55 44v503c0 15.5 -4 26.8 -13.4 34h-107.6
-c-33 0 -53 -21 -63 -40c-18 -30 -31 -60 -41 -89h-17l18 167h137h58l0.5 -0.599976c23.8 -0.200012 49.6 -0.400024 66.5 -0.400024c36 0 129 1 129 1l2 -1v-19c0 -5 -3 -8 -8 -8h-26c-41 0 -55 -16 -55 -44v-193c35.2 0.200012 80.6 1.89999 105 15c57 32 82 95 103 146
-c24 58 54 110 140 110c52 0 68 -23 68 -46c0 -24 -23 -42 -44 -42c-13 0 -26 6 -39 13s-26 12 -40 12c-12 0 -38 -29 -48 -57c-21 -58 -56 -149 -133 -174c69 0 97 -62 124 -122c59 -132 115 -209 151 -209h10c5 0 9 -3 9 -8v-19z" />
-    <glyph glyph-name="uni04A1" unicode="&#x4a1;" horiz-adv-x="568" 
-d="M260 69c0 -28 10 -42 43 -42h8c4 0 8 -3 8 -8v-19l-2 -2s-57 2 -96 2c-36 0 -104 -2 -104 -2l-2 2v19c0 5 3 8 8 8h19c34 0 43 14 43 42v289c0 24.2 -6.7 39.4 -30.4 43.1l-3.60001 -0.100006c-54 -2 -84 -3 -110 -104h-17l18 134h75h22l28.5 -1.29999
-c18.6 -0.400024 38.8 -0.700012 53.5 -0.700012c39 0 96 2 96 2l2 -2v-19c0 -5 -4 -8 -8 -8h-8c-33 0 -43 -13 -43 -42v-116c79.4 0.800003 106.2 49.4 128 98c21 45 46 100 94 100c38 0 55 -20 55 -45c0 -20 -16 -38 -37 -38c-10 0 -22 5 -30 9c-6 4 -15 5 -23 5
-c-10 0 -24 -28 -33 -50c-16 -38 -42 -88 -93 -96c54 0 93 -21 113 -70c16 -38 56 -130 93 -130h8c4 0 11 -1 11 -8v-19l-3 -2l-72 1c-50 1 -79 73 -96 114c-21.9 53.8 -40.5 90.2 -115 96.1v-140.1z" />
-    <glyph glyph-name="uni04AA" unicode="&#x4aa;" horiz-adv-x="646" 
-d="M219 -166l15 7c22 -23 38 -36 68 -36c36 0 60 26 60 51c0 67 -37 125 -99 144l0.399994 0.5c-151.9 36.4 -226.4 163.1 -226.4 309.5c0 104.3 39.6 202.2 106 263c59 54 130 85 215 85c123 0 168 -40 219 -45c10 -55 17 -103 22 -155c-11.3 -6 -21 -9 -33 -5
-c-26 86 -81 168 -219 168c-52 0 -110 -28 -159.6 -89c-36.5 -44.9 -59.4 -116.7 -59.4 -203c0 -146 93.4 -298 228 -298c93 0 161 31 232 109c11 0 18 -6 23 -15c-68 -89 -157 -135 -254 -135c-4.70001 0 -9.5 0.1 -14.1 0.2c49.3 -33.2 78.1 -88.5 78.1 -139.2
-c0 -55 -42 -84 -96 -84c-41 0 -77 22 -106 67z" />
-    <glyph glyph-name="uni04AB" unicode="&#x4ab;" horiz-adv-x="428" 
-d="M148 -161l15 8c23 -23 38 -37 68 -37c37 0 60 38 60 63c0 71.5 -20.5 104.2 -70.1 117.4c-117.2 6.4 -183.9 93.5 -183.9 217.6c0 142 106 231 205 231c96 0 153 -40 153 -95c0 -31 -28 -44 -49 -44s-35 9 -38 36c-4 35 -12 70 -71 70c-66 0 -114 -66 -114 -176
-c0 -117 61 -191 134 -191c43 0 86 22 120 66c9 -1 17 -5 21 -14c-37 -60.7 -75.7 -86.9 -117.6 -96.4c44.3 -22.1 69.6 -64.3 69.6 -128.6c0 -64 -41 -95 -95 -95c-41 0 -78 23 -107 68z" />
-    <glyph glyph-name="uni04AC" unicode="&#x4ac;" horiz-adv-x="562" 
-d="M322 75c0 -31 3 -51 36 -51h17c7 0 20 -8 21 -20l7 -145h-27c-14 71 -49 139 -146 139h-75l-2 2v19c0 5 3 8 8 8h26c41 0 55 17 55 45v487c0 31 -13 40 -49 40h-91c-55 0 -72 -11 -92 -91l-24 5l33 155l26 -6c0 -16 1 -24 17 -24h428c15 0 16 8 16 24l26 6l33 -155
-l-23 -5c-21 80 -38 91 -93 91h-79c-36 0 -48 -9 -48 -42v-482z" />
-    <glyph glyph-name="uni04AD" unicode="&#x4ad;" horiz-adv-x="446" 
-d="M259 76c0 -36 5 -49 36 -49h17c10 0 20 -7 21 -21l3 -116h-22c-6 26 -30 108 -129 108h-88v23c0 4 2 6 6 6h41c35 1 40 8 40 47v316h-77c-49 0 -40 -9 -60 -85h-20l1 137l25 -3c0 -5 5 -10 20 -10h300c14 0 20 5 20 10l26 3v-137h-20c-16 75 -10 84 -69 84h-71v-313z" />
-    <glyph glyph-name="uni04B6" unicode="&#x4b6;" horiz-adv-x="634" 
-d="M529 74c0 -31 3 -49 36 -49h17c7 0 20 -5 21 -20l7 -146h-27c-11 82 -54 140 -146 140h-72v22c0 3 1 5 5 5h39c36 0 40 13 40 47v257c-80 -81 -141 -89 -199 -89c-114 0 -153 80 -153 171v166c0 35 -5 42 -44 42h-17c-5 0 -7 2 -7 5v21l108 -1l108 1v-21
-c0 -4 -2 -5 -6 -5h-17c-42 0 -44 -11 -44 -42v-170c0 -82 42 -109 114 -109c29 0 96 2 157 56v222c0 35 -4 42 -40 42h-30c-3 0 -4 2 -4 5v22l114 -2l115 2v-21c0 -4 -2 -6 -6 -6h-29c-34 0 -40 -5 -40 -42v-503z" />
-    <glyph glyph-name="uni04B7" unicode="&#x4b7;" horiz-adv-x="516" 
-d="M425 76c0 -36 5 -48 36 -48h17c10 0 21 -7 21 -21l4 -135h-20c-9 49 -35 127 -131 127h-62l-2 2v21c0 4 2 6 6 6h16c36 0 41 9 41 48v127c-36 -51 -90 -65 -143 -65c-100 0 -122 74 -122 152v65c0 38 -5 47 -40 47h-8c-3 0 -5 1 -5 5v22l1 2l85 -3l102 3l2 -2v-21
-c0 -4 -2 -6 -6 -6h-15c-34 0 -41 -10 -41 -42v-74c0 -68 8 -112 69 -112c55 0 90 19 121 55v125c0 39 -5 48 -41 48h-16c-3 0 -5 1 -5 5v22l2 2l92 -2l113 2l1 -2v-22c0 -3 -2 -5 -6 -5h-25c-34 0 -41 -7 -41 -48v-278z" />
-    <glyph glyph-name="uni04BC" unicode="&#x4bc;" horiz-adv-x="807" 
-d="M703 122l23 -24c-79 -73 -136 -110 -246 -110c-215 0 -311 173 -311 331c0 27.4 2.2 53.8 6.5 78.9h-31.7c-76.2 0 -133.2 18 -133.2 87.4c0 63.8 49.3 122.1 95.2 122.1c14.6 0 29.1 -11.3 29.1 -29.2c0 -15.7 -14.5 -34.7 -34.7 -34.7c-22.4 0 -49.3 -21.3 -49.3 -49.3
-c0 -42.6 54.8 -52.6 120.9 -52.6h13.8c37.8 129.8 138.7 216.4 288.4 216.4c192 0 273 -130 284 -272h-498c-1 -11 -1 -24 -1 -37c0 -186 102 -327 237 -327c93 0 154 49 207 100zM678 430c-31 129 -113 194 -211 194c-101.9 0 -173.3 -86.9 -194.7 -182.4h19.4v-11.6h386.3
-z" />
-    <glyph glyph-name="uni04BD" unicode="&#x4bd;" horiz-adv-x="534" 
-d="M492 93c12 -1 18 -6 21 -16c-40 -52 -94 -87 -170 -87c-72 0 -119 24 -153 64c-33 38 -47 92 -47 148c0 16.5 1.3 32.2 3.8 47h-1.8c-68 0 -119 16 -119 78c0 57 44 109 85 109c13 0 26 -10 26 -26c0 -14 -13 -31 -31 -31c-20 0 -44 -19 -44 -44
-c0 -35.1 41.8 -45.4 94.6 -46.8c32.6 96.9 117.6 148.8 186.4 148.8c139 0 169 -90 169 -174c0 -11 -7 -17 -19 -17l-266 2c0 -58 12 -104 32 -137c31 -51 73 -72 109 -72c58 0 87 16 124 54zM231.1 288h45.9v-5.20001l134 2.20001c11 0.200012 15 5 15 14
-c0 84 -45 105 -83 105c-23.6 0 -91.5 -8.70001 -111.9 -116z" />
-    <glyph glyph-name="uni04BE" unicode="&#x4be;" horiz-adv-x="807" 
-d="M684 -142c-29 -45 -66 -67 -107 -67c-54 0 -96 29 -96 84c0 42.2 29.1 84.1 66.9 118.8c-20.5 -3.8 -42.8 -5.8 -67.9 -5.8c-215 0 -311 173 -311 331c0 27.4 2.2 53.8 6.5 78.9h-31.7c-76.2 0 -133.2 18 -133.2 87.4c0 63.8 49.3 122.1 95.2 122.1
-c14.6 0 29.1 -11.3 29.1 -29.2c0 -15.7 -14.5 -34.7 -34.7 -34.7c-22.4 0 -49.3 -21.3 -49.3 -49.3c0 -42.6 54.8 -52.6 120.9 -52.6h13.8c37.8 129.8 138.7 216.4 288.4 216.4c192 0 273 -130 284 -272h-498c-1 -11 -1 -24 -1 -37c0 -186 102 -327 237 -327
-c93 0 154 49 207 100l23 -24c-33.7 -31.1 -63.3 -55.6 -94.8 -73.6c-54 -41.5 -90.2 -82.1 -90.2 -143.4c0 -26 23 -52 60 -52c29 0 45 14 67 36zM678 430c-31 129 -113 194 -211 194c-101.9 0 -173.3 -86.9 -194.7 -182.4h19.4v-11.6h386.3z" />
-    <glyph glyph-name="uni04BF" unicode="&#x4bf;" horiz-adv-x="541" 
-d="M494 -120c-29 -45 -69 -65 -110 -65c-50 0 -88 20 -88 74c0 35.4 25.6 69.1 64.6 101.6c-5.70001 -0.400001 -11.6 -0.6 -17.6 -0.6c-72 0 -119 24 -153 64c-33 38 -47 92 -47 148c0 16.5 1.3 32.2 3.8 47h-1.8c-68 0 -119 16 -119 78c0 57 44 109 85 109
-c13 0 26 -10 26 -26c0 -14 -13 -31 -31 -31c-20 0 -44 -19 -44 -44c0 -35.1 41.8 -45.4 94.6 -46.8c32.6 96.9 117.6 148.8 186.4 148.8c139 0 169 -90 169 -174c0 -11 -7 -17 -19 -17l-266 2c0 -58 12 -104 32 -137c31 -51 73 -72 109 -72c58 0 87 16 124 54
-c12 -1 18 -6 21 -16c-23.1 -30 -50.8 -54.4 -84.7 -69.6c-45.6 -39.2 -70.3 -68.2 -70.3 -107.4c0 -26 13 -47 50 -47c29 0 45 16 67 38c9 0 15 -4 19 -11zM231.1 288h45.9v-5.20001l134 2.20001c11 0.200012 15 5 15 14c0 84 -45 105 -83 105
-c-23.6 0 -91.5 -8.70001 -111.9 -116z" />
-    <glyph glyph-name="uni04C4" unicode="&#x4c4;" horiz-adv-x="529" 
-d="M248.7 225c104.2 -13 226.3 -62.9 226.3 -227c0 -124 -82 -232 -202 -232c-106 0 -158 59 -158 102c0 29 15 44 38 44s40 -12 44 -36c6 -33 16 -76 82 -76c73 0 119 68 119 176c0 181.4 -124.1 218.7 -219 219v-126c0 -28 10 -41 43 -41h8c4 0 8 -3 8 -8v-19l-2 -2
-s-57 2 -96 2c-36 0 -104 -2 -104 -2l-2 2v19c0 5 3 8 8 8h19c34 0 43 13 43 41v289c0 28 -9 44 -43 44h-19c-5 0 -8 3 -8 8v19l2 2s68 -2 104 -2c39 0 96 2 96 2l2 -2v-19c0 -5 -4 -8 -8 -8h-8c-33 0 -43 -13 -43 -42v-116h18c58 0 94 14 139 101c33 61 64 88 98 88
-c38 0 51 -17 51 -39c0 -20 -16 -39 -40 -39c-19 0 -40 8 -49 8c-13 0 -24 -21 -35 -43c-27 -51 -66 -87 -101 -93c-3.60001 -0.600006 -7.39999 -1.2 -11.3 -2z" />
-    <glyph glyph-name="uni04C8" unicode="&#x4c8;" horiz-adv-x="561" 
-d="M383 74v138h-205v-137c0 -40 7 -46 41 -47h20c4 0 6 -2 6 -6v-21l-1 -2l-108 2l-103 -2l-1 2v22c0 3 2 5 5 5h26c36 1 41 9 41 47v280c0 38 -6 47 -41 47h-26c-3 0 -5 1 -5 5v22l1 2l103 -3l108 3l1 -2v-21c0 -4 -2 -6 -6 -6h-20c-34 0 -41 -6 -41 -47v-109h205v108
-c0 39 -5 48 -41 48h-21c-3 0 -5 1 -5 5v22l1 2l98 -2l113 2l1 -2v-22c0 -3 -2 -5 -6 -5h-25c-34 0 -40 -7 -40 -48v-280c0 -150 -49 -271 -191 -271c-107 0 -159 58 -159 102c0 29 16 43 38 43c24 0 41 -11 45 -35c6 -34 16 -76 81 -76c80 0 111 121 111 237z" />
-    <glyph glyph-name="uni04C9" unicode="&#x4c9;" horiz-adv-x="730" 
-d="M618 122c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-7.29999 0.2 -14.7 0.3 -22.2 0.5l-54.8 -122.5h-43l55.2 123.3c-22.9 0.4 -44.9 0.7 -64.2 0.7c-37.1 0 -85 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v199h-342v-199c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33
-c-44 1 -92.7 2 -129 2c-37.7 0 -86 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c38 -1 79 -2 129 -2c51 0 92 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-160h342v160c0 83 -17 88 -87 91c-6 6 -6 27 0 33
-c44 -1 91.7 -2 129 -2c38 0 89 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-401z" />
-    <glyph glyph-name="uni04CA" unicode="&#x4ca;" horiz-adv-x="558" 
-d="M479 307v-185c0 -83 11 -87 72 -91c6 -6 6 -27 0 -33c-6.59998 0.2 -13.3 0.3 -20 0.5l-54 -122.5h-44l55.2 123.5c-17.6 0.3 -34.1 0.5 -48.2 0.5c-34.8 0 -72 -1 -108 -2c-6 6 -6 27 0 33c61 5 68 8 68 91v87h-214v-87c0 -83 7 -87 68 -91c6 -6 6 -27 0 -33
-c-36 1 -75.2 2 -107 2s-72 -1 -112 -2c-6 6 -6 27 0 33c61 5 72 8 72 91v185c0 83 -11 87 -72 91c-6 6 -6 27 0 33c40 -1 81.4 -2 111 -2c31.8 0 70 1 108 2c6 -6 6 -27 0 -33c-61 -5 -68 -8 -68 -91v-65h214v65c0 83 -7 87 -68 91c-6 6 -6 27 0 33c39 -1 79 -2 107 -2
-c33 0 77 0 112 2c6 -6 6 -27 0 -33c-61 -5 -72 -8 -72 -91z" />
-    <glyph glyph-name="uni04CC" unicode="&#x4cc;" horiz-adv-x="516" 
-d="M425 76c0 -39 5 -48 41 -48h16c4 0 6 -2 6 -6v-21l-2 -2h-62c-101 0 -121 -68 -130 -127h-22l5 135c0 14 11 21 21 21h16c32 0 37 12 37 48v127c-36 -51 -90 -65 -143 -65c-100 0 -122 74 -122 152v65c0 38 -5 47 -40 47h-8c-3 0 -5 1 -5 5v22l1 2l85 -3l102 3l2 -2v-21
-c0 -4 -2 -6 -6 -6h-15c-34 0 -41 -10 -41 -42v-74c0 -68 8 -112 69 -112c55 0 90 19 121 55v125c0 39 -5 48 -41 48h-16c-3 0 -5 1 -5 5v22l2 2l92 -2l113 2l1 -2v-22c0 -3 -2 -5 -6 -5h-25c-34 0 -41 -7 -41 -48v-278z" />
-    <glyph glyph-name="uni04CB" unicode="&#x4cb;" horiz-adv-x="634" 
-d="M529 73c0 -34 4 -47 40 -47h39c4 0 5 -2 5 -5v-22h-72c-91 0 -133 -58 -145 -140h-27l7 146c0 15 14 20 20 20h17c31 0 36 21 36 49v256c-80 -81 -141 -89 -199 -89c-114 0 -153 80 -153 171v166c0 35 -5 42 -44 42h-17c-5 0 -7 2 -7 5v21l108 -1l108 1v-21
-c0 -4 -2 -5 -6 -5h-17c-42 0 -44 -11 -44 -42v-170c0 -82 42 -109 114 -109c29 0 96 2 157 56v222c0 35 -4 42 -40 42h-30c-3 0 -4 2 -4 5v22l114 -2l115 2v-21c0 -4 -2 -6 -6 -6h-29c-34 0 -40 -5 -40 -42v-504z" />
-    <glyph glyph-name="uni04A8" unicode="&#x4a8;" horiz-adv-x="676" 
-d="M550 -108c84 0 96 40 96 79l21 -2c-2 -28 -4 -55 -4 -82c0 -19 2 -49 4 -68l-23 -2c0 17 -16 35 -34 35h-65c-113.5 0 -183.7 62.6 -225.1 138.3c-187.7 18.2 -285.9 145.6 -285.9 338.7c0 181 152 330 311 330c63 0 105 -18 130 -38c22 -17 39 -38 39 -60
-c0 -20 -12 -40 -34 -40c-26 0 -40 15 -56 44c-28 52 -62 55 -99 55c-118 0 -199 -166 -199 -292c0 -139.3 45.8 -265.4 175.1 -297.9c-24.2 59.8 -33.1 122.3 -33.1 165.9c0 136 51 246 180 246c137 0 178 -113 178 -217c0 -138.4 -95.4 -221.3 -220.5 -235
-c29.9 -55.1 75.7 -98 144.5 -98zM389.6 23.7c59.5 10.2 159.4 65.9 159.4 184.3c0 123 -20 196 -101 196c-61 0 -95 -70 -95 -197c0 -35.4 8.10001 -113.6 36.6 -183.3z" />
-    <glyph glyph-name="uni04A9" unicode="&#x4a9;" horiz-adv-x="557" 
-d="M443 -88c73 0 83 42 83 69l27 -1c-2 -19 -3 -53 -3 -71c0 -14 5 -53 7 -66l-29 -2c0 12 -17 43 -33 43h-57c-95 0 -152.9 43.9 -186.5 97.1c-141.6 14.6 -216.5 103.9 -216.5 239.9c0 127 110 228 245 228c54 0 92 -13 114 -27c18 -12 33 -27 33 -42
-c0 -14 -10 -27 -30 -27c-22 0 -34 10 -48 30c-25 36 -54 38 -86 38c-95 0 -149 -122 -149 -197c0 -88.2 23 -185.8 121.6 -213.4c-18.9 41.3 -25.6 84.2 -25.6 114.4c0 101 55 172 152 172c98 0 150 -63 150 -147c0 -102.4 -83.6 -160.5 -188.2 -169.7
-c23.7 -38.4 61.1 -68.3 119.2 -68.3zM311.4 3.6c71.3 5.8 130.6 52.3 130.6 135.4c0 79 -15 132 -80 132c-51 0 -78 -60 -78 -139c0 -24.5 5 -79.5 27.4 -128.4z" />
-    <glyph glyph-name="uni203E" unicode="&#x203e;" horiz-adv-x="423" 
-d="M388 688v-44h-352v44h352z" />
-    <glyph glyph-name="uni204A" unicode="&#x204a;" horiz-adv-x="438" 
-d="M67 337l-8 100c58 -19 120 -28 180 -28c38 0 75 4 110 10c0 0 26 25 47 25c5 0 8 -6 8 -15c0 -12 -4 -27 -7 -37c-75 -253 -101 -521 -101 -521l-35 -1l-3 6c0 1 35 275 90 467c-51 -13 -102 -19 -151 -19c-47 0 -91 5 -130 13z" />
-    <glyph glyph-name="arrowupdnbse" unicode="&#x21a8;" horiz-adv-x="463" 
-d="M206 611c-30 -25 -89 -70 -157 -100v39c97 85 152 167 169 216h23c45 -109 174 -217 174 -217v-40c-68 32 -121 65 -157 102v-632c37 37 89 70 157 102v-40c0 -1 -118.1 -99.9 -166.8 -203h197.8c10 0 14 -9 14 -17c0 -10 -14 -33 -27 -33h-388c-9 0 -15 8 -15 16
-c0 15 13 34 25 34h158.5c-21.9 49.8 -76.2 124.6 -164.5 202v39c74 -32 119 -66 157 -100v632z" />
-    <glyph glyph-name="universal" unicode="&#x2200;" horiz-adv-x="488" 
-d="M284 -2h-79l-196 572h73l46 -147h232l47 147h73zM246 74l93 285h-190z" />
-    <glyph glyph-name="existential" unicode="&#x2203;" horiz-adv-x="400" 
-d="M366 572v-572h-331v65h262v207h-246v65h246v170h-256v65h325z" />
-    <glyph glyph-name="uni2204" unicode="&#x2204;" horiz-adv-x="400" 
-d="M366 572v-572h-270.2l-28.8 -80l-37 12l24.6 68h-19.6v65h43.1l74.9 207h-102v65h125.5l61.5 170h-197v65h220.5l27.5 76l36 -11l-23.4 -65h64.4zM278.2 507l-61.1 -170h79.9v170h-18.8zM193.7 272l-74.5 -207h177.8v207h-103.3z" />
-    <glyph glyph-name="uni221F" unicode="&#x221f;" horiz-adv-x="541" 
-d="M62 442h51v-397h369v-45h-420v442z" />
-    <glyph glyph-name="logicaland" unicode="&#x2227;" horiz-adv-x="481" 
-d="M242 386h-2l-172 -388h-53l200 444h52l199 -444h-53z" />
-    <glyph glyph-name="logicalor" unicode="&#x2228;" horiz-adv-x="481" 
-d="M239 46h2l172 388h53l-200 -444h-52l-199 444h53z" />
-    <glyph glyph-name="intersection" unicode="&#x2229;" horiz-adv-x="489" 
-d="M118 0h-51v212c0 125.5 34 227 183 227c141.5 0 172 -99 172 -227v-212h-51v212c0 102 -20 184 -119 184c-111.5 0 -134 -82 -134 -184v-212z" />
-    <glyph glyph-name="union" unicode="&#x222a;" horiz-adv-x="489" 
-d="M371 429h51v-212c0 -125.5 -34 -227 -183 -227c-141.5 0 -172 99 -172 227v212h51v-212c0 -102 20 -184 119 -184c111.5 0 134 82 134 184v212z" />
-    <glyph glyph-name="propersubset" unicode="&#x2282;" horiz-adv-x="522" 
-d="M483 85v-42h-212c-117 0 -234 28 -234 183c0 147 121 170 234 170h212v-42h-212c-97 0 -186 -23 -186 -127c0 -117 83 -142 186 -142h212z" />
-    <glyph glyph-name="propersuperset" unicode="&#x2283;" horiz-adv-x="522" 
-d="M39 354v42h212c117 0 234 -28 234 -183c0 -147 -121 -170 -234 -170h-212v42h212c97 0 186 23 186 127c0 117 -83 142 -186 142h-212z" />
-    <glyph glyph-name="notsubset" unicode="&#x2284;" horiz-adv-x="522" 
-d="M483 85v-42h-200.1l-38.9 -114l-38 12l35.1 102.7c-106.2 5 -204.1 40.5 -204.1 182.3c0 147 121 170 234 170h90.5l34.5 101l38 -11l-30.7 -90h79.7v-42h-94l-91.8 -269h185.8zM255.3 85.2l91.8 268.8h-76.1c-97 0 -186 -23 -186 -127c0 -111 74.7 -139.2 170.3 -141.8z
-" />
-    <glyph glyph-name="uni2285" unicode="&#x2285;" horiz-adv-x="522" 
-d="M39 354v42h212h3.5l34.5 101l38 -11l-31.2 -91.6c100.3 -7.69998 189.2 -46.3 189.2 -181.4c0 -147 -121 -170 -234 -170h-75.1l-38.9 -114l-38 12l34.9 102h-94.9v42h109.2l91.9 269h-201.1zM281.7 353.2l-91.5 -268.2h60.8c97 0 186 23 186 127
-c0 105.1 -67 136 -155.3 141.2z" />
-    <glyph glyph-name="circleplus" unicode="&#x2295;" horiz-adv-x="564" 
-d="M281 -10c-124 0 -225 101 -225 224s102 225 225 225c124 0 227 -102 227 -225c0 -124 -103 -224 -227 -224zM306 398.3v-165.3h157.1c-8.30002 85.7 -72.6 154 -157.1 165.3zM306 30.7c83.5 11.3 148.2 78.2 157 163.3h-157v-163.3zM261 30.1v163.9h-160
-c8.8 -86.1 73.7 -154.7 160 -163.9zM261 398.9c-86.7 -9.39999 -151.7 -79.2 -160.1 -165.9h160.1v165.9z" />
-    <glyph glyph-name="uni2296" unicode="&#x2296;" horiz-adv-x="564" 
-d="M281 -10c-124 0 -225 101 -225 224s102 225 225 225c124 0 227 -102 227 -225c0 -124 -103 -224 -227 -224zM100.9 233h362.2c-9.10001 94 -85.5 167 -182.1 167c-96.5 0 -171.1 -73.8 -180.1 -167zM101 194c9.4 -92.6 83.8 -165 180 -165c95.3 0 172.3 71.6 182 165
-h-362z" />
-    <glyph glyph-name="circlemultiply" unicode="&#x2297;" horiz-adv-x="564" 
-d="M281 -10c-124 0 -225 101 -225 224s102 225 225 225c124 0 227 -102 227 -225c0 -124 -103 -224 -227 -224zM425.7 328.7l-109.7 -109.7l114 -113.1c21.4 30.3 34 67.6 34 108.1c0 43.4 -14.2 83.1 -38.3 114.7zM390.7 363.6c-30.3 22.9 -68.1 36.4 -109.7 36.4
-c-41.1 0 -78.3 -13.4 -108.1 -36l109.1 -110zM137.6 328.4c-23.7 -31.7 -37.6 -71.4 -37.6 -114.4c0 -40.2 12.2 -77.5 33.2 -107.9l113.8 112.9zM167.2 69.2c30.7 -25.1 70 -40.2 113.8 -40.2c43.9 0 84 15.2 115.3 40.7l-114.3 114.3z" />
-    <glyph glyph-name="uni2298" unicode="&#x2298;" horiz-adv-x="564" 
-d="M281 -10c-124 0 -225 101 -225 224s102 225 225 225c124 0 227 -102 227 -225c0 -124 -103 -224 -227 -224zM281 400c-103 0 -181 -84 -181 -186c0 -43.1 13.9 -82.8 37.7 -114.3l259.1 259.1c-31.3 25.8 -71.4 41.2 -115.8 41.2zM166.6 69.6
-c30.8 -25.4 70.3 -40.6 114.4 -40.6c102 0 183 82 183 185c0 43.4 -14.2 83.1 -38.3 114.7z" />
-    <glyph glyph-name="uni2302" unicode="&#x2302;" horiz-adv-x="865" 
-d="M117 407v-373h632v373l-309 185zM73 430l367 216l352 -216v-430h-719v430z" />
-    <glyph glyph-name="uni2310" unicode="&#x2310;" horiz-adv-x="560" 
-d="M78 133h-54v268h513v-44h-459v-224z" />
-    <glyph glyph-name="integraltop" unicode="&#x2320;" horiz-adv-x="399" 
-d="M134 0v212c0 77 2.39999 254.1 14 434c6.10001 94.7 23.9 154.6 36 176c15.3 27 22.6 34.2 41.5 48c21.2 15.5 63 23 91.5 23c28 0 52 -18 52 -43c0 -22 -16 -39 -40 -39c-16.4 0 -26 7 -33 16.5c-7.10001 9.59998 -15 16.5 -38 16.5c-12.9 0 -29 -16 -32 -42
-c-4.89999 -42.8 -9.10001 -99.2 -10 -165c-2 -141 -2 -229 -2 -302v-335h-80z" />
-    <glyph glyph-name="integralbottom" unicode="&#x2321;" horiz-adv-x="399" 
-d="M214 893v-212c0 -77 -2.39999 -254.1 -14 -434c-6.10001 -94.7 -23.9 -154.6 -36 -176c-15.3 -27 -22.6 -34.2 -41.5 -48c-21.2 -15.5 -63 -23 -91.5 -23c-28 0 -52 18 -52 43c0 22 16 39 40 39c16.4 0 26 -7 33 -16.5c7.1 -9.6 15 -16.5 38 -16.5c12.9 0 29 16 32 42
-c4.9 42.8 9.10001 99.2 10 165c2 141 2 229 2 302v335h80z" />
-    <glyph glyph-name="uni2329" unicode="&#x2329;" horiz-adv-x="351" 
-d="M131 267l-3 -4l3 -4c60 -92 160 -270 210 -400c-4 -10 -13 -12 -22 -12c-66 138 -175 291 -250 378l-33 38l33 38c75 87 184 240 250 378c10 0 18 -2 22 -12c-50 -130 -150 -308 -210 -400z" />
-    <glyph glyph-name="uni232A" unicode="&#x232a;" horiz-adv-x="351" 
-d="M220 258l3 4l-3 4c-60 92 -160 270 -210 400c4 10 13 12 22 12c66 -138 175 -291 250 -378l33 -38l-33 -38c-75 -87 -184 -240 -250 -378c-10 0 -18 2 -22 12c50 130 150 308 210 400z" />
-    <glyph glyph-name="uni2627" unicode="&#x2627;" horiz-adv-x="586" 
-d="M318 604v-221c11 -2 22 -4 41 -4c79 0 125 18 125 115c0 114 -60 122 -116 122c-15 0 -34 -5 -50 -12zM187 306c-12 0 -13 -4 -13 -9c0 -4 6 -11 22 -25l50 -40.1v344.1c0 34 -24 40 -40 40c-8 0 -29 -2 -33 -2c-6 0 -7 4 -7 6v18c13 0 66 3 109 5c47 3 79 4 100 4
-c149 0 178 -84 178 -137c0 -76 -42 -161 -189 -161c-24 0 -34 4 -46 9v-163c2.89999 1.8 6.10001 4.2 10 7l92 69c21 16 23 22 23 27s-4 8 -10 8s-10 2 -10 6v14l4 2s22 -2 65 -2c44 0 57 2 57 2l2 -2v-14c0 -5 -9 -6 -17 -6h-2c-17 0 -28 -8 -66 -35l-125 -94
-c-4 -2 -5 -6 -5 -9c0 -1 1 -3 2 -4l139 -107c44 -34 45 -36 50 -36h1c14 0 20 -1 20 -6v-14l-3 -1s-41 1 -67 1c-34 0 -87 -1 -87 -1l-3 1v15c0 4 4 5 11 5h1c9 0 11 2 11 8c0 3 -7 9 -38 35l-55 40.9v-40.9c0 -27 10 -39 30 -39h4c3 0 7 -3 7 -7v-17l-2 -2s-38 2 -73 2
-c-33 0 -82 -2 -82 -2l-2 2v17c0 4 3 7 7 7h3c25 0 36 14 36 39v52.3l-80 -61.3c-19 -15 -24 -21 -24 -25c0 -7 2 -9 15 -9h1c7 0 9 -1 9 -5v-15l-1 -1s-38 1 -62 1c-21 0 -56 -1 -56 -1l-4 1v13c0 5 7 7 19 7h2c7 0 25 13 57 36l122 92c0.800003 0.800003 1.5 1.60001 2 2.2
-v5.10001c-0.600006 0.800003 -1.60001 1.8 -3 2.7l-139 112c-28 21 -46 35 -51 35h-1c-10 0 -18 3 -18 6v14l3 2l66 -2l90 2l4 -2v-14c0 -3 -5 -6 -10 -6z" />
-    <glyph glyph-name="uni2639" unicode="&#x2639;" horiz-adv-x="564" 
-d="M282 -8c-123 0 -221 100 -221 222c0 106.7 75.6 196.5 176.2 217.4c-19.4 54.2 -63 99.6 -112.2 142.6l39 5c51.3 -37.5 85.7 -85.1 102.7 -143.5h1l-19.7 99.5l26 22l22.9 -121.5c4.5 -0.299988 9 -0.700012 13.4 -1.29999c29.8 39.7 92 96.9 108.7 97.8h1
-c12 0 33 -25 33 -25c-32.9 -18.7 -91 -54.7 -110.6 -79.3c93.4 -26.4 161.6 -112.5 161.6 -213.7c0 -123 -99 -222 -222 -222zM282 407c-107 0 -193 -87 -193 -193s86 -193 193 -193c106 0 193 86 193 193s-86 193 -193 193zM187 287c0 14 11 25 25 25s25 -11 25 -25
-s-11 -25 -25 -25s-25 11 -25 25zM322 287c0 14 11 25 25 25c13 0 25 -11 25 -25s-12 -25 -25 -25c-14 0 -25 11 -25 25zM270 188c5 0 10 0 15 -1c18 -4 43 -21 58 -21c3 0 13 -3 23 -4l4 -7c-7 -10 -19 -14 -27 -14c-8.70001 0 -17.4 1.3 -26.6 3.2l-1.39999 -28.2
-c-1 -20 -11 -34 -33 -34c-20 0 -33 13 -33 30l-1.60001 41.6c-16.8 -0.700012 -37.9 -2.60001 -51.4 -7.60001l-2 5c8 2 45 37 76 37zM276 147l-1 -46l10 2l-5 43z" />
-    <glyph glyph-name="uni263A" unicode="&#x263a;" horiz-adv-x="564" 
-d="M282 -8c-123 0 -221 100 -221 222c0 104.9 73.3 193.5 171.4 216.3c-21.4 24.5 -76.5 58.7 -107.4 76.7c0 0 21 25 32 25h1c16.5 -0.900024 77.7 -57 107.8 -96.6c4.80002 0.300018 9.60001 0.600006 14.4 0.600006l22.8 121l26 -22l-20 -100.6
-c0.299988 0 0.600006 -0.100006 0.899994 -0.100006c16.9 59 51.5 106.9 103.1 144.7l40 -5c-51 -43.7 -95.3 -89.8 -114.2 -145.3c95.3 -25.2 165.2 -112.2 165.2 -214.7c0 -123 -99 -222 -222 -222zM282 407c-107 0 -193 -87 -193 -193s86 -193 193 -193
-c106 0 193 86 193 193s-86 193 -193 193zM187 287c0 14 11 25 25 25s25 -11 25 -25s-11 -25 -25 -25s-25 11 -25 25zM322 287c0 14 11 25 25 25c13 0 25 -11 25 -25s-12 -25 -25 -25c-14 0 -25 11 -25 25zM277 137c21 0 58 6 87 51l20 -13
-c-7.70001 -13.9 -28.4 -43.8 -67.3 -56.8l-1.70001 -32.2c-1 -20 -11 -34 -33 -34c-20 0 -33 13 -33 31l-1.3 33c-34.1 10 -54 37.4 -70.7 66l21 12c18 -32 37 -57 79 -57zM275.9 112l-0.899994 -41l10 2l-4.39999 39h-3.60001h-1.10001z" />
-    <glyph glyph-name="uni263B" unicode="&#x263b;" horiz-adv-x="564" 
-d="M276 110l4 -1l5 -36l-10 -2zM277 137c-42 0 -61 25 -79 57l-21 -12c16 -29 36 -56 70 -66l2 -33c0 -18 13 -31 33 -31c22 0 32 14 33 34l1 33c39 12 60 42 68 56l-20 13c-29 -45 -66 -51 -87 -51zM282 -8c-123 0 -221 100 -221 222c0 105 73 194 172 216
-c-22 25 -77 59 -108 77c0 0 21 25 32 25h1c16 -1 78 -58 108 -97c5 0 9 1 14 1l23 121l26 -22l-20 -101h1c17 59 52 107 103 145l40 -5c-51 -44 -95 -90 -114 -146c95 -25 165 -111 165 -214c0 -123 -99 -222 -222 -222zM183 287c0 -14 11 -26 25 -26c15 0 27 12 27 26
-s-12 26 -27 26c-14 0 -25 -12 -25 -26zM324 287c0 -14 12 -26 26 -26s26 12 26 26s-12 26 -26 26s-26 -12 -26 -26z" />
-    <glyph glyph-name="uni2663" unicode="&#x2663;" horiz-adv-x="777" 
-d="M429 124c0 -43 13 -95 47 -103v-21h-155v21c39 8 47 50 47 102c0 37 -2 58 -17 58c-37 0 -68 -91 -171 -91c-75 0 -125 54 -125 132c0 53 26 144 131 144c66 0 118 -50 152 -50c8 0 18 3 18 17c0 37 -110 51 -110 154c0 54 42 120 154 120c103 0 152 -59 152 -120
-c0 -104 -111 -120 -111 -153c0 -10 9 -18 19 -18c30 0 88 51 153 51c114 0 130 -105 130 -145c0 -77 -47 -131 -125 -131c-103 0 -134 91 -171 91c-11 0 -18 -7 -18 -58z" />
-    <glyph glyph-name="uni2666" unicode="&#x2666;" horiz-adv-x="645" 
-d="M326 620c82 -111 171 -220 285 -318c-101 -99 -196 -205 -285 -319c-85 111 -183 217 -292 319c103 93 200 198 292 318z" />
-    <glyph glyph-name="uni2665" unicode="&#x2665;" horiz-adv-x="725" 
-d="M540 596c67 0 147 -37 147 -149c0 -124 -114 -244 -205 -339l-121 -125l-112 121c-81 87 -210 219 -210 344c0 116 87 148 145 148c149 0 161 -139 176 -139c17 0 26 139 180 139z" />
-    <glyph glyph-name="uni2660" unicode="&#x2660;" horiz-adv-x="722" 
-d="M426 182c-13 0 -31 -11 -31 -63c0 -42 11 -92 49 -98v-21h-168v21c36 6 51 45 51 99c0 45 -17 62 -28 62c-42 0 -39 -97 -146 -97c-47 0 -116 34 -116 128c0 51 17 82 51 118c102 107 180 190 271 302c89 -110 151 -183 274 -302c38 -37 53 -81 53 -121
-c0 -81 -61 -125 -118 -125c-105 0 -105 97 -142 97z" />
-    <glyph glyph-name="franc" unicode="&#x20a3;" horiz-adv-x="465" 
-d="M322 379v-41h-122v-50h122v-41h-122v-171c0 -30 15 -46 58 -46h28c4 0 8 -4 8 -9v-20l-2 -2s-99 2 -137 2c-41 0 -133 -2 -133 -2l-1 2v20c0 5 4 9 9 9h27c42 0 58 13 58 46v171h-92v41h92v50h-92v41h92v150c0 37 -10 48 -55 48h-31c-4 0 -8 3 -8 8v19l1 2s121 -2 135 -2
-h83h195l21 -169l-28 -4c-16 76 -46 132 -115 132h-74c-23 0 -39 -7 -39 -34v-150h122z" />
-    <glyph glyph-name="lira" unicode="&#x20a4;" horiz-adv-x="465" 
-d="M155 90c62 0 90 -15 112 -30c18 -12 35 -20 62 -20c30 0 89 7 114 42l7 -6c-19 -52 -65 -89 -139 -89c-39 0 -71 17 -101 34c-26 15 -51 28 -78 28c-35 0 -44 -17 -44 -28c0 -27 -24 -39 -43 -39c-14 0 -27 12 -27 25c0 24.4 24.1 44.8 52.9 59.2
-c4.7 3.9 9.2 8.3 15.1 14.8c39.3 41.8 51.1 103.6 54.1 162h-96.1v41h97v50h-97v41h97.3c2.8 75.9 26.2 126.5 77.7 177c35 36 80 55 133 55c23 0 80 -11 80 -46c0 -25 -17 -40 -41 -40c-15 0 -24 8 -36 19c-13 12 -28 23 -50 23c-46 0 -87 -66 -87 -153v-35h124v-41h-124
-v-31c0 -6.5 0 -12.9 -0.199997 -19h124.2v-41h-126.6c-7.79999 -83.1 -32.3 -125.3 -64.4 -150c-1.60001 -1.2 -3.3 -2.4 -4.89999 -3.5c3.29999 0.300003 6.29999 0.5 8.89999 0.5z" />
-    <glyph glyph-name="peseta" unicode="&#x20a7;" horiz-adv-x="930" 
-d="M176 577v-273c12 -2 24 -5 45 -5c83 0 131 44 131 146c0 120 -63 144 -122 144c-17 0 -37 -6 -54 -12zM100 68v478c0 37 -25 42 -42 42c-7 0 -31 -1 -35 -1c-6 0 -6 4 -6 7v18c13 0 69 3 115 5c49 3 83 4 105 4c158 0 189 -103 189 -158
-c0 -16.5 -1.79999 -34.4 -6.10001 -52.4c46 7.79999 59.1 44.1 59.1 107.4v19l53 18v-146h106c4 0 6 -3 6 -7v-19c0 -8 -12 -11 -22 -11h-90v-242c0 -59 7 -87 33 -87c20.1 0 36.7 4.9 56.3 17.7l-3.29999 74.3l22 1c2 -22 11 -68 36 -92c10 -10 39 -27 74 -27
-c37 0 87 22 87 71c0 41 -25 68 -102 102c-71 30 -111 47 -111 118c0 65 62 114 138 114c49 0 99 -15 117 -26l12 -114l-23 -1c-29 101 -85 113 -105 113c-37 0 -81 -17 -81 -71c0 -40 24 -52 76 -74c77 -34 143 -63 143 -140c0 -95 -94 -119 -148 -119c-34 0 -63 4 -87 10
-c-6 2 -12 2 -18 2c-5 0 -14 0 -24 -2l-1.20001 26.5c-28.9 -24.3 -59.2 -37.5 -91.8 -37.5c-44 0 -68 28 -68 96v287h-56.3c-25.7 -56.3 -80.2 -105 -181.7 -105c-25 0 -36 5 -49 11v-210c0 -29 16 -42 53 -42h26c4 0 7 -3 7 -7v-18l-1 -2s-83 2 -120 2
-c-34 0 -123 -2 -123 -2l-1 2v18c0 4 2 7 6 7h26c39 0 51 16 51 42z" />
-    <glyph glyph-name="uni20AF" unicode="&#x20af;" horiz-adv-x="1062" 
-d="M927 264c0 80 -41 105 -97 105c-46 0 -103 -24 -134 -156l-43 -185c9 2 27 22 34 29c24 -24 42 -33 69 -33c112 0 171 132 171 240zM595 -191l-77 -28l-7 16c19 31 42 85 68 196l40 178c29 125 64 156 92 180c47 38 106 52 149 52c92 0 148 -56 148 -136
-c0 -105 -97 -270 -271 -270c-38 0 -62 6 -86 19c-17 -72 -34 -166 -56 -207zM229 342l-56 -278c-1 -4 -1 -7 -1 -13c0 -17 1 -22 67 -22c206 0 257 160 257 298c0 116 -61 225 -205 225h-5.10001c-20.2 -45.6 -37.3 -109.8 -56.9 -210zM243.9 576.4
-c35.2 48.6 77.1 76.6 126.1 98.6l5 -13c-30.9 -23.7 -54.3 -46.2 -74.2 -80.5c8.30002 0.299988 16.7 0.5 25.2 0.5c139 0 247 -110 247 -252c0 -175 -115 -331 -314 -331c-83 0 -102 2 -134 2l-116 -2l3 17c1 4 4 8 8 8h27c34 0 48 12 54 41l55 276
-c17.8 90.9 40.5 156.1 68 204.5c-62 -11.9 -120 -38.6 -183 -67.5l-10 20c74.5 43.1 141.1 68.1 212.9 78.4z" />
-    <glyph glyph-name="uni20A2" unicode="&#x20a2;" horiz-adv-x="465" 
-d="M255 -17c-141 0 -230 127 -230 312c0 195 107 323 242 323c51 0 84 -25 99 -25c5 0 8 2 8 13v9l26 2l14 -165l-27 -2c-7 89 -73 131 -122 131c-94 0 -148 -126 -148 -271c0 -160.3 36 -252.2 108 -275.2v207.2c0 30 -13 38 -29 38c-4 0 -8 0 -12 -1l-5 26
-c41 10 52 15 79 28c10 4 17 7 23 7h16l-2 -88h2c21 31 55 89 95 89c31 0 51 -18 51 -41c0 -19 -13 -42 -33 -42c-18 0 -32 7 -38 22c-5 11 -13 12 -19 12c-12 0 -57 -65 -57 -98v-161.1c37.6 9.5 71 37 89 87.1l25 -7c-21 -71 -79 -130 -155 -130z" />
-    <glyph glyph-name="peso" unicode="&#x20b1;" horiz-adv-x="465" 
-d="M456 506c0 -22 11 -35 21 -42h-58v-1c0 -15.1 -1.5 -31.5 -5 -48h42c0 -22 11 -35 21 -42h-76.5c-25.1 -56.7 -79.1 -106 -180.5 -106c-25 0 -37 5 -49 11v-210c0 -29 15 -42 53 -42h24c4 0 9 -3 9 -7v-18l-2 -2s-83 2 -120 2c-34 0 -112 -2 -112 -2l-1 2v18c0 4 3 7 7 7
-h14c39 0 52 16 52 42v305h-45c-10 7 -21 20 -21 42h66v49h-45c-10 7 -21 20 -21 42h66v40c0 37 -25 42 -42 42c-8 0 -20 -1 -24 -1c-6 0 -7 4 -7 7v18c13 0 59 3 105 5c49 3 82 4 103 4c122.2 0 168.4 -61.6 183.1 -115h42.9zM171 506h168.1c-17.8 67.6 -67.1 83 -115.1 83
-c-16 0 -36 -6 -53 -12v-71zM171 464v-49h173.5c1 9.39999 1.5 19.4 1.5 30c0 6.60001 -0.200012 13 -0.600006 19h-174.4zM171 373v-69c11 -2 24 -5 45 -5c59.9 0 101 22.9 119.3 74h-164.3z" />
-    <glyph glyph-name="congruent" unicode="&#x2245;" horiz-adv-x="527" 
-d="M69 364c13 65 67 128 128 128c23 0 50.5 -13.8 75 -32c27 -20 50 -33 72 -33c28 0 77 17 99 67c8 0 13.7 -1.89999 17 -6c-31 -107 -96 -120 -120 -120c-23 0 -52 15 -76 33c-24.2 18.1 -48 32 -73 32c-35 0 -82 -29 -105 -73h391c10 0 14 -9 14 -17
-c0 -10 -14 -33 -27 -33h-389c-9 0 -15 8 -15 16c0 15 13 34 25 34h1c-6 0 -11.3 1 -17 4zM464 144h-389c-9 0 -15 8 -15 16c0 15 13 34 25 34h392c10 0 14 -9 14 -17c0 -10 -14 -33 -27 -33z" />
-    <glyph glyph-name="uni2042" unicode="&#x2042;" horiz-adv-x="604" 
-d="M425.6 82.7c-11.1 2.60001 -23.1 3.4 -35.9 3.4c-41.9 0 -69.2 5.9 -69.2 31.6c0 12 7.70001 25.7 28.2 25.7c29.1 0 44.5 -28.2 82.1 -43.6c-3.39999 33.3 -19.7 56.4 -19.7 78.6c0 18 10.3 33.4 25.7 33.4c15.4 0 28.2 -9.40001 28.2 -29.9
-c0 -23.1 -14.6 -57.3 -16.3 -83c39.3 17.1 53.1 44.5 81.3 44.5c23.1 0 29 -17.2 29 -25.7c0 -25.7 -29.9 -31.6 -59 -31.6c-16.2 0 -31.6 -0.799995 -47 -3.4c29.1 -31.6 71 -40.2 71 -74.4c0 -15.4 -12.8 -24.8 -24.8 -24.8c-33.3 0 -39.3 55.6 -60.7 88.9
-c-21.4 -38.5 -27.4 -88.9 -59.9 -88.9c-14.5 0 -24.8 11.1 -24.8 23.9c0 36.8 43.6 43.7 71.8 75.3zM99.6 82.7c-11.1 2.60001 -23.1 3.4 -35.9 3.4c-41.9 0 -69.2 5.9 -69.2 31.6c0 12 7.7 25.7 28.2 25.7c29.1 0 44.5 -28.2 82.1 -43.6c-3.4 33.3 -19.7 56.4 -19.7 78.6
-c0 18 10.3 33.4 25.7 33.4c15.4 0 28.2 -9.40001 28.2 -29.9c0 -23.1 -14.6 -57.3 -16.3 -83c39.3 17.1 53.1 44.5 81.3 44.5c23.1 0 29 -17.2 29 -25.7c0 -25.7 -29.9 -31.6 -59 -31.6c-16.2 0 -31.6 -0.799995 -47 -3.4c29.1 -31.6 71 -40.2 71 -74.4
-c0 -15.4 -12.8 -24.8 -24.8 -24.8c-33.3 0 -39.3 55.6 -60.7 88.9c-21.4 -38.5 -27.4 -88.9 -59.9 -88.9c-14.5 0 -24.8 11.1 -24.8 23.9c0 36.8 43.6 43.7 71.8 75.3zM265.6 434.7c-11.1 2.59998 -23.1 3.39999 -35.9 3.39999c-41.9 0 -69.2 5.89999 -69.2 31.6
-c0 12 7.7 25.7 28.2 25.7c29.1 0 44.5 -28.2 82.1 -43.6c-3.39999 33.3 -19.7 56.4 -19.7 78.6c0 18 10.3 33.4 25.7 33.4c15.4 0 28.2 -9.39996 28.2 -29.9c0 -23.1 -14.6 -57.3 -16.3 -83c39.3 17.1 53.1 44.5 81.3 44.5c23.1 0 29 -17.2 29 -25.7
-c0 -25.7 -29.9 -31.6 -59 -31.6c-16.2 0 -31.6 -0.800018 -47 -3.39999c29.1 -31.6 71 -40.2 71 -74.4c0 -15.4 -12.8 -24.8 -24.8 -24.8c-33.3 0 -39.3 55.6 -60.7 88.9c-21.4 -38.5 -27.4 -88.9 -59.9 -88.9c-14.5 0 -24.8 11.1 -24.8 23.9c0 36.8 43.6 43.7 71.8 75.3z
-" />
-    <glyph glyph-name="uni03F8" unicode="&#x3f8;" horiz-adv-x="533" 
-d="M153 -207l-83 -31l-11 17c13 35 24 95 24 219v473c0 85 1 151 11 193l81 34l11 -18c-13 -34 -24 -85 -24 -209v-72c41 31 93 40 133 40c121 0 206 -84 206 -198c0 -154 -103 -251 -238 -251c-42 0 -70 8 -101 22v-101c0 -48 -1 -92 -9 -118zM415 199
-c0 158 -65 202 -145 202c-51 0 -108 -24 -108 -170v-207c10 3 25 25 30 33c33 -26 56 -37 85 -37c83 0 138 71 138 179z" />
-    <glyph glyph-name="uni03FB" unicode="&#x3fb;" horiz-adv-x="593" 
-d="M448 0v397l-2 1l-154 -392c-2.70001 -6.8 -27 -10 -33 -10c-4 0 -8.2 3.3 -11 10l-149 359l-2 -1v-591l-26 -6l-9 6v658l52 11l39 -11l136 -341l126 341l80 11l22 -11v-425l-58 -18z" />
-    <glyph glyph-name="uni23D3" unicode="&#x23d3;" horiz-adv-x="527" 
-d="M461 163v-50h-395v50h395zM456 357c-6 -71 -67 -143 -200 -143c-139 0 -194 73 -199 143h27c9 -39 64 -82 173 -82c99 0 165 43 172 82h27z" />
-    <glyph glyph-name="uni0243" unicode="&#x243;" horiz-adv-x="588" 
-d="M191 550v-184h74c83 0 142 30 142 115c0 102 -73 132 -129 132c-87 0 -87 -10 -87 -63zM148 645c36 0 90 2 125 2c186 0 215 -87 215 -154c0 -54.3 -44.9 -105.6 -95 -131v-2c87 -25 154 -80 154 -176c0 -86 -53 -186 -252 -186c-84 0 -110.3 2 -146 2
-c-37.1 0 -91 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v39h-130c-9 0 -13 8 -13 15c0 12 11 29 22 29h121v318c0 83 -17 88 -87 91c-6 6 -6 27 0 33c39 -1 93.3 -2 129 -2zM191 161v-43c0 -61 13 -87 83 -87c152 0 180 61 180 134c0 90 -57 167 -194 167h-69v-127h135
-c9 0 13 -8 13 -14c0 -12 -10 -30 -23 -30h-125z" />
-    <glyph glyph-name="afii10087" unicode="&#x445;" horiz-adv-x="490" 
-d="M182 358l61 -90c7.60001 -11.2 11.8 -12 19 -2l65 91c24.2 33.9 12.7 37 -24 41c-6 6 -6 27 0 33c26 -1 54 -2 84 -2s53 1 73 2c6 -6 6 -27 0 -33c-36.5 -3 -60 -8 -97 -55l-84 -107c-4.70001 -6 -4.20001 -9.10001 0 -15l90 -127c40.3 -56.9 54.7 -60 100 -63
-c6 -6 6 -27 0 -33c-24 1 -51 2 -89 2c-36 0 -69 -1 -99 -2c-6 6 -6 27 0 33c31.7 3.3 47.8 5.1 13 53l-58 80c-6.3 8.60001 -9.7 9.89999 -18 -2l-63 -91c-22.5 -32.5 -14 -36.3 22 -40c6 -6 6 -27 0 -33c-26 1 -54 2 -84 2s-52 -1 -72 -2c-6 6 -6 27 0 33
-c35 2 57.4 5.1 97 56l84 108c3.60001 4.60001 3.89999 7.8 -1 15l-87 127c-28 41 -56 58 -90 61c-6 6 -6 27 0 33c26 -1 56 -2 86 -2s74 1 101 2c6 -6 6 -27 0 -33c-44.7 -4.70001 -51.9 -6.20001 -29 -40z" />
-    <glyph glyph-name="uni2098" unicode="&#x2098;" horiz-adv-x="485" 
-d="M123 86c-4 -5 -9 -14 -9 -22v-100c0 -41 3 -44 37 -46c4 -8 4 -22 0 -29c-30 1 -37 1 -62 1c-23 0 -46 0 -76 -1c-4 6 -5 21 0 29c40 2 53 5 53 46v107c0 40 -9 45 -42 48c-1 4 -3 18 -2 22c43 6 64 12 81 20c5 0 6 -3 7 -6c3 -7 5 -20 5 -48c0 -3 0 -8.3 5 -1
-c24.3 35.3 49 55 85 55c35 0 57.3 -14.5 65.9 -50.9c14.6 17.4 49.9 50.9 85.1 50.9c46 0 80 -25 80 -92v-105c0 -41 8 -44 48 -46c5 -8 4 -23 0 -29c-30 1 -35.7 1 -71 1c-23.8 0 -31 0 -61 -1c-4 7 -4 21 0 29c34 2 36 5 36 46v95c0 51 -25 68 -56 68
-c-19.7 0 -39.5 -19.5 -57.6 -40.9c0.399994 -5.4 0.600006 -11.1 0.600006 -17.1v-105c0 -41 7.5 -43.5 38 -46c5 -8 4 -23 0 -29c-30 1 -25.7 1 -61 1c-23.8 0 -31 0 -61 -1c-4 7 -4 21 0 29c34 2 36 5 36 46v95c0 51 -15 68 -46 68c-21 0 -39 -18 -58 -41z" />
-    <glyph glyph-name="uni2099" unicode="&#x2099;" horiz-adv-x="342" 
-d="M127 86c-4 -5 -9 -14 -9 -22v-100c0 -41 3 -44 37 -46c4 -8 4 -22 0 -29c-30 1 -37 1 -62 1c-23 0 -46 0 -76 -1c-4 6 -5 21 0 29c40 2 53 5 53 46v107c0 40 -9 45 -42 48c-1 4 -3 18 -2 22c43 6 64 12 81 20c5 0 6 -3 7 -6c3 -7 5 -20 5 -48c0 -3 0 -8.3 5 -1
-c24.3 35.3 65 55 101 55c46 0 70 -25 70 -92v-105c0 -41 8 -44 48 -46c5 -8 4 -23 0 -29c-30 1 -35.7 1 -71 1c-23.8 0 -31 0 -61 -1c-4 7 -4 21 0 29c34 2 36 5 36 46v95c0 51 -15 68 -46 68c-21 0 -55 -18 -74 -41z" />
-    <glyph glyph-name="uni1FBD" unicode="&#x1fbd;" horiz-adv-x="181" 
-d="M79 652c38 0 60 -37 60 -73s-32 -98 -102 -106l-5 17c42 9 63 46 63 69c0 13 -6 21 -14 21c-41 0 -46 22 -46 38s14 34 44 34z" />
-    <glyph glyph-name="abreve.sc" unicode="&#xe098;" horiz-adv-x="556" 
-d="M180 660c11 -53 54 -90 108 -90c52 0 98 32 108 90l27 -12c-12 -86 -76 -135 -135 -135c-70 0 -121 50 -135 135zM95 105l162.8 356.8c20.5 2.80002 39.3 11.3 54.4 19.4l153.8 -377.2c23.6 -58 27 -66 80 -73c6 -6 6 -27 0 -33c-29 1 -58.2 2 -88 2
-c-32.5 0 -71 -1 -106 -2c-6 6 -6 27 0 33c54 5 52.5 12.9 31 67l-21 54h-187c-16.3 0 -18.3 -3.8 -21.7 -11.3l-19.3 -42.7c-23 -50 -16 -63 38 -67c6 -6 6 -27 0 -33c-31 1 -69.2 2 -96 2c-26 0 -48 -1 -66 -2c-6 6 -6 27 0 33c53 5 65 30 85 74zM350 186l-80 203l-7 -1
-l-74 -169c-8.5 -19.5 -10 -33 10 -33h151z" />
-    <glyph glyph-name="aogonek.sc" unicode="&#xe099;" horiz-adv-x="556" 
-d="M402 -224c-54 0 -93 31 -93 85c0 47.2 39 105 98.3 138.4c-18.5 -0.4 -37.4 -0.9 -55.3 -1.4c-6 6 -6 27 0 33c54 5 52.5 12.9 31 67l-21 54h-187c-16.3 0 -18.3 -3.8 -21.7 -11.3l-19.3 -42.7c-23 -50 -16 -63 38 -67c6 -6 6 -27 0 -33c-31 1 -69.2 2 -96 2
-c-26 0 -48 -1 -66 -2c-6 6 -6 27 0 33c53 5 65 30 85 74l162.8 356.8c20.5 2.80002 39.3 11.3 54.4 19.4l153.8 -377.2c23.6 -58 27 -66 80 -73c6 -6 6 -27 0 -33c-17.6 0.6 -35.3 1.2 -53.1 1.6c-74.4 -6 -123.9 -76.8 -123.9 -125.6c0 -32 22 -59 58 -59c30 0 50 15 69 36
-l16 -8c-24 -47 -74 -67 -110 -67zM350 186l-80 203l-7 -1l-74 -169c-8.5 -19.5 -10 -33 10 -33h151z" />
-    <glyph glyph-name="cacute.sc" unicode="&#xe09a;" horiz-adv-x="492" 
-d="M283 674c3 1 9 2 14 2c6.39999 0 32 -1 55 -23l3 -11l-115 -109c-15 -15 -23 -19 -30 -19s-14 6 -14 13c0 11.2 3.3 15.2 11.4 28zM276 -10c-74 0 -130.1 20.3 -170 57c-49.1 45.2 -69 113.5 -69 177c0 146 102 246 234 246c80 0 125 -16 163 -16
-c9.79999 -45.1 11.7 -86.9 12 -128c-10 -6.39999 -20 -6 -30 -3c-12 70 -59 114 -139 114c-75 0 -153 -35 -153 -203c0 -99 58 -206 157 -206c67 0 102 20 148 74c8 -2.3 18 -13 20 -20c-47 -63 -95 -92 -173 -92z" />
-    <glyph glyph-name="ccaron.sc" unicode="&#xe09b;" horiz-adv-x="492" 
-d="M245 513c-29 47 -66 92 -101 130l20 13c39 -29 72 -54 106 -90c37 38 71 63 108 90l19 -13c-35 -39 -73 -84 -102 -130h-50zM276 -10c-74 0 -130.1 20.3 -170 57c-49.1 45.2 -69 113.5 -69 177c0 146 102 246 234 246c80 0 125 -16 163 -16
-c9.79999 -45.1 11.7 -86.9 12 -128c-10 -6.39999 -20 -6 -30 -3c-12 70 -59 114 -139 114c-75 0 -153 -35 -153 -203c0 -99 58 -206 157 -206c67 0 102 20 148 74c8 -2.3 18 -13 20 -20c-47 -63 -95 -92 -173 -92z" />
-    <glyph glyph-name="dcaron.sc" unicode="&#xe09c;" horiz-adv-x="565" 
-d="M246 513c-29 47 -66 92 -101 130l20 13c39 -29 72 -54 106 -90c37 38 71 63 108 90l19 -13c-35 -39 -73 -84 -102 -130h-50zM188 76c0 -28 7 -45 83 -45c110 0 172 37 172 177c0 104 -23 221 -191 221c-39 0 -64 -6 -64 -31v-322zM148 460c29.3 0 65.3 2 133 2
-c167 0 249 -104 249 -237c0 -175 -124 -227 -235 -227c-80 0 -119.7 2 -146 2c-28.7 0 -74 -1 -112 -2c-6 6 -6 27 0 33c61 5 72 8 72 91v216c0 83 -11 87 -72 91c-6 6 -6 27 0 33c39 -1 83.6 -2 111 -2z" />
-    <glyph glyph-name="eogonek.sc" unicode="&#xe09d;" horiz-adv-x="477" 
-d="M290 -224c-54 0 -93 31 -93 85c0 47.5 39.5 105.6 99.8 139h-144.8c-32 0 -76 -1 -112 -2c-6 6 -6 27 0 33c61 5 72 8 72 91v216c0 83 -11 87 -72 91c-6 6 -6 27 0 33c36 -1 82.2 -2 111 -2h207c16.8 0 27.2 1 41 4c2 0 3 -1 3 -3c2 -7 14 -85 18 -119
-c-8 -4 -17 -6 -27 -5c-18 57 -31 90 -113 90h-57c-19 0 -32 -11 -32 -28v-142h57c64.8 0 67 11 69 56c5 5 23 5 28 0c-1 -25 -2 -57.5 -2 -71c0 -15.9 1 -50 2 -73c-5 -5 -23 -5 -28 0c-2 37 -3.20001 56 -69 56h-57v-150c0 -33.2 9.8 -44 52 -44h43c83 0 112 50 128 109
-c11 3 19 1 28 -4c-7 -42 -18 -97 -30 -138c0 0 -15.6 0.5 -36.2 1c-71.1 -9.2 -118.8 -77.5 -118.8 -125c0 -32 22 -59 58 -59c30 0 50 15 70 36l14 -8c-23 -47 -73 -67 -109 -67z" />
-    <glyph glyph-name="ecaron.sc" unicode="&#xe09e;" horiz-adv-x="477" 
-d="M222 509c-29 47 -66 92 -101 130l20 13c39 -29 72 -54 106 -90c37 38 71 63 108 90l19 -13c-35 -39 -73 -84 -102 -130h-50zM248 225h-57v-150c0 -33.2 9.8 -44 52 -44h43c83 0 112 50 128 109c11 3 19 1 28 -4c-7 -42 -18 -97 -30 -138c0 0 -66 2 -106 2h-154
-c-32 0 -76 -1 -112 -2c-6 6 -6 27 0 33c61 5 72 8 72 91v216c0 83 -11 87 -72 91c-6 6 -6 27 0 33c36 -1 82.2 -2 111 -2h207c16.8 0 27.2 1 41 4c2 0 3 -1 3 -3c2 -7 14 -85 18 -119c-8 -4 -17 -6 -27 -5c-18 57 -31 90 -113 90h-57c-19 0 -32 -11 -32 -28v-142h57
-c64.8 0 67 11 69 56c5 5 23 5 28 0c-1 -25 -2 -57.5 -2 -71c0 -15.9 1 -50 2 -73c-5 -5 -23 -5 -28 0c-2 37 -3.20001 56 -69 56z" />
-    <glyph glyph-name="gbreve.sc" unicode="&#xe09f;" horiz-adv-x="541" 
-d="M180 660c11 -53 54 -90 108 -90c52 0 98 32 108 90l27 -12c-12 -86 -76 -135 -135 -135c-70 0 -121 50 -135 135zM472 91.2v-32.2c0 -7 4 -16 11 -23c-66.5 -36 -140 -46 -208 -46c-143 0 -238 103 -238 230c0 158 114 250 257 250c56 0 130 -16 160 -16
-c9.39999 -45.3 11.9 -87 13 -128c-10 -6.5 -20 -6.10001 -30 -3c-15 64 -57 114 -156 114c-96 0 -154 -83 -154 -204c0 -82 41 -210 166 -210c35 0 68 5 100 14v54c0 83 -5 87 -66 91c-6 6 -6 27 0 33c29 -1 74.7 -2 105 -2c30.7 0 59 1 77 2c6 -6 6 -27 0 -33
-c-31 -5 -37 -8 -37 -90.8z" />
-    <glyph glyph-name="lacute.sc" unicode="&#xe0a0;" horiz-adv-x="431" 
-d="M208 670c3 1 9 2 14 2c6.39999 0 32 -1 55 -23l3 -11l-115 -109c-15 -15 -23 -19 -30 -19s-14 6 -14 13c0 11.2 3.3 15.2 11.4 28zM379 0h-224s-66 -1 -115 -2c-6 6 -6 27 0 33c70 3 72 8 72 91v216c0 83 -11 87 -72 91c-6 6 -6 27 0 33c37 -1 79.7 -2 111 -2
-c34.3 0 75 1 112 2c6 -6 6 -27 0 -33c-61 -5 -72 -8 -72 -91v-269c0 -19 14 -35 37 -35h45c63 0 92 49 108 108c11 3 19 1 28 -4c-7 -42 -30 -138 -30 -138z" />
-    <glyph glyph-name="lslash.sc" unicode="&#xe0a1;" horiz-adv-x="431" 
-d="M253 333l18 -30l-80 -46.9v-187.1c0 -19 14 -35 37 -35h45c63 0 92 49 108 108c11 3 19 1 28 -4c-7 -42 -30 -138 -30 -138h-224s-66 -1 -115 -2c-6 6 -6 27 0 33c70 3 72 8 72 91v87.7l-78 -45.7l-17 30l95 56v88c0 83 -11 87 -72 91c-6 6 -6 27 0 33
-c37 -1 79.7 -2 111 -2c34.3 0 75 1 112 2c6 -6 6 -27 0 -33c-61 -5 -72 -8 -72 -91v-41.5z" />
-    <glyph glyph-name="nacute.sc" unicode="&#xe0a2;" horiz-adv-x="602" 
-d="M378 671c3 1 9 2 14 2c6.39999 0 32 -1 55 -23l3 -11l-115 -109c-15 -15 -23 -19 -30 -19s-14 6 -14 13c0 11.2 3.29999 15.2 11.4 28zM155 122c0 -83 11 -86 72 -91c6 -6 6 -27 0 -33c-30 1 -66 2 -96 2s-65 -1 -95 -2c-6 6 -6 27 0 33c61 4 72 8 72 91v274
-c-10 18 -21 30 -59 33c-3 0 -9 2 -9 6v24l2 3l142 -2l229 -311c31 -42 34 -25 34 2v187c0 83 -11 87 -72 91c-6 6 -6 27 0 33c30 -1 65 -2 95 -2s66 1 96 2c6 -6 6 -27 0 -33c-61 -5 -72 -8 -72 -91v-323c0 -20 -10 -27 -22 -27c-15 0 -31 6 -46 22l-235 313
-c-23.3 28.7 -36 38.2 -36 -11v-190z" />
-    <glyph glyph-name="ncaron.sc" unicode="&#xe0a3;" horiz-adv-x="602" 
-d="M276 509c-29 47 -66 92 -101 130l20 13c39 -29 72 -54 106 -90c37 38 71 63 108 90l19 -13c-35 -39 -73 -84 -102 -130h-50zM155 122c0 -83 11 -86 72 -91c6 -6 6 -27 0 -33c-30 1 -66 2 -96 2s-65 -1 -95 -2c-6 6 -6 27 0 33c61 4 72 8 72 91v274c-10 18 -21 30 -59 33
-c-3 0 -9 2 -9 6v24l2 3l142 -2l229 -311c31 -42 34 -25 34 2v187c0 83 -11 87 -72 91c-6 6 -6 27 0 33c30 -1 65 -2 95 -2s66 1 96 2c6 -6 6 -27 0 -33c-61 -5 -72 -8 -72 -91v-323c0 -20 -10 -27 -22 -27c-15 0 -31 6 -46 22l-235 313c-23.3 28.7 -36 38.2 -36 -11v-190z
-" />
-    <glyph glyph-name="eng.sc" unicode="&#xe0a4;" horiz-adv-x="602" 
-d="M155 122c0 -83 11 -86 72 -91c6 -6 6 -27 0 -33c-30 1 -66 2 -96 2s-65 -1 -95 -2c-6 6 -6 27 0 33c61 4 72 8 72 91v274c-10 18 -21 30 -59 33c-3 0 -9 2 -9 6v24l2 3l142 -2l229 -311c31 -42 34 -25 34 2v187c0 83 -11 87 -72 91c-6 6 -6 27 0 33c30 -1 65 -2 95 -2
-s66 1 96 2c6 -6 6 -27 0 -33c-61 -5 -72 -8 -72 -91v-242c0 -126 -33 -192 -87 -235c-42 -35 -83 -36 -106 -36c-21 0 -60 17 -60 50c0 21 23 34 36 34c28 0 39 -13 48 -25c7 -10 13 -17 26 -17c26.3 0 69.9 20.1 82.5 135.9c-2.5 2.1 -5 4.5 -7.5 7.1l-235 313
-c-23.3 28.7 -36 38.2 -36 -11v-190z" />
-    <glyph glyph-name="ohungarumlaut.sc" unicode="&#xe0a5;" horiz-adv-x="563" 
-d="M436 643c0 -6 -1 -13 -7 -19l-114 -110c-2 -2 -4 -2 -6 -2c-5 0 -14 5 -14 13c0 1 0 3 1 4l78 139c5 9 12 12 24 12c21 0 38 -18.4 38 -37zM304 649c0 -5 -1 -11 -5 -16l-102 -121c-2 -2 -5 -3 -8 -3c-6 0 -14 5 -14 13c0 1 0 2 1 3l64 146c6 13 22 14 26 14
-c20.9 0 38 -15.5 38 -36zM274 437c-75 0 -150 -68 -150 -203c0 -123 69 -211 166 -211c89 0 150 75 150 198c0 134 -77 216 -166 216zM527 235c0 -130 -88 -245 -252 -245c-135 0 -238 96 -238 232c0 147 107 248 246 248c130 0 244 -93 244 -235z" />
-    <glyph glyph-name="racute.sc" unicode="&#xe0a6;" horiz-adv-x="511" 
-d="M257 670c3 1 9 2 14 2c6.39999 0 32 -1 55 -23l3 -11l-115 -109c-15 -15 -23 -19 -30 -19s-14 6 -14 13c0 11.2 3.3 15.2 11.4 28zM347 346c0 60 -20.5 85 -90 85c-55.7 0 -66 -10 -66 -63v-130h44c88.5 0 112 29 112 108zM191 122c0 -83 9.5 -88 57 -91
-c6 -6 6 -27 0 -33c-32 1 -65.3 2 -96 2c-33.1 0 -74 -1 -112 -2c-6 6 -6 27 0 33c61 5 72 8 72 91v216c0 83 -11 87 -72 91c-6 6 -6 27 0 33c40 -1 82 -2 111 -2c30.3 0 87 4 112 4c118.7 0 171 -35 171 -118c0 -69 -51 -110.3 -85 -122v-2c12.5 -13 25 -30 37 -61l29 -75
-c20.1 -52 39 -58 75 -58c6.5 -7.8 8.5 -17.7 6 -28c-17.3 -4.3 -48 -7 -63 -7c-43 0 -77.1 23.5 -100 86l-22 60c-13.5 36.9 -27.5 70 -65 70h-55v-87z" />
-    <glyph glyph-name="rcaron.sc" unicode="&#xe0a7;" horiz-adv-x="511" 
-d="M207 509c-29 47 -66 92 -101 130l20 13c39 -29 72 -54 106 -90c37 38 71 63 108 90l19 -13c-35 -39 -73 -84 -102 -130h-50zM347 346c0 60 -20.5 85 -90 85c-55.7 0 -66 -10 -66 -63v-130h44c88.5 0 112 29 112 108zM191 122c0 -83 9.5 -88 57 -91c6 -6 6 -27 0 -33
-c-32 1 -65.3 2 -96 2c-33.1 0 -74 -1 -112 -2c-6 6 -6 27 0 33c61 5 72 8 72 91v216c0 83 -11 87 -72 91c-6 6 -6 27 0 33c40 -1 82 -2 111 -2c30.3 0 87 4 112 4c118.7 0 171 -35 171 -118c0 -69 -51 -110.3 -85 -122v-2c12.5 -13 25 -30 37 -61l29 -75
-c20.1 -52 39 -58 75 -58c6.5 -7.8 8.5 -17.7 6 -28c-17.3 -4.3 -48 -7 -63 -7c-43 0 -77.1 23.5 -100 86l-22 60c-13.5 36.9 -27.5 70 -65 70h-55v-87z" />
-    <glyph glyph-name="sacute.sc" unicode="&#xe0a8;" horiz-adv-x="412" 
-d="M231 670c3 1 9 2 14 2c6.39999 0 32 -1 55 -23l3 -11l-115 -109c-15 -15 -23 -19 -30 -19s-14 6 -14 13c0 11.2 3.3 15.2 11.4 28zM339 448c5.5 -38 6 -77 4 -106c-9 -5 -18 -5 -27 -2c-15 64 -59 97 -108 97c-52 0 -80 -28 -80 -71c0 -42.5 47 -67 97 -91
-c48.1 -23.1 139 -68 139 -146c0 -86.1 -57 -141 -146 -141c-77 0 -106 17 -125 17c-12 0 -22 -2 -33 -6c-7 32 -8.7 70.5 -11 141c9.9 3.8 19 4.5 32 2c18 -89 63 -121 119 -121c59 0 86 28 86 86c0 57 -43 80 -108 110c-41 19 -119 58 -119 131c0 82 78 122 148 122
-c81 0 107 -22 132 -22z" />
-    <glyph glyph-name="scedilla.sc" unicode="&#xe0a9;" horiz-adv-x="412" 
-d="M197 -96c-19 0 -29 -1 -45 -6l-6 6l35.6 85.4c-50.5 4.1 -72.9 15.6 -88.6 15.6c-12 0 -22 -2 -33 -6c-7 32 -8.7 70.5 -11 141c9.9 3.8 19 4.5 32 2c18 -89 63 -121 119 -121c59 0 86 28 86 86c0 57 -43 80 -108 110c-41 19 -119 58 -119 131c0 82 78 122 148 122
-c81 0 107 -22 132 -22c5.5 -38 6 -77 4 -106c-9 -5 -18 -5 -27 -2c-15 64 -59 97 -108 97c-52 0 -80 -28 -80 -71c0 -42.5 47 -67 97 -91c48.1 -23.1 139 -68 139 -146c0 -86.1 -57 -141 -146 -141h-2.5l-20.5 -55c8 2 17 3 26 3c40 0 71 -24 71 -62c0 -43 -46 -74 -107 -74
-c-32 0 -49 6 -74 17c0 12 3 19 10 26c27 -10 38 -14 58 -14c30 0 51 14 51 40c0 21 -10 35 -33 35z" />
-    <glyph glyph-name="scaron.sc" unicode="&#xe0aa;" horiz-adv-x="412" 
-d="M169 508c-29 47 -66 92 -101 130l20 13c39 -29 72 -54 106 -90c37 38 71 63 108 90l19 -13c-35 -39 -73 -84 -102 -130h-50zM339 448c5.5 -38 6 -77 4 -106c-9 -5 -18 -5 -27 -2c-15 64 -59 97 -108 97c-52 0 -80 -28 -80 -71c0 -42.5 47 -67 97 -91
-c48.1 -23.1 139 -68 139 -146c0 -86.1 -57 -141 -146 -141c-77 0 -106 17 -125 17c-12 0 -22 -2 -33 -6c-7 32 -8.7 70.5 -11 141c9.9 3.8 19 4.5 32 2c18 -89 63 -121 119 -121c59 0 86 28 86 86c0 57 -43 80 -108 110c-41 19 -119 58 -119 131c0 82 78 122 148 122
-c81 0 107 -22 132 -22z" />
-    <glyph glyph-name="tcedilla.sc" unicode="&#xe0ab;" horiz-adv-x="529" 
-d="M263 -96c-19 0 -29 -1 -45 -6l-6 6l40 96c-31.4 -0.2 -66.6 -1.1 -99 -2c-6 6 -6 27 0 33c61 5 72 8 72 91v253c0 39 -12 51 -43 51h-24c-65 0 -76 -20 -96 -92c-9 -0.899994 -18 -0.200012 -27 3c5.5 47 6.5 86 7 133c27 -4.70001 85 -10 183 -10h79
-c84 0 148.3 5.70001 183 10c1.5 -47.5 3 -84.5 8 -133c-7.60001 -4.70001 -16.8 -5.10001 -27 -3c-20 72 -33 92 -96 92h-26c-32 0 -42 -15 -42 -52v-252c0 -83 11 -87 72 -91c6 -6 6 -27 0 -33c-29.7 0.8 -61 1.6 -90 1.9l-25 -66.9c8 2 17 3 26 3c40 0 71 -24 71 -62
-c0 -43 -46 -74 -107 -74c-32 0 -49 6 -74 17c0 12 3 19 10 26c27 -10 38 -14 58 -14c30 0 51 14 51 40c0 21 -10 35 -33 35z" />
-    <glyph glyph-name="tbar.sc" unicode="&#xe0ac;" horiz-adv-x="529" 
-d="M304 122c0 -83 11 -87 72 -91c6 -6 6 -27 0 -33c-37 1 -76.5 2 -111 2s-75 -1 -112 -2c-6 6 -6 27 0 33c61 5 72 8 72 91v103h-75c-8 0 -11 8 -11 14c0 10 10 25 19 25h67v111c0 39 -12 51 -43 51h-24c-65 0 -76 -20 -96 -92c-9 -0.899994 -18 -0.200012 -27 3
-c5.5 47 6.5 86 7 133c27 -4.70001 85 -10 183 -10h79c84 0 148.3 5.70001 183 10c1.5 -47.5 3 -84.5 8 -133c-7.60001 -4.70001 -16.8 -5.10001 -27 -3c-20 72 -33 92 -96 92h-26c-32 0 -42 -15 -42 -52v-110h84c9 0 12 -8 12 -13c0 -11 -9 -26 -21 -26h-75v-103z" />
-    <glyph glyph-name="uring.sc" unicode="&#xe0ad;" horiz-adv-x="576" 
-d="M288 645c-31 0 -48 -23 -48 -53c0 -28 17 -53 48 -53s48 25 48 53c0 31 -18 53 -48 53zM200 592c0 46 42 85 88 85s88 -38 88 -85c0 -45 -40 -85 -88 -85c-46 0 -88 39 -88 85zM435 338c0 83 -11 87 -72 91c-6 6 -6 27 0 33c30 -1 65 -2 95 -2s66 1 96 2
-c6 -6 6 -27 0 -33c-61 -5 -72 -8 -72 -91v-114c0 -146 -41 -234 -196 -234c-109.5 0 -182 41 -182 191v157c0 83 -11 87 -72 91c-6 6 -6 27 0 33c36 -1 75.4 -2 111 -2c32.5 0 73 1 112 2c6 -6 6 -27 0 -33c-61 -5 -72 -8 -72 -91v-136c0 -93 21 -171 120 -171
-c132 0 132 94 132 180v127z" />
-    <glyph glyph-name="uhungarumlaut.sc" unicode="&#xe0ae;" horiz-adv-x="576" 
-d="M476 643c0 -6 -1 -13 -7 -19l-114 -110c-2 -2 -4 -2 -6 -2c-5 0 -14 5 -14 13c0 1 0 3 1 4l78 139c5 9 12 12 24 12c21 0 38 -18.4 38 -37zM344 649c0 -5 -1 -11 -5 -16l-102 -121c-2 -2 -5 -3 -8 -3c-6 0 -14 5 -14 13c0 1 0 2 1 3l64 146c6 13 22 14 26 14
-c20.9 0 38 -15.5 38 -36zM435 338c0 83 -11 87 -72 91c-6 6 -6 27 0 33c30 -1 65 -2 95 -2s66 1 96 2c6 -6 6 -27 0 -33c-61 -5 -72 -8 -72 -91v-114c0 -146 -41 -234 -196 -234c-109.5 0 -182 41 -182 191v157c0 83 -11 87 -72 91c-6 6 -6 27 0 33c36 -1 75.4 -2 111 -2
-c32.5 0 73 1 112 2c6 -6 6 -27 0 -33c-61 -5 -72 -8 -72 -91v-136c0 -93 21 -171 120 -171c132 0 132 94 132 180v127z" />
-    <glyph glyph-name="zacute.sc" unicode="&#xe0af;" horiz-adv-x="453" 
-d="M253 674c3 1 9 2 14 2c6.39999 0 32 -1 55 -23l3 -11l-115 -109c-15 -15 -23 -19 -30 -19s-14 6 -14 13c0 11.2 3.3 15.2 11.4 28zM154 460h194c23 0 57 2 68 2c4.5 0 6 -1.20001 6 -5c0 -8 -4 -15 -19 -36c-89 -121.5 -168.1 -239.4 -248 -362
-c-9.39999 -14 -10.1 -27.4 14 -27l119 4c62.2 2.1 84.3 47.4 111 107c10.4 0.600006 19.3 -1.89999 27 -7c-17 -58 -28 -105 -32 -136h-342c-11 0 -15 4 -15 10s3 11 7 17c81 125.5 162.3 250.7 257 378c4.39999 6 13.9 23.2 -2 23l-141 -4c-29 -0.799988 -63 -20 -84 -92
-c-8.7 -1.10001 -17.3 0.100006 -26 3c9 49 14 87 15 132c0 2.39999 1.6 3 4 3c17.5 -3.39999 54.9 -10 87 -10z" />
-    <glyph glyph-name="zdotaccent.sc" unicode="&#xe0b0;" horiz-adv-x="453" 
-d="M187 599c0 24 28 48 52 48c27 0 48 -28 48 -52c0 -21.1 -24 -48 -52 -48c-24 0 -48 26 -48 52zM154 460h194c23 0 57 2 68 2c4.5 0 6 -1.20001 6 -5c0 -8 -4 -15 -19 -36c-89 -121.5 -168.1 -239.4 -248 -362c-9.39999 -14 -10.1 -27.4 14 -27l119 4
-c62.2 2.1 84.3 47.4 111 107c10.4 0.600006 19.3 -1.89999 27 -7c-17 -58 -28 -105 -32 -136h-342c-11 0 -15 4 -15 10s3 11 7 17c81 125.5 162.3 250.7 257 378c4.39999 6 13.9 23.2 -2 23l-141 -4c-29 -0.799988 -63 -20 -84 -92c-8.7 -1.10001 -17.3 0.100006 -26 3
-c9 49 14 87 15 132c0 2.39999 1.6 3 4 3c17.5 -3.39999 54.9 -10 87 -10z" />
-    <glyph glyph-name="zcaron.sc" unicode="&#xe0b1;" horiz-adv-x="453" 
-d="M211 513c-29 47 -66 92 -101 130l20 13c39 -29 72 -54 106 -90c37 38 71 63 108 90l19 -13c-35 -39 -73 -84 -102 -130h-50zM154 460h194c23 0 57 2 68 2c4.5 0 6 -1.20001 6 -5c0 -8 -4 -15 -19 -36c-89 -121.5 -168.1 -239.4 -248 -362
-c-9.39999 -14 -10.1 -27.4 14 -27l119 4c62.2 2.1 84.3 47.4 111 107c10.4 0.600006 19.3 -1.89999 27 -7c-17 -58 -28 -105 -32 -136h-342c-11 0 -15 4 -15 10s3 11 7 17c81 125.5 162.3 250.7 257 378c4.39999 6 13.9 23.2 -2 23l-141 -4c-29 -0.799988 -63 -20 -84 -92
-c-8.7 -1.10001 -17.3 0.100006 -26 3c9 49 14 87 15 132c0 2.39999 1.6 3 4 3c17.5 -3.39999 54.9 -10 87 -10z" />
-    <glyph glyph-name="lcaron.sc" unicode="&#xe0b2;" horiz-adv-x="431" 
-d="M339 550c38 0 60 -37 60 -73s-32 -98 -102 -106l-5 17c42 9 63 46 63 69c0 13 -6 21 -14 21c-41 0 -46 22 -46 38s14 34 44 34zM379 0h-224s-66 -1 -115 -2c-6 6 -6 27 0 33c70 3 72 8 72 91v216c0 83 -11 87 -72 91c-6 6 -6 27 0 33c37 -1 79.7 -2 111 -2
-c34.3 0 75 1 112 2c6 -6 6 -27 0 -33c-61 -5 -72 -8 -72 -91v-269c0 -19 14 -35 37 -35h45c63 0 92 49 108 108c11 3 19 1 28 -4c-7 -42 -30 -138 -30 -138z" />
-    <glyph glyph-name="dcroat.sc" unicode="&#xe097;" horiz-adv-x="565" 
-d="M239 247v-39h-51v-132c0 -28 7 -45 83 -45c110 0 172 37 172 177c0 104 -23 221 -191 221c-39 0 -64 -6 -64 -31v-151h51zM148 460c29.3 0 65.3 2 133 2c167 0 249 -104 249 -237c0 -175 -124 -227 -235 -227c-80 0 -119.7 2 -146 2c-28.7 0 -74 -1 -112 -2
-c-6 6 -6 27 0 33c61 5 72 8 72 91v86h-79v39h79v91c0 83 -11 87 -72 91c-6 6 -6 27 0 33c39 -1 83.6 -2 111 -2z" />
-    <glyph glyph-name="tcaron.sc" unicode="&#xe0b3;" horiz-adv-x="529" 
-d="M247 508c-29 47 -66 92 -101 130l20 13c39 -29 72 -54 106 -90c37 38 71 63 108 90l19 -13c-35 -39 -73 -84 -102 -130h-50zM304 122c0 -83 11 -87 72 -91c6 -6 6 -27 0 -33c-37 1 -76.5 2 -111 2s-75 -1 -112 -2c-6 6 -6 27 0 33c61 5 72 8 72 91v253
-c0 39 -12 51 -43 51h-24c-65 0 -76 -20 -96 -92c-9 -0.899994 -18 -0.200012 -27 3c5.5 47 6.5 86 7 133c27 -4.70001 85 -10 183 -10h79c84 0 148.3 5.70001 183 10c1.5 -47.5 3 -84.5 8 -133c-7.60001 -4.70001 -16.8 -5.10001 -27 -3c-20 72 -33 92 -96 92h-26
-c-32 0 -42 -15 -42 -52v-252z" />
-    <glyph glyph-name="eight" unicode="8" horiz-adv-x="465" 
-d="M234 575c-60 0 -92 -38 -92 -84c0 -31 7 -64 70 -105l31 -19c27 20 80 65 80 119c0 46 -24 89 -89 89zM393 485c0 -64 -76 -116 -123 -139l71 -43c53.1 -32.2 78 -83 78 -141c0 -76 -64 -172 -195 -172c-106 0 -178 54 -178 156c0 39 17 84 58 120
-c25 22 51.5 39.5 80.5 55l-25.5 16c-60.9 38.2 -88 79 -88 135c0 77 66 138 168 138c98 0 154 -53 154 -125zM226 25c45 0 120 17 120 117c0 48 -25 95 -87 133l-47 28c-86 -57 -99 -127 -99 -157c0 -90 68 -121 113 -121z" />
-    <glyph glyph-name="uniFFFD" unicode="&#xfffd;" horiz-adv-x="984" 
-d="M22 293l470 470l470 -470l-470 -470zM404 504c0 29 41 56 96 56c57 0 98 -64 98 -123c0 -48 -20 -80 -60 -117c-65 -59 -66 -118 -66 -161v-46c0 -7 6 -11 13 -11c8 0 15 4 15 11v44c0 72 41.2 102.1 63 116c69 44 114 100 114 167c0 90 -63 153 -168 153
-c-115 0 -177 -72 -177 -131c0 -35 26 -46 43 -46c22 0 43 14 43 37c0 13 -3 19 -7 25c-4 5 -7 11 -7 26zM436 -28c0 -27 22 -49 49 -49s49 22 49 49c0 26 -22 48 -49 48s-49 -22 -49 -48z" />
-    <glyph glyph-name="uniA721" unicode="&#xa721;" horiz-adv-x="628" 
-d="M102 -133l143 31v102h74v-85l253 57l14 -76l-559 -125v299h75v-203z" />
-    <glyph glyph-name="Germandbls" unicode="&#x1e9e;" horiz-adv-x="714" 
-d="M189 122c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-50 1 -79 2 -129 2c-51 0 -81 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v173c0 201 58 363 320 363c62 0 126 -10 184 -29v-24l-147 -236c-2 -3 -2 -5 -2 -7c0 -4 2 -6 6 -6c101 0 189 -80 189 -175
-c0 -98 -77 -191 -209 -191c-66.5 0 -82 19 -127 28c-5 27 -9 58 -6 133c9.70001 4 19.3 5.5 29 3c19 -80 46 -125 113 -125c50 0 110 31 110 147c0 36 -25 149 -183 149c-6 0 -11 0 -18 -1l-6 24c48 68 141 222 141 245c0 14 -50 28 -92 28c-119 0 -217 -92 -217 -301v-198z
-" />
-    <glyph glyph-name="uni2201" unicode="&#x2201;" horiz-adv-x="446" 
-d="M225 -10c-72 0 -178 37 -178 294c0 256 106 294 178 294c93 0 144 -67 166 -169h-70c-13 59 -38 108 -96 108c-87 0 -109 -113 -109 -233c0 -122 22 -233 109 -233c58 0 83 48 96 106h70c-21 -101 -72 -167 -166 -167z" />
-    <glyph glyph-name="Ifraktur" unicode="&#x2111;" horiz-adv-x="543" 
-d="M50 482c0 99 85 176 213 176c49 0 142 -26 231 -76l-83 -94c-15 -17 -21 -36 -21 -50c0 -50 115 -181 115 -244c0 -37 -2 -91 -168 -190c-13 -7 -28 -16 -42 -16c-10 0 -23 3 -37 11l-137 75c-20 12 -33 16 -46 16c-14 0 -28 -6 -53 -17l-14 16l77 47c21 12 36 17 48 17
-s25 -6 38 -13l122 -66c18 -8 32 -14 48 -14c20 0 98 17 98 84c0 27 -11 55 -15 61l-75 114c-13 22 -20 49 -20 73c0 22 4 42 20 59l62 74c-37 18 -123 56 -188 56c-77 0 -139 -43 -139 -114c0 -29 10 -59 38 -85c31 -29 43 -32 102 -43l-1 -20c-77 11 -173 31 -173 163z" />
-    <glyph glyph-name="Rfraktur" unicode="&#x211c;" horiz-adv-x="708" 
-d="M23 475c0 109 76 183 191 183c27 0 54 -6 80 -19c43 -22 47 -44 71 -81l117 85c8 7 19 14 31 14c5 0 12 -2 18 -8l145 -126l-163 -115c111 -142 58 -333 119 -333c13 0 25 7 35 11l13 -21l-98 -79c-103 52 -62 195 -108 326c-11 31 -23 41 -48 41h-4l-10 18l173 120
-l-72 67c-17 17 -34 24 -49 24c-10 0 -22 -5 -33 -12l-56 -36c12 -79 16 -152 16 -208c0 -97 -2 -151 -51 -215c-42 -54 -120 -114 -141 -125l-34 28c-15 11 -26 19 -43 19c-13 0 -28 -7 -42 -17l-18 14l64 54c18 16 27 27 37 27c5 0 8 -1 12 -4l71 -50c55 81 60 163 60 276
-c0 173 -26 272 -136 272c-95 0 -115 -80 -115 -102c0 -32 21 -64 45 -76l86 -43c32 -16 43 -38 43 -57c0 -10 -4 -18 -9 -25l-32 -47l-20 15c4 6 17 14 17 25c0 46 -162 46 -162 180z" />
-    <glyph glyph-name="uni2119" unicode="&#x2119;" horiz-adv-x="656" 
-d="M478 478c0 118 -82 148 -143 148c-35 0 -63 -3 -87 -8v-296h51c75 0 122 17 146 51c20 28 33 63 33 105zM248 284v-212c0 -30 15 -44 55 -44h26c4 0 8 -3 8 -8v-19l-2 -2s-86 2 -126 2c-35 0 -190 -2 -190 -2l-2 2v19c0 5 3 8 8 8h56v589.4l-42 -1.40002c-5 0 -8 3 -8 7
-v19c21 5 176 12 293 12c63 0 134 -5 182 -50c36 -34 53 -75 53 -125c0 -105 -96 -158 -138 -176c-37 -17 -107 -19 -173 -19zM115 28h10c41 0 42 16 42 44v502c0 29 -3 46 -29 46c-3 0 -5 0 -7 -1l-16 -0.5v-590.5z" />
-    <glyph glyph-name="uni2136" unicode="&#x2136;" horiz-adv-x="468" 
-d="M238 520c168 0 170 -82 170 -231c0 -55 -4 -133 -43 -189h82l-23 -100h-404l24 100h306c9 42 20 81 20 143c0 156 -22 170 -103 170h-154c-49 0 -78 30 -78 71c0 72 49 81 49 81c5 -23 20 -45 47 -45h107z" />
-    <glyph glyph-name="uni2137" unicode="&#x2137;" horiz-adv-x="335" 
-d="M234 296c0 -79 55 -147 71 -231c2 -10 4 -23 4 -35c0 -13 -2 -27 -8 -36c-46 0 -44 115 -74 164h-7l-74 -154l-122 -4c0 6 -3 17 -3 31c0 5 0 10 1 16c5 26 13 48 35 53c106 19 153 59 153 196c0 97 -32 107 -83 114c-19 3 -78 13 -78 66c0 68 44 78 44 78
-c7 -34 40 -34 65 -34c42 0 84 -11 84 -72c0 -37 -8 -114 -8 -152z" />
-    <glyph glyph-name="uni2138" unicode="&#x2138;" horiz-adv-x="438" 
-d="M331 291c0 -69 11 -136 11 -206c0 -79 -44 -86 -68 -86h-11c8 12 12 29 12 50c0 63 -4 110 -4 158c0 90 28 161 85 206h-248c-50 0 -75 20 -75 61c0 74 42 80 42 80c6 -23 22 -34 49 -34h222c45 0 70 -18 70 -62c0 -83 -85 -59 -85 -167z" />
-    <glyph glyph-name="uni210C" unicode="&#x210c;" horiz-adv-x="578" 
-d="M545 169c0 -188 -183 -226 -216 -307c-28 32 -71 69 -118 69c-26 0 -49 -15 -66 -35l-10 8c33 37 75 82 130 82c39 0 77 -28 104 -54c69 46 104 113 104 195c0 86 -61 212 -158 212c-32 0 -70 -24 -96 -41c29 -34 61 -77 61 -124c0 -83 -97 -128 -149 -179l-65 51
-l-31 -24l-11 11l95 75l65 -50c20 14 39 36 39 63c0 95 -129 146 -129 261c0 105 103 150 165 215c27 -29 63 -51 102 -51c29 0 58 15 73 41l13 -4c-28 -44 -68 -90 -124 -90c-40 0 -73 24 -104 47c-37 -26 -65 -61 -65 -108c0 -45 22 -89 54 -120c50 28 100 57 143 94
-c109 -34 194 -116 194 -237z" />
-    <glyph glyph-name="q.superior" unicode="&#xe0d0;" horiz-adv-x="308" 
-d="M208 423v143c-16 19 -38 39 -63 39c-34 0 -62 -25 -62 -99c0 -90 36 -111 70 -111c22 0 35 7 55 28zM238 629c4 3 10 8 14 8c3 0 5 -3 5 -9v-339c0 -20 0.899994 -23.5 25 -27l7 -1c4 -0.600006 5 -2 5 -4v-19s-37 1 -61 1c-26 0 -66 -1 -66 -1v18c0 4 2 4.70001 5 5
-l11 1c14.4 1.29999 25 5 25 27v107c-19 -16 -38 -27 -61 -27c-66 0 -118 45 -118 122c0 64 37 140 114 140c29 0 55 -9 70 -26z" />
-    <glyph glyph-name="H" unicode="H" horiz-adv-x="730" 
-d="M618 122c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-44 1 -91.7 2 -129 2c-37.1 0 -85 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v199h-342v-199c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-44 1 -92.7 2 -129 2c-37.7 0 -86 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91
-v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c38 -1 79 -2 129 -2c51 0 92 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-160h342v160c0 83 -17 88 -87 91c-6 6 -6 27 0 33c44 -1 91.7 -2 129 -2c38 0 89 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-401z" />
-    <glyph glyph-name="zero.slash" unicode="&#xf638;" horiz-adv-x="465" 
-d="M232 575c-45 0 -106 -46 -106 -292c0 -36.9 1.8 -88.9 11 -136.6l160 386.4c-6.29999 11 -13 19.4 -20 25.2c-12 11 -28 17 -45 17zM228 -10c-38.7 0 -73 13.6 -101.4 42l-0.0999985 0.0999985l-28.5 -69.1l-32 12l35.9 86.7c-39.8 57.4 -62.9 142.9 -62.9 232.3
-c0 198 94 316 193 316c33.3 0 62 -11.5 85.2 -28.5l23.8 57.5l31 -11l-28.8 -70c3.89999 -4.20001 7.39999 -8.59998 10.8 -13c44 -58 68 -143 68 -242c0 -235 -117 -313 -194 -313zM315 489.6l-163.4 -396.4c15.3 -39.7 39.4 -68.2 77.4 -68.2c18 0 67 9 89 91
-c14 51 17 114 17 206c0 72.4 -7.89999 127.8 -20 167.6z" />
-    <glyph glyph-name="germandbls.sc" unicode="&#xe092;" horiz-adv-x="562" 
-d="M172 122c0 -83 9 -86 57 -91c6 -6 6 -27 0 -33c-32 1 -64.5 2 -96 2c-35 0 -74 -1 -112 -2c-6 6 -6 27 0 33c61 5 72 8 72 91v116c0 140 57 232 234 232c44 0 124 -11 165 -25v-16l-107 -150c-2 -3 -5.5 -11 2 -11c89 -4 141 -66 141 -135c0 -70 -58 -143 -153 -143
-c-35.3 0 -74 10 -102 30c-9 22 -12 53 -9 86c7.79999 5.4 16 7 26 2c13 -58 34 -85 74 -85c36 0 79 23 79 107c0 26 -21 116 -135 116c-4 0 -9 -1 -13 -2c-5 6 -4.89999 12 -4 18c36 48 102 133 102 150c0 11 -49 25 -80 25c-85 0 -141 -45 -141 -181v-134z" />
-    <glyph glyph-name="t_z" unicode="&#xe04a;" horiz-adv-x="532" 
-d="M164 137c0 -102 9 -116 24 -116h6c5.5 -5.8 9 -9 9 -19c-8 -3 -30 -12 -41 -12c-47 0 -73 28 -73 99v301h-65c-3 0 -4 1 -4 4v31c0 3 1 4 3 4c67 0 83 40 83 116v19l58 20v-155h251c29 0 64 6 67 6c7 0 13 -2 13 -6s-5 -16 -22 -42l-135 -220c90 0 165 -84 165 -184
-c0 -113 -81 -215 -198 -215c-84 0 -143 58 -143 90c0 18 11 36 32 36c23 0 37 -10 45 -34c7 -22 34 -57 75 -57c43 0 109 61 109 164c0 96 -33 166 -98 166c-11 0 -41 -7 -59 -11l-17 16l150 253l-235 -1v-253z" />
-    <glyph glyph-name="a.scalt" unicode="&#xe0be;" horiz-adv-x="506" 
-d="M163 189c-13.7 -35.1 -40.5 -134 -40.5 -134c-3.8 -16.5 3.5 -21 33.5 -26l12 -2c4 -1 7 -3 7 -6v-21l-2 -2s-49 2 -80 2c-28 0 -84 -2 -84 -2l-2 2v19c0 3 5 7.6 9 8c27 3 43 11 54 39c20 51 116 312 116 344c0 19 -9 23 -42 24c-6 0 -9 2 -9 6v20l3 2
-c32 -1 63 -2 109 -2c45 0 119 1 172 2l1 -2v-20c0 -3 -2 -5.79999 -5 -6c-56.2 -4.29999 -54 -12 -50 -31l68 -324c9 -43 25 -49 60 -52c4 -0.299999 7 -3 7 -6v-21l-2 -2s-67 2 -97 2c-28 0 -92 -2 -92 -2l-2 2v21c0 3 2 5 6 6l7 1c41.7 6 44.3 13.2 39 45l-20 113
-c-2 10 -12 12 -39 12h-90c-27 0 -42 0 -47 -9zM254 429c-18 0 -24 -12 -31 -33c-13 -40 -47 -155 -47 -155c0 -9 8 -11 36 -11h83c18 0 33 7 29 28l-24 128c-7.5 34.4 -24 43 -46 43z" />
-    <glyph glyph-name="metric" unicode="&#xe420;" horiz-adv-x="645" 
-d="M63 837v15h18h38v-15h-38v-23h38v-15h-38v-17h38v-15h-38h-18v15v17v15v23zM143 852h18v-6.90002l27 -22.2l25 20.5v8.59998h18v-85h-18v57l-21.1 -17.3l-3.09999 -3.79999l-0.800003 0.599976l-0.800003 -0.599976l-3.09999 3.79999l-23.1 19v-58.7h-18v85zM67 730v24
-h178v140h8h15h211v-24h-211v-47v-23v-90h149h62v-24h-211v-29h377v-24h-377v-192h190v-12h23v-417h164v-24h-164v12h-23v-12h-190v-203h213v-23h-213h-23v-8h-178v24h178v210h-178v24h178v192v23v503h-178zM458 12v405h-190v-190v-23v-192h190z" />
-    <glyph glyph-name="kreis" unicode="&#xe100;" horiz-adv-x="695" 
-d="M321 23c-157 0 -287 128 -287 283c0 156 131 282 287 282s287 -126 287 -282s-131 -283 -287 -283zM321 556c-140 0 -247 -111 -247 -250c0 -138 107 -251 247 -251c138 0 247 112 247 251s-108 250 -247 250z" />
-    <glyph glyph-name="germandbls.alt" unicode="&#xe04c;" horiz-adv-x="582" 
-d="M97 477c0 42 2 142 117 200c32 16 65 21 98 21c111 0 156 -62 156 -110c0 -50 -43 -89 -76 -115c-28 -24 -51 -44 -51 -82c0 -30 16 -55 99 -107c50 -32 108 -69 108 -156c0 -71 -57 -140 -154 -140c-88 0 -132 55 -132 92c0 15 13 26 30 26c21 0 31 -17 31 -37
-c0 -10 3 -17 7 -22c18 -18 43 -28 68 -28c33 0 85 15 85 81c0 69 -50 103 -103 137c-65 42 -107 79 -107 132c0 42 23 79 64 111c49 39 65 61 65 99c0 54 -44 91 -93 91c-52 0 -88 -25 -112 -71c-16 -31 -21 -62 -21 -95v-428c0 -29 12 -40 44 -43l22 -2c4 0 8 -3 8 -8v-23
-l-2 -2s-72 2 -114 2c-37 0 -113 -2 -113 -2l-2 2v23c0 5 3 8 7 8l26 2c37 3 45 14 45 43v314h-73c-4 0 -5 1 -5 6v13c0 8 5 20 24 20c42 0 54 21 54 48z" />
-    <glyph glyph-name="germandbls.ss03" unicode="&#xe04d;" horiz-adv-x="689" 
-d="M369 140l27 1c3 -25 15 -72 36 -96c10 -11 27 -29 64 -29c33 0 78 31 78 77c0 43 -19 71 -99 105c-73 32 -106 54 -106 129c0 63 55 115 133 115c50 0 82 -9 114 -25c6 -32 9 -66 10 -102l-26 -1c-21 82 -76 98 -97 98c-38 0 -72 -21 -72 -70c0 -40 14 -59 68 -79
-c81 -30 142 -67 142 -147c0 -95 -98 -128 -142 -128c-35 0 -55 4 -81 11c-6 1 -12 2 -19 2c-5 0 -13 -1 -23 -3c0 42 -3 93 -7 142zM48 140l27 1c3 -25 13 -73 36 -96c10 -11 32 -29 69 -29c35 0 77 30 77 77c0 43 -14 71 -93 105c-73 32 -106 54 -106 129
-c0 63 59 115 133 115c50 0 77 -9 108 -25c6 -32 10 -66 11 -102l-27 -1c-20 82 -71 98 -92 98c-38 0 -72 -16 -72 -70c0 -40 14 -59 69 -79c81 -30 137 -67 137 -147c0 -95 -96 -128 -143 -128c-35 0 -59 4 -85 11c-7 1 -12 2 -19 2c-5 0 -14 -1 -23 -3c0 42 -3 93 -7 142z
-" />
-    <glyph glyph-name="four.oldstyle" unicode="&#xe024;" horiz-adv-x="481" 
-d="M271 335c-69 -94.2 -139.7 -205.8 -191 -288h191v288zM430 47c11 0 15 -6 15 -16c0 -12 -15 -31 -29 -31h-69v-92c0 -47 21 -45 70 -49c6 -6 6 -27 0 -33c-32 1 -69.6 2 -109 2c-46 0 -86 -1 -118 -2c-6 6 -6 27 0 33c43 3 81 3 81 49v92h-204c-30 0 -36 27 -39 42
-c91.5 143 208 307.5 271 385c3.70001 4.5 9 11 16 11h32l2 -2c-1.70001 -7.79999 -2 -47 -2 -97v-292h83z" />
-    <glyph glyph-name="five.oldstyle" unicode="&#xe025;" horiz-adv-x="425" 
-d="M290 17c0 109 -51 152 -116 152c-36 0 -74 -4 -127 -24l34 288c35 -3 71 -5 108 -5c53 0 107 5 164 11l7 -4l-16 -68c-41 -4 -75 -6 -105 -6c-48 0 -80 5 -117 9l-20 -167c18 7 55 16 98 16c112 0 179 -87 179 -184c0 -126 -88 -218 -212 -218c-57 0 -142 34 -142 75
-c0 20 19 37 38 37c21 0 38 -15 51 -32c15 -20 28 -45 66 -45c60 0 110 70 110 165z" />
-    <glyph glyph-name="six.oldstyle" unicode="&#xe026;" horiz-adv-x="473" 
-d="M139.2 307c-5.89999 -28.8 -8.2 -55.5 -8.2 -78c0 -171 57 -205 120 -205c49 0 91 50 91 160c0 50 -22 146 -120 146c-17.4 0 -50 -1.39999 -82.8 -23zM148.3 343.3c29.8 13.7 68.7 21.7 94.7 21.7c136 0 182 -77 182 -163s-54 -213 -185 -213c-77 0 -192 40 -192 243
-c0 79 31 170 93 242c56 65 118 107 219 137c8 -5 12 -14 12 -26c-133 -49.8 -196.6 -150.8 -223.7 -241.7z" />
-    <glyph glyph-name="seven.oldstyle" unicode="&#xe027;" horiz-adv-x="438" 
-d="M164 364c-32 0 -65 -7 -87 -87c-11 -1.29999 -21.1 -0.100006 -32 3c8 52 19 112 20 160c0 3 1 3 4 3c18 -4 16 -14 50 -14h206c38 0 60 6 77 11l16 -12c-112 -273 -167 -439 -224 -609l-68 -3l-8 7c68 152 147 347 225 541h-179z" />
-    <glyph glyph-name="eight.oldstyle" unicode="&#xe028;" horiz-adv-x="469" 
-d="M236 575c-60 0 -92 -38 -92 -84c0 -31 7 -64 70 -105l31 -19c27 20 80 65 80 119c0 46 -24 89 -89 89zM395 485c0 -64 -76 -116 -123 -139l71 -43c53.1 -32.2 78 -83 78 -141c0 -76 -64 -172 -195 -172c-106 0 -178 54 -178 156c0 39 17 84 58 120
-c25 22 51.5 39.5 80.5 55l-25.5 16c-60.9 38.2 -88 79 -88 135c0 77 66 138 168 138c98 0 154 -53 154 -125zM228 25c45 0 120 17 120 117c0 48 -25 95 -87 133l-47 28c-86 -57 -99 -127 -99 -157c0 -90 68 -121 113 -121z" />
-    <glyph glyph-name="nine.oldstyle" unicode="&#xe029;" horiz-adv-x="469" 
-d="M326.8 121c5.90002 28.8 8.20001 55.5 8.20001 78c0 171 -57 205 -120 205c-49 0 -91 -50 -91 -160c0 -50 22 -146 120 -146c17.4 0 50 1.4 82.8 23zM317.7 84.7c-29.8 -13.7 -68.7 -21.7 -94.7 -21.7c-136 0 -182 77 -182 163s54 213 185 213c77 0 192 -40 192 -243
-c0 -79 -31 -170 -93 -242c-56 -65 -118 -107 -219 -137c-8 5 -12 14 -12 26c133 49.8 196.6 150.8 223.7 241.7z" />
-    <glyph glyph-name="uniE0E8" unicode="&#xe0e8;" horiz-adv-x="575" 
-d="M302 625c-61 0 -142 -29 -142 -147c0 -43 12 -77 32 -105c24 -35 72 -52 146 -52h51v296c-24 6 -52 8 -87 8zM313 654c152 0 223 -11 231 -13v-18c0 -4 -2 -7 -7 -7l-31 3h-6c-26 0 -30 -17 -30 -45v-502c0 -28 13 -44 54 -44h27c5 0 8 -3 8 -8v-19l-2 -2s-94 2 -129 2
-c-39 0 -126 -2 -126 -2l-2 2v19c0 5 4 8 8 8h26c40 0 55 13 55 44v211c-94 0 -133 -35 -169 -129c-29 -75 -74 -161 -165 -161c-15 0 -33 3 -43 7l4 20c56 0 93 64 137 162c20 43 43 89 116 112c-38 4 -97 28 -120 46c-46 38 -70 84 -70 139c0 50 17 90 52 124
-c49 46 119 51 182 51z" />
-    <glyph glyph-name="Tux" unicode="&#xe000;" horiz-adv-x="760" 
-d="M367 493c0 -2 -2 -3 -4 -3c-3.39999 0 -9 2 -9 12c0 2 1 3 2 3c2 0 11 -5.70001 11 -12zM317 521c0 5.59998 -3 22 -15 22c-1 0 -2.89999 -0.5 -4 -1l2 -6c0.399994 0.400024 1.39999 0.599976 2.5 0.599976c5.89999 0 7.89999 -8.09998 8.5 -15.6h6zM417 536
-c5 0 7 -6 9 -15h6c-1 5 -3 22 -15 22c-1 0 -2.5 -0.200012 -4 -1l2 -6h2zM326 493c0 7 10 10 13 10c1 0 1 -1 1 -2s-2 -6 -6 -11c-1 -1 -4 -1 -5 -1c-2 0 -3 1 -3 4zM299 493c-11.5 7.20001 -16 21 -16 29c0 16 8 28 20 28s22 -16 22 -34c0 -2 -0.200012 -4.10001 -1 -6l5 2
-s2 4.90002 2 19c0 11 -6 38 -30 38c-20 0 -27 -26 -27 -47c0 -10 5 -22 15 -35c0 0 7 4 10 6zM655 89c2 0 4 2 4 4c0 7.1 -8 26.6 -38.5 35.2c-10.6 3 -27.9 5.8 -37.5 5.8c10 28 14 50 14 71c0 61 -36 89 -55 94l-4 -6c34 -10 50 -60 50 -90c0 -15 -1 -29 -15 -72
-c-17 -6 -30 -26 -33 -31c0 -3 2 -4 3 -4c2 0 6.5 6.9 13.5 14c7.29999 7.4 14.7 13.2 27 13.2c27.4 0 45.7 -3.7 55 -10.4c14.5 -10.4 13.5 -23.8 16.5 -23.8zM393 504c-2 4 -4 9 -4 14c0 23 11 34 24 34c16 0 26 -20 26 -33c0 -14 -8 -23 -19 -26c8 -4 7 -2 21 -8
-c5 16 7 30 7 42c0 35 -19 49 -37 49c-22 0 -35 -15 -35 -33c0 -8 2 -24 8 -35c1 0 8 -3 9 -4zM427 459c-31 -22 -59 -39 -88 -39c-26 0 -44 13 -57 25c8.60001 -21.6 41 -49 66 -49c14 0 37 6 70 30l25 19c8 5 12 13 12 20c0 2 0 4 -1 6c-7 7 -80 39 -103 39
-c-15 0 -72 -25 -72 -50c0 -4 2 -6 6 -10c15 -15 31 -23 52 -23c17 0 42 7 86 39c2 -1 2 -5 4 -7zM493 -118c10 -17 27 -32 54 -32c28 0 51.5 21.9 70 37.5c17.6 14.8 39 33.3 58.5 44.3c36.8 20.8 61.5 21 61.5 44.2c0 21 -27.1 23.2 -43.9 36
-c-10.8 8.2 -17.5 23.4 -21.6 46.5c-1.79999 10 -2.79999 25.5 -9.5 25.5c-16 0 -35 -46 -71 -46c-13 0 -32 4 -40 19c-6 8 -9 19 -11 31c-7 6 -11 8 -15 8c-18 0 -22 -21 -22 -45v-9v-34c1 -8 2 -17 2 -25c0 -8.1 -5.5 -65.2 -12 -101zM79 -103
-c33 -4.4 71.3 -16.1 86.8 -22.4c18.8 -7.6 52.9 -20.6 68.2 -20.6c23 0 40 13 50 25c2 6 3 12 3 20c0 13.6 -4.20001 31.8 -17.7 56.2c-8.89999 16 -27.1 40 -41 59c-18.8 25.7 -32.8 61.3 -54.5 81.3c-7.7 7.1 -16.9 12.6 -28.8 15.5c-41 -8 -24 -33 -37 -42
-c-7.2 -3.6 -18.4 -5 -29 -5c-12 0 -23.7 2.2 -31 -4c-8 -6.8 -11 -18 -11 -28c0 -14 7 -31 7 -48c0 -33 -20.5 -38.2 -20.5 -60.2c0 -10.2 23.7 -22.6 55.5 -26.8zM174 157c0 43 29 103 46 123l-7 4c-12 -14 -48 -84 -48 -124c0 -14.5 0.899994 -25.1 16.3 -41.8
-c9.59999 -10.3 35 -30.4 53.5 -42.7c18.3 -12.2 39.8 -31.1 50.2 -43c9.29999 -10.6 14 -19.2 14 -25.5c0 -11 -19 -28 -32 -28c-1 0 -1 -1 -1 -2c0 -2 2 -4 9 -18c16 -20 49 -24 73 -24c27 0 97 4 147 77c0 38 -1 23 -1 38c0 39 12 55 27 55c5 0 11 -2 17 -6
-c3 19 4 38 4 58c0 65.8 -12.4 97.6 -25.8 120c-15.1 25.2 -33.2 38.5 -33.2 75c-21 42 -22 49 -39 83l-26 -19c-31 -23 -56 -30 -70 -30c-29.1 0 -43.5 14.5 -58 29c-0.899994 -6.5 -1 -10.3 -2.60001 -14.8c-3.5 -10 -10.6 -22.5 -15.5 -32.4
-c-30.7 -61.3 -13 -48.9 -41.1 -102.6c-25.6 -48.9 -39.8 -100.7 -39.8 -125.2c0 -6 1 -13 2 -20c-11 8 -19 18 -19 37zM379 -113c-28 0 -63 -3 -87 -14c-14 -20 -36 -27 -56 -27c-25.8 0 -62.5 16 -77.5 22.1c-16.9 6.89999 -37.8 12.1 -63.5 17.9c-20 5 -81 10 -81 34
-c0 24.6 21 37.3 21 58c0 8 -7 43 -7 54c0 18.5 7.3 30 15.2 36c4.5 3.4 12 5 26.8 5c17.7 0 22.8 0.5 31.8 5c9 21 5.2 20 13.2 30c-2.5 5.2 -3 11 -3 19c0 13.5 11.4 38.1 20.5 53c7.39999 12.1 16.7 30 21 38.5c6.60001 13.2 11 25.8 18.5 61.5
-c8.2 34.2 28.7 53 43.8 70.2c29.3 33.3 49.2 66.7 49.2 94.8c0 27 -9 63 -9 135c0 67 25 125 123 125c34 0 121 -15 134 -125c15 -111 -2 -135 78 -232c39 -49 78 -106 78 -198c0 -20 -2 -39 -8 -57c13.4 0 16.7 -14.5 21.7 -41c4.20001 -22 10.2 -29 29 -39.2
-c16.5 -9 34.3 -16.8 34.3 -33.8c0 -30.9 -22.6 -29 -63.2 -52.7c-16.2 -9.4 -39.7 -28.3 -56.8 -43c-23 -19.7 -46.4 -42.3 -77 -42.3c-31.5 0 -54.4 12.4 -64 37c-21 3 -64 9 -106 9z" />
-    <glyph glyph-name="uniE0E9" unicode="&#xe0e9;" horiz-adv-x="893" 
-d="M337 12c-4 -13 -14 -22 -28 -22c-15 0 -23 7 -28 22l-214 558c-10 33 -20 46 -53 46h-21c-7 0 -10 3 -10 8v22s60 -1 98 -1c51 0 131 1 131 1v-21c0 -7 -4 -9 -7 -9h-38c-19 0 -27 -5 -27 -18c0 -7 4 -15 7 -26l139 -362l36 -99l21 83l79 288l-36 90c-8 27 -28 45 -66 45
-h-20c-7 0 -9 3 -9 8v21s71 -1 111 -1c49 0 118 1 118 1v-22c0 -5 -3 -7 -7 -7h-29c-21 0 -28 -2 -28 -17c0 -6 3 -15 8 -28l143 -365l28 -86l30 99l106 354c4 10 4 22 4 28c0 14 -8 17 -28 17h-39c-5 0 -6 4 -6 7v20s62 -1 104 -1c32 0 86 1 86 1v-19c0 -8 -9 -8 -10 -8h-20
-c-29 0 -33 -11 -44 -44l-170 -564c-4 -13 -7 -21 -21 -21s-23 8 -28 22l-151 408z" />
-    <glyph glyph-name="uniE0EA" unicode="&#xe0ea;" horiz-adv-x="604" 
-d="M488 574c4 11 6 19 6 25c0 18 -16 19 -45 19h-9c-4 0 -8 3 -8 8v19l2 2s51 -3 90 -3c36 0 92 3 92 3l2 -2v-19c0 -5 -3 -8 -8 -8h-15c-33 0 -47 -12 -59 -44l-183 -563c-5 -14 -15 -23 -25 -23c-11 0 -19 9 -25 23l-222 561c-10 29 -25 44 -64 44h-13c-4 0 -8 3 -8 9v18
-l2 2s78 -3 117 -3c35 0 124 3 124 3l2 -2v-18c0 -6 -3 -9 -8 -9h-26c-35 0 -46 -7 -46 -22c0 -6 2 -13 5 -22l141 -356l32 -91l31 88z" />
-    <glyph glyph-name="K.alt" unicode="&#xe0eb;" horiz-adv-x="625" 
-d="M350 149l-103 141c-11 20 -25 32 -60 32v-250c0 -31 15 -45 55 -45h26c4 0 8 -3 8 -8v-19l-2 -2s-86 2 -126 2c-35 0 -128 -2 -128 -2l-2 2v19c0 5 3 8 7 8h27c41 0 54 17 54 45v502c0 30 -15 44 -54 44h-27c-4 0 -8 3 -8 8v19l2 1s87 -1 126 -1c36 0 129 1 129 1l2 -1
-v-19c0 -5 -3 -8 -8 -8h-26c-41 0 -55 -16 -55 -44v-211c31 0 59 17 78 36l154 146c18 17 37 42 37 58c0 9 -6 15 -22 15h-32c-5 0 -8 3 -8 8v19l2 1s79 -1 118 -1c35 0 104 1 104 1l2 -1v-19c0 -5 -3 -8 -8 -8h-18c-41 0 -79 -34 -108 -61l-197 -192l161 -216
-c44 -61 126 -143 180 -167l-9 -25c-111 3 -165 48 -271 192z" />
-    <glyph glyph-name="R.alt" unicode="&#xe0ec;" horiz-adv-x="597" 
-d="M277 618c-71 0 -88 -35 -88 -64v-229h48c97 0 178 28 178 153c0 118 -77 140 -138 140zM189 122c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-44 1 -91.4 2 -129 2c-38.5 0 -85 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33
-c47 -1 94 -2 129 -2c36 0 83 7 130 7c63 0 130 -3 178 -48c36 -34 53 -75 53 -125c0 -105 -90 -157 -133 -171l60.5 -154.5c84.7 -216.2 153 -216 256.5 -218.5c4 -8 4.5 -17.1 1 -24c-29 -13.5 -76 -18 -102 -18c-62.5 0 -158.9 31.2 -232.5 241.5l-41.5 118.5
-c-8.39999 24.1 -43 38 -127 38v-169z" />
-    <glyph glyph-name="uniE0F9" unicode="&#xe0f9;" horiz-adv-x="623" 
-d="M516.3 700c31 0 53 -21 53 -49c0 -31.5 -26 -41 -44 -44c-19 -2 -36 -8 -36 -31c0 -21 34 -66 86 -79c3.40002 -9.89999 1.79999 -19.1 -5 -25c-60 11 -120 59 -120 129c0 60 26 99 66 99zM326.3 703c31 0 53 -21 53 -49c0 -31.5 -26 -41 -44 -44c-19 -2 -36 -8 -36 -31
-c0 -21 34 -66 86 -79c3.40002 -9.89999 1.80002 -19.1 -5 -25c-60 11 -120 59 -120 129c0 60 26 99 66 99zM138.3 698c31 0 53 -21 53 -49c0 -31.5 -26 -41 -44 -44c-19 -2 -36 -8 -36 -31c0 -21 34 -66 86 -79c3.39999 -9.89999 1.8 -19.1 -5 -25c-60 11 -120 59 -120 129
-c0 60 26 99 66 99z" />
-    <glyph glyph-name="uniE0FB" unicode="&#xe0fb;" horiz-adv-x="640" 
-d="M505 698c40 0 66 -39 66 -99c0 -70 -58 -118 -118 -129c-7 7 -9 14 -9 24c52 13 88 59 88 80c0 23 -17 29 -36 31c-18 3 -44 12.5 -44 44c0 28 22 49 53 49zM317 698c40 0 66 -39 66 -99c0 -70 -58 -118 -118 -129c-7 7 -9 14 -9 24c52 13 88 59 88 80
-c0 23 -17 29 -36 31c-18 3 -44 12.5 -44 44c0 28 22 49 53 49zM129 698c40 0 66 -39 66 -99c0 -70 -58 -118 -118 -129c-7 7 -9 14 -9 24c52 13 88 59 88 80c0 23 -17 29 -36 31c-18 3 -44 12.5 -44 44c0 28 22 49 53 49z" />
-    <glyph glyph-name="c_t" unicode="&#xe03d;" horiz-adv-x="715" 
-d="M382 91c-44 -76 -92 -103 -151 -103c-130 0 -194 90 -194 220c0 141 88 231 195 231h4.89999c-35.1 36.4 -44.9 74.6 -44.9 119c0 72 70 140 190 140c125 0 184 -65 189 -174l5 -95h111c5 0 8 -2 8 -6v-20c0 -9 -14 -13 -24 -13h-95v-253c0 -62 7 -92 34 -92
-c26 0 45 8 71 28c10.9 -4.8 15 -10.8 18 -17c-38 -44 -79 -66 -124 -66c-46 0 -73 28 -73 99v301h-65c-3 0 -5 1 -5 4v31c0 3 1 4 4 4c67 0 88 55 88 95c0 89 -49 146 -152 146c-83 0 -147 -51 -147 -107c0 -50.1 18.9 -98.3 79 -134.6c49.3 -16.6 75 -50.8 75 -88.4
-c0 -29 -18 -44 -38 -44c-22 0 -42 11 -45 36c-3 33 -10 73 -69 73c-66 0 -105 -68 -105 -176c0 -112 64 -196 131 -196c43 0 80 27 111 72z" />
-    <glyph glyph-name="h.alt" unicode="&#xe04b;" horiz-adv-x="522" 
-d="M109 76v487c0 65 -10 78 -30 78l-32 2c-3.2 0.200012 -6 2 -6 5l-2 24c40.5 3 109.9 16 135 26c9 0 13 -3 13 -10c0 0 -3 -40 -3 -105v-206c51 46 87 65 133 65c77 0 157 -50 157 -226c0 -273 -119 -401 -240 -454c-7 5.3 -10.7 13.3 -11 24c105 74 173 177 173 427
-c0 133 -56 185 -101 185c-26 0 -59 -11 -111 -65v-257c0 -29 8.7 -40.2 42 -43l24 -2c4 -0.299999 8 -3 8 -8v-23l-2 -2c-50 1 -70 2 -111 2c-39 0 -59 -1 -109 -2l-1 2v23c0 5 2 7.6 7 8l24 2c33.2 2.8 43 14 43 43z" />
-    <glyph glyph-name="uniE04F" unicode="&#xe04f;" horiz-adv-x="526" 
-d="M168 429h223c29 0 62 5 65 5c5 0 13 -1 13 -6c0 -4 -7 -17 -20 -42l-120 -173c124 -8 163 -91 163 -168c0 -150 -113 -229 -205 -229c-83 0 -116 38 -116 101c0 18 17 39 34 39c22 0 32 -11 32 -33c0 -19 -10 -29 -10 -42c0 -33 46 -25 69 -25c50 0 116 84 116 176
-c0 75 -53 141 -132 141c-13 0 -30 -1 -46 -4l-7 9l145 212h-204v-318c0 -38 10 -82 -28 -82c-32 0 -47 10 -51 27c-2 10 0 37 0 55v318h-59c-4 0 -5 1 -5 6v13c0 8 4 20 18 20l46 0.100006c0 82.9 0.0999985 92.1 -2 114.9c-0.599998 7 8 9 14 12.7l58 26.3
-c9 0 13 -3 13 -10c0 0 -4 -40 -4 -105v-39z" />
-    <glyph glyph-name="uni27E6" unicode="&#x27e6;" horiz-adv-x="425" 
-d="M213 -156v802h-57v-802h57zM418 689v-43h-147v-802h147v-44h-320v889h320z" />
-    <glyph glyph-name="uni27E7" unicode="&#x27e7;" horiz-adv-x="425" 
-d="M212 -156h57v802h-57v-802zM7 689h321v-889h-321v44h147v802h-147v43z" />
-    <glyph glyph-name="uniE00A" unicode="&#xe00a;" horiz-adv-x="1403" 
-d="M480 84v-182c0 -58 6 -86 32 -86c25 0 43 7 68 26l17 -17c-37 -41 -76 -63 -118 -63c-44 0 -70 27 -70 95v227h-162l-74 1c-12 0 -121 -2 -121 -2l-2 2v18c0 5 4 8 8 8h28c40 0 49 8 49 41v357c0 29 -14 42 -52 42h-25c-4 0 -8 2 -8 7v18l2 2s83 -2 120 -2
-c34 0 122 2 122 2l2 -2v-18c0 -5 -3 -7 -7 -7h-25c-39 0 -52 -16 -52 -42v-340c0 -30 17 -48 45 -48h87c55 0 82 24 82 85v18l54 19v-122h105c4 0 7 -2 7 -5v-20c0 -8 -13 -12 -22 -12h-90zM1155 -3h105c5 0 8 2 8 8c0 47 -27 59 -48 59c-13 0 -55 -3 -65 -67zM1305 -113
-l12 -9c-22 -30 -56 -51 -97 -51c-78 0 -113 54 -113 119c0 87 59 137 113 137c75 0 93 -51 93 -99c0 -6 -4 -10 -10 -10h-150c0 -85 49 -119 81 -119c31 0 51 10 71 32zM895 81l-2 -51h2c36 43 63 51 93 51c51 0 62 -39 62 -90v-119c0 -16 6 -23 24 -24l11 -2c3 0 5 -1 5 -4
-v-11l-1 -1s-38 1 -62 1c-21 0 -55 -1 -55 -1l-2 1v11c0 3 2 4 5 4l8 2c18 2 24 8 24 24v123c0 40 -6 59 -37 59c-25 0 -46 -10 -75 -44v-138c0 -16 5 -22 24 -24l8 -2c3 0 5 -1 5 -4v-11l-1 -1s-36 1 -59 1s-59 -1 -59 -1l-1 1v11c0 3 2 4 5 4l10 2c19 2 25 8 25 24v142
-c0 28 -4 34 -13 35l-24 3l-1 13c40 7 62 12 78 18c2 0 3 0 3 -2zM678 155c0 15 12 27 27 27s28 -12 28 -27s-13 -27 -28 -27s-27 12 -27 27zM732 80c0 0 -2 -38 -2 -67v-142c0 -16 6 -23 24 -24l11 -2c2 0 5 -1 5 -4v-11l-1 -1s-37 1 -61 1c-23 0 -60 -1 -60 -1l-1 1v11
-c0 3 2 4 5 4l11 2c19 2 24 8 24 24v142c0 28 -4 34 -12 35l-25 3l-1 13c40 7 64 12 80 18c2 0 3 0 3 -2zM1065 358v142c0 28 -4 34 -12 35l-25 3l-1 13c40 7 63 12 79 18c1 0 2 0 2 -2l-2 -51h2c15 22 40 51 67 51c23 0 32 -11 32 -26s-10 -24 -25 -24c-11 0 -18 5 -23 10
-c-4 4 -8 5 -12 5c-6 0 -18 -10 -32 -29c-4 -5 -7 -13 -7 -20v-125c0 -16 6 -23 25 -24l16 -2c3 0 5 -1 5 -4v-11l-1 -1s-45 1 -67 1c-21 0 -59 -1 -59 -1l-1 1v11c0 3 1 4 4 4l11 2c18 1 24 8 24 24zM830 483h105c5 0 8 2 8 8c0 47 -27 59 -48 59c-13 0 -55 -3 -65 -67z
-M980 373l12 -9c-22 -30 -56 -51 -97 -51c-78 0 -113 54 -113 119c0 87 59 137 113 137c75 0 93 -51 93 -99c0 -6 -4 -10 -10 -10h-150c0 -85 49 -119 81 -119c31 0 51 10 71 32zM576 360c12 -14 24 -26 41 -26c54 0 80 49 80 114c0 55 -28 97 -63 97c-6 0 -36 -1 -58 -24
-v-161zM533 641c0 37 -5 44 -17 44l-18 2c-2 0 -3 1 -3 2l-1 14c23 2 62 9 77 15c5 0 7 -2 7 -6c0 0 -2 -23 -2 -60v-113c20 21 42 31 70 31c49 0 100 -43 100 -112c0 -91 -67 -144 -125 -144c-25 0 -43 7 -60 21c-5 -7 -13 -17 -18 -22c-6 0 -9 1 -12 3c2 12 2 22 2 44v281z
-M383 641c0 15 12 27 27 27s28 -12 28 -27s-13 -27 -28 -27s-27 12 -27 27zM437 566c0 0 -2 -38 -2 -67v-142c0 -16 6 -23 24 -24l11 -2c2 0 5 -1 5 -4v-11l-1 -1s-37 1 -61 1c-23 0 -60 -1 -60 -1l-1 1v11c0 3 2 4 5 4l11 2c19 2 24 8 24 24v142c0 28 -4 34 -12 35l-25 3
-l-1 13c40 7 64 12 80 18c2 0 3 0 3 -2z" />
-    <glyph glyph-name="zero.taboldstyle" unicode="&#xe118;" horiz-adv-x="465" 
-d="M230 404c-72 0 -110 -67 -110 -185c0 -113 28 -194 110 -194c90 0 112 81 112 194s-28 185 -112 185zM230 439c126 0 199 -82 199 -220c0 -146 -83 -229 -199 -229c-112 0 -198 82 -198 229c0 131 89 220 198 220z" />
-    <glyph glyph-name="one.taboldstyle" unicode="&#xe119;" horiz-adv-x="465" 
-d="M214 122v190c0 52 -4 63 -20 63c-22 0 -48 -3 -77 -6c-7.1 8.89999 -10.7 19.4 -12 31c84 18 126 26 175 42c9 0 14 -2 14 -10c0 0 -3 -51 -3 -111v-199c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-50 1 -74.4 2 -122 2c-54.2 0 -90 -1 -139 -2c-6 6 -6 27 0 33
-c70 3 97 8 97 91z" />
-    <glyph glyph-name="two.taboldstyle" unicode="&#xe11a;" horiz-adv-x="465" 
-d="M294 55c57 0 63 6 87 59l13 29c9 -0.699997 18 -0.800003 27 -7c-18 -58 -28 -107 -33 -138c-17 1 -51 2 -91 2h-148c-25 0 -79 -1 -89 -2l-11 23l111 105c108.4 102.5 127 130 127 188c0 53 -27 81 -73 81c-49 0 -98 -21 -119 -74c-14.8 2.70001 -27.1 7.10001 -34 15
-c17 52 78 103 173 103c101 0 142 -47 142 -108c0 -46 -24.8 -86.1 -83 -143l-136 -133h137z" />
-    <glyph glyph-name="three.taboldstyle" unicode="&#xe11b;" horiz-adv-x="465" 
-d="M217 404c-26 0 -95 -12 -95 -76c0 -19 -4 -52 -39 -52c-24 0 -34 20 -34 34c0 33 42 129 189 129c52.3 0 87.2 -16.9 109 -39c24.3 -24.6 31.3 -49.1 31.3 -79.1c0 -52.7 -23 -94.3 -105.3 -132.9l1 -2c59 -10 141 -49 141 -158c0 -132 -106 -209 -225 -209
-c-60 0 -144 27 -144 67c0 16 21 35 42 35c20 0 33 -12 43 -26c12 -18 21 -41 72 -41c35 0 124 27 124 160c0 113 -74 129 -131 129c-13 0 -31 0 -48 -2l-5 32c99.1 14.1 157.1 90.5 157.1 140.7c0 64.3 -39.9 90.3 -83.1 90.3z" />
-    <glyph glyph-name="four.taboldstyle" unicode="&#xe11c;" horiz-adv-x="465" 
-d="M266 335c-69 -94.2 -149 -203 -181 -288h181v288zM415 47c11 0 15 -6 15 -16c0 -12 -15 -31 -29 -31h-59v-92c0 -47 11 -45 60 -49c6 -6 6 -27 0 -33c-32 1 -59.6 2 -99 2c-46 0 -86 -1 -118 -2c-6 6 -6 27 0 33c43 3 81 3 81 49v92h-194c-30 0 -36 27 -39 42
-c61 146 193 308 261 385c3.89999 4.39999 9 11 16 11h32l2 -2c-1.70001 -7.79999 -2 -47 -2 -97v-292h73z" />
-    <glyph glyph-name="five.taboldstyle" unicode="&#xe11d;" horiz-adv-x="465" 
-d="M318 17c0 109 -51 152 -116 152c-36 0 -74 -4 -127 -24l34 288c35 -3 71 -5 108 -5c53 0 107 5 164 11l7 -4l-16 -68c-41 -4 -75 -6 -105 -6c-48 0 -80 5 -117 9l-20 -167c18 7 55 16 98 16c112 0 179 -87 179 -184c0 -126 -88 -218 -212 -218c-57 0 -142 34 -142 75
-c0 20 19 37 38 37c21 0 38 -15 51 -32c15 -20 28 -45 66 -45c60 0 110 70 110 165z" />
-    <glyph glyph-name="six.taboldstyle" unicode="&#xe11e;" horiz-adv-x="465" 
-d="M139.2 307c-5.89999 -28.8 -8.2 -55.5 -8.2 -78c0 -171 57 -205 120 -205c49 0 91 50 91 160c0 50 -22 146 -120 146c-17.4 0 -50 -1.39999 -82.8 -23zM148.3 343.3c29.8 13.7 68.7 21.7 94.7 21.7c136 0 182 -77 182 -163s-54 -213 -185 -213c-77 0 -192 40 -192 243
-c0 79 31 170 93 242c56 65 118 107 219 137c8 -5 12 -14 12 -26c-133 -49.8 -196.6 -150.8 -223.7 -241.7z" />
-    <glyph glyph-name="seven.taboldstyle" unicode="&#xe11f;" horiz-adv-x="465" 
-d="M178 364c-32 0 -65 -7 -87 -87c-11 -1.29999 -21.1 -0.100006 -32 3c8 52 19 112 20 160c0 3 1 3 4 3c18 -4 16 -14 50 -14h206c38 0 60 6 77 11l16 -12c-112 -273 -167 -439 -224 -609l-68 -3l-8 7c68 152 147 347 225 541h-179z" />
-    <glyph glyph-name="eight.taboldstyle" unicode="&#xe120;" horiz-adv-x="465" 
-d="M234 575c-60 0 -92 -38 -92 -84c0 -31 7 -64 70 -105l31 -19c27 20 80 65 80 119c0 46 -24 89 -89 89zM393 485c0 -64 -76 -116 -123 -139l71 -43c53.1 -32.2 78 -83 78 -141c0 -76 -64 -172 -195 -172c-106 0 -178 54 -178 156c0 39 17 84 58 120
-c25 22 51.5 39.5 80.5 55l-25.5 16c-60.9 38.2 -88 79 -88 135c0 77 66 138 168 138c98 0 154 -53 154 -125zM226 25c45 0 120 17 120 117c0 48 -25 95 -87 133l-47 28c-86 -57 -99 -127 -99 -157c0 -90 68 -121 113 -121z" />
-    <glyph glyph-name="nine.taboldstyle" unicode="&#xe121;" horiz-adv-x="465" 
-d="M324.8 121c5.90002 28.8 8.20001 55.5 8.20001 78c0 171 -57 205 -120 205c-49 0 -91 -50 -91 -160c0 -50 22 -146 120 -146c17.4 0 50 1.4 82.8 23zM315.7 84.7c-29.8 -13.7 -68.7 -21.7 -94.7 -21.7c-136 0 -182 77 -182 163s54 213 185 213c77 0 192 -40 192 -243
-c0 -79 -31 -170 -93 -242c-56 -65 -118 -107 -219 -137c-8 5 -12 14 -12 26c133 49.8 196.6 150.8 223.7 241.7z" />
-    <glyph glyph-name="uni26A5" unicode="&#x26a5;" horiz-adv-x="667" 
-d="M253 -11c-106 15 -192 110 -192 221c0 122 93 221 221 221c22 0 39 -1 64 -9l118 215c-56 -32 -93 -48 -161 -64l-29 35c97 28 146 47 237 104l22 -11c11 -98 24 -150 59 -244l-45 4c-27 60 -37 97 -46 158l-108 -217c68 -35 112 -103 112 -192
-c0 -110 -85 -208 -193 -222l-2 -91h106v-47h-107l-3 -88h-47l-3 88h-107v47h106zM283 381c-95 0 -171 -76 -171 -170c0 -92 72 -174 171 -174s171 82 171 174s-73 170 -171 170z" />
-    <glyph glyph-name="uniE104" unicode="&#xe104;" horiz-adv-x="611" 
-d="M105 473v-458h401v604h-242v-146h-159zM232 596l-105 -96h105v96zM287 568h174v-26h-174v26zM278 71h52v-27h-52v27zM324 124h139v-27h-139v27zM142 124h139v-27h-139v27zM324 178h139v-27h-139v27zM142 178h139v-27h-139v27zM324 231h139v-27h-139v27zM142 231h139v-27
-h-139v27zM324 285h139v-27h-139v27zM142 285h139v-27h-139v27zM324 344h139v-27h-139v27zM142 344h139v-27h-139v27zM324 402h139v-27h-139v27zM142 402h139v-27h-139v27zM254 646h284v-658h-465v498z" />
-    <glyph glyph-name="uniE105" unicode="&#xe105;" horiz-adv-x="835" 
-d="M108 322l-3 -3v-304h626v453h-458l-9 -9v-137h-156zM232 432l-93 -83h93v83zM154 292h2c24 -3 31 -15 41 -29l14 12c2 2 4 3 7 3l27 2l2 -25l-23 -1c-9 -7 -18 -14 -20 -16c-1 -1 -7 -3 -8 -4h-1c-5 0 -9 3 -12 7c-8 10 -15 25 -27 26h-1h-12v25h11zM332 246
-c-4 0 -7 1 -9 4c-38 44 -40 48 -40 71v5v5c4 15 37 58 83 62h3c15 0 38 -9 49 -15c4 -3 8 -6 25 -6c11 0 13 9 40 9h6c52 -2 94 -30 94 -72v-3c-9 -43 -63 -77 -104 -77c-3 0 -5 1 -7 1l2 24h5c33 0 73 28 79 56c-1 23 -27 45 -70 47h-5c-22 0 -20 -10 -40 -10
-c-24 0 -30 6 -37 9c-10 6 -30 13 -37 13h-1c-35 -3 -60 -38 -61 -44v-4c0 -15 0 -16 30 -51h1v-24h-6zM640 406c0 -11 9 -20 20 -20s21 9 21 20s-10 21 -21 21s-20 -10 -20 -21zM619 406c0 23 19 41 41 41c23 0 41 -18 41 -41c0 -22 -18 -41 -41 -41c-22 0 -41 19 -41 41z
-M175 84c13 -1 18 -1 22 -2c1 0 3 -1 4 -1c5 0 6 -1 19 -1h8s22 8 27 16c10 15 41 42 99 42c13 0 28 -2 44 -5c7 -2 14 -3 23 -3c-9 69 -46 140 -71 193l23 10c13 -30 28 -61 42 -93l5 16c4 11 6 14 18 29c0 1 16 24 49 43l2 3l18 -18l-4 -3c-1 -1 -2 -2 -3 -2
-c-29 -16 -40 -34 -43 -38c-9 -11 -10 -13 -14 -22l-15 -43c9 -25 15 -50 18 -76h1h3c4 2 7 3 16 7c13 5 34 17 41 23c33 31 60 59 119 60c0 0 21 6 48 6h1h3l41 -8l-5 -24l-40 7c-25 0 -43 -5 -47 -6c-51 0 -73 -24 -104 -53c-14 -14 -47 -27 -48 -28c-10 -4 -12 -5 -17 -7
-c-4 -1 -5 -1 -10 -2v-3c0 -10 -1 -20 -2 -31l-25 4c2 9 2 18 2 27v4c-12 1 -21 2 -29 4c-15 3 -28 4 -40 4c-49 0 -73 -21 -79 -30c-10 -17 -41 -27 -47 -27h-30c-3 1 -5 2 -6 2c-4 1 -14 2 -19 2h-3l-48 12l5 24zM263 495h500v-507h-690v338z" />
-    <glyph glyph-name="uniE106" unicode="&#xe106;" horiz-adv-x="730" 
-d="M441 174h100v116h-100v-116zM415 174v116h-100v-116h100zM667 174v116h-100v-116h100zM567 32h100v115h-100v-115zM441 32h100v115h-100v-115zM415 32v115h-100v-115h100zM189 32h100v115h-100v-115zM163 32v115h-100v-115h100zM183 411l-97 -105h97v105zM441 410v-27
-h-123v27h123zM163 246h26v-72h100v116h-49v27h49v32h26v-32h100v30h26v-30h100v30h26v-30h100v116h-458v-159h-146v-100h100v72zM37 284l159 180h497v-464h-656v284z" />
-    <glyph glyph-name="uniE107" unicode="&#xe107;" horiz-adv-x="730" 
-d="M183 411l-97 -105h97v105zM117 182c0 -14 6 -22 12 -22c16 0 31 30 31 51c0 18 -8 21 -15 21c-17 0 -28 -29 -28 -50zM211 231c17 0 44 3 60 20l20 -13l-140 -195l-20 11l119 169c-15 -6 -31 -10 -42 -10c-10 0 -22 5 -30 9c1 -3 1 -5 1 -9c0 -33 -20 -70 -54 -70
-c-24 0 -38 23 -38 44c0 30 22 63 55 63c11 0 23 -4 26 -8c22 -11 36 -11 43 -11zM229 89c0 31 20 64 56 64c16 0 36 -7 36 -37c0 -36 -20 -71 -53 -71c-24 0 -39 23 -39 44zM260 85c0 -14 5 -23 11 -23c21 0 31 32 31 52c0 19 -9 21 -14 21c-15 0 -28 -29 -28 -50zM390 362
-v-27h-123v27h123zM374 202h27v-170h29v241h27v-241h29v315h27v-315h29v289h27v-289h30v202h26v-202h42v401h-458v-159h-146v-242h311v170zM37 284l159 180h497v-464h-656v284z" />
-    <glyph glyph-name="Germandbls.alt" unicode="&#xe04e;" horiz-adv-x="947" 
-d="M866.7 631c10.3 -53 14.3 -81 17.8 -129c-9 -7 -22 -7.79999 -32.5 -6c-20 66 -51 128 -148.1 128c-58.9 0 -109.5 -56 -109.5 -112c0 -84.1 99.9 -121.9 159.1 -144.1c82.4 -30.9 162.5 -77.5 162.5 -183.9c0 -63.6 -36.5 -125.2 -94 -161.2
-c-34.8 -21.7 -77.8 -32.8 -123.3 -32.8c-88.7 0 -116.7 23 -179.7 23c-12 49 -16 75 -20 152c9.60001 5.10001 20.2 7 32.5 3c22 -99.5 82 -142 175.5 -142c79.8 0 125 42 125 123c0 97.8 -73.7 125.9 -134.5 149c-88 33.5 -174.5 81.6 -174.5 187c0 106 89 173 190.3 173
-c97.7 0 95.6 -19 153.4 -27zM394.7 631c10.3 -53 14.3 -81 17.8 -129c-9 -7 -22 -7.79999 -32.5 -6c-20 66 -51 128 -148.1 128c-58.9 0 -109.5 -56 -109.5 -112c0 -84.1 99.9 -121.9 159.1 -144.1c82.4 -30.9 162.5 -77.5 162.5 -183.9c0 -63.6 -36.5 -125.2 -94 -161.2
-c-34.8 -21.7 -77.8 -32.8 -123.3 -32.8c-88.7 0 -116.7 23 -179.7 23c-12 49 -16 75 -20 152c9.6 5.10001 20.2 7 32.5 3c22 -99.5 82 -142 175.5 -142c79.8 0 125 42 125 123c0 97.8 -73.7 125.9 -134.5 149c-88 33.5 -174.5 81.6 -174.5 187c0 106 89 173 190.3 173
-c97.7 0 95.6 -19 153.4 -27z" />
-    <glyph glyph-name="uniE00B" unicode="&#xe00b;" horiz-adv-x="407" 
-d="M196 404c-13 0 -18 1 -21 2c-8 3 -9 16 -9 16c0 15 12 17 16 18c5 0 12 1 20 1c11 0 24 -1 28 -2c6 -1 13 -7 13 -18c0 -5 -3 -17 -20 -17h-27zM67 380c0 8 3 12 16 22c21 15 26 17 32 17s17 -3 17 -20c0 -8 -5 -12 -10 -15c-8 -4 -16 -10 -24 -17c-4 -4 -8 -5 -14 -5
-c-7 0 -17 6 -17 18zM305 370c-4 4 -13 10 -22 16c-4 3 -7 9 -7 14c0 11 9 18 18 18c3 0 6 -1 9 -2c9 -5 24 -16 31 -23c5 -5 7 -8 7 -14c0 -15 -12 -18 -18 -18c-5 0 -9 2 -18 9zM31 284c0 18 0 28 1 35c2 16 14 17 21 17c6 0 15 -5 15 -15c0 -3 -1 -10 -1 -26
-s-1 -18 -2 -20c-3 -7 -10 -11 -17 -11c-16 0 -17 13 -17 20zM341 294c0 4 -1 20 -1 23c0 10 8 17 17 17c17 0 20 -13 20 -38c0 -18 -1 -34 -17 -34c-18 0 -19 17 -19 32zM31 168v41c0 7 6 18 16 18c16 0 19 -15 19 -20v-38c0 -5 -7 -14 -18 -14c-9 0 -17 7 -17 13zM342 165
-c-1 4 -1 23 -1 45c0 6 7 16 18 16c17 0 18 -17 18 -21v-37c0 -9 -7 -14 -19 -14s-15 10 -16 11zM51 71c-8 11 -14 24 -14 30c0 5 4 18 18 18c11 0 15 -7 18 -14c3 -6 7 -13 12 -20s6 -9 6 -15c0 -14 -9 -17 -19 -17c-6 0 -9 0 -21 18zM315 71c0 4 1 7 6 12c5 6 9 13 12 21
-c4 7 8 14 19 14c14 0 17 -12 17 -18c0 -14 -19 -38 -21 -41c-5 -5 -9 -8 -15 -8c-12 0 -18 10 -18 20zM221 19c0 4 2 8 5 12c3 3 6 4 13 6c9 2 15 4 24 6c5 2 9 3 11 3c11 0 18 -8 18 -17c0 -8 -1 -14 -19 -21c-15 -5 -27 -8 -35 -8s-17 8 -17 19zM125 12c-4 2 -11 7 -11 17
-c0 7 4 17 20 17c2 0 4 0 11 -3c7 -2 14 -4 22 -6c17 -3 18 -15 18 -18c0 -9 -6 -19 -17 -19c-8 0 -35 8 -43 12z" />
-    <glyph glyph-name="uni2326" unicode="&#x2326;" horiz-adv-x="874" 
-d="M543 395l-152 -181l151 -180h68c59 67 106 113 186 181c-82 70 -129 113 -187 180h-66zM240 34h254l-127 152zM192 34l151 180l-153 181h-77v-361h79zM495 395h-257l129 -152zM626 429c75 -80 148 -145 219 -195v-38c-63 -44 -142 -114 -219 -196h-553v429h553z" />
-    <glyph glyph-name="uni232B" unicode="&#x232b;" horiz-adv-x="874" 
-d="M332 396h-67c-58 -67 -104 -111 -186 -181c80 -68 126 -114 186 -181h68l151 180zM635 34l-127 152l-127 -152h254zM683 34h79v362h-78l-152 -182zM379 396l129 -153l128 153h-257zM248 430h553v-430h-553c-77 82 -156 152 -219 196v38c71 50 144 116 219 196z" />
-    <glyph glyph-name="uni2327" unicode="&#x2327;" horiz-adv-x="723" 
-d="M235 34h254l-127 152zM187 34l151 180l-152 182h-74v-362h75zM490 396h-257l129 -153zM650 430v-430h-577v430h577zM611 34v362h-73l-152 -182l151 -180h74z" />
-    <glyph glyph-name="uni2380" unicode="&#x2380;" horiz-adv-x="569" 
-d="M272 623c76 0 109 -44 109 -123v-156h-48v19c-18 -15 -44 -23 -80 -23c-52 0 -84 32 -84 87c0 60 50 91 111 91h53c0 37 -27 61 -65 61c-34 0 -50 -7 -79 -25l-12 43c18 9 60 26 95 26zM263 386c26 0 70 13 70 88h-37c-44 0 -79 -11 -79 -44c0 -29 20 -44 46 -44zM287 33
-c40 85 130 223 206 323l32 -22c-81 -110 -163 -235 -217 -346h-42c-62 121 -140 239 -222 352l36 16c78 -102 166 -235 207 -323z" />
-    <glyph glyph-name="proportional" unicode="&#x221d;" horiz-adv-x="670" 
-d="M358 241c-26 51 -101 153 -162 153c-64 0 -96 -48 -96 -111c0 -66 37 -148 108 -148c51 0 125 65 150 106zM612 375c-10 5 -21 8 -34 8c-51 0 -123 -68 -149 -109c33 -46 106 -149 164 -149c7 0 13 0 19 1v-44c-10 -2 -21 -3 -32 -3c-85 0 -154 69 -199 135
-c-41 -58 -126 -136 -200 -136c-73 0 -144 50 -144 160c0 95 66 198 171 198c79 0 157 -67 198 -133c47 57 122 133 201 133h5v-61z" />
-    <glyph glyph-name="uni2423" unicode="&#x2423;" horiz-adv-x="250" 
-d="M-17 -22h34v-122h216v122h34v-181h-284v181z" />
-    <glyph glyph-name="hyphen.cap" unicode="&#xf6ba;" horiz-adv-x="338" 
-d="M271 283h-216c-9 0 -15 9 -15 19c0 18 13 41 25 41h219c10 0 14 -10 14 -20c0 -12 -14 -40 -27 -40z" />
-    <glyph glyph-name="uni237D" unicode="&#x237d;" horiz-adv-x="250" 
-d="M354 -22v-44h-87v-137h-284v137h-87v44h121v-122h216v122h121z" />
-    <glyph glyph-name="uniE101" unicode="&#xe101;" horiz-adv-x="759" 
-d="M380 -14c-183 0 -330 149 -330 330c0 183 148 330 330 330s329 -147 329 -330c0 -182 -147 -330 -329 -330zM380 610c-163 0 -293 -131 -293 -294c0 -161 130 -293 293 -293c162 0 293 130 293 293s-131 294 -293 294z" />
-    <glyph glyph-name="b.inferior" unicode="&#xe149;" horiz-adv-x="297" 
-d="M51 175c0 42 -6 49 -19 49l-21 1c-2 0 -4 1 -4 3l-1 18c26 2 72 10 88 17c6 0 8 -2 8 -7c0 0 -2 -26 -2 -68v-58c25 16 48 25 74 25c62 0 99 -62 99 -130c0 -74 -54 -143 -119 -143c-30 0 -55 10 -71 24c-6 -8 -14 -17 -20 -24l-14 4c2 15 2 26 2 52v237zM100 102v-129
-c0 -52 33 -65 55 -65c23.5 0 64 12 64 105c0 73 -30 111 -60 111c-26 0 -38 -6 -59 -22z" />
-    <glyph glyph-name="c.inferior" unicode="&#xe14a;" horiz-adv-x="282" 
-d="M157 161c63 0 96 -33 96 -67c0 -20 -11 -29 -25 -29s-27 7 -29 23c-2 22 -7 46 -45 46c-31 0 -73 -33 -73 -114c0 -25 4 -49 16 -68c14 -23 38 -38 60 -38c38 0 57 21 77 43l19 -16c-25 -35 -56 -59 -101 -59c-85 0 -125 61 -125 134s44 145 130 145z" />
-    <glyph glyph-name="d.inferior" unicode="&#xe14b;" horiz-adv-x="315" 
-d="M209 -13v103c-16 19 -39 39 -64 39c-34 0 -67 -37 -67 -111c0 -80 31.5 -96 61 -96c22 0 61.7 41 70 65zM204 -63c-17 -32 -57 -51 -81 -51c-63 0 -99 50 -99 117c0 80 39 152 116 152c36 0 53 -11 69 -26v46c0 42 -7 49 -20 49l-21 1c-2 0 -4 1 -4 3l-1 18
-c26 2 72 10 88 17c6 0 8 -2 8 -7c0 0 -2 -26 -2 -68v-216c0 -40 9 -45 42 -48c1 -4 3 -18 2 -22c-43 -6 -63 -12 -80 -20c-5 0 -6 3 -7 6c-3 7 -5 20 -5 48c0 3 -0.899994 8.7 -5 1z" />
-    <glyph glyph-name="f.inferior" unicode="&#xe14d;" horiz-adv-x="253" 
-d="M72 -59v152h-42c-3 0 -3 1 -3 3v14c0 5 3 12 14 12h31c0 96 53 141 105 141c23 0 39 -6 54 -17c13 -9 20 -20 20 -31c0 -12 -11 -23 -23 -23s-22 8 -27 19c-8 20 -18 27 -36 27c-20 0 -44 -11 -44 -106v-10h68c3 0 5 -1 5 -3v-18c0 -6 -8 -8 -14 -8h-59v-152
-c0 -18 6.8 -26.2 26 -28l21 -2c2 -0.199997 5 -1 5 -5v-17l-1 -1s-54 1 -78 1c-22 0 -63 -1 -63 -1l-2 1v17c0 4 2 4.5 5 5l12 2c20.8 3.5 26 10 26 28z" />
-    <glyph glyph-name="g.inferior" unicode="&#xe14e;" horiz-adv-x="315" 
-d="M266 127c-10 0 -16 5 -18 12c-3 6 -9 9 -18 9c-7 0 -13 -8 -16 -14c17 -19 28 -34 28 -63c0 -60 -53 -90 -104 -90c-23 0 -41 4 -55 12c-7 -10 -9 -21 -9 -34c0 -26 19 -31 36 -31c3 0 10 1 19 2c14 1 29 3 39 3c22 0 63 -4 87 -26c17 -15 26 -30 26 -50
-c0 -67 -87 -95 -166 -95c-45 0 -100 14 -100 68c0 26 19 49 50 69c-19 4.5 -32 23 -32 45c0 21 9.5 45 34 61c-17 16 -34 35 -34 68c0 57 53 91 105 91c29 0 48 -9 57 -15c16 18 34 27 56 27c25 0 38 -13 38 -25c0 -14 -11 -24 -23 -24zM79 -107c-19 -18 -21 -30 -21 -51
-c0 -46 53 -50 74 -50c49 0 110 4 110 49c0 16 -11 24.5 -28 34c-16.8 9.4 -32 15 -62 15c-9 0 -17 0 -25 -1c-9 0 -18 -1 -25 -1s-17 2 -23 5zM190 69c0 50 -20 73 -57 73c-32 0 -49 -15 -49 -63c0 -32 8 -76 57 -76c22 0 49 4 49 66z" />
-    <glyph glyph-name="h.inferior" unicode="&#xe14f;" horiz-adv-x="307" 
-d="M104 188v-84c14 16 49 51 85 51c45 0 75 -25 75 -92v-124c0 -19 6.20001 -23.7 26 -27l6 -1c4 -1 5 -3 5 -5v-18s-38 1 -62 1c-25 0 -65 -1 -65 -1v18c0 2 1 5 5 5l11 1c18.8 1.7 25 6 25 27v114c0 51 -20 68 -50 68c-21 0 -42 -22 -61 -45v-137c0 -21 7.1 -25.4 25 -27
-l11 -1c2 0 5 -1 5 -5v-18s-40 1 -66 1c-24 0 -61 -1 -61 -1v18c0 2 0 5 4 5l8 1c23.6 3 25 6 25 27v236c0 42 -6 49 -19 49l-21 1c-2 0 -4 1 -4 3l-1 18c26 2 72 10 88 17c6 0 8 -2 8 -7c0 0 -2 -26 -2 -68z" />
-    <glyph glyph-name="i.inferior" unicode="&#xe150;" horiz-adv-x="194" 
-d="M101 278c16 0 29 -13 29 -29s-13 -29 -29 -29s-29 13 -29 29s13 29 29 29zM128 -36c0 -41 17 -44 51 -46c4 -8 4 -22 0 -29c-30 1 -51.3 1 -76 1c-23 0 -46 0 -76 -1c-4 6 -5 21 0 29c40 2 53 5 53 46v109c0 53 -11 48 -43 50c-4 6 -5 13 -4 21c26 2 73 10 89 17
-c6 0 8 -2 8 -7c0 0 -2 -27 -2 -54v-136z" />
-    <glyph glyph-name="j.inferior" unicode="&#xe151;" horiz-adv-x="207" 
-d="M117 263c22 0 30 -15 30 -29c0 -15 -13 -28 -30 -28s-30 13 -30 28c0 16 11 29 30 29zM96 73c0 42 -6 49 -19 49l-21 1c-2 0 -4 1 -4 3l-1 18c26 2 72 10 88 17c6 0 8 -2 8 -7c0 0 -2 -27 -2 -54v-146c0 -85 -5 -112 -32 -142c-16 -18 -36 -25 -52 -25
-c-27 0 -61 13 -61 33c0 16 9 25 21 25c15 0 23 -15 27 -29c1 -6 5 -10 10 -10c29 0 38 35 38 128v139z" />
-    <glyph glyph-name="k.inferior" unicode="&#xe152;" horiz-adv-x="318" 
-d="M56 -37v212c0 42 -7 49 -20 49l-21 1c-2 0 -4 1 -4 3l-1 18c26 2 72 10 88 17c6 0 8 -2 8 -7c0 0 -2 -26 -2 -68v-150.5c21.8 8.8 39.8 18.4 61 40l25 25.5c7.7 8.3 23 23 -9 26c-3 0.300003 -5 3 -5 5v20l1 1s30 -1 52 -1c24 0 64 1 64 1l2 -1v-20c0 -3 -4 -4.8 -6 -5
-c-24.5 -3 -45.9 -8.1 -68 -32l-38 -41c-1.89999 -2.1 -2 -6 -2 -8c0 -3 1 -6 3 -8l63 -93c7 -10 19.5 -27 52 -30c4 -0.400002 8 -2 8 -5v-22l-2 -2s-37 1 -61 1c-22 0 -38 -1 -38 -1l-2 2v16c0 6 -2 10 -14 27l-45 64c-9 11 -16 22 -31 22c-2.9 0 -6.2 -0.700001 -10 -1.9
-v-54.1c0 -41 7 -44 41 -46c4 -8 4 -22 0 -29c-30 1 -41 1 -66 1c-23 0 -46 0 -76 -1c-4 6 -5 21 0 29c40 2 53 5 53 46z" />
-    <glyph glyph-name="l.inferior" unicode="&#xe153;" horiz-adv-x="161" 
-d="M55 -36v211c0 52 -8 48 -40 50c-4 4 -4 16 -3 21c25 2 70 11 86 17c6 0 8 -2 8 -6c0 0 -2 -26 -2 -66v-227c0 -51 7 -53 40 -55c4 -4 4 -18 0 -22c-22 1 -39 1 -64 1s-44 0 -65 -1c-4 4 -4 16 0 20c33 2 40 6 40 57z" />
-    <glyph glyph-name="m.inferior" unicode="&#xe154;" horiz-adv-x="485" 
-d="M123 86c-4 -5 -9 -14 -9 -22v-100c0 -41 3 -44 37 -46c4 -8 4 -22 0 -29c-30 1 -37 1 -62 1c-23 0 -46 0 -76 -1c-4 6 -5 21 0 29c40 2 53 5 53 46v107c0 40 -9 45 -42 48c-1 4 -3 18 -2 22c43 6 64 12 81 20c5 0 6 -3 7 -6c3 -7 5 -20 5 -48c0 -3 0 -8.3 5 -1
-c24.3 35.3 49 55 85 55c35 0 57.3 -14.5 65.9 -50.9c14.6 17.4 49.9 50.9 85.1 50.9c46 0 80 -25 80 -92v-105c0 -41 8 -44 48 -46c5 -8 4 -23 0 -29c-30 1 -35.7 1 -71 1c-23.8 0 -31 0 -61 -1c-4 7 -4 21 0 29c34 2 36 5 36 46v95c0 51 -25 68 -56 68
-c-19.7 0 -39.5 -19.5 -57.6 -40.9c0.399994 -5.4 0.600006 -11.1 0.600006 -17.1v-105c0 -41 7.5 -43.5 38 -46c5 -8 4 -23 0 -29c-30 1 -25.7 1 -61 1c-23.8 0 -31 0 -61 -1c-4 7 -4 21 0 29c34 2 36 5 36 46v95c0 51 -15 68 -46 68c-21 0 -39 -18 -58 -41z" />
-    <glyph glyph-name="n.inferior" unicode="&#xe155;" horiz-adv-x="362" 
-d="M127 86c-4 -5 -9 -14 -9 -22v-100c0 -41 3 -44 37 -46c4 -8 4 -22 0 -29c-30 1 -37 1 -62 1c-23 0 -46 0 -76 -1c-4 6 -5 21 0 29c40 2 53 5 53 46v107c0 40 -9 45 -42 48c-1 4 -3 18 -2 22c43 6 64 12 81 20c5 0 6 -3 7 -6c3 -7 5 -20 5 -48c0 -3 0 -8.3 5 -1
-c24.3 35.3 65 55 101 55c46 0 70 -25 70 -92v-105c0 -41 8 -44 48 -46c5 -8 4 -23 0 -29c-30 1 -35.7 1 -71 1c-23.8 0 -31 0 -61 -1c-4 7 -4 21 0 29c34 2 36 5 36 46v95c0 51 -15 68 -46 68c-21 0 -55 -18 -74 -41z" />
-    <glyph glyph-name="p.inferior" unicode="&#xe157;" horiz-adv-x="305" 
-d="M104 -163c0 -41 17 -44 51 -46c4 -8 4 -22 0 -29c-30 1 -51 1 -76 1c-23 0 -46 0 -76 -1c-4 6 -5 21 0 29c40 2 53 5 53 46v234c0 40 -9 45 -42 48c-1 4 -3 18 -2 22c43 6 63 12 80 20c5 0 6 -3 7 -6c3 -7 5 -20 5 -48c0 -3 -0.300003 -7.8 5 -1c18.5 23.5 57 49 86 49
-c58 0 93 -40 93 -108c0 -74 -49 -154 -114 -154c-20 0 -56 8 -70 20v-76zM104 -36c12.5 -40 49 -45 71 -45c23 0 59 23 59 116c0 73 -23 89 -51 89c-25 0 -72.5 -35 -79 -62v-98z" />
-    <glyph glyph-name="q.inferior" unicode="&#xe158;" horiz-adv-x="308" 
-d="M208 -53v143c-16 19 -38 39 -63 39c-34 0 -62 -25 -62 -99c0 -90 36 -111 70 -111c22 0 35 7 55 28zM238 153c4 3 10 8 14 8c3 0 5 -3 5 -9v-339c0 -20 0.799988 -23.5 25 -27l7 -1c4 -0.600006 5 -2 5 -4v-19s-37 1 -61 1c-26 0 -66 -1 -66 -1v18c0 4 2 4.7 5 5l11 1
-c14.4 1.3 25 5 25 27v107c-19 -16 -38 -27 -61 -27c-66 0 -118 45 -118 122c0 64 37 140 114 140c29 0 55 -9 70 -26z" />
-    <glyph glyph-name="r.inferior" unicode="&#xe159;" horiz-adv-x="246" 
-d="M170 117c-7 0 -23 -8 -39 -31c-4 -5 -9 -14 -9 -22v-100c0 -41 17 -44 51 -46c4 -8 4 -22 0 -29c-30 1 -51 1 -76 1c-23 0 -46 0 -76 -1c-4 6 -5 21 0 29c40 2 53 5 53 46v107c0 40 -9 45 -42 48c-1 4 -3 18 -2 22c43 6 63 12 80 20c5 0 6 -3 7 -6c3 -7 5 -20 5 -48
-c0 -3 1 -9 5 -1c14 27 42 55 74 55c26 0 37 -21 37 -34c0 -17 -14 -35 -29 -35c-13 0 -20 14 -26 21c-4 4 -9 4 -13 4z" />
-    <glyph glyph-name="s.inferior" unicode="&#xe15a;" horiz-adv-x="253" 
-d="M28 -18h22c1 -14 7 -41 23 -57c7 -6 26 -18 49 -18c24 0 48 11 48 38c0 21 -8 41 -58 62c-46 19 -77 35 -77 80c0 42 45 74 94 74c31 0 70 -10 81 -17l9 -75l-23 -1c-14 58 -48 68 -67 68c-25 0 -46 -13 -46 -40c0 -24 10 -33 44 -47c51 -21 97 -40 97 -90
-c0 -61 -66 -77 -100 -77c-30 0 -52 14 -72 14c-3 0 -13 -1 -19 -2c0 24 -2 56 -5 88z" />
-    <glyph glyph-name="t.inferior" unicode="&#xe15b;" horiz-adv-x="206" 
-d="M106 126v-148c0 -38 6 -56 21 -56c16 0 36 0 52 12l16 -17c-26 -27 -59 -35 -87 -35c-29 0 -50 17 -50 61v183h-40c-2 0 -3.2 0 -3 2l2 24c0 2 1 3 3 3c37 0 48 24 48 71v11l38 13v-95h80c3 0 5.3 -1 5 -4l-2 -18c-0.699997 -6 -9 -7 -14 -7h-69z" />
-    <glyph glyph-name="u.inferior" unicode="&#xe15c;" horiz-adv-x="319" 
-d="M55 76c0 46 -8 55 -38 57c-4 4 -4 19 0 23c23 -1 42 -2 62 -2c9 0 19 1 22 2c3 0 4 -2 4 -4c0 0 -2 -51 -2 -72v-96c0 -51 20 -67 50 -67c21 0 44 20 63 42v117c0 46 -8 55 -38 57c-4 4 -4 19 0 23c23 -1 42 -2 62 -2c9 0 19 1 22 2c3 0 4 -2 4 -4c0 0 -2 -51 -2 -72
-v-108c0 -40 9 -45 42 -48c1 -4 3 -18 2 -22c-43 -6 -63 -12 -80 -20c-5 0 -6 3 -7 6c-3 7 -5 19.8 -5 38c0 3 -1.7 5.5 -5 1c-12.7 -17.6 -45 -45 -82 -45c-45 0 -74 25 -74 92v102z" />
-    <glyph glyph-name="v.inferior" unicode="&#xe15d;" horiz-adv-x="314" 
-d="M204 133c-4 4 -4 19 0 23c23 -1 37 -2 60 -2c16 0 27 1 41 2c4 -4 4 -19 0 -23c-31.5 -3.5 -39.1 -21.4 -53 -52l-83.2 -182.8c-5 -11 -8.7 -16.1 -14.9 -16.1c-8.09999 0 -11.2 4.8 -15.5 14.7l-79.4 185.2c-15.1 35.1 -17 47 -50 51c-4 4 -4 19 0 23c23 -1 33 -2 55 -2
-c25.8 0 43 1 66 2c4 -4 4 -19 0 -23c-32.5 -3 -31.7 -15.4 -19 -47l42.1 -105.3c11.4 -28.5 13.9 -28.8 26 -2.1l46.9 107.4c14.2 32.4 11 44 -22 47z" />
-    <glyph glyph-name="w.inferior" unicode="&#xe15e;" horiz-adv-x="458" 
-d="M347 133c-4 4 -4 19 0 23c23 -1 37 -2 60 -2c16 0 27 1 41 2c4 -4 4 -19 0 -23c-31.5 -3.5 -39.1 -21.4 -53 -52l-83.2 -182.8c-5 -11 -8.69998 -16.1 -14.9 -16.1c-8.10001 0 -11.5 4.7 -15.5 14.7l-52.6 131l-59 -129.6c-5 -11 -8.7 -16.1 -14.9 -16.1
-c-8.09999 0 -11.2 4.8 -15.5 14.7l-79.4 185.2c-15.1 35.1 -17 47 -50 51c-4 4 -4 19 0 23c23 -1 33 -2 55 -2c25.8 0 43 1 66 2c4 -4 4 -19 0 -23c-32.5 -3 -31.7 -15.4 -19 -47l42.1 -105.3c11.4 -28.5 13.9 -28.8 26 -2.1l35.6 81.6l-8.7 21.8
-c-14.2 35.5 -16.8 46.5 -45 51c-4 4 -4 19 0 23c23 -1 28 -2 50 -2c25.8 0 43 1 66 2c4 -4 4 -19 0 -23c-32.5 -3 -30.5 -14.3 -19 -47l37.1 -105.3c10.2 -28.9 13.9 -28.8 26 -2.1l46.9 107.4c14.2 32.4 11 44 -22 47z" />
-    <glyph glyph-name="y.inferior" unicode="&#xe160;" horiz-adv-x="338" 
-d="M241 86c14 32.5 10 44 -23 47c-4 4 -4 19 0 23c23 -1 37 -2 60 -2c16 0 27 1 41 2c4 -4 4 -19 0 -23c-31.5 -3.5 -36.2 -19.8 -49.2 -50.8c-29.8 -70.9 -50.5 -117.2 -102.8 -238.2c-19 -44 -42 -82 -86 -82c-12 0 -43 10 -43 33c0 18 19 27 29 27c9 0 15 -3 19 -8
-c6 -6 11 -11 17 -11c9 0 28 31 44 69c3 8 4 13 4 19c0 7 -4.39999 24.3 -10 37l-68 154c-15.4 35 -17 47 -50 51c-4 4 -4 19 0 23c23 -1 33 -2 55 -2c25.8 0 43 1 66 2c4 -4 4 -19 0 -23c-32.5 -3 -32.9 -15.9 -19 -47l57 -128l4.3 1z" />
-    <glyph glyph-name="z.inferior" unicode="&#xe161;" horiz-adv-x="274" 
-d="M70 155h118c18 0 46 2 48 2c4 0 8 0 8 -3v-1c0 -2 0 -6 -13 -25l-142 -210h74c36 0 46 8 61 41l7 17c7.60001 0.299999 14.9 -1.2 22 -4c-11 -36 -17 -65 -20 -84h-197c-10 0 -14 3 -14 7s0 5 5 13l146 218h-76c-19 0 -40 -6 -52 -50
-c-7.3 -0.900002 -15.8 0.300003 -22 3c5 30 9 55 9 83l6 1c4.8 -5 22 -8 32 -8z" />
-    <glyph glyph-name="uni2E17" unicode="&#x2e17;" horiz-adv-x="373" 
-d="M288 290l-200 -13c-19 -2 -35 -7 -48 -28l-13 6c16 46 34 66 59 69l203 12c19 1 31 3 42 26l15 -4c-13 -40 -27 -65 -58 -68zM288 182l-200 -13c-21 -2 -39 -9 -48 -27l-13 5c16 46 34 67 59 69l203 13c20 1 31 4 41 25l16 -4c-12 -39 -27 -64 -58 -68z" />
-    <glyph glyph-name="w.alt" unicode="&#xe0f1;" horiz-adv-x="696" 
-d="M396 324l88 -232l85 259c2 7 4 14 4 21c0 18 -12 30 -44 30h-13c-5 0 -9 4 -9 7v20l3 2s61 -2 98 -2c35 0 75 2 75 2l1 -2v-19c0 -6 -7 -8 -13 -8c-25 0 -52 -8 -68 -55l-114 -338c-6 -17 -14 -21 -23 -21s-19 6 -25 20l-99 270l-102 -268c-7 -16 -13 -22 -23 -22
-c-9 0 -19 5 -24 20l-117 346c-13 39 -26 48 -56 48c-5 0 -12 2 -12 7v20l2 2s42 -2 86 -2c47 0 104 2 104 2l2 -3v-18c0 -5 -4 -8 -9 -8h-15c-19 0 -32 -8 -32 -20c0 -7 2 -16 5 -26l85 -267l87 229c13 34 26 45 37 45c16 0 28 -17 36 -39z" />
-    <glyph glyph-name="uniE0F2" unicode="&#xe0f2;" horiz-adv-x="890" 
-d="M468 551c10 0 19 -9 26 -37l107 -405l153 460c3 8 4 16 4 23c0 15 -7 26 -30 26h-26c-4 0 -8 4 -8 7v19l3 2s57 -1 98 -1c32 0 94 1 94 1l2 -1v-19c0 -8 -11 -8 -12 -8h-1c-29 0 -67 -11 -80 -50l-187 -557c-5 -15 -15 -23 -28 -23c-14 0 -26 7 -31 24l-101 384
-c-4 15 -10 28 -14 28s-9 -12 -13 -25l-119 -387c-4 -14 -15 -24 -29 -24c-13 0 -26 8 -31 24l-165 550c-8 26 -27 56 -55 56h-13c-7 0 -12 3 -12 7v19l2 2s52 -1 90 -1c50 0 116 1 116 1l2 -2v-18c0 -5 -2 -8 -8 -8h-22c-18 0 -26 -7 -26 -20c0 -7 3 -15 6 -26l135 -461
-l111 361c17 53 36 79 62 79z" />
-    <glyph glyph-name="uniE06B" unicode="&#xe06b;" horiz-adv-x="516" 
- />
-    <glyph glyph-name="uni0464" unicode="&#x464;" horiz-adv-x="847" 
-d="M191 122c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-45 1 -93.4 2 -129 2c-36.3 0 -85 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c47 -1 95.5 -2 129 -2c38.5 0 86 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-194h85.2
-c5.89999 201 139.5 329 301.8 329c118.5 0 154.5 -35.5 211 -45c10.7 -54 16.4 -103 22 -155c-10.9 -5.10001 -20.4 -6.60001 -30 -4c-26 86 -70 167 -208 167c-79 0 -206 -74 -206 -287l1 -1c61 34 126 46 139 46c63 0 106 -38 165 -38c38 0 54 16 62 16c4 0 9 -4 9 -12
-c0 -25 -63 -54 -122 -54c-67 0 -96 32 -154 32c-38 0 -66 -7 -99 -22c10 -158 90.5 -276 229 -276c76 0 116 34 130 74c13 37 28 66 57 66c25 0 34 -21 34 -41c0 -74 -128 -134 -225 -134c-205.2 0 -307.5 127.5 -316.4 300h-85.6v-168z" />
-    <glyph glyph-name="uni0465" unicode="&#x465;" horiz-adv-x="671" 
-d="M279.1 203h-98.1v-127c0 -29 12 -45 46 -45h20c5 0 9 -3 9 -8v-23l-2 -2s-73 2 -114 2c-37 0 -109 -2 -109 -2l-3 2v23c0 5 4 8 9 8h20c35 0 45 16 45 45v278c0 28 -10 44 -45 44h-20c-5 0 -9 3 -9 8v23l3 2s72 -2 109 -2c41 0 114 2 114 2l2 -2v-23c0 -5 -4 -8 -9 -8
-h-20c-34 0 -46 -16 -46 -44v-117h99.2c10.4 109.9 86.4 202 209.8 202c47 0 82 -15 131 -19c3.5 -41.5 5.29999 -71.4 8 -120c-7.90002 -3.20001 -16.2 -4 -25 -4c-17 64 -48 112 -122 112c-89 0 -119 -86 -119 -178l3 -2c26 16 53 28 82 28c22.6 0 41.2 -6.89999 58 -15.1
-c15.6 -7.59999 30.4 -12.9 47 -12.9c13 0 25 6 32 6c6 0 8 -10 8 -14c0 -14 -46 -32 -89 -32c-23.3 0 -39.4 4.89999 -54.7 11.6c-14 6.09999 -28 10.4 -46.3 10.4c-13 0 -26 -4 -38 -9c0 -119 45 -178 129 -178c40 0 65 24 77 51c14 32 28 38 45 38c18 0 29 -14 29 -30
-c0 -53 -71 -92 -162 -92c-97.3 0 -200.5 58 -203.9 213z" />
-    <glyph glyph-name="uni0466" unicode="&#x466;" horiz-adv-x="841" 
-d="M522 330l-120 220l-121 -222c70 -35 110 -86 120 -113c12 28 49 77 121 115zM438 78c0 -29 10.6 -41.6 43 -45l19 -2c4 -0.4 8 -3 8 -8v-23l-2 -2s-68 2 -107 2c-36 0 -104 -2 -104 -2l-2 2v23c0 5 3 7.5 8 8l19 2c33.7 3.5 43 16 43 45v66c0 51 -32 114 -97 157
-l-124 -223c-3 -6 -5 -11 -5 -17c0 -16 17.8 -24.9 47 -28l19 -2c5 -0.5 8 -3 8 -8v-23l-1 -2s-90 2 -114 2c-26 0 -90 -2 -90 -2l-2 2v23c0 5 3.1 7.2 8 8l12 2c39.4 6.6 56 22 73 54l298 541c12.7 23.1 22 30 32 30c12 0 19.7 -9.20001 31 -30l292 -536
-c23 -42 41 -55.5 62 -59l12 -2c3.90002 -0.700001 9 -3 9 -8v-23l-3 -2s-76 2 -115 2c-36 0 -123 -2 -123 -2l-2 2v23c0 5 3 7.4 8 8l18 2c28.7 3.2 50 6 50 24c0 6 -2 12 -7 21l-123 225c-66 -43 -98 -107 -98 -159v-66z" />
-    <glyph glyph-name="uni0467" unicode="&#x467;" horiz-adv-x="658" 
-d="M225 241c58 -33 79 -72 88 -97c11 25 30 59 83 92l-81 125c-7 11 -13 10 -19 0zM276 0v75c0 47 -13 99 -66 141l-83 -139.5c-16 -27 0.0999985 -37.3 25 -43.5l8 -2c2.89999 -0.700001 6 -3 6 -6v-25l-1 -2s-67 2 -86 2s-66 -2 -66 -2l-2 2v25c0 3 3 5.6 6 6
-c25.5 3 55 24.5 74 56.5l198 329.5c12.9 21.5 26 25 33 25c12 0 24.6 -4.29999 38 -25l217 -335c22 -35 40.5 -48 65 -51c6 -0.700001 7 -3 7 -6v-25l-3 -2s-56 2 -86 2c-28 0 -100 -2 -100 -2l-2 2v25c0 3 3 5.4 7 6l13 2c33 5.1 38 16 28 32l-95 147
-c-47 -41 -60 -92 -60 -137v-75h-75z" />
-    <glyph glyph-name="uni0468" unicode="&#x468;" horiz-adv-x="1198" 
-d="M874 330l-120 220l-121 -222c70 -35 110 -86 120 -113c12 28 49 77 121 115zM790 78c0 -29 10.6 -41.6 43 -45l19 -2c4 -0.4 8 -3 8 -8v-23l-2 -2s-68 2 -107 2c-36 0 -104 -2 -104 -2l-2 2v23c0 5 3 7.5 8 8l19 2c33.7 3.5 43 16 43 45v66c0 51 -32 114 -97 157
-l-124 -223c-3 -6 -5 -11 -5 -17c0 -16 17.8 -24.9 47 -28l19 -2c5 -0.5 8 -3 8 -8v-23l-1 -2s-90 2 -114 2c-26 0 -90 -2 -90 -2l-2 2v23c0 5 3.10001 7.2 8 8l12 2c39.4 6.6 56 22 73 54l116.2 211h-374.2v-176c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-45 1 -93.4 2 -129 2
-c-36.3 0 -85 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c47 -1 95.5 -2 129 -2c38.5 0 86 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-186h395.7l160.3 291c12.7 23.1 22 30 32 30c12 0 19.7 -9.20001 31 -30l292 -536
-c23 -42 41 -55.5 62 -59l12 -2c3.90002 -0.700001 9 -3 9 -8v-23l-3 -2s-76 2 -115 2c-36 0 -123 -2 -123 -2l-2 2v23c0 5 3 7.4 8 8l18 2c28.7 3.2 50 6 50 24c0 6 -2 12 -7 21l-123 225c-66 -43 -98 -107 -98 -159v-66z" />
-    <glyph glyph-name="uni0469" unicode="&#x469;" horiz-adv-x="951" 
-d="M518 241c58 -33 79 -72 88 -97c11 25 30 59 83 92l-81 125c-7 11 -13 10 -19 0zM569 0v75c0 47 -13 99 -66 141l-83 -139.5c-16 -27 0.100006 -37.3 25 -43.5l8 -2c2.89999 -0.700001 6 -3 6 -6v-25l-1 -2s-67 2 -86 2s-66 -2 -66 -2l-2 2v25c0 3 3 5.6 6 6
-c25.5 3 55 24.5 74 56.5l69.4 115.5h-277.4v-127c0 -29 11 -45 43 -45h19c5 0 9 -3 9 -8v-23l-2 -2s-71 2 -110 2c-35 0 -106 -2 -106 -2l-2 2v23c0 5 3 8 8 8h19c33 0 43 16 43 45v278c0 28 -10 44 -43 44h-19c-5 0 -8 3 -8 8v23l2 2s71 -2 106 -2c39 0 110 2 110 2l2 -2
-v-23c0 -5 -4 -8 -9 -8h-19c-32 0 -43 -16 -43 -44v-117h297.8l108.2 180c12.9 21.5 26 25 33 25c12 0 24.6 -4.29999 38 -25l217 -335c22 -35 40.5 -48 65 -51c6 -0.700001 7 -3 7 -6v-25l-3 -2s-56 2 -86 2c-28 0 -100 -2 -100 -2l-2 2v25c0 3 3 5.4 7 6l13 2
-c33 5.1 38 16 28 32l-95 147c-47 -41 -60 -92 -60 -137v-75h-75z" />
-    <glyph glyph-name="uni046A" unicode="&#x46a;" horiz-adv-x="921" 
-d="M370 323c-48 0 -84 -14 -115 -79l-83 -173c-16 -34 2 -44 43 -44h21c5 0 8 -3 8 -8v-19l-2 -2s-88 2 -124 2c-39 0 -111 -2 -111 -2l-2 2v19c0 5 4 8 8 8h12c31 0 53 16 67 44l82 173c40 84 86 118 175 118h35l-222 263c-14 16 0 20 17 20h530c13 0 29 -4 17 -20
-l-198 -263h45c88 0 134 -34 174 -118l83 -173c13 -28 36 -44 66 -44h12c5 0 9 -3 9 -8v-19l-2 -2s-73 2 -112 2c-35 0 -124 -2 -124 -2l-2 2v19c0 5 3 8 8 8h22c41 0 58 10 42 44l-82 173c-32 65 -67 79 -115 79h-54v-252c0 -30 15 -44 54 -44h17c4 0 8 -3 8 -8v-19l-2 -2
-s-77 2 -116 2c-36 0 -119 -2 -119 -2l-2 2v19c0 5 3 8 8 8h16c41 0 55 16 55 44v252h-47zM484 365l185 245h-393z" />
-    <glyph glyph-name="uni046B" unicode="&#x46b;" horiz-adv-x="802" 
-d="M318 203c-48 0 -75 -21 -115 -81l-34 -51c-19 -29 -8 -44 33 -44h17c5 0 8 -3 8 -8v-19l-2 -2s-73 2 -108 2c-39 0 -110 -2 -110 -2l-2 2v19c0 5 4 8 8 8h12c31 0 51 21 67 44l33 51c52 78 83 115 172 115h31l-154 172c-12 14 0 20 17 20h389c17 0 28 -5 16 -20
-l-124 -172h29c80 0 123 -51 171 -115l39 -51c18 -24 36 -44 67 -44h12c4 0 8 -3 8 -8v-19l-2 -2s-71 2 -110 2c-36 0 -108 -2 -108 -2l-2 2v19c0 5 3 8 8 8h17c41 0 54 16 32 44l-38 51c-44 58 -67 81 -115 81h-42v-132c0 -30 16 -44 55 -44h7c4 0 8 -3 8 -8v-19l-2 -2
-s-64 2 -103 2c-36 0 -107 -2 -107 -2l-2 2v19c0 5 3 8 8 8h7c41 0 55 16 55 44v132h-46zM427 241l113 154h-251z" />
-    <glyph glyph-name="uni048C" unicode="&#x48c;" horiz-adv-x="695" 
-d="M289 338v-266c0 -33 7 -40 94 -40c160 0 196 92 196 153c0 90 -67 153 -191 153h-99zM289 512v-139h83c38 0 107 -2 141 -14c108 -38 161 -92 161 -185c0 -86 -61 -176 -272 -176c-94 0 -95 2 -156 2c-53 0 -134 -2 -134 -2l-2 2v19c0 5 2 8 8 8h32c41 0 54 12 54 47v438
-h-188v34h188v28c0 30 -16 44 -57 44h-29c-4 0 -8 3 -8 8v19l2 1s92 -1 133 -1c38 0 136 1 136 1l2 -1v-19c0 -5 -3 -8 -8 -8h-28c-43 0 -58 -15 -58 -43v-29h278v-34h-278z" />
-    <glyph glyph-name="uni048D" unicode="&#x48d;" horiz-adv-x="536" 
-d="M426 124c0 52 -41 95 -117 95h-101v-145c0 -35 48 -45 98 -45c52 0 120 13 120 95zM208 698v-269h210v-34h-210v-144h92c100 0 205 -23 205 -118c0 -84 -83 -135 -201 -135c-54 0 -83 2 -137 2c-43 0 -115 -2 -115 -2l-2 2v19c0 5 3 8 8 8h25c36 0 46 16 46 45v323h-107
-v34h107v144c0 57 -11 68 -32 68l-34 2c-3 0 -6 2 -6 5l-2 24c17 1 56 6 74 9c19 4 34 8 55 17h24z" />
-    <glyph glyph-name="uni048E" unicode="&#x48e;" horiz-adv-x="541" 
-d="M189 554v-233c11 -3 51 -5 76 -5c24.2 0 45.5 2.70001 64 8.5l-79 91.5l31 23l84.1 -96.7c32.2 23.7 48.9 64.4 48.9 125.7c0 127 -69 150 -138 150c-72 0 -87 -35 -87 -64zM104 523c0 83 -17 88 -87 91c-6 6 -6 27 0 33c40 -1 92.3 -2 129 -2c40 0 98.7 7 137 7
-c185 0 224 -107 224 -166c0 -60.9 -28.3 -139.3 -111.3 -178.8l79.3 -91.2l-29 -27l-89.5 103.7c-25 -6.80002 -53.7 -10.7 -86.5 -10.7c-35 0 -59 3 -81 10v-170c0 -83 24 -87 102 -91c6 -6 6 -27 0 -33c-50 1 -108.6 2 -144 2c-35.7 0 -85 -1 -130 -2c-6 6 -6 27 0 33
-c70 3 87 8 87 91v401z" />
-    <glyph glyph-name="uni048F" unicode="&#x48f;" horiz-adv-x="519" 
-d="M175 331c-11.6 -14.3 -16 -23 -16 -44v-182c0 -36.1 3.89999 -41.9 24 -59.9c18 -16.1 53 -21.1 71 -21.1c35.2 0 62.2 10.1 82.7 26.5l-96.7 111.5l31 24l92 -106.3c23.9 36.4 32 85.2 32 128.3c0 113 -55 185 -119 185c-29.2 0 -75 -30 -101 -62zM156 368
-c0.5 -9.60001 5.39999 -10.3 11 -4c39.5 44.5 90.5 75 137 75c102 0 177 -98 177 -204c0 -81 -27 -143 -74 -189c-2.70001 -2.6 -5.5 -5.1 -8.29999 -7.5l66.3 -76.5l-29 -26l-69.4 80c-32 -17.9 -67.9 -26 -106.6 -26c-31.6 0 -62.5 5.6 -87 15.5
-c-10.2 4.2 -14 5.5 -14 -7.5v-108c0 -83 11 -87 82 -91c6 -6 6 -27 0 -33c-33 1 -81 2 -121 2s-77 -1 -112 -2c-6 6 -6 27 0 33c61 3 72 8 72 91v427c0 58 -11 63 -65 68c-2 6 -4 22 -2 28c69 9 95 18 123 29c8 0 9.89999 -3.39999 12 -8c4.7 -10.3 6.5 -36 8 -66z" />
-    <glyph glyph-name="uni046C" unicode="&#x46c;" horiz-adv-x="1243" 
-d="M806 365l185 245h-393zM191 122c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-45 1 -93.4 2 -129 2c-36.3 0 -85 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c47 -1 95.5 -2 129 -2c38.5 0 86 1 130 2c6 -6 6 -27 0 -33
-c-70 -3 -87 -8 -87 -91v-161h480h35l-222 263c-14 16 0 20 17 20h530c13 0 29 -4 17 -20l-198 -263h45c88 0 134 -34 174 -118l83 -173c13 -28 36 -44 66 -44h12c5 0 9 -3 9 -8v-19l-2 -2s-73 2 -112 2c-35 0 -124 -2 -124 -2l-2 2v19c0 5 3 8 8 8h22c41 0 58 10 42 44
-l-82 173c-32 65 -67 79 -115 79h-54v-252c0 -30 15 -44 54 -44h17c4 0 8 -3 8 -8v-19l-2 -2s-77 2 -116 2c-36 0 -119 -2 -119 -2l-2 2v19c0 5 3 8 8 8h16c41 0 55 16 55 44v252h-2h-45c-48 0 -84 -14 -115 -79l-83 -173c-16 -34 2 -44 43 -44h21c5 0 8 -3 8 -8v-19l-2 -2
-s-88 2 -124 2c-39 0 -111 -2 -111 -2l-2 2v19c0 5 4 8 8 8h12c31 0 53 16 67 44l82 173c16.3 34.3 33.6 60.3 54.5 79h-359.5v-201z" />
-    <glyph glyph-name="uni046D" unicode="&#x46d;" horiz-adv-x="1061" 
-d="M686 241l113 154h-251zM589 203h-12c-48 0 -75 -21 -115 -81l-34 -51c-19 -29 -8 -44 33 -44h17c5 0 8 -3 8 -8v-19l-2 -2s-73 2 -108 2c-39 0 -110 -2 -110 -2l-2 2v19c0 5 4 8 8 8h12c31 0 51 21 67 44l33 51c23.5 35.3 42.7 62.1 64.9 81h-277.9v-131
-c0 -29 11 -45 43 -45h19c5 0 9 -3 9 -8v-19l-2 -2s-69 2 -108 2c-35 0 -103 -2 -103 -2l-2 2v19c0 5 3 8 8 8h19c33 0 43 16 43 45v286c0 28 -10 44 -43 44h-19c-5 0 -8 3 -8 8v19l2 2s68 -2 103 -2c39 0 108 2 108 2l2 -2v-19c0 -5 -4 -8 -9 -8h-19c-32 0 -43 -16 -43 -44
-v-121h385h31l-154 172c-12 14 0 20 17 20h389c17 0 28 -5 16 -20l-124 -172h29c80 0 123 -51 171 -115l39 -51c18 -24 36 -44 67 -44h12c4 0 8 -3 8 -8v-19l-2 -2s-71 2 -110 2c-36 0 -108 -2 -108 -2l-2 2v19c0 5 3 8 8 8h17c41 0 54 16 32 44l-38 51
-c-44 58 -67 81 -115 81h-42v-132c0 -30 16 -44 55 -44h7c4 0 8 -3 8 -8v-19l-2 -2s-64 2 -103 2c-36 0 -107 -2 -107 -2l-2 2v19c0 5 3 8 8 8h7c41 0 55 16 55 44v132h-34z" />
-    <glyph glyph-name="uni0460" unicode="&#x460;" horiz-adv-x="954" 
-d="M438 188c0 32 -15 44 -54 44h-27c-4 0 -8 3 -8 8v19l2 2s87 -2 126 -2c36 0 129 2 129 2l2 -2v-19c0 -5 -3 -8 -8 -8h-26c-41 0 -55 -16 -55 -44v-52c0 -43 26 -113 126 -113c117 0 169 155 169 306c0 176 -68 294 -151 294c-20 0 -38 -14 -38 -27c0 -15 7 -22 7 -46
-c0 -26 -21 -52 -57 -52c-39 0 -46 33 -46 62c0 50 45 98 124 98c140 0 253 -150 253 -331c0 -152 -53 -339 -253 -339c-103 0 -140 40 -171 89h-6c-31 -49 -68 -89 -171 -89c-200 0 -252 187 -252 339c0 181 112 331 252 331c79 0 124 -48 124 -98c0 -29 -7 -62 -46 -62
-c-36 0 -56 26 -56 52c0 24 6 31 6 46c0 13 -18 27 -38 27c-83 0 -150 -118 -150 -294c0 -151 51 -306 168 -306c100 0 125 70 125 113v52z" />
-    <glyph glyph-name="uni0461" unicode="&#x461;" horiz-adv-x="673" 
-d="M299 148c0 28 -9 44 -43 44h-19c-5 0 -8 3 -8 8v19l2 2s68 -2 104 -2c39 0 107 2 107 2l2 -2v-19c0 -5 -4 -8 -8 -8h-19c-33 0 -43 -15 -43 -44v-31c0 -37 7 -101 77 -101c93 0 109 131 109 204c0 108 -27 194 -105 194c-14 0 -18 -5 -18 -13c0 -5 2 -10 4 -13
-s4 -9 4 -16c0 -19 -14 -33 -34 -33s-35 16 -35 37c0 30 23 66 83 66c109 0 180 -93 180 -223c0 -101 -61 -231 -177 -231c-78 0 -108 39 -124 78h-3c-16 -39 -46 -78 -124 -78c-115 0 -177 130 -177 231c0 130 71 223 180 223c60 0 83 -36 83 -66c0 -21 -15 -37 -35 -37
-c-19 0 -33 14 -33 33c0 7 1 13 4 16c2 3 3 8 3 13c0 8 -4 13 -18 13c-77 0 -105 -86 -105 -194c0 -73 16 -204 109 -204c70 0 77 64 77 101v31z" />
-    <glyph glyph-name="uni046E" unicode="&#x46e;" horiz-adv-x="542" 
-d="M54 454l20 175c61 7 102 24 141 27l-111 126l3 7h72l6 -2l81 -93l37 59c17.4 27.7 36 41 62 41s42 -18 42 -38c0 -14 -8 -25 -24 -25c-11 0 -15.9 5 -19 16c-2 7 -5 13 -14 13s-17 -7 -24 -19l-50 -84c88 -6 192 -49 192 -153c0 -80 -55 -119 -124 -146v-5
-c75 -17 158 -51 158 -158c0 -122 -112 -193 -237 -217c-50 -10 -156 -38 -156 -110c0 -54 51 -66 111 -66c51 0 85 16 111 40c17 16 34 30 56 30c24 0 30 -16 30 -30c0 -40 -74 -74 -178 -74c-76 0 -180 20 -180 122c0 88 87 124 189 150c78 20 162 59 162 165
-c0 79 -46 123 -125 123c-60 0 -66 -51 -105 -51c-19 0 -33 12 -33 32c0 37 46 49 81 49c119 0 152 74 152 148c0 78 -64 118 -126 118c-119 0 -146 -91 -170 -172z" />
-    <glyph glyph-name="uni046F" unicode="&#x46f;" horiz-adv-x="406" 
-d="M40 290c6 42 10 81 11 132c65 8 76 16 117 19l-96 121l2 10h60l6 -2l72 -92l33 62c15 27 32 38 55 38c30 0 42 -19 42 -35c0 -14 -5 -25 -21 -25c-10 0 -17 6 -21 17c-3 8 -7 11 -14 11c-10 0 -17 -9 -23 -21l-44 -84c60 -5 137 -32 137 -109c0 -45 -41 -83 -84 -94v-4
-c28 -5 98 -27 98 -106c0 -67 -47 -117 -189 -152c-63 -16 -105 -39 -105 -83c0 -45 45 -51 76 -51c39 0 65 29 104 29c20 0 36 -12 36 -30c0 -32 -35 -39 -78 -39c-106 0 -170 34 -170 110c0 68 51 103 134 124c39 10 111 30 111 98c0 52 -19 83 -79 83
-c-44 0 -43 -43 -68 -43c-18 0 -32 10 -32 33c0 29 41 43 68 43c43 0 104 8 104 84c0 59 -52 79 -91 79c-79 0 -110 -60 -124 -128z" />
-    <glyph glyph-name="uni0483" unicode="&#x483;" 
-d="M-308 579c57 0 113 -60 149 -60c15 0 27 10 27 23c0 27 -34 22 -34 56c0 10 13 25 33 25c24 0 40 -22 40 -51c0 -36 -27 -74 -69 -74c-52 0 -94 60 -145 60c-35 0 -44 -19 -44 -31c0 -17 16 -26 16 -43s-16 -27 -31 -27c-16 0 -35 13 -35 38c0 36 40 84 93 84z" />
-    <glyph glyph-name="uni047C" unicode="&#x47c;" horiz-adv-x="954" 
-d="M438 188c0 32 -15 44 -54 44h-27c-4 0 -8 3 -8 8v19l2 2s87 -2 126 -2c36 0 129 2 129 2l2 -2v-19c0 -5 -3 -8 -8 -8h-26c-41 0 -55 -16 -55 -44v-52c0 -43 26 -113 126 -113c117 0 169 155 169 306c0 176 -68 294 -151 294c-20 0 -38 -14 -38 -27c0 -15 7 -22 7 -46
-c0 -26 -21 -52 -57 -52c-39 0 -46 33 -46 62c0 50 45 98 124 98c140 0 253 -150 253 -331c0 -152 -53 -339 -253 -339c-103 0 -140 40 -171 89h-6c-31 -49 -68 -89 -171 -89c-200 0 -252 187 -252 339c0 181 112 331 252 331c79 0 124 -48 124 -98c0 -29 -7 -62 -46 -62
-c-36 0 -56 26 -56 52c0 24 6 31 6 46c0 13 -18 27 -38 27c-83 0 -150 -118 -150 -294c0 -151 51 -306 168 -306c100 0 125 70 125 113v52zM496 787c57 0 113 -60 149 -60c15 0 27 10 27 23c0 27 -34 22 -34 56c0 10 13 25 33 25c24 0 40 -22 40 -51c0 -36 -27 -74 -69 -74
-c-52 0 -94 60 -145 60c-35 0 -44 -19 -44 -31c0 -17 16 -26 16 -43s-16 -27 -31 -27c-16 0 -35 13 -35 38c0 36 40 84 93 84z" />
-    <glyph glyph-name="uni047D" unicode="&#x47d;" horiz-adv-x="673" 
-d="M288 602c57 0 113 -60 149 -60c15 0 27 10 27 23c0 27 -34 22 -34 56c0 10 13 25 33 25c24 0 40 -22 40 -51c0 -36 -27 -74 -69 -74c-52 0 -94 60 -145 60c-35 0 -44 -19 -44 -31c0 -17 16 -26 16 -43s-16 -27 -31 -27c-16 0 -35 13 -35 38c0 36 40 84 93 84zM299 148
-c0 28 -9 44 -43 44h-19c-5 0 -8 3 -8 8v19l2 2s68 -2 104 -2c39 0 107 2 107 2l2 -2v-19c0 -5 -4 -8 -8 -8h-19c-33 0 -43 -15 -43 -44v-31c0 -37 7 -101 77 -101c93 0 109 131 109 204c0 108 -27 194 -105 194c-14 0 -18 -5 -18 -13c0 -5 2 -10 4 -13s4 -9 4 -16
-c0 -19 -14 -33 -34 -33s-35 16 -35 37c0 30 23 66 83 66c109 0 180 -93 180 -223c0 -101 -61 -231 -177 -231c-78 0 -108 39 -124 78h-3c-16 -39 -46 -78 -124 -78c-115 0 -177 130 -177 231c0 130 71 223 180 223c60 0 83 -36 83 -66c0 -21 -15 -37 -35 -37
-c-19 0 -33 14 -33 33c0 7 1 13 4 16c2 3 3 8 3 13c0 8 -4 13 -18 13c-77 0 -105 -86 -105 -194c0 -73 16 -204 109 -204c70 0 77 64 77 101v31z" />
-    <glyph glyph-name="uni047E" unicode="&#x47e;" horiz-adv-x="954" 
-d="M438 188c0 32 -15 44 -54 44h-27c-4 0 -8 3 -8 8v19l2 2s87 -2 126 -2c36 0 129 2 129 2l2 -2v-19c0 -5 -3 -8 -8 -8h-26c-41 0 -55 -16 -55 -44v-52c0 -43 26 -113 126 -113c117 0 169 155 169 306c0 176 -68 294 -151 294c-20 0 -38 -14 -38 -27c0 -15 7 -22 7 -46
-c0 -26 -21 -52 -57 -52c-39 0 -46 33 -46 62c0 50 45 98 124 98c140 0 253 -150 253 -331c0 -152 -53 -339 -253 -339c-103 0 -140 40 -171 89h-6c-31 -49 -68 -89 -171 -89c-200 0 -252 187 -252 339c0 181 112 331 252 331c79 0 124 -48 124 -98c0 -29 -7 -62 -46 -62
-c-36 0 -56 26 -56 52c0 24 6 31 6 46c0 13 -18 27 -38 27c-83 0 -150 -118 -150 -294c0 -151 51 -306 168 -306c100 0 125 70 125 113v52z" />
-    <glyph glyph-name="uni047F" unicode="&#x47f;" horiz-adv-x="673" 
-d="M299 148c0 28 -9 44 -43 44h-19c-5 0 -8 3 -8 8v19l2 2s68 -2 104 -2c39 0 107 2 107 2l2 -2v-19c0 -5 -4 -8 -8 -8h-19c-33 0 -43 -15 -43 -44v-31c0 -37 7 -101 77 -101c93 0 109 131 109 204c0 108 -27 194 -105 194c-14 0 -18 -5 -18 -13c0 -5 2 -10 4 -13
-s4 -9 4 -16c0 -19 -14 -33 -34 -33s-35 16 -35 37c0 30 23 66 83 66c109 0 180 -93 180 -223c0 -101 -61 -231 -177 -231c-78 0 -108 39 -124 78h-3c-16 -39 -46 -78 -124 -78c-115 0 -177 130 -177 231c0 130 71 223 180 223c60 0 83 -36 83 -66c0 -21 -15 -37 -35 -37
-c-19 0 -33 14 -33 33c0 7 1 13 4 16c2 3 3 8 3 13c0 8 -4 13 -18 13c-77 0 -105 -86 -105 -194c0 -73 16 -204 109 -204c70 0 77 64 77 101v31z" />
-    <glyph glyph-name="J.alt" unicode="&#xe0ed;" horiz-adv-x="414" 
-d="M352 658c34 0 42 -20 42 -33c0 -23 -28 -47 -51 -65v-36c0 -61 2 -143 5 -164c3 -22 16 -24 49 -27l1 -25l-52 -5v-165c0 -240 -77 -338 -187 -338c-52 0 -106 28 -106 65c0 15 8 34 32 34c65 0 41 -64 82 -64c29 0 51 12 73 51c22 38 33 96 31 186c0 22 -2 104 -2 132
-v98l-123 9l-2 20l127 7v12c1 101 4 126 26 198l-1 4c-4 -3 -9 -4 -16 -4c-54 0 -120 69 -172 69c-21 0 -33 -13 -33 -25c0 -16 40 -25 40 -59c0 -16 -10 -23 -28 -23c-35 0 -44 35 -44 55c0 40 29 93 117 93c44 0 100 -44 146 -65c0 26 13 65 46 65z" />
-    <glyph glyph-name="uniE0EE" unicode="&#xe0ee;" horiz-adv-x="550" 
-d="M498 387c0 -79 -56 -203 -177 -373c6 -30 7 -59 7 -87c0 -35 -9 -165 -69 -165c-40 0 -51 57 -51 86c0 47 26 105 78 175c-33 145 -77 236 -135 331c-10 17 -24 25 -41 25c-25 0 -45 -29 -61 -64l-28 9c18 51 53 118 116 118c64 0 80 -33 97 -80c35 -98 63 -171 81 -309
-c72 115 134 204 134 262c0 21 -10 29 -23 36c-13 5 -33 24 -33 49c0 29 20 42 45 42c33 0 60 -24 60 -55zM289 -27c-24 -41 -31 -93 -31 -118c0 -19 6 -24 10 -24c8 0 21 22 21 122v20z" />
-    <glyph glyph-name="uniE0EF" unicode="&#xe0ef;" horiz-adv-x="550" 
-d="M255.8 -8c-17.8 -52 -17.8 -67.3 -17.8 -120c0 -40 14 -68 23 -68c14 0 20 18 20 44c0 29.5 -7.20001 75.8 -25.2 144zM278.1 141c27.5 69.1 64.4 154.8 100.9 218c42 73 69 83 93 83c28 0 48 -16 48 -40c0 -17 -15 -36 -33 -36c-20 0 -25 4 -37 4c-20 0 -34 -15 -48 -35
-c-37.1 -54.3 -77.1 -156.1 -109.2 -242.1c5.5 -19 10.6 -38 15.2 -56.9c15 -67 26 -131 26 -156c0 -64 -20 -115 -80 -115c-40 0 -55 70 -55 100c0 44 4.39999 76.7 41.9 178.4c-32.2 101.5 -79.4 214.2 -119.9 300.6c-16 33 -32 36 -48 36c-11 0 -20 -1 -37 -5l-5 30
-c76 15 83 37 115 37c11 0 16 -5 20 -13c39.7 -93.4 80.6 -190.6 112.1 -288z" />
-    <glyph glyph-name="uniE0F3" unicode="&#xe0f3;" horiz-adv-x="500" 
-d="M488 392c0 -90 -36 -192 -181 -392c4 -42 5 -81 5 -108c0 -36 -20 -127 -57 -127c-24 0 -27 54 -27 96c0 29 9 87 30 130c-11 81 -41 205 -72 286c-36 91 -49 100 -69 109c-16 7 -44 8 -68 1l-4 24c25 12 47 21 72 21c65 0 89 -45 126 -144c27 -70 49 -168 57 -249
-c74 103 139 254 139 281c0 21 -10 29 -23 35s-33 24 -33 50c0 29 20 42 45 42c33 0 60 -24 60 -55z" />
-    <glyph glyph-name="uniE0F4" unicode="&#xe0f4;" horiz-adv-x="494" 
-d="M246 -29c-14 -41 -22 -76 -22 -99c0 -40 8 -68 23 -68c14 0 19 18 19 44c0 27 -5 66 -20 123zM184 -135c0 32 7 68 20 99l27 63c-32 105 -82 226 -125 317c-15 33 -31 36 -48 36c-11 0 -20 -1 -37 -5l-5 30c77 15 84 37 115 37c12 0 16 -5 20 -13
-c43 -101 88 -206 120 -312c26 65 57 144 84 217c13 34 25 75 28 102c11 -4 41 -7 49 -7c14 0 27 2 50 9l5 -2c-28 -34 -46 -63 -68 -104l-104 -205c-10 -20 -20 -41 -29 -61c2 -10 5 -20 7 -30c16 -67 26 -131 26 -156c0 -64 -12 -115 -71 -115c-45 0 -64 58 -64 100z" />
-    <glyph glyph-name="openbullet" unicode="&#x25e6;" horiz-adv-x="351" 
-d="M49 234c0 69 61 125 126 125c67 0 127 -56 127 -128c0 -62 -49 -126 -127 -126c-69 0 -126 57 -126 129zM79 234c0 -55 44 -98 96 -98c59 0 97 48 97 95c0 55 -46 98 -97 98c-49 0 -96 -43 -96 -95z" />
-    <glyph glyph-name="uni22EE" unicode="&#x22ee;" horiz-adv-x="204" 
-d="M104 672c29 0 53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53s24 53 53 53zM104 407c29 0 53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53s24 53 53 53zM104 143c29 0 53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53s24 53 53 53z" />
-    <glyph glyph-name="uni0357" unicode="&#x357;" 
-d="M-77 611c0 -51 -42 -92 -93 -92c-13 0 -24 2 -35 7l12 30c7 -3 14 -4 23 -4c35 0 57 28 57 59c0 33 -23 59 -57 59c-6 0 -11 0 -16 -2l-8 31c7 2 15 3 24 3c51 0 93 -41 93 -91z" />
-    <glyph glyph-name="uni0351" unicode="&#x351;" 
-d="M-220 601c0 50 42 91 94 91c9 0 16 -1 24 -3l-8 -31c-5 2 -10 2 -16 2c-34 0 -57 -26 -57 -59c0 -31 22 -59 57 -59c9 0 16 1 23 4l12 -30c-11 -5 -22 -7 -35 -7c-51 0 -94 41 -94 92z" />
-    <glyph glyph-name="uni21A6" unicode="&#x21a6;" horiz-adv-x="1130" 
-d="M107 448h50v-157h772c-33 27 -75 73 -114 157h40s109 -130 217 -174v-23c-49 -17 -131 -72 -216 -169h-39c31 72 79 126 112 157h-772v-157h-50v366z" />
-    <glyph glyph-name="uniE128" unicode="&#xe128;" horiz-adv-x="180" 
-d="M149 642v-704h940v704h-940zM105 686h1028v-791h-1028v791z" />
-    <glyph glyph-name="uniE129" unicode="&#xe129;" horiz-adv-x="180" 
-d="M986 642h-734c-56 0 -103 -47 -103 -103v-601h940v601c0 56 -46 103 -103 103zM986 686c81 0 147 -66 147 -147v-644h-1028v644c0 81 66 147 147 147h734z" />
-    <glyph glyph-name="uniE12A" unicode="&#xe12a;" horiz-adv-x="180" 
-d="M986 -62c57 0 103 47 103 104v497c0 56 -46 103 -103 103h-734c-56 0 -103 -47 -103 -103v-497c0 -57 47 -104 103 -104h734zM986 -105h-734c-81 0 -147 65 -147 147v497c0 81 66 147 147 147h734c81 0 147 -66 147 -147v-497c0 -82 -66 -147 -147 -147z" />
-    <glyph glyph-name="uni1E9C" unicode="&#x1e9c;" horiz-adv-x="291" 
-d="M243 438l17 -30l-88 -51.2v-234.8c0 -83 11 -88 79 -91c6 -6 6 -27 0 -33c-43 1 -72 2 -118 2c-41 0 -63 -1 -105 -2c-6 6 -6 27 0 33c54 3 65 8 65 91v188.8l-70 -40.8l-17 29l87 51v29c0 12 -1 16 -15 16h-44c-4 0 -5 1 -5 5v9c0 8 5 20 23 20c31 0 41 21 41 48
-c0 158 88 221 155 221c41 0 63 -12 83 -30c15 -13 26 -29 26 -46s-9 -38 -35 -38c-27 0 -41 14 -46 41c-4 20 -11 39 -35 39c-53 0 -69 -70 -69 -190v-77.6z" />
-    <glyph glyph-name="uni1E9D" unicode="&#x1e9d;" horiz-adv-x="291" 
-d="M267 572v-39h-93.4c-1.10001 -18 -1.60001 -37.7 -1.60001 -59v-352c0 -83 11 -88 79 -91c6 -6 6 -27 0 -33c-43 1 -72 2 -118 2c-41 0 -63 -1 -105 -2c-6 6 -6 27 0 33c54 3 65 8 65 91v257c0 12 -1 16 -15 16h-44c-4 0 -5 1 -5 5v9c0 8 5 20 23 20c31 0 41 21 41 48
-c0 20.2 1.5 38.8 4.1 56h-73.1v39h81.8c26.8 88.8 90.7 126 142.2 126c41 0 63 -12 83 -30c15 -13 26 -29 26 -46s-9 -38 -35 -38c-27 0 -41 14 -46 41c-4 20 -11 39 -35 39c-36.3 0 -55.3 -32.8 -63.6 -92h89.6z" />
-    <glyph glyph-name="uni1E9F" unicode="&#x1e9f;" horiz-adv-x="515" 
-d="M118 196c0 -76 24 -171 142 -171c114 0 135 86 135 174c0 57 -40 151 -135 214c-114 -56 -142 -105 -142 -217zM37 186c0 86 47 194 194 247c-84 62 -126 101 -126 157c0 86 76 108 140 108c60 0 106 -11 138 -32c33 -22 49 -40 49 -52c0 -31 -38 -40 -52 -40
-c-10 0 -26 15 -48 45c-20 28 -50 42 -87 42c-45 0 -104 -14 -104 -71c0 -38 54 -74 171 -138s167 -166 167 -242c0 -178 -122 -220 -229 -220c-171 0 -213 123 -213 196z" />
-    <glyph glyph-name="uni1EFA" unicode="&#x1efa;" horiz-adv-x="780" 
-d="M187 572v-499c0 -30 15 -44 55 -44h67c42 0 51 10 51 45v498c0 30 -15 44 -54 44h-64c-41 0 -55 -16 -55 -44zM603 39c76 0 105 59 126 131l30 -5c-11 -52 -22 -111 -27 -167c-50 1 -127 2 -127 2h-458c-49 0 -78 -1 -127 -2l-2 2v19c0 5 3 7.7 7 8l27 2
-c40.6 3 54 16 54 44v499c0 30 -17.1 41.3 -54 44l-27 2c-4 0.299988 -8 3 -8 8v19l2 2c49 -1 78 -2 127 -2h253c36 0 129 2 129 2l2 -2v-19c0 -5 -3 -7.59998 -8 -8l-26 -2c-39.6 -3 -55 -16 -55 -44v-483c0 -31 18 -50 47 -50h115z" />
-    <glyph glyph-name="uni1EFB" unicode="&#x1efb;" horiz-adv-x="534" 
-d="M438 546h66v-34h-66v-390c0 -83 11 -88 72 -91c6 -6 6 -27 0 -33c-33 1 -71 2 -111 2s-77 -1 -112 -2c-6 6 -6 27 0 33c61 3 72 8 72 91v390h-175v-390c0 -83 11 -88 72 -91c6 -6 6 -27 0 -33c-33 1 -71 2 -111 2s-77 -1 -112 -2c-6 6 -6 27 0 33c61 3 72 8 72 91v390
-h-64v34h64v13c0 75 -6 78 -64 82c-6 6 -8 22 -6 30c40 3 115 17 140 27c9 0 13 -3 13 -10c0 0 -4 -40 -4 -105v-37h175v13c0 75 -6 78 -64 82c-6 6 -8 22 -6 30c40 3 115 17 140 27c9 0 13 -3 13 -10c0 0 -4 -40 -4 -105v-37z" />
-    <glyph glyph-name="uni1EFD" unicode="&#x1efd;" horiz-adv-x="488" 
-d="M346 409c55 -34 111 -92 111 -198c0 -124.1 -83 -221 -214 -221c-91.6 0 -201 65 -201 236c0 223 155 393 306 472l16 -21c-140 -101 -241 -262 -241 -445c0 -147 86 -200 133 -200c50 0 123 33 123 172c0 69 -23 146 -70 180z" />
-    <glyph glyph-name="uni1EFC" unicode="&#x1efc;" horiz-adv-x="546" 
-d="M324 414c112 0 182 -93 182 -184c0 -140 -79 -240 -243 -240c-120 0 -218 82 -218 265c0 166 164 339 330 403l16 -27c-155 -81 -259 -219 -259 -370c0 -167 92 -228 143 -228c80 0 147 45 147 186c0 72 -33 146 -89 146z" />
-    <glyph glyph-name="uni1EFF" unicode="&#x1eff;" horiz-adv-x="509" 
-d="M73 -175c0 -19 15 -30 31 -30c24 0 51 24 63 52l42 96c-45 0 -136 -67 -136 -118zM206 -149c-27 -62 -66 -84 -106 -84c-33 0 -61 25 -61 62c0 64 108 140 181 140c3 5 5 29 5 34c0 10 -9 37 -17 57l-126 293c-16 38 -27 49 -61 49c-6 0 -10 3 -10 7v20l2 2s45 -2 74 -2
-c47 0 82 0 119 2l2 -3v-18c0 -5 -6 -8 -11 -8c-30 0 -43 -6 -43 -22c0 -6 2 -14 6 -23l110 -258l111 254c5 9 7 17 7 23c0 21 -20 26 -42 26h-4c-5 0 -10 4 -10 7v19l2 3s59 -2 94 -2c28 0 69 2 69 2l3 -2v-19c0 -5 -4 -8 -11 -8c-38 0 -57 -39 -71 -68
-c-51 -107 -89 -208 -168 -385z" />
-    <glyph glyph-name="uni1EFE" unicode="&#x1efe;" horiz-adv-x="580" 
-d="M268.3 167.9l-180.3 391.1c-9 20 -29 59 -78 59c-6 0 -10 3 -10 7v20l1 1s63 -1 104 -1c50 0 130 1 130 1l2 -1v-19c0 -5 -2 -8 -7 -8h-38c-21 0 -28 -6 -28 -16c0 -7 2 -16 6 -27l158 -346l130 346c5 12 7 20 7 26c0 14 -13 17 -40 17h-29c-4 0 -6 3 -6 7v20l1 1
-s66 -1 108 -1c32 0 80 1 80 1l2 -1v-19c0 -6 -7 -8 -11 -8c-46 0 -56 -12 -71 -52l-157 -405c-43 -109 -92 -173 -174 -173c-31 0 -66 22 -66 62c0 73.5 117.1 105.9 166.3 117.9zM283 136c-66 -18 -130 -43 -130 -78c0 -16 11 -27 30 -27c31 0 69 30 100 105z" />
-    <glyph glyph-name="tcommaaccent.sc" unicode="&#xe0b4;" horiz-adv-x="529" 
-d="M259 -41c38 0 62 -34 62 -86c0 -60 -49 -90 -106 -99c-6 6 -8 15 -8 24c49 11 75 35 75 53c0 20 -13 24 -31 26c-17 3 -42 12 -42 39c0 24 21 43 50 43zM304 122c0 -83 11 -87 72 -91c6 -6 6 -27 0 -33c-37 1 -76.5 2 -111 2s-75 -1 -112 -2c-6 6 -6 27 0 33
-c61 5 72 8 72 91v253c0 39 -12 51 -43 51h-24c-65 0 -76 -20 -96 -92c-9 -0.899994 -18 -0.200012 -27 3c5.5 47 6.5 86 7 133c27 -4.70001 85 -10 183 -10h79c84 0 148.3 5.70001 183 10c1.5 -47.5 3 -84.5 8 -133c-7.60001 -4.70001 -16.8 -5.10001 -27 -3
-c-20 72 -33 92 -96 92h-26c-32 0 -42 -15 -42 -52v-252z" />
-    <glyph glyph-name="scommaaccent.sc" unicode="&#xe0b5;" horiz-adv-x="412" 
-d="M339 448c5.5 -38 6 -77 4 -106c-9 -5 -18 -5 -27 -2c-15 64 -59 97 -108 97c-52 0 -80 -28 -80 -71c0 -42.5 47 -67 97 -91c48.1 -23.1 139 -68 139 -146c0 -86.1 -57 -141 -146 -141c-77 0 -106 17 -125 17c-12 0 -22 -2 -33 -6c-7 32 -8.7 70.5 -11 141
-c9.9 3.8 19 4.5 32 2c18 -89 63 -121 119 -121c59 0 86 28 86 86c0 57 -43 80 -108 110c-41 19 -119 58 -119 131c0 82 78 122 148 122c81 0 107 -22 132 -22zM195 -41c38 0 62 -34 62 -86c0 -60 -49 -90 -106 -99c-6 6 -8 15 -8 24c49 11 75 35 75 53c0 20 -13 24 -31 26
-c-17 3 -42 12 -42 39c0 24 21 43 50 43z" />
-    <glyph glyph-name="idotaccent.sc" unicode="&#xe0b6;" horiz-adv-x="311" 
-d="M105 599c0 24 28 48 52 48c27 0 48 -28 48 -52c0 -21.1 -24 -48 -52 -48c-24 0 -48 26 -48 52zM195 338v-216c0 -83 11 -87 72 -91c6 -6 6 -27 0 -33c-35 1 -78.6 2 -111 2c-33.7 0 -75 -1 -112 -2c-6 6 -6 27 0 33c61 5 72 8 72 91v216c0 83 -11 87 -72 91
-c-6 6 -6 27 0 33c39 -1 80.7 -2 111 -2c30.7 0 74 1 112 2c6 -6 6 -27 0 -33c-61 -5 -72 -8 -72 -91z" />
-    <glyph glyph-name="uniE0F5" unicode="&#xe0f5;" horiz-adv-x="550" 
-d="M261.2 5.2c-1 3.9 -2.10001 7.8 -3.20001 11.8c-31 116 -93 229 -152 317c-20 31 -36 37 -53 37c-11 0 -20 -2 -37 -5l-5 29c77 15 84 37 111 37c11 0 15 -5 19 -13c67.8 -118.9 128.7 -235.2 160.3 -355.3c65.5 99.8 111.7 199.5 111.7 251.3c0 21 -3 40 -19 49
-c-20 11 -30 28 -30 46c0 21 16 32 40 32c40 0 65 -27 65 -60c0 -73.7 -52.3 -207.5 -157.6 -362.4c12.5 -59.8 22.6 -110.2 22.6 -139.6c0 -67 -25 -115 -80 -115c-40 0 -61 36 -61 65c0 43.6 5.2 82 68.2 175.2zM271.8 -38.4c-29.2 -48.2 -38.8 -91.2 -38.8 -124.6
-c0 -16 5 -38 28 -38c14 0 25 23 25 49c0 25 -2.79999 61.4 -14.2 113.6z" />
-    <glyph glyph-name="uniE130" unicode="&#xe130;" horiz-adv-x="166" 
-d="M271 223h-216c-9 0 -15 9 -15 19c0 18 13 41 25 41h219c10 0 14 -10 14 -20c0 -12 -14 -40 -27 -40z" />
-    <glyph glyph-name="uni2300" unicode="&#x2300;" horiz-adv-x="566" 
-d="M283 403c-102 0 -188 -83 -188 -185c0 -52.2 22.1 -100.8 57.1 -136l239.6 286.9c-30.9 21.5 -68.5 34.1 -108.7 34.1zM127.2 52.3c-43.7 42.3 -71.2 101.6 -71.2 165.7c0 123 103 224 227 224c49.6 0 95.9 -16.1 133.5 -43.4l65.5 78.4l28 -24l-65.4 -78.5
-c40.3 -40.5 65.4 -95.8 65.4 -156.5c0 -124 -102 -230 -227 -230c-46.8 0 -90.5 15.1 -126.9 40.5l-72.1 -86.5l-28 25zM180.8 58.1c29.6 -20.2 64.8 -32.1 102.2 -32.1c104 0 189 90 189 192c0 49.1 -19.9 93.7 -52.1 126.9z" />
-    <glyph glyph-name="ampersand.sc" unicode="&#xe0bd;" horiz-adv-x="605" 
-d="M424 322c-12 0 -16 6 -16 14c0 13 13 29 28 29h141c12 0 16 -6 16 -13c0 -14 -13 -30 -28 -30h-63c-15 -253 -127 -334 -256 -334c-123 0 -204 68 -204 176c0 73 54 142 107 182c-23 30 -30 55 -30 83c0 65 62 144 179 144c42 0 73 -21 98 -21c0 -28 7 -80 13 -114
-l-27 -5c-13 51 -51 101 -113 101c-73 0 -95 -60 -95 -90c0 -50 18 -79 55 -79h94c12 0 16 -6 16 -13c0 -14 -13 -30 -28 -30h-107c-48 0 -92 -60 -92 -112c0 -63 21 -168 152 -168c133 0 198 169 198 241c0 24 -16 39 -38 39z" />
-    <glyph glyph-name="uniE0F0" unicode="&#xe0f0;" horiz-adv-x="696" 
-d="M396 379l95 -287l75 259c2 7 4 14 4 21c0 18 -12 30 -44 30h-13c-5 0 -9 4 -9 7v20l3 2s61 -2 98 -2c35 0 75 2 75 2l1 -2v-19c0 -6 -7 -8 -13 -8c-25 0 -56 -14 -70 -61l-102 -332c-5.29999 -17.2 -11 -21 -20 -21c-10 0 -20 5 -25 20l-107 314l-114 -312
-c-6 -16 -13 -22 -23 -22c-9 0 -19.3 4.9 -24 20l-104 331c-12 39 -29 63 -59 63c-5 0 -12 2 -12 7v20l2 2s42 -2 86 -2c47 0 104 2 104 2l2 -3v-18c0 -5 -4 -8 -9 -8h-15c-19 0 -32 -8 -32 -20c0 -7 2 -16 5 -26l76 -267l93 267c11.5 32.9 36 50 47 50c16 0 23 -9 29 -27z
-" />
-    <glyph glyph-name="y.alt" unicode="&#xe0f6;" horiz-adv-x="514" 
-d="M368 17c0 11 -1 23 -4 32c-2 7 -7 5 -12 1c-49 -40 -96 -60 -135 -60c-99 0 -129 67 -129 136v192c0 65 -14 76 -62 80c-6 6 -6 27 0 33c37 -1 70 -2 102 -2c15 0 30 1 35 2c5 0 8 -3 8 -6c0 0 -4 -73 -4 -103v-182c0 -89 50 -103 80 -103c25 0 63 16 100 48
-c14 12 16 20 16 39v193c0 66 -13 78 -62 81c-6 6 -6 27 0 33c37 -1 70 -2 102 -2c15 0 30 1 35 2c5 0 8 -3 8 -6c0 0 -4 -73 -4 -103v-221c0 -225.5 -32.2 -240.5 -60 -273c-29.5 -34.5 -58 -63 -142 -63c-41 0 -135 13 -135 57c0 18 24 41 35 41c26 0 31.7 -13.2 46 -28
-c15.5 -16 31 -34 59 -34c40 0 76.1 14.9 93.5 42c25 39 29.5 104 29.5 174z" />
-    <glyph glyph-name="married" unicode="&#x26ad;" horiz-adv-x="758" 
-d="M86 214c0 -95 79 -174 174 -174c27.6 0 53.9 6.7 77.3 18.5c-39.1 40.4 -63.3 95.3 -63.3 155.5c0 60.2 24.2 115.1 63.3 155.5c-23.4 11.8 -49.7 18.5 -77.3 18.5c-95 0 -174 -79 -174 -174zM36 214c0 123 101 224 224 224c43.6 0 84.4 -12.7 119 -34.6
-c34.6 21.9 75.4 34.6 119 34.6c123 0 224 -101 224 -224s-101 -224 -224 -224c-43.6 0 -84.4 12.7 -119 34.6c-34.6 -21.9 -75.4 -34.6 -119 -34.6c-123 0 -224 101 -224 224zM379 340.1c-33.7 -31.9 -55 -76.8 -55 -126.1c0 -49.3 21.3 -94.2 55 -126.1
-c33.7 31.9 55 76.8 55 126.1c0 49.3 -21.3 94.2 -55 126.1zM420.7 58.5c23.4 -11.8 49.7 -18.5 77.3 -18.5c95 0 174 79 174 174s-79 174 -174 174c-27.6 0 -53.9 -6.70001 -77.3 -18.5c39.1 -40.4 63.3 -95.3 63.3 -155.5c0 -60.2 -24.2 -115.1 -63.3 -155.5z" />
-    <glyph glyph-name="uni214F" unicode="&#x214f;" horiz-adv-x="1059" 
-d="M827 362c-44 0 -56 -59 -56 -76c0 -54 33 -98 58 -124c20 30 48 81 48 134c0 15 -12 66 -50 66zM240 362c-45 0 -57 -62 -57 -81c0 -51 21 -95 39 -127c28 32 67 83 67 142c0 28 -18 66 -49 66zM528 362c-44 0 -56 -62 -56 -82c0 -53 26 -102 49 -132c25 35 56 90 56 149
-c0 27 -16 65 -49 65zM488 113c-27 49 -50 119 -50 195c0 56 21 131 88 131c73 0 85 -90 85 -124c0 -86 -33 -166 -59 -207c26 -24 68 -46 120 -46c57 0 100 30 125 58c-31 45 -59 114 -59 190c0 33 11 129 89 129c72 0 83 -88 83 -124c0 -74 -23 -143 -46 -187
-c58 -44 123 -59 183 -61l-9 -74c-89 2 -159 43 -205 89c-57 -80 -111 -92 -152 -92c-70 0 -124 40 -156 78c-60 -71 -114 -78 -146 -78c-36 0 -97 7 -157 86c-86 -79 -183 -83 -201 -83l-9 74c74 1 135 24 178 58c-23 45 -40 110 -40 184c0 57 20 130 87 130s85 -69 85 -126
-c0 -86 -35 -166 -65 -202c46 -45 98 -49 115 -49c45 0 89 23 116 51z" />
-    <glyph glyph-name="perpendicular" unicode="&#x22a5;" horiz-adv-x="629" 
-d="M289 578h51v-533h269v-45h-589v45h269v533z" />
-    <glyph glyph-name="uni22A6" unicode="&#x22a6;" horiz-adv-x="413" 
-d="M388 308v-45h-277v-273h-51v588h51v-270h277z" />
-    <glyph glyph-name="uni22A4" unicode="&#x22a4;" horiz-adv-x="629" 
-d="M340 -10h-51v533h-269v45h589v-45h-269v-533z" />
-    <glyph glyph-name="uni22A2" unicode="&#x22a2;" horiz-adv-x="663" 
-d="M638 306v-45h-527v-272h-51v589h51v-272h527z" />
-    <glyph glyph-name="uni22A3" unicode="&#x22a3;" horiz-adv-x="663" 
-d="M25 261v45h527v272h51v-589h-51v272h-527z" />
-    <glyph glyph-name="uni27C2" unicode="&#x27c2;" horiz-adv-x="629" 
-d="M289 578h51v-533h269v-45h-589v45h269v533z" />
-    <glyph glyph-name="uni2718" unicode="&#x2718;" horiz-adv-x="622" 
-d="M221 544c28 0 12 -49 90 -194c80 78 195 190 206 190c25 0 25 -48 25 -48c19 -2 30 -16 30 -28c0 -36 -44 -23 -213 -210c67 -140 96 -154 96 -175c0 -11 -3 -37 -36 -37c-4 -11 -15 -40 -30 -40c-7 0 -15 8 -24 13c-12 -7 -20 -19 -31 -19c-22 0 -36 52 -75 149
-c-123 -121 -138 -162 -151 -162c-10 0 -16 31 -16 35c-4 -2 -10 -4 -14 -4c-15 0 -28 30 -28 37c0 6 10 19 15 28c-4 10 -11 17 -11 26c0 22 137 128 159 149c-26 63 -67 190 -67 232c0 18 16 45 26 45c7 0 13 -10 26 -19c8 13 15 32 23 32z" />
-    <glyph glyph-name="uni2714" unicode="&#x2714;" horiz-adv-x="591" 
-d="M135 222c16 0 27.4 -97 43 -97c15.2 0 158 253 240 412c14 27.2 48 36 89 36c20.3 0 24 -4.40002 24 -11c0 -19.6 -127 -200.6 -331 -555c-7 -12 -21 -17 -42 -17c-80.8 0 -98 174 -98 174c0 18 16 45 26 45c7 0 16 -12 26 -19c8 13 15 32 23 32z" />
-    <glyph glyph-name="uniA765" unicode="&#xa765;" horiz-adv-x="531" 
-d="M191 288v-190c0 -31.8 5 -38 17 -48.4c28.3 -24.4 55.8 -25.6 70 -25.6c106 0 131 97 131 184c0 60 -9 118 -52 161c-15 15 -33 24 -58 24c-33.5 0 -108 -35 -108 -105zM114 559c0 84 -12 79 -64 82c-6 6 -8 22 -6 30c40 3 115 17 140 27c9 0 13 -3 13 -10
-c0 0 -4 -40 -4 -105v-13.6l64 30.6c19 9.09998 37 20 52 30l16 -33c3.60001 -6.40002 9.20001 -16.9 9.20001 -25.7c0 -7.39996 -5.10001 -13.5 -10.6 -13.5c-9.5 0 -21.9 14.7 -37.6 14.7c-3.5 0 -7.20001 -0.700012 -11 -2.5l-82 -39.1v-138.9c0 -22 2 -22 17 -6.70001
-c25.4 25.9 63.5 53.7 115 53.7c97 0 170 -99 170 -204c0 -81 -27 -142 -72 -187c-39 -39 -87 -58 -140 -58c-27.4 0 -50.2 4.6 -71 13c-11 4.4 -19 15 -19 -13v-100c0 -83 11 -87 82 -91c6 -6 6 -27 0 -33c-43 1 -74 2 -121 2c-44 0 -70 -1 -112 -2c-6 6 -6 27 0 33
-c61 3 72 8 72 91v603.3l-51 -24.3c-18.2 -8.70001 -37 -19 -53 -29l-15 34c-2.9 5.79999 -9 16.4 -9 25.6c0 6.69998 4 13 10.1 13c10 0 22.6 -16.4 38.7 -16.4c3.6 0 7.3 0.799988 11.2 2.79999l68 32.5v27.5z" />
-    <glyph glyph-name="uni26AC" unicode="&#x26ac;" horiz-adv-x="520" 
-d="M86 214c0 -95 79 -174 174 -174s174 79 174 174s-79 174 -174 174s-174 -79 -174 -174zM36 214c0 123 101 224 224 224s224 -101 224 -224s-101 -224 -224 -224s-224 101 -224 224z" />
-    <glyph glyph-name="divorced" unicode="&#x26ae;" horiz-adv-x="950" 
-d="M449 469h50v-138.5c39.5 64.3 110.6 107.5 191 107.5c123 0 224 -101 224 -224s-101 -224 -224 -224c-80.4 0 -151.5 43.2 -191 107.5v-147.5h-50v144.3c-39.9 -62.5 -109.9 -104.3 -189 -104.3c-123 0 -224 101 -224 224s101 224 224 224c79.1 0 149.1 -41.8 189 -104.3
-v135.3zM86 214c0 -95 79 -174 174 -174s174 79 174 174s-79 174 -174 174s-174 -79 -174 -174zM516 214c0 -95 79 -174 174 -174s174 79 174 174s-79 174 -174 174s-174 -79 -174 -174z" />
-    <glyph glyph-name="uni26AF" unicode="&#x26af;" horiz-adv-x="1188" 
-d="M86 214c0 -95 79 -174 174 -174s174 79 174 174s-79 174 -174 174s-174 -79 -174 -174zM36 214c0 123 101 224 224 224c116.3 0 212.9 -90.2 223.1 -204h221.8c10.2 113.8 106.8 204 223.1 204c123 0 224 -101 224 -224s-101 -224 -224 -224c-112.8 0 -207.2 85 -222 194
-h-224c-14.8 -109 -109.2 -194 -222 -194c-123 0 -224 101 -224 224zM754 214c0 -95 79 -174 174 -174s174 79 174 174s-79 174 -174 174s-174 -79 -174 -174z" />
-    <glyph glyph-name="uni222C" unicode="&#x222c;" horiz-adv-x="595" 
-d="M370 23c0 80 -2 106 -2 186v131c0 246 58 358 164 358c29 0 53 -18 53 -43c0 -22 -20 -39 -44 -39c-32 0 -34 33 -58 33c-21 0 -41 -37 -41 -170c0 -50 4 -122 4 -185v-119c0 -305 -64 -396 -162 -396c-32 0 -54 18 -54 43c0 20 20 37 39 37c27 0 41 -31 58 -31
-c28 0 43 118 43 195zM140 23c0 80 -2 106 -2 186v131c0 246 58 358 164 358c29 0 53 -18 53 -43c0 -22 -20 -39 -44 -39c-32 0 -34 33 -58 33c-21 0 -41 -37 -41 -170c0 -50 4 -122 4 -185v-119c0 -305 -64 -396 -162 -396c-32 0 -54 18 -54 43c0 20 20 37 39 37
-c27 0 41 -31 58 -31c28 0 43 118 43 195z" />
-    <glyph glyph-name="uni222D" unicode="&#x222d;" horiz-adv-x="875" 
-d="M650 23c0 80 -2 106 -2 186v131c0 246 58 358 164 358c29 0 53 -18 53 -43c0 -22 -20 -39 -44 -39c-32 0 -34 33 -58 33c-21 0 -41 -37 -41 -170c0 -50 4 -122 4 -185v-119c0 -305 -64 -396 -162 -396c-32 0 -54 18 -54 43c0 20 20 37 39 37c27 0 41 -31 58 -31
-c28 0 43 118 43 195zM390 23c0 80 -2 106 -2 186v131c0 246 58 358 164 358c29 0 53 -18 53 -43c0 -22 -20 -39 -44 -39c-32 0 -34 33 -58 33c-21 0 -41 -37 -41 -170c0 -50 4 -122 4 -185v-119c0 -305 -64 -396 -162 -396c-32 0 -54 18 -54 43c0 20 20 37 39 37
-c27 0 41 -31 58 -31c28 0 43 118 43 195zM140 23c0 80 -2 106 -2 186v131c0 246 58 358 164 358c29 0 53 -18 53 -43c0 -22 -20 -39 -44 -39c-32 0 -34 33 -58 33c-21 0 -41 -37 -41 -170c0 -50 4 -122 4 -185v-119c0 -305 -64 -396 -162 -396c-32 0 -54 18 -54 43
-c0 20 20 37 39 37c27 0 41 -31 58 -31c28 0 43 118 43 195z" />
-    <glyph glyph-name="uni222E" unicode="&#x222e;" horiz-adv-x="532" 
-d="M229.3 -7.2c-107.1 17.2 -189.3 110.2 -189.3 221.2c0 111.6 84 205.9 191.5 222.4c13.9 179 69.5 261.6 160.5 261.6c29 0 53 -18 53 -43c0 -22 -20 -39 -44 -39c-32 0 -34 33 -58 33c-21 0 -41 -37 -41 -170c0 -13.1 0.299988 -27.7 0.700012 -43.2
-c106.5 -18.1 189.3 -111.5 189.3 -221.8c0 -113.7 -86.6 -207.2 -196.5 -222c-21.9 -160.2 -76.8 -213 -151.5 -213c-32 0 -54 18 -54 43c0 20 20 37 39 37c27 0 41 -31 58 -31c24.5 0 39.1 90.6 42.3 164.8zM300.1 32.3c84.9 16.3 147.9 90.9 147.9 181.7
-c0 89.6 -60.5 164.1 -144.1 181.9c1 -33.5 2.10001 -68.9 2.10001 -101.9v-119c0 -54.1 -2 -101.4 -5.89999 -142.7zM229.1 396.5c-84.7 -16.9 -145.1 -92.7 -145.1 -182.5c0 -90.1 60.8 -165.3 146 -181.7c-0.100006 72.9 -2 99.9 -2 176.7v131
-c0 19.7 0.399994 38.5 1.10001 56.5z" />
-    <glyph glyph-name="angle" unicode="&#x2220;" horiz-adv-x="666" 
-d="M30 94l408.6 481.4l37.4 -31.7l-344.6 -405.7h469.6v-44h-571z" />
-    <glyph glyph-name="uni2221" unicode="&#x2221;" horiz-adv-x="666" 
-d="M352.3 -10c10.2 32.2 15.7 66.5 15.7 102v2h-338l217.4 256.1c-26.8 22.4 -57.1 40.8 -90 54.2l31.8 39.9c32.6 -14.8 62.8 -34 89.8 -56.9l159.6 188.1l37.4 -31.7l-161.7 -190.4c53.1 -58.2 88.4 -132.8 97.4 -215.3h189.3v-44h-187
-c-0.200012 -36.1 -5.39999 -71 -14.9 -104h-46.8zM364.9 138c-9.29999 67.8 -38.8 129.2 -82.3 178l-151.2 -178h233.5z" />
-    <glyph glyph-name="uni2222" unicode="&#x2222;" horiz-adv-x="666" 
-d="M297.8 -2c21.7 25.9 39.8 55.5 53.3 88.4c0.299988 0.599998 0.5 1.2 0.699982 1.8l-312.7 128.2l298.3 154.5c-16.3 30.9 -37.4 59.5 -62.8 84.3l44.6 24.9c24.6 -26 45.2 -55.3 61.5 -86.7l219 113.5l22.6 -43.6l-221.9 -114.8c27 -74 31.4 -156.3 8.5 -236.1
-l175.2 -71.8l-16.7 -40.8l-173 71c-13.9 -33.3 -31.9 -63.6 -53.3 -90.6zM365.6 130.1c17.1 66.3 13.2 134.3 -8.60001 195.9l-207.4 -107.3z" />
-    <glyph glyph-name="uni22B6" unicode="&#x22b6;" horiz-adv-x="750" 
-d="M200 235c0 27 -22 51 -52 51c-29 0 -50 -24 -50 -50c0 -30 23 -51 51 -51c27 0 51 21 51 50zM498 262c14 42 42 78 102 78c57 0 106 -45 106 -105c0 -57 -45 -104 -106 -104c-60 0 -90 33 -102 77h-249c-11 -46 -41 -77 -101 -77c-58 0 -104 42 -104 104s48 105 104 105
-c52 0 90 -30 101 -78h249z" />
-    <glyph glyph-name="uni22B7" unicode="&#x22b7;" horiz-adv-x="750" 
-d="M550 236c0 -27 22 -51 52 -51c29 0 50 24 50 50c0 30 -23 51 -51 51c-27 0 -51 -21 -51 -50zM252 209c-14 -42 -42 -78 -102 -78c-57 0 -106 45 -106 105c0 57 45 104 106 104c60 0 90 -33 102 -77h249c11 46 41 77 101 77c58 0 104 -42 104 -104s-48 -105 -104 -105
-c-52 0 -90 30 -101 78h-249z" />
-    <glyph glyph-name="uni2609" unicode="&#x2609;" horiz-adv-x="692" 
-d="M125 287c0 119 94 221 222 221c137 0 220 -113 220 -221c0 -124 -102 -221 -219 -221c-134 0 -223 107 -223 221zM346 458c-96 0 -171 -77 -171 -171c0 -92 72 -171 171 -171s171 79 171 171c0 91 -73 171 -171 171zM297 287c0 27 22 49 49 49s49 -22 49 -49
-s-22 -49 -49 -49s-49 22 -49 49z" />
-    <glyph glyph-name="grave.cap" unicode="&#xe358;" 
-d="M-217 691l121 -84c11 -8 15 -14 15 -21c0 -8 -7 -15 -15 -15s-22 3 -43 12l-154 63c18.3 17.7 41.8 33.4 76 45z" />
-    <glyph glyph-name="acute.cap" unicode="&#xe359;" 
-d="M-157 693c28.6 -13.3 49.3 -30.7 62 -52l-144 -58c-21 -9 -33 -12 -42 -12s-15 7 -15 15c0 7 2 12 15 21z" />
-    <glyph glyph-name="circumflex.cap" unicode="&#xe35a;" 
-d="M-113 642c30 -36 67 -70 103 -97c-2.8 -9.09998 -6.9 -17.2 -16 -21c-39 18 -73 36 -106 61c-37 -27 -69 -44 -107 -61c-9 6 -12 12 -14 21c37 28 70 63 101 97c14 8.40002 23.6 7.70001 39 0z" />
-    <glyph glyph-name="caron.cap" unicode="&#xe35b;" 
-d="M-205 524c-30 37 -65 67 -101 95l16 20c39 -17 73 -36 106 -61c37 26 69 45 107 61l15 -20c-38 -29 -70 -61 -100 -95h-43z" />
-    <glyph glyph-name="breve.cap" unicode="&#xe35c;" 
-d="M-25 657c-6 -71 -70 -113 -136 -113c-73 0 -131 43 -136 113h28c8 -39 55 -61 108 -61c49 0 101 22 108 61h28z" />
-    <glyph glyph-name="hungarumlaut.cap" unicode="&#xe35d;" 
-d="M-101 704c0 -9 -3 -16 -7 -20l-99 -84c-2 -2 -5 -3 -8 -3c-5 0 -13 5 -13 13c0 3 1.2 6.40002 3.7 11l59.3 109c5 8 12 12 23 12c29 0 41 -21.8 41 -38zM-232 709c0 -8 -2 -15 -7 -19l-88 -80.5c-4.39999 -4 -8.39999 -7.5 -14 -7.5c-7 0 -13 5 -13 12
-c0 2 0.600006 7.20001 2.5 11l54.5 110c5 8 12 12 27 12c15.7 0 38 -14.7 38 -38z" />
-    <glyph glyph-name="space_uni030F.cap" unicode="&#xe35e;" 
-d="M-354 704c0 16.2 12 38 41 38c11 0 18 -4 23 -12l59.3 -109c2.5 -4.59998 3.7 -8 3.7 -11c0 -8 -8 -13 -13 -13c-3 0 -6 1 -8 3l-99 84c-4 4 -7 11 -7 20zM-223 709c0 23.3 22.3 38 38 38c15 0 22 -4 27 -12l54.5 -110c1.9 -3.79999 2.5 -9 2.5 -11c0 -7 -6 -12 -13 -12
-c-5.6 0 -9.6 3.5 -14 7.5l-88 80.5c-5 4 -7 11 -7 19z" />
-    <glyph glyph-name="breveinvertedcmb.cap" unicode="&#xe35f;" 
-d="M-298 544c6 71 70 113 136 113c73 0 131 -43 136 -113h-28c-8 39 -55 61 -108 61c-49 0 -101 -22 -108 -61h-28z" />
-    <glyph glyph-name="breve.cyrcap" unicode="&#xe360;" 
-d="M-190 729c33 0 56 17 56 34c0 5 -1 11 -1 13c0 15 10 30 33 30c27 0 37 -14 37 -33c0 -52 -59 -75 -125 -75s-125 23 -125 75c0 19 10 33 37 33c23 0 33 -15 33 -30c0 -2 -1 -8 -1 -13c0 -17 23 -34 56 -34z" />
-    <glyph glyph-name="breve.cyr" unicode="&#xe361;" 
-d="M-91 590c0 -55 -58 -87 -122 -87c-65 0 -120 33 -120 87c0 18 16 33 39 33c22 0 34 -14 34 -30c0 -3 0 -5 -1 -8s-1 -6 -1 -8c0 -22 20 -43 50 -43c29 0 50 20 50 42c0 3 0 6 -1 9c-1 2 -1 4 -1 7c0 17 17 31 35 31c24 0 38 -14 38 -33z" />
-    <glyph glyph-name="dieresis.cap" unicode="&#xe362;" 
-d="M-192 757c0 26 22 48 48 48s48 -22 48 -48s-22 -48 -48 -48s-48 22 -48 48zM-381 757c0 26 22 48 48 48s48 -22 48 -48s-22 -48 -48 -48s-48 22 -48 48z" />
-    <glyph glyph-name="hookabovecomb.cap" unicode="&#xe363;" 
-d="M-86 725c0 -22 -16 -33 -33 -44c-18 -12 -33 -24 -35 -49h-26c0 33 13 47 25 59c9 9 17 17 17 31c0 23 -14 35 -36 35c-19 0 -28 -9 -28 -14c0 -3 1 -6 3 -8c2 -3 6 -8 6 -15c0 -12 -11 -21 -27 -21c-20 0 -27 15 -27 27c0 21 28 55 82 55c64 0 79 -40 79 -56z" />
-    <glyph glyph-name="dotaccent.cap" unicode="&#xe364;" horiz-adv-x="291" 
-d="M94 640c0 28 24 52 52 52s52 -24 52 -52s-24 -52 -52 -52s-52 24 -52 52z" />
-    <glyph glyph-name="uni033B" unicode="&#x33b;" 
-d="M-306 -104v-102h108v102h-108zM-343 -72h182v-166h-182v166z" />
-    <glyph glyph-name="f.short" unicode="&#xe0e0;" horiz-adv-x="328" 
-d="M175 429h108c5 0 8 -2 8 -6v-20c0 -9 -14 -13 -23 -13h-93v-268c0 -83 11 -87 79 -91c6 -6 6 -27 0 -33c-38 1 -81.4 2 -118 2c-36.5 0 -72 -1 -105 -2c-6 6 -6 27 0 33c54 4 65 8 65 91v268h-69c-4 0 -5 1 -5 6v13c0 8 5 20 23 20h51v40c0 88 8 141 38 181
-c24 32 70 48 99 48c38 0 68 -9 88 -24s29 -32 29 -48c0 -21 -14 -36 -33 -36c-20 0 -31.8 10.6 -39 28c-12 29 -26 46 -54 46c-15.5 0 -37 -14 -45 -38c-7.5 -22.5 -4 -73 -4 -140v-57z" />
-    <glyph glyph-name="uni2E02" unicode="&#x2e02;" horiz-adv-x="274" 
-d="M46 453v190l2 4l170 75c14 -5 20 -22 20 -27c0 -6 0 -9 -5 -18l-144 -64v-165c-10 -8 -15 -9 -22 -9c-5 0 -15 4 -21 14z" />
-    <glyph glyph-name="uni2E03" unicode="&#x2e03;" horiz-adv-x="274" 
-d="M228 453c-6 -10 -16 -14 -21 -14c-7 0 -12 1 -22 9v165l-144 64c-5 9 -5 12 -5 18c0 5 6 22 20 27l170 -75l2 -4v-190z" />
-    <glyph glyph-name="uni2E04" unicode="&#x2e04;" horiz-adv-x="274" 
-d="M148 540c0 23 19 42 42 42s42 -19 42 -42s-19 -42 -42 -42s-42 19 -42 42zM46 453v190l2 4l170 75c14 -5 20 -22 20 -27c0 -6 0 -9 -5 -18l-144 -64v-165c-10 -8 -15 -9 -22 -9c-5 0 -15 4 -21 14z" />
-    <glyph glyph-name="uni2E05" unicode="&#x2e05;" horiz-adv-x="274" 
-d="M34 540c0 23 19 42 42 42s42 -19 42 -42s-19 -42 -42 -42s-42 19 -42 42zM228 453c-6 -10 -16 -14 -21 -14c-7 0 -12 1 -22 9v165l-144 64c-5 9 -5 12 -5 18c0 5 6 22 20 27l170 -75l2 -4v-190z" />
-    <glyph glyph-name="uni2E09" unicode="&#x2e09;" horiz-adv-x="294" 
-d="M195 716c44 0 79 -15 79 -45c0 -10 -5 -21 -21 -21c-18 0 -22 28 -60 28c-20 0 -37 -5 -37 -36c0 -38 27 -74 27 -115c0 -46 -33 -75 -81 -75s-82 26 -82 45c0 14 10 22 25 22c13 0 29 -29 61 -29c24 0 33 13 33 32c0 33 -27 83 -27 120c0 38 32 74 83 74z" />
-    <glyph glyph-name="uni2E0A" unicode="&#x2e0a;" horiz-adv-x="294" 
-d="M99 716c51 0 83 -36 83 -74c0 -37 -27 -87 -27 -120c0 -19 9 -32 33 -32c32 0 48 29 61 29c15 0 25 -8 25 -22c0 -19 -34 -45 -82 -45s-81 29 -81 75c0 41 27 77 27 115c0 31 -17 36 -37 36c-38 0 -42 -28 -60 -28c-16 0 -21 11 -21 21c0 30 35 45 79 45z" />
-    <glyph glyph-name="uni2E08" unicode="&#x2e08;" horiz-adv-x="345" 
-d="M228 540c0 23 19 42 42 42s42 -19 42 -42s-19 -42 -42 -42s-42 19 -42 42zM195 716c44 0 79 -15 79 -45c0 -10 -5 -21 -21 -21c-18 0 -22 28 -60 28c-20 0 -37 -5 -37 -36c0 -38 27 -74 27 -115c0 -46 -33 -75 -81 -75s-82 26 -82 45c0 14 10 22 25 22
-c13 0 29 -29 61 -29c24 0 33 13 33 32c0 33 -27 83 -27 120c0 38 32 74 83 74z" />
-    <glyph glyph-name="uni2E18" unicode="&#x2e18;" horiz-adv-x="439" 
-d="M328 110c0 14 -2 19 -6 24c-4 4 -7 9 -7 21c0 21 20 32 40 32c16 0 41 -7 41 -39c0 -35 -21 -59 -51 -81c-17.4 -13.4 -42 -23.4 -69.8 -29.4c-8.20001 -34.7 -33.2 -47.6 -52.2 -47.6c-21 0 -43.3 14 -52.1 43.8c-79.1 11.4 -128.9 57.3 -128.9 120.2
-c0 72 52 115 99 146c23 15 43 30 52 44c4.8 8.5 8.5 16.9 11.3 25.2c3.2 39.2 4.09999 62.7 4.7 70.8c1 12 4 20 14 20c12 0 14 -7 14 -13c2 -20 8 -111 15 -188c9.79999 -87.6 25.5 -124.9 26 -192.8c29.6 10.1 50 27.2 50 43.8zM277 605c0 -29 -24 -53 -53 -53
-s-53 24 -53 53s24 53 53 53s53 -24 53 -53zM167.1 73c1.5 59.8 16.4 104.5 25.9 186c1.3 10.6 2.39999 20.7 3.5 30.4c-7.39999 -8.39999 -16.1 -16.9 -26.5 -25.4c-40 -33 -53 -64 -53 -106c0 -32.3 19.9 -65.8 50.1 -85z" />
-    <glyph glyph-name="uni0364" unicode="&#x364;" 
-d="M-245 531c21 0 33 7 44 19l11 -12c-12 -16 -30 -29 -58 -29c-27 0 -46 12 -58 24s-16 29 -16 55c0 35 26 74 71 74c52 0 64 -40 64 -73h-96c0 -41 19 -58 38 -58zM-229 607c0 29 -11 38 -24 38c-17 0 -26 -20 -27 -38h51z" />
-    <glyph glyph-name="uni1D15" unicode="&#x1d15;" horiz-adv-x="371" 
-d="M259 340c0 48 -31 61 -31 82c0 9 7 13 24 13c58 0 70 -66 70 -87c0 -46 -37 -82 -80 -102c4 -8 96 -42.1 96 -126c0 -72 -68 -130 -155 -130c-92 0 -151 53 -151 116c0 64 73 108 107 121c-5 6 -90 41 -90 118c0 43 28 90 69 90c10 0 15 -3 16 -11c0 -8 -22 -16 -22 -54
-c0 -71 51 -86 99 -106c16 10 48 37.4 48 76zM103 115c0 -42 33 -95 94 -95c41 0 71 33 71 67c0 54 -28 81 -97 121c-6 0 -68 -41 -68 -93z" />
-    <glyph glyph-name="uni033A" unicode="&#x33a;" 
-d="M-179 -100c8 7 15 10 22 10c8 0 15 -4 22 -7v-88c0 -11 -15 -24 -31 -24h-185c-20 0 -24 8 -24 22v87c10 8 17 12 24 12c6 0 13 -3 20 -9v-68h152v65z" />
-    <glyph glyph-name="uni033C" unicode="&#x33c;" 
-d="M-383 -222c-5 3 -20 13 -24 18c17 76 47 131 82 131c14 0 49 -10 73 -81c26 70 59 81 73 81c33 0 64 -46 83 -131c-3 -4 -21 -17 -23 -18c-14 52 -31 85 -59 85c-13 0 -43 -7 -64 -87c-3 -1 -6 -1 -9 -1c-4 0 -8 0 -10 1c-14 53 -36 87 -63 87c-36 0 -52 -56 -59 -85z
-" />
-    <glyph glyph-name="uni0339" unicode="&#x339;" 
-d="M-163 -147c0 31 -17 56 -62 56c-3 0 -6 -1 -8 -1l1 39c5 1 10 1 15 1c53 0 94 -42 94 -95c0 -55 -44 -97 -99 -97c-4 0 -8 0 -11 1l2 41c3 0 6 -1 8 -1c44 0 60 27 60 56z" />
-    <glyph glyph-name="uni0332" unicode="&#x332;" 
-d="M-73 -131h-345c-8 0 -12 8 -12 15c0 12 10 29 22 29h345c9 0 13 -7 13 -14c0 -12 -10 -30 -23 -30z" />
-    <glyph glyph-name="uni0333" unicode="&#x333;" 
-d="M-133 -121h-225c-8 0 -12 8 -12 15c0 12 10 29 22 29h225c9 0 13 -7 13 -14c0 -12 -10 -30 -23 -30zM-133 -211h-225c-8 0 -12 8 -12 15c0 12 10 29 22 29h225c9 0 13 -7 13 -14c0 -12 -10 -30 -23 -30z" />
-    <glyph glyph-name="uni0334" unicode="&#x334;" 
-d="M-140 218c22 0 33 10 47 52c11 1 21 -2 27 -6c-12 -60 -41 -99 -87 -99c-22 0 -43 18 -64 32c-18 11 -37 19 -54 19c-26 0 -36 -15 -46 -48c-11 -2 -21 -1 -27 5c14 59 37 98 80 98c30 0 52 -20 72 -34c16 -12 33 -19 52 -19z" />
-    <glyph glyph-name="uni0335" unicode="&#x335;" 
-d="M-98 201h-205c-8 0 -12 8 -12 15c0 12 10 29 22 29h205c9 0 13 -7 13 -14c0 -12 -10 -30 -23 -30z" />
-    <glyph glyph-name="uni0336" unicode="&#x336;" 
-d="M-73 201h-345c-8 0 -12 8 -12 15c0 12 10 29 22 29h345c9 0 13 -7 13 -14c0 -12 -10 -30 -23 -30z" />
-    <glyph glyph-name="uni0337" unicode="&#x337;" 
-d="M-76 454c17 0 27 -10 31 -23l-377 -459c-16 0 -28 11 -30 26z" />
-    <glyph glyph-name="uni033D" unicode="&#x33d;" 
-d="M-232.7 540.2l73.8 -73.2l-28.1 -28.1l-73.2 73.2l-73.2 -73.1l-28.7 28l73.8 73.2l-73.8 73.8l28.7 28l73.2 -73.7l73.2 73.8l28.1 -28.1z" />
-    <glyph glyph-name="uni033E" unicode="&#x33e;" 
-d="M-243.5 604c0 17.6 -8.7 28.8 -45.7 40l5.20001 19.2c52.8 -9.60004 79.2 -32.8 79.2 -69.6c0 -17.6 -10.5 -34.4 -22.8 -51.2c-9.7 -14.4 -19.4 -29.6 -19.4 -43.2c0 -20.8 13.2 -31.2 42.2 -39.2l-4.39999 -19.2c-51.9 11.2 -78.3 29.6 -78.3 64
-c0 24 12.4 41.6 24.7 57.6c10.6 12.8 19.3 26.4 19.3 41.6z" />
-    <glyph glyph-name="uni033F" unicode="&#x33f;" 
-d="M-73 569h-345c-8 0 -12 8 -12 15c0 12 10 29 22 29h345c9 0 13 -7 13 -14c0 -12 -10 -30 -23 -30zM-73 479h-345c-8 0 -12 8 -12 15c0 12 10 29 22 29h345c9 0 13 -7 13 -14c0 -12 -10 -30 -23 -30z" />
-    <glyph glyph-name="uni0340" unicode="&#x340;" 
-d="M-156 708l70 -126c5 -10 6 -17 6 -24c0 -5 -7 -11 -15 -11c-6 0 -13 5 -29 20l-114 109l2 11c8 6 31 23 65 23c5 0 11 -1 15 -2z" />
-    <glyph glyph-name="uni0341" unicode="&#x341;" 
-d="M-152 708c3 1 9 2 14 2c6.39999 0 32 -1 55 -23l3 -11l-115 -109c-15 -15 -23 -19 -30 -19s-14 6 -14 13c0 11.2 3.3 15.2 11.4 28z" />
-    <glyph glyph-name="uni0344" unicode="&#x344;" horiz-adv-x="368" 
-d="M50 575c0 26 21 48 47 48s47 -22 47 -48s-21 -47 -47 -47s-47 21 -47 47zM219 575c0 26 21 48 47 48s47 -22 47 -48s-21 -47 -47 -47s-47 21 -47 47zM244 786c20 0 42 -15 42 -35c0 -5 -2 -13 -6 -18l-92 -122c-3 -4 -8 -8 -12 -8c-8 0 -14 6 -14 13c0 3 1 7 2 10l52 143
-c4 11 15 17 28 17z" />
-    <glyph glyph-name="uni0345" unicode="&#x345;" 
-d="M-222 -74l53 13l22 -7v-52c0 -55 12 -78 32 -78c18 0 34 24 41 51l25 -8c-15 -69 -61 -83 -86 -83c-48 0 -87 24 -87 82v82z" />
-    <glyph glyph-name="uni0346" unicode="&#x346;" 
-d="M-331 493c-8 -7 -15 -10 -22 -10c-8 0 -15 4 -22 7v88c0 11 15 24 31 24h185c20 0 24 -8 24 -22v-87c-10 -8 -17 -12 -24 -12c-6 0 -13 3 -20 9v68h-152v-65z" />
-    <glyph glyph-name="uni0347" unicode="&#x347;" 
-d="M-73 -121h-345c-8 0 -12 8 -12 15c0 12 10 29 22 29h345c9 0 13 -7 13 -14c0 -12 -10 -30 -23 -30zM-73 -211h-345c-8 0 -12 8 -12 15c0 12 10 29 22 29h345c9 0 13 -7 13 -14c0 -12 -10 -30 -23 -30z" />
-    <glyph glyph-name="uni0348" unicode="&#x348;" 
-d="M-230 -217c-11 -6 -10 -8 -17 -8c-8 0 -11 2 -23 6v165c10 4 12 6 19 6c9 0 9 -2 21 -6v-163zM-120 -217c-11 -6 -10 -8 -17 -8c-8 0 -11 2 -23 6v165c10 4 12 6 19 6c9 0 9 -2 21 -6v-163z" />
-    <glyph glyph-name="uni034A" unicode="&#x34a;" 
-d="M-214.6 495.4c-7.39999 -0.399994 -14.4 -1.19998 -18.4 -1.19998c-6.3 0 -9 3.79999 -15.5 11.8l15 56.7c-16.6 9.59998 -33.9 16.3 -49.5 16.3c-26 0 -36 -15 -46 -48c-11 -2 -21 -1 -27 5c14 59 37 98 80 98c22 0 39.7 -10.7 55.5 -22l14.1 53.5
-c5.2 0.599976 7.59999 1 11.5 1c8.89999 0 13.9 -4.5 21.9 -13.5l-16.4 -62.3c11.7 -6.20001 24 -9.70001 37.4 -9.70001c22 0 33 10 47 52c11 1 21 -2 27 -6c-12 -60 -41 -99 -87 -99c-12.7 0 -25.1 6 -37.3 13.8z" />
-    <glyph glyph-name="uni034B" unicode="&#x34b;" 
-d="M-260 467.9c-18 0 -33.1 15.1 -33.1 33.1s15.1 33.1 33.1 33.1s33.1 -15.1 33.1 -33.1s-15.1 -33.1 -33.1 -33.1zM-170 635.9c-18 0 -33.1 15.1 -33.1 33.1s15.1 33.1 33.1 33.1s33.1 -15.1 33.1 -33.1s-15.1 -33.1 -33.1 -33.1zM-152 591c22 0 33 10 47 52
-c11 1 21 -2 27 -6c-12 -60 -41 -99 -87 -99c-22 0 -43 18 -64 32c-18 11 -37 19 -54 19c-26 0 -36 -15 -46 -48c-11 -2 -21 -1 -27 5c14 59 37 98 80 98c30 0 52 -20 72 -34c16 -12 33 -19 52 -19z" />
-    <glyph glyph-name="uni0349" unicode="&#x349;" 
-d="M-249.5 -65.5h121l12 -11v-91c-8 -14 -18 -19 -23 -19s-12 2 -17 12v70h-97c-8 9 -9 14 -9 20c0 5 4 14 13 19z" />
-    <glyph glyph-name="uni0354" unicode="&#x354;" 
-d="M-230.8 -130l163.3 -60.3v-37.3l-232 83.8v27.6l232 83.8v-37.3z" />
-    <glyph glyph-name="uni0355" unicode="&#x355;" 
-d="M-136.2 -130l-163.3 60.3v37.2l232 -84.8v-26.5l-232 -83.8v37.3z" />
-    <glyph glyph-name="uni0353" unicode="&#x353;" 
-d="M-236.3 -129.8l73.8 -73.2l-24.5 -24.5l-73.2 73.2l-73.2 -73.2l-25.2 24.5l73.9 73.2l-73.9 73.8l25.2 24.6l73.2 -73.8l73.2 73.8l24.5 -24.6z" />
-    <glyph glyph-name="uni0352" unicode="&#x352;" 
-d="M-206 555c0 -25 -20 -46 -45 -46s-45 21 -45 46s20 45 45 45s45 -20 45 -45zM-143 578c-11 53 -54 90 -108 90c-52 0 -98 -32 -108 -90l-27 12c12 86 76 135 135 135c70 0 121 -50 135 -135z" />
-    <glyph glyph-name="uni0350" unicode="&#x350;" 
-d="M-136.2 598l-163.3 60.3v37.2l232 -84.8v-26.5l-232 -83.8v37.3z" />
-    <glyph glyph-name="uni034C" unicode="&#x34c;" 
-d="M-120 575c8 0 16 -10 16 -16c-18 -34 -42 -53 -72 -53c-32 0 -94 35 -124 35c-36 0 -47 -37 -53 -37c-8 0 -20 13 -20 19c20 33 46 51 77 51c29 0 95 -33 115 -33c44 0 56 34 61 34zM-120 671c8 0 16 -9 16 -17c-18 -33 -42 -53 -72 -53c-32 0 -91 35 -124 35
-c-37 0 -47 -36 -53 -36c-4 0 -8 3 -12 7c-6 4 -8 7 -8 10v1c20 33 45 52 77 52c28 0 95 -34 115 -34c44 0 55 35 61 35z" />
-    <glyph glyph-name="uni034D" unicode="&#x34d;" 
-d="M-414 -127c50 18 91 65 105 81h33c-16 -37 -45 -63 -53 -73h201c-9 12 -39 38 -53 73h34c13 -16 54 -63 104 -81v-11c-38 -20 -76 -52 -104 -83h-35c14 32 36 52 54 72h-201c18 -19 39 -40 54 -72h-34c-19 35 -45 51 -105 83v11z" />
-    <glyph glyph-name="uni034E" unicode="&#x34e;" 
-d="M-243 -230v117c-12 -9 -38 -39 -73 -53v34c16 13 63 54 81 104h11c20 -38 52 -76 83 -104v-35c-32 14 -52 36 -72 54v-117h-30z" />
-    <glyph glyph-name="uni0356" unicode="&#x356;" 
-d="M-275.5 -130l-144 60.3v37.4l212 -85v-26.4l-212 -84v37.4zM-114 -101.7l-60.4 -124.8h-37.5l86.3 193h25.2l84.2 -193h-37.4z" />
-    <glyph glyph-name="uni0363" unicode="&#x363;" 
-d="M-153 587c-40 -11 -46 -27 -46 -38s4 -21 18 -21c11 0 13 5 28 18v41zM-127 509c-17 0 -23 11 -25 21c-18 -16 -22 -21 -40 -21c-23 0 -41 15 -41 38s21 38 55 47l25 8c0 40 -11 43 -23 43c-18 0 -22 -4 -22 -13c0 -4 0 -6 1 -7s1 -4 1 -7c0 -4 -7 -11 -17 -11
-c-8 0 -18 6 -18 14c0 22 33 39 56 39c26 0 58 -11 58 -62v-37c0 -22 2 -31 7 -31c2 0 5 1 7 2l5 -11c-9 -8 -19 -12 -29 -12z" />
-    <glyph glyph-name="uni0366" unicode="&#x366;" 
-d="M-166 659c59 0 74 -48 74 -77c0 -35 -23 -73 -74 -73s-73 36 -73 71c0 31 17 79 73 79zM-134 571c0 43 -12 72 -35 72c-16 0 -29 -11 -29 -56c0 -42 15 -62 37 -62c14 0 27 12 27 46z" />
-    <glyph glyph-name="uni0367" unicode="&#x367;" 
-d="M-188 656v-89c0 -28 11 -34 23 -34c8 0 29 10 39 22v73c0 12 -4 14 -13 14h-6c-1 0 -3 0 -3 2v12l1 1s24 -1 39 -1c5 0 13 1 13 1v-1v-98c0 -13.6 10 -18 23 -22v-15c-17 -2 -28 -5 -42 -12h-12l2 27l-4 1c-8 -9 -31 -28 -50 -28c-24 0 -40 14 -40 50v69
-c0 14 -4 13 -14 14h-3c-2 0 -3 1 -3 2v12v1s20 -1 33 -1c7 0 17 1 17 1v-1z" />
-    <glyph glyph-name="uni0368" unicode="&#x368;" 
-d="M-166 662c14.6 0 28.8 -1.5 39 -7c12.9 -6.90002 20 -19 20 -29c0 -13 -8 -19 -16 -19c-9 0 -18 7 -19 16c-1.3 12.1 -6 22 -21 22c-17 0 -36 -21 -36 -61c0 -48 28 -53 39 -53c21 0 27 10 37 22c7.4 -1.59998 10.9 -6.29999 13 -12c-14 -19 -34 -32 -58 -32
-c-46 0 -69 34 -69 73s28 80 71 80z" />
-    <glyph glyph-name="uni0369" unicode="&#x369;" 
-d="M-170 544v79c-9 10 -16 18 -30 18c-18 0 -29 -13 -29 -53c0 -49 13 -61 32 -61c8 0 18 7 27 17zM-171 527c-10 -9 -25 -17 -37 -17c-16.6 0 -30.2 3.70001 -41 14c-12.6 12 -19 33.3 -19 56c0 35 20 77 62 77c14 0 28 -4 36 -12v29c0 13.6 -8 12 -23 15l-1 14
-c18 2 36 6 49 12h11v-157c0 -15.2 9 -20 22 -22l2 -15c-18 -2 -34 -5 -47 -12h-13l1 17z" />
-    <glyph glyph-name="uni036B" unicode="&#x36b;" 
-d="M-212 544v58c0 28 -4 35 -20 35c-11 0 -22 -10 -32 -22v-71c0 -11 8 -14 18 -17c1 -4 1 -10 0 -14c-8 1 -26 2 -37 2c-9 0 -27 -1 -37 -2c-1 4 -1 10 0 14c11 3 20 4 20 17v74c0 13 -6 14 -22 16c-1.39999 3.79999 -2 8 -2 14c18 2 36 6 49 12h11l-1 -25l2 -1
-c8 9 24 26 43 26c18.4 0 33 -8.59998 39.4 -27.5c8.3 9.20001 28.9 27.5 47.6 27.5c24 0 44 -16 44 -52v-64c0 -13 9 -14 20 -17c1 -4 1 -10 0 -14c-10 1 -28 2 -37 2c-11 0 -29 -1 -37 -2c-1 4 -1 10 0 14c10 3 18 6 18 17v58c0 28 -5 35 -21 35c-9.8 0 -22 -8 -31.6 -18.2
-c0.400009 -3.39996 0.600006 -7 0.600006 -10.8v-64c0 -11 8 -14 18 -17c1 -4 1 -10 0 -14c-8 1 -26 2 -37 2c-9 0 -24 -1 -34 -2c-1 4 -1 10 0 14c11 3 18 4 18 17z" />
-    <glyph glyph-name="uni036D" unicode="&#x36d;" 
-d="M-191 638v-77c0 -21 2 -31 11 -31s14 4 23 10c5 -2.70001 8 -6.70001 9 -12c-14 -15 -32 -19 -47 -19c-16 0 -32 9 -32 33v96h-23c-1 0 -2 0 -2 1v16c0 1 0 2 1 2c22 0 30 13 30 38v6l30 7v-51h37c2 0 3 -1 3 -2v-13c0 -3 -5 -4 -8 -4h-32z" />
-    <glyph glyph-name="uni036E" unicode="&#x36e;" 
-d="M-256 516l-44 107c-8 19 -10 19 -21 19c-2 0 -3 0 -3 2v12l1 1s27 -1 37 -1l39 1l2 -1v-12c0 -2 -2 -2 -4 -2h-5c-5 0 -8 0 -8 -5c0 -3 0 -5 2 -9l31 -71.5l30 69.5c2 5 3 8 3 11c0 4 -5 5 -16 5c-1 0 -2 1 -2 2v12v1s19 -1 30 -1c10 0 27 1 27 1l1 -1v-12
-c0 -2 -2 -2 -4 -2c-8 0 -12 0 -20 -17l-47 -108c-2 -6 -13 -8 -17 -8c-3 0 -10 3 -12 7z" />
-    <glyph glyph-name="uni036C" unicode="&#x36c;" 
-d="M-212 634l1 28h-11c-13 -6 -31 -10 -49 -12c0 -6 1 -10 2 -14c16 -2 22 -3 22 -16v-78c0 -13 -9 -14 -20 -17c-1 -4 -1 -10 0 -14c10 1 28 2 37 2c11 0 29 -1 37 -2c1 4 1 10 0 14c-10 3 -18 6 -18 17v64c0 4 3 9 5 12c9 13 15 17 19 17c2 0 6 0 8 -2c3 -4 8 -7 16 -7
-c11 0 18 6 18 17s-7 19 -23 19c-19 0 -32 -15 -42 -29z" />
-    <glyph glyph-name="uni036A" unicode="&#x36a;" 
-d="M-263 674v-40c8 9 27 28 47 28c25 0 51 -14 51 -52v-68c0 -11 3 -13 14 -15l4 -1c2 -1 2 -2 2 -3v-11s-26 1 -43 1c-14 0 -36 -1 -36 -1v11c0 1 1 3 3 3l6 1c11 1 14 3 14 15v63c0 29 -11 33 -28 33c-12 0 -23 -12 -34 -25v-71c0 -12 4 -14 14 -15l6 -1c1 0 3 -1 3 -3
-v-11s-28 1 -46 1c-13 0 -34 -1 -34 -1v11c0 1 0 3 2 3l5 1c13 2 14 3 14 15v121c0 24 -4 28 -11 28l-12 1c-1 0 -2 0 -2 1v13c15 1 48 6 57 10c3 0 5 -1 5 -4c0 0 -1 -14 -1 -38z" />
-    <glyph glyph-name="uni0365" unicode="&#x365;" 
-d="M-211 542c0 -11 8 -14 18 -17c1 -4 1 -10 0 -14c-8 1 -26 2 -37 2c-9 0 -27 -1 -37 -2c-1 4 -1 10 0 14c11 3 20 4 20 17v78c0 13 -6 14 -22 16c-1 4 -2 8 -2 14c18 2 36 6 49 12h11v-120zM-230 697c-12 0 -22 10 -22 22s10 22 22 22s22 -10 22 -22s-10 -22 -22 -22z" />
-    <glyph glyph-name="uni036F" unicode="&#x36f;" 
-d="M-313 520c0 4 2 4 6 4c11 0 15 2 26 15c0 0 33 39 35 41l-44 57c-5 7 -11 10 -18 10s-8 1 -8 4v9c11 -1 25 -1 39 -1c11 0 28 0 42 1v-9c0 -3 -3 -4 -8 -4c-6 0 -3 -9 -1 -14l16 -31l26 36c5.2 7.20001 -1 9 -8 9c-3 0 -5 1 -5 4v9c10 -1 19 -1 29 -1c11 0 20 0 32 1v-8
-c0 -3 0 -5 -7 -5c-12 0 -15 -1 -26 -16l-31 -44l40 -47c7.8 -9.20001 13 -16 25 -16c7 0 7 -2 7 -4v-11c-11 1 -27 2 -38 2c-13 0 -37 -1 -45 -2v8c0 4 2 7 7 7c12 0 7 6 5 10c0 0 -16 27 -19 31c-9 -12 -25 -31 -25 -31c-5.89999 -7.29999 -3 -10 7 -10c4 0 5 -2 5 -4v-11
-c-11 1 -26 2 -35 2c-13 0 -19 -1 -29 -2v11z" />
-    <glyph glyph-name="uni02E5" unicode="&#x2e5;" horiz-adv-x="437" 
-d="M372 645v-645h-63v589h-283v56h346z" />
-    <glyph glyph-name="uni02E6" unicode="&#x2e6;" horiz-adv-x="437" 
-d="M372 645v-645h-63v519h-283v56h283v70h63z" />
-    <glyph glyph-name="uni02E7" unicode="&#x2e7;" horiz-adv-x="437" 
-d="M372 645v-645h-63v314h-283v56h283v275h63z" />
-    <glyph glyph-name="uni02E8" unicode="&#x2e8;" horiz-adv-x="437" 
-d="M372 645v-645h-63v69h-283v56h283v520h63z" />
-    <glyph glyph-name="uni02E9" unicode="&#x2e9;" horiz-adv-x="437" 
-d="M372 645v-645h-346v56h283v589h63z" />
-    <glyph glyph-name="uni02EA" unicode="&#x2ea;" horiz-adv-x="365" 
-d="M50 74v294h51v-249h214v-45h-265z" />
-    <glyph glyph-name="uni02EB" unicode="&#x2eb;" horiz-adv-x="372" 
-d="M102 51h-52v352h52v-151h220v-46h-220v-155z" />
-    <glyph glyph-name="uni02F0" unicode="&#x2f0;" horiz-adv-x="215" 
-d="M107.9 -101.7l-60.5 -124.8h-37.4l86.2 193h25.3l84.2 -193h-37.4z" />
-    <glyph glyph-name="uni02F1" unicode="&#x2f1;" horiz-adv-x="282" 
-d="M88.7 -130l163.3 -60.3v-37.3l-232 83.8v27.6l232 83.8v-37.3z" />
-    <glyph glyph-name="uni02F2" unicode="&#x2f2;" horiz-adv-x="272" 
-d="M183.3 -130l-163.3 60.3v37.2l232 -84.8v-26.5l-232 -83.8v37.3z" />
-    <glyph glyph-name="uni02F3" unicode="&#x2f3;" horiz-adv-x="234" 
-d="M117 -64c-31 0 -48 -23 -48 -53c0 -28 17 -53 48 -53s48 25 48 53c0 31 -18 53 -48 53zM29 -117c0 46 42 85 88 85s88 -38 88 -85c0 -45 -40 -85 -88 -85c-46 0 -88 39 -88 85z" />
-    <glyph glyph-name="uni02F5" unicode="&#x2f5;" horiz-adv-x="321" 
-d="M68 411c12 0 19 -2 24 -11l78 -139c1 -1 1 -3 1 -4c0 -9.7 -10.4 -14 -13 -14c-3 0 -5 1 -7 3l-114 110c-5 6 -7 13 -7 19c0 17.9 14.6 36 38 36zM204 417c11 0 19 -5 23 -14l62.7 -143c1.29999 -3 1.29999 -5 1.29999 -6c0 -2.60001 -2.79999 -13 -14 -13
-c-3 0 -5 1 -7 3l-102 121c-5 5 -6 11 -6 16c0 13.8 10.5 36 42 36z" />
-    <glyph glyph-name="uni02F4" unicode="&#x2f4;" horiz-adv-x="189" 
-d="M72 417c11 0 19 -5 23 -14l62.7 -143c1.3 -3 1.3 -5 1.3 -6c0 -2.60001 -2.8 -13 -14 -13c-3 0 -5 1 -7 3l-102 121c-5 5 -6 11 -6 16c0 13.8 10.5 36 42 36z" />
-    <glyph glyph-name="uni02F6" unicode="&#x2f6;" horiz-adv-x="321" 
-d="M253 411c23.4 0 38 -18.1 38 -36c0 -6 -2 -13 -7 -19l-114 -110c-2 -2 -4 -3 -7 -3c-2.60001 0 -13 4.3 -13 14c0 1 0 3 1 4l78 139c5 9 12 11 24 11zM117 417c31.5 0 42 -22.2 42 -36c0 -5 -1 -11 -6 -16l-102 -121c-2 -2 -4 -3 -7 -3c-11.2 0 -14 10.4 -14 13
-c0 1 0 3 1.3 6l62.7 143c4 9 12 14 23 14z" />
-    <glyph glyph-name="uni02F7" unicode="&#x2f7;" horiz-adv-x="318" 
-d="M224 -78c22 0 36 10 50 52l24 -6c-12 -60 -41 -90 -87 -90c-22 0 -43 12 -64 26c-18 11 -37 22 -54 22c-26 0 -39 -15 -49 -48l-24 5c14 59 37 89 80 89c30 0 52 -14 72 -28c16 -12 33 -22 52 -22z" />
-    <glyph glyph-name="uni02F8" unicode="&#x2f8;" horiz-adv-x="237" 
-d="M64 645c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53zM64 382c0 29 24 53 53 53s53 -24 53 -53s-24 -53 -53 -53s-53 24 -53 53z" />
-    <glyph glyph-name="uni02FD" unicode="&#x2fd;" horiz-adv-x="350" 
-d="M276 -10c8 7 15 10 22 10c8 0 15 -4 22 -7v-88c0 -11 -15 -24 -31 -24h-235c-20 0 -24 8 -24 22v87c10 8 17 12 24 12c6 0 13 -3 20 -9v-68h202v65z" />
-    <glyph glyph-name="uni02FE" unicode="&#x2fe;" horiz-adv-x="320" 
-d="M286 -75c0 0 4 -12 4 -20c0 -11 -15 -24 -31 -24h-205c-20 0 -24 8 -24 22v87c10 8 17 12 24 12c6 0 13 -3 20 -9v-68s193.5 7.9 212 0z" />
-    <glyph glyph-name="uni02FF" unicode="&#x2ff;" horiz-adv-x="426" 
-d="M396 21v-30h-291c18 -19 39 -40 54 -72h-34c-19 35 -45 51 -105 83v11c50 18 91 65 105 81h33c-16 -37 -45 -63 -53 -73h291z" />
-    <glyph glyph-name="uni02FA" unicode="&#x2fa;" horiz-adv-x="216" 
-d="M176 527c-5 -9 -14 -13 -19 -13c-6 0 -16 1 -25 9v142h-90c-10 5 -12 16 -12 21s5 12 19 20h116l11 -12v-167z" />
-    <glyph glyph-name="uni02F9" unicode="&#x2f9;" horiz-adv-x="216" 
-d="M30 527v167l11 12h116c14 -8 19 -15 19 -20s-2 -16 -12 -21h-90v-142c-9 -8 -19 -9 -25 -9c-5 0 -14 4 -19 13z" />
-    <glyph glyph-name="uni02FB" unicode="&#x2fb;" horiz-adv-x="216" 
-d="M30 193c5 9 14 13 19 13c6 0 16 -1 25 -9v-142h90c10 -5 12 -16 12 -21s-5 -12 -19 -20h-116l-11 12v167z" />
-    <glyph glyph-name="uni02FC" unicode="&#x2fc;" horiz-adv-x="216" 
-d="M176 193v-167l-11 -12h-116c-14 8 -19 15 -19 20s2 16 12 21h90v142c9 8 19 9 25 9c5 0 14 -4 19 -13z" />
-    <glyph glyph-name="uni02EF" unicode="&#x2ef;" horiz-adv-x="215" 
-d="M107.9 -158.3l60.4 124.8h37.4l-84.2 -193h-25.3l-86.2 193h37.4z" />
-    <glyph glyph-name="uniE01C" unicode="&#xe01c;" horiz-adv-x="516" 
-d="M208 -160c-36 -64 -76 -72 -97 -72c-27 0 -47 19 -47 40c0 16 13 40 44 40c11 0 15 -3 29 -3c25 0 39 9 50 29c15 31 27.1 58.6 39 92c10 28 -5.3 73.9 -14 94l-113.1 263c-27.4 63.7 -35.3 71 -78.9 75c-3 3 -4.5 9.70001 -4.5 16.5s1.5 13.5 4.5 16.5
-c20 -1 47 -2 81 -2c36 0 76 1 113 2c3 -3 4.5 -9.70001 4.5 -16.5s-1.5 -13.5 -4.5 -16.5c-61.3 -4.79999 -50.8 -22.8 -32.8 -65l88.7 -208c8.5 -19.8 16.9 -17.1 23.9 -1l99.2 229c16 36 -16.4 42 -48 45c-3 3 -4.5 9.70001 -4.5 16.5s1.5 13.5 4.5 16.5
-c37 -1 56 -2 91 -2c28 0 41 1 66 2c3 -3 4.5 -9.70001 4.5 -16.5s-1.5 -13.5 -4.5 -16.5c-37 -3 -62 -35 -76 -64c-53 -112 -97 -215 -177 -408c-12.3 -29.6 -25.4 -58.2 -41 -86z" />
-    <glyph glyph-name="uniE01E" unicode="&#xe01e;" horiz-adv-x="585" 
-d="M453.9 124c0 -26 0.100006 -48 2.20001 -57c2.79999 -12 6.79999 -17 13.9 -17c10 0 34.3 20 53.4 50c14 0 21.9 -8 27 -17c-32.4 -59 -72.6 -93 -120.6 -93c-30 0 -44.2 14 -48.6 33c-4.40002 19 -4.80002 60 -4.20001 92l1 160c0.200012 34 0.5 54 -2.70001 68
-c-7.19998 31 -22.3 36 -43.3 36c-36 0 -77.3 -59 -121.4 -141l0.199997 -166c0 -38 11 -82 -27 -82c-31.8 0 -45.2 10.5 -49.1 27.2c-2.3 9.8 0.100006 36.8 0 54.8l-1.3 249c-0.5 28 -0.699997 41.9 -2.79999 51c-2.3 10 -10.4 19 -22.6 20l-40.7 3
-c-8.1 9 -12.2 20 -7.4 28c45.6 6 91 13 123 13c13.2 0 22.1 -7.39999 25.3 -21.1c3.90001 -17.1 0.5 -55.9 -0.300003 -94.7l-0.199997 -9.20001l1.2 -1c67.1 108 105.3 129 157.3 129c39 0 70.5 -20 84.4 -80c4.19998 -18 4.5 -41 4.60001 -76z" />
-    <glyph glyph-name="zero.cap" unicode="&#xe108;" horiz-adv-x="522" 
-d="M263 619c-48 0 -115 -47 -115 -308c0 -92 13 -284 112 -284c19 0 71 9 95 96c15 54 19 133 19 230c0 142 -31 221 -63 249c-12 11 -30 17 -48 17zM259 -10c-42.8 0 -79.6 14 -110.6 46.3c-55.9 58.3 -90.4 175.7 -90.4 285.7c0 209 100 336 205 336c48 0 97 -25 129 -69
-c47 -62 72 -152 72 -257c0 -249 -123 -342 -205 -342z" />
-    <glyph glyph-name="one.cap" unicode="&#xe109;" horiz-adv-x="398" 
-d="M274 133c0 -93 21 -99 99 -102c7 -7 7 -26 0 -33c-56 1 -83.6 2 -137 2c-56.2 0 -89 -1 -144 -2c-7 7 -7 26 0 33c78 3 97 9 97 102v346c0 38 -4 65 -22 65c-21 0 -47 -7 -98 -28c-10 7 -14 17 -16 30c99 46 155 74 217 112c4 0 7 0 7 -5c-2 -15 -3 -83 -3 -150v-370z
-" />
-    <glyph glyph-name="two.cap" unicode="&#xe10a;" horiz-adv-x="485" 
-d="M59 507c0 64 62 151 180 151c86 0 189 -47 189 -161c0 -81 -47 -128 -107 -186l-106 -103c-6 -6 -78 -91 -78 -141h188c38 0 57 28 75 103c10 2 23 2 30 -4c-1 -31 -13 -112 -26 -168c0 0 -49 2 -83 2h-184c-34 0 -89 -2 -89 -2c0 63 19 124 123 230l79 78
-c63 64 87 119 87 187c0 102 -67 128 -105 128c-77 0 -96 -38 -96 -65c0 -9 2 -17 4 -25s5 -16 5 -25c0 -29 -23 -40 -41 -40c-25 0 -45 19 -45 41z" />
-    <glyph glyph-name="three.cap" unicode="&#xe10b;" horiz-adv-x="492" 
-d="M226 621c-28 0 -101 -13 -101 -81c0 -20 -11 -55 -41 -55c-26 0 -36 21 -36 36c0 35 45 137 201 137c109 0 149 -68 149 -113c0 -36 -6 -95 -107 -159l1 -2c63 -10 145 -54 145 -170c0 -140 -112 -224 -239 -224c-64 0 -153 27 -153 70c0 17 23 37 45 37
-c21 0 36 -12 46 -27c12 -19 22 -43 76 -43c37 0 133 31 133 172c0 120 -76 139 -136 139c-13 0 -27 0 -45 -2l-5 34c95 15 159 108 159 160c0 66 -45 91 -92 91z" />
-    <glyph glyph-name="four.cap" unicode="&#xe10c;" horiz-adv-x="525" 
-d="M292 547c-74 -102 -151 -222 -206 -311h206v311zM464 236c12 0 16 -6 16 -17c0 -13 -16 -33 -31 -33h-75v-102c0 -51 23 -49 76 -53c6 -6 6 -27 0 -33c-35 1 -75 2 -118 2c-50 0 -92 -1 -127 -2c-6 6 -6 27 0 33c46 3 87 3 87 53v102h-220c-32 0 -39 29 -42 45
-c99 154 225 331 293 415c4 5 9 12 17 12h34l3 -2c-2 -8 -3 -51 -3 -105v-315h90z" />
-    <glyph glyph-name="five.cap" unicode="&#xe10d;" horiz-adv-x="478" 
-d="M336 211c0 115 -56 162 -125 162c-38 0 -77 -5 -133 -26l36 306c37 -3 73 -6 112 -6c56 0 115 4 175 11l7 -3l-17 -73c-44 -4 -80 -5 -111 -5c-50 0 -85 5 -124 9l-22 -177c19 8 59 16 105 16c119 0 189 -91 189 -194c0 -133 -93 -241 -224 -241c-60 0 -151 35 -151 79
-c0 21 20 40 40 40c22 0 41 -17 54 -35c16 -21 30 -47 70 -47c64 0 119 83 119 184z" />
-    <glyph glyph-name="six.cap" unicode="&#xe10e;" horiz-adv-x="495" 
-d="M136.6 320.8c-5.40001 -28.9 -7.60001 -55.5 -7.60001 -77.8c0 -181 71 -216 138 -216c52 0 98 52 98 168c0 53 -22 160 -126 160c-20.7 0 -63.3 -1.70001 -102.4 -34.2zM146.4 362.5c32.5 19 82.1 29.5 114.6 29.5c144 0 189 -87 189 -178s-56 -224 -195 -224
-c-82 0 -211 41 -211 256c0 84 32 191 98 267c59 69 124 114 232 145c9 -6 12 -15 12 -27c-143.3 -53.3 -211.3 -167.8 -239.6 -268.5z" />
-    <glyph glyph-name="seven.cap" unicode="&#xe10f;" horiz-adv-x="466" 
-d="M167 578c-34 0 -69 -7 -93 -92l-34 3c9 55 21 119 22 169c0 3 1 4 4 4c20 -4 17 -15 53 -15h218c40 0 64 5 82 11l17 -12c-119 -289 -172 -476 -232 -656l-73 -3l-8 6c72 161 156 379 239 585h-195z" />
-    <glyph glyph-name="eight.cap" unicode="&#xe110;" horiz-adv-x="504" 
-d="M246 21c48 0 132 26 132 132c0 50 -29 109 -96 149l-51 30c-90 -62 -111 -143 -111 -174c0 -95 78 -137 126 -137zM253 631c-64 0 -99 -50 -99 -99c0 -32 12 -71 80 -115l32 -20c29 21 89 72 89 129c0 49 -33 105 -102 105zM421 525c0 -68 -77 -118 -123 -149l72 -46
-c55.4 -35.4 82 -94 82 -156c0 -81 -69 -184 -208 -184c-112 0 -193 59 -193 168c0 41 21 97 64 135c28 24 62 39 89 59l-29 16c-66.8 36.9 -94 85 -94 144c0 82 70 146 179 146c104 0 161 -57 161 -133z" />
-    <glyph glyph-name="nine.cap" unicode="&#xe111;" horiz-adv-x="495" 
-d="M359.4 338c3.89999 24.4 5.60001 46.8 5.60001 66c0 181 -71 217 -138 217c-52 0 -98 -43 -98 -159c0 -53 22 -160 126 -160c21 0 64.8 1.89999 104.4 36zM350.8 296.5c-32.4 -20.2 -84.2 -31.5 -117.8 -31.5c-144 0 -189 87 -189 178s56 215 195 215
-c82 0 211 -42 211 -257c0 -84 -32 -192 -98 -268c-59 -69 -124 -113 -232 -144c-9 6 -12 15 -12 27c148.9 55.4 216.6 177.1 242.8 280.5z" />
-    <glyph glyph-name="uniA71D" unicode="&#xa71d;" horiz-adv-x="161" 
-d="M41 419c0 22 18 40 40 40s40 -18 40 -40s-18 -40 -40 -40s-40 18 -40 40zM81 826c18 0 40 -13 40 -48c0 -43 -10 -70 -18 -126c-10 -71 -10 -111 -12 -120c-1 -7 -2 -13 -10 -13s-10 5 -11 9c-2 14 -6 73 -12 124c-7 58 -17 80 -17 126c0 35 22 48 40 48z" />
-    <glyph glyph-name="copyleft" unicode="&#xe00c;" horiz-adv-x="695" 
-d="M201 216c4.60001 6.10001 9.2 12.3 19 15c11 -16 39 -50 90 -50c68 0 103 47 103 120c0 98 -52 133 -92 133c-57 0 -78 -28 -95 -74c-8 0 -15 1 -20 4c-1 24 -0.399994 46.7 10 78c20 2 31 15 101 15c88 0 158 -62 158 -146c0 -79 -67 -159 -156 -159
-c-55 0 -98 33 -118 64zM321 23c-157 0 -287 128 -287 283c0 156 131 282 287 282s287 -126 287 -282s-131 -283 -287 -283zM321 556c-140 0 -247 -111 -247 -250c0 -138 107 -251 247 -251c138 0 247 112 247 251s-108 250 -247 250z" />
-    <glyph glyph-name="publicdomain" unicode="&#xe00d;" horiz-adv-x="695" 
-d="M321 23c-157 0 -287 128 -287 283c0 156 131 282 287 282s287 -126 287 -282s-131 -283 -287 -283zM426.9 190.3l51.6 -78.4c54.9 46 89.5 115.8 89.5 194.1c0 139 -108 250 -247 250c-42.5 0 -81.9 -10.2 -116.2 -28.3l56.5 -85.9c21.8 9.80002 46.3 15.2 71.7 15.2
-c70 0 87 -13 107 -15c2 -37 1 -59 0 -83c-5 -3 -12 -4 -20 -4c-17 46 -34 79 -91 79c-17.1 0 -35.5 -4.60001 -51 -17.5l135.3 -205.5c12.4 10.6 21.2 21.5 25.7 28c9.79999 -2.7 14.4 -8.89999 19 -15c-6.89999 -10.7 -17.7 -22.7 -31.1 -33.7zM394.3 168.7
-c-19.3 -10 -41.1 -16.7 -63.3 -16.7c-38.7 0 -75.3 12.9 -102 35c-34.6 28.7 -54 72.4 -54 117c0 38.2 12 74.6 36 101.5c5.2 5.89999 11 11.2 17.2 16.2l-56 85.3c-60.3 -45.4 -98.2 -118.2 -98.2 -201c0 -138 107 -251 247 -251c46.1 0 88.9 12.5 125.5 34.3zM253.9 382.5
-c-7.39999 -17.8 -11.9 -41.1 -11.9 -71.5c0 -73 42 -130 98 -130c14.7 0 28.3 3.5 40.4 8.89999z" />
-    <glyph glyph-name="died" unicode="&#x271d;" horiz-adv-x="507" 
-d="M308 12c0 -18 -5 -22 -22 -22h-35c-19 0 -22 4 -22 22c0 32 11 146 13 376c-104 0 -151 -5 -172 -5c-17 0 -23 3 -23 25c0 20 6 34 22 34c17 0 68 -4 172 -5c-1 132 -12 205 -12 231c0 15 5 22 22 22h35c20 0 22 -6 22 -22c0 -23 -12 -97 -12 -231c103 1 150 5 172 5
-c16 0 22 -13 22 -34c0 -20 -5 -25 -21 -25c-17 0 -69 5 -173 5c1 -252 12 -344 12 -376z" />
-    <glyph glyph-name="uni266F" unicode="&#x266f;" horiz-adv-x="440" 
-d="M264 600h35v-140.2l55 22.2v-62l-55 -22.2v-100.3l55 22.5v-62l-55 -22.2v-131.8h-35v117.8l-109 -44v-155.8h-35v141.8l-54 -21.8v60l54 22.1v101.7l-54 -21.8v62l54 21.8v130.2h35v-116.2l109 44v154.2zM264 283.1v100.7l-109 -44v-101.3z" />
-    <glyph glyph-name="uni266E" unicode="&#x266e;" horiz-adv-x="440" 
-d="M275 282.7v97.6l-119 -43.4v-98.3zM121 548h35v-149.1l154 64.7v-389.6h-35v147.3l-154 -65.4v392.1z" />
-    <glyph glyph-name="uni266D" unicode="&#x266d;" horiz-adv-x="500" 
-d="M162 213v-125c89 34 137 73.8 137 142c0 26 -17 53 -42 53c-28 0 -60 -16 -95 -70zM162 546v-296h1c33 55 57 83 111 83c56 0 96 -39 96 -91c0 -106.1 -88 -156 -226 -192l-17 4v492c3 3 32 4 35 0z" />
-    <glyph glyph-name="W.alt" unicode="&#xe02f;" horiz-adv-x="1017" 
-d="M577 614c-6 6 -6 27 0 33c27 -1 56 -2 79 -2s48 1 73 2c6 -6 6 -27 0 -33c-52 -8 -74 -46 -98.3 -93l-73.1 -139.1l127.9 -264.9h4.59998l189.9 411c23.7 54.1 22 81 -43 86c-6 6 -6 27 0 33c37 -1 76 -2 99 -2s56 1 88 2c6 -6 6 -27 0 -33c-57 -6 -76.1 -45.1 -98.3 -93
-l-236.7 -510c-7 -15 -13 -23 -24 -23c-10 0 -17.7 8.1 -23 23l-134.5 290.3l-147.5 -290.3c-6 -15 -13 -23 -24 -23c-10 0 -17 8 -23 23l-217.5 512c-30.5 71 -37.8 87.3 -89.5 91c-6 6 -7 27 -1 33c35 -1 70.7 -2 104 -2c30.3 0 71 1 111 2c6 -6 6 -27 0 -33
-c-63 -7 -66 -23 -40.6 -80l183.1 -417h4.60001l111.7 227.2l-84.3 178.8c-33.5 71 -41.5 85 -84.5 91c-6 6 -7 27 -1 33c29 -1 59.7 -2 89 -2c31.7 0 62 1 91 2c6 -6 6 -27 0 -33c-42 -6 -38 -23 -10.6 -80l49.2 -101l4.40002 -4.5l53 99.5c31 58 35 80 -8 86z" />
-    <glyph glyph-name="a.superior" unicode="&#x1d43;" horiz-adv-x="307" 
-d="M192 502c-85 -22 -109 -40 -109 -71c0 -21 11 -41 45 -41c21 0 38 10 64 33v79zM235 358c-25 0 -39 21 -42 39c-34 -30 -52 -39 -85 -39c-42 0 -77 27 -77 70c0 42 40 70 103 86l58 15c0 75 -31 83 -54 83c-33 0 -54 -11 -54 -27c0 -7 1 -11 2 -13s2 -7 2 -12
-c0 -8 -7 -21 -26 -21c-15 0 -26 10 -26 25c0 40 62 73 104 73c49 0 106 -20 106 -114v-75c0 -41 5 -57 14 -57c4 0 9 2 12 5c7.29999 -2.70001 10.6 -8 10 -16c-9 -10 -28 -22 -47 -22z" />
-    <glyph glyph-name="d.superior" unicode="&#x1d48;" horiz-adv-x="315" 
-d="M209 463v103c-16 19 -39 39 -64 39c-34 0 -67 -37 -67 -111c0 -80 31.5 -96 61 -96c22 0 61.7 41 70 65zM204 413c-17 -32 -57 -51 -81 -51c-63 0 -99 50 -99 117c0 80 39 152 116 152c36 0 53 -11 69 -26v46c0 42 -7 49 -20 49l-21 1c-2 0 -4 1 -4 3l-1 18
-c26 2 72 10 88 17c6 0 8 -2 8 -7c0 0 -2 -26 -2 -68v-216c0 -40 9 -45 42 -48c1 -4 3 -18 2 -22c-43 -6 -63 -12 -80 -20c-5 0 -6 3 -7 6c-3 7 -5 20 -5 48c0 3 -0.899994 8.70001 -5 1z" />
-    <glyph glyph-name="e.superior" unicode="&#x1d49;" horiz-adv-x="317" 
-d="M157 394c38 0 68 17 87 39c8.7 0 16.3 -6.29999 20 -16c-26 -35 -72 -58 -118 -58c-34.5 0 -62.4 8.89999 -81.2 25.5c-27.6 24.3 -37.8 64.1 -37.8 107.5c0 74 44.3 145 130 145c85 0 104.3 -59.5 105 -131l-180 2c-1 -4 -1 -9 -1 -11c0 -25 4 -50 16 -69
-c15 -22 35 -34 60 -34zM205 537c0.300003 64.5 -33 75 -57 75c-28.2 0 -58.2 -36 -63 -76z" />
-    <glyph glyph-name="eturned.superior" unicode="&#x1d4a;" horiz-adv-x="317" 
-d="M124 602c-38 0 -68 -17 -87 -39c-8.7 0 -16.3 6.29999 -20 16c26 35 72 58 118 58c34.5 0 62.4 -8.90002 81.2 -25.5c27.6 -24.3 37.8 -64.1 37.8 -107.5c0 -74 -44.3 -145 -130 -145c-85 0 -104.3 59.5 -105 131l180 -2c1 4 1 9 1 11c0 25 -4 50 -16 69
-c-15 22 -35 34 -60 34zM76 459c-0.300003 -64.5 33 -75 57 -75c28.2 0 58.2 36 63 76z" />
-    <glyph glyph-name="g.superior" unicode="&#x1d4d;" horiz-adv-x="315" 
-d="M266 600c-10 0 -16 5 -18 12c-3 6 -9 9 -18 9c-7 0 -13 -8 -16 -14c17 -19 28 -34 28 -63c0 -60 -53 -90 -104 -90c-23 0 -41 4 -55 12c-7 -10 -9 -21 -9 -34c0 -26 19 -31 36 -31c3 0 10 1 19 2c14 1 29 3 39 3c22 0 63 -4 87 -26c17 -15 26 -30 26 -50
-c0 -67 -87 -95 -166 -95c-45 0 -100 14 -100 68c0 26 19 49 50 69c-19 4.5 -32 23 -32 45c0 21 9.5 45 34 61c-17 16 -34 35 -34 68c0 57 53 91 105 91c29 0 48 -9 57 -15c16 18 34 27 56 27c25 0 38 -13 38 -25c0 -14 -11 -24 -23 -24zM79 366c-19 -18 -21 -30 -21 -51
-c0 -46 53 -50 74 -50c49 0 110 4 110 49c0 16 -11 24.5 -28 34c-16.8 9.39999 -32 15 -62 15c-9 0 -17 0 -25 -1c-9 0 -18 -1 -25 -1s-17 2 -23 5zM190 542c0 50 -20 73 -57 73c-32 0 -49 -15 -49 -63c0 -32 8 -76 57 -76c22 0 49 4 49 66z" />
-    <glyph glyph-name="iturned.superior" unicode="&#x1d4e;" horiz-adv-x="194" 
-d="M104.6 242c-16 0 -29 13 -29 29s13 29 29 29s29 -13 29 -29s-13 -29 -29 -29zM77.6 556c0 41 -17 44 -51 46c-4 8 -4 22 0 29c30 -1 51.3 -1 76 -1c23 0 46 0 76 1c4 -6 5 -21 0 -29c-40 -2 -53 -5 -53 -46v-109c0 -53 11 -48 43 -50c4 -6 5 -13 4 -21
-c-26 -2 -73 -10 -89 -17c-6 0 -8 2 -8 7c0 0 2 27 2 54v136z" />
-    <glyph glyph-name="k.superior" unicode="&#x1d4f;" horiz-adv-x="323" 
-d="M56 439v212c0 42 -7 49 -20 49l-21 1c-2 0 -4 1 -4 3l-1 18c26 2 72 10 88 17c6 0 8 -2 8 -7c0 0 -2 -26 -2 -68v-150.5c21.8 8.79999 39.8 18.4 61 40l25 25.5c7.7 8.29999 23 23 -9 26c-3 0.299988 -5 3 -5 5v20l1 1s30 -1 52 -1c24 0 64 1 64 1l2 -1v-20
-c0 -3 -4 -4.79999 -6 -5c-24.5 -3 -45.9 -8.09998 -68 -32l-38 -41c-1.89999 -2.09998 -2 -6 -2 -8c0 -3 1 -6 3 -8l63 -93c7 -10 19.5 -27 52 -30c4 -0.399994 8 -2 8 -5v-22l-2 -2s-37 1 -61 1c-22 0 -38 -1 -38 -1l-2 2v16c0 6 -2 10 -14 27l-45 64c-9 11 -16 22 -31 22
-c-2.9 0 -6.2 -0.700012 -10 -1.89999v-54.1c0 -41 7 -44 41 -46c4 -8 4 -22 0 -29c-30 1 -41 1 -66 1c-23 0 -46 0 -76 -1c-4 6 -5 21 0 29c40 2 53 5 53 46z" />
-    <glyph glyph-name="m.superior" unicode="&#x1d50;" horiz-adv-x="495" 
-d="M123 562c-4 -5 -9 -14 -9 -22v-100c0 -41 3 -44 37 -46c4 -8 4 -22 0 -29c-30 1 -37 1 -62 1c-23 0 -46 0 -76 -1c-4 6 -5 21 0 29c40 2 53 5 53 46v107c0 40 -9 45 -42 48c-1 4 -3 18 -2 22c43 6 64 12 81 20c5 0 6 -3 7 -6c3 -7 5 -20 5 -48c0 -3 0 -8.29999 5 -1
-c24.3 35.3 49 55 85 55c35 0 57.3 -14.5 65.9 -50.9c14.6 17.4 49.9 50.9 85.1 50.9c46 0 80 -25 80 -92v-105c0 -41 8 -44 48 -46c5 -8 4 -23 0 -29c-30 1 -35.7 1 -71 1c-23.8 0 -31 0 -61 -1c-4 7 -4 21 0 29c34 2 36 5 36 46v95c0 51 -25 68 -56 68
-c-19.7 0 -39.5 -19.5 -57.6 -40.9c0.399994 -5.39996 0.600006 -11.1 0.600006 -17.1v-105c0 -41 7.5 -43.5 38 -46c5 -8 4 -23 0 -29c-30 1 -25.7 1 -61 1c-23.8 0 -31 0 -61 -1c-4 7 -4 21 0 29c34 2 36 5 36 46v95c0 51 -15 68 -46 68c-21 0 -39 -18 -58 -41z" />
-    <glyph glyph-name="o.superior" unicode="&#x1d52;" horiz-adv-x="307" 
-d="M152 637c92 0 129 -70.9 129 -143c0 -65 -46.9 -135 -130 -135c-81 0 -128 68 -128 132c0 71 40 146 129 146zM222 475c0 79 -34 137 -76 137c-34.2 0 -64 -30 -64 -109c0 -78 39 -119 80 -119c29 0 60 30 60 91z" />
-    <glyph glyph-name="cturned.superior" unicode="&#x1d53;" horiz-adv-x="282" 
-d="M123 358c-63 0 -96 33 -96 67c0 20 11 29 25 29s27 -7 29 -23c2 -22 7 -46 45 -46c31 0 73 33 73 114c0 25 -4 49 -16 68c-14 23 -38 38 -60 38c-38 0 -57 -21 -77 -43l-19 16c25 35 56 59 101 59c85 0 125 -61 125 -134s-44 -145 -130 -145z" />
-    <glyph glyph-name="uni1D54" unicode="&#x1d54;" horiz-adv-x="307" 
-d="M221.2 496c-5.39999 68.1 -37 116 -75.2 116c-34.2 0 -64 -30 -64 -109c0 -2.39999 0.0999985 -7 0.0999985 -7h-59c1.8 69.5 42 141 128.9 141c91.1 0 128.3 -69.6 129 -141h-59.8z" />
-    <glyph glyph-name="p.superior" unicode="&#x1d56;" horiz-adv-x="315" 
-d="M104 313c0 -41 17 -44 51 -46c4 -8 4 -22 0 -29c-30 1 -51 1 -76 1c-23 0 -46 0 -76 -1c-4 6 -5 21 0 29c40 2 53 5 53 46v234c0 40 -9 45 -42 48c-1 4 -3 18 -2 22c43 6 63 12 80 20c5 0 6 -3 7 -6c3 -7 5 -20 5 -48c0 -3 -0.300003 -7.79999 5 -1
-c18.5 23.5 57 49 86 49c58 0 93 -40 93 -108c0 -74 -49 -154 -114 -154c-20 0 -56 8 -70 20v-76zM104 440c12.5 -40 49 -45 71 -45c23 0 59 23 59 116c0 73 -23 89 -51 89c-25 0 -72.5 -35 -79 -62v-98z" />
-    <glyph glyph-name="t.superior" unicode="&#x1d57;" horiz-adv-x="216" 
-d="M106 602v-148c0 -38 6 -56 21 -56c16 0 36 0 52 12l16 -17c-26 -27 -59 -35 -87 -35c-29 0 -50 17 -50 61v183h-40c-2 0 -3.2 0 -3 2l2 24c0 2 1 3 3 3c37 0 48 24 48 71v11l38 13v-95h80c3 0 5.3 -1 5 -4l-2 -18c-0.699997 -6 -9 -7 -14 -7h-69z" />
-    <glyph glyph-name="u.superior" unicode="&#x1d58;" horiz-adv-x="319" 
-d="M55 552c0 46 -8 55 -38 57c-4 4 -4 19 0 23c23 -1 42 -2 62 -2c9 0 19 1 22 2c3 0 4 -2 4 -4c0 0 -2 -51 -2 -72v-96c0 -51 20 -67 50 -67c21 0 44 20 63 42v117c0 46 -8 55 -38 57c-4 4 -4 19 0 23c23 -1 42 -2 62 -2c9 0 19 1 22 2c3 0 4 -2 4 -4c0 0 -2 -51 -2 -72
-v-108c0 -40 9 -45 42 -48c1 -4 3 -18 2 -22c-43 -6 -63 -12 -80 -20c-5 0 -6 3 -7 6c-3 7 -5 19.8 -5 38c0 3 -1.7 5.5 -5 1c-12.7 -17.6 -45 -45 -82 -45c-45 0 -74 25 -74 92v102z" />
-    <glyph glyph-name="mturned.superior" unicode="&#x1d5a;" horiz-adv-x="485" 
-d="M366 439c4 5 9 14 9 22v100c0 41 -3 44 -37 46c-4 8 -4 22 0 29c30 -1 37 -1 62 -1c23 0 46 0 76 1c4 -6 5 -21 0 -29c-40 -2 -53 -5 -53 -46v-107c0 -40 9 -45 42 -48c1 -4 3 -18 2 -22c-43 -6 -64 -12 -81 -20c-5 0 -6 3 -7 6c-3 7 -5 20 -5 48c0 3 0 8.29999 -5 1
-c-24.3 -35.3 -49 -55 -85 -55c-35 0 -57.3 14.5 -65.9 50.9c-14.6 -17.4 -49.9 -50.9 -85.1 -50.9c-46 0 -80 25 -80 92v105c0 41 -8 44 -48 46c-5 8 -4 23 0 29c30 -1 35.7 -1 71 -1c23.8 0 31 0 61 1c4 -7 4 -21 0 -29c-34 -2 -36 -5 -36 -46v-95c0 -51 25 -68 56 -68
-c19.7 0 39.5 19.5 57.6 40.9c-0.400009 5.39999 -0.600006 11.1 -0.600006 17.1v105c0 41 -7.5 43.5 -38 46c-5 8 -4 23 0 29c30 -1 25.7 -1 61 -1c23.8 0 31 0 61 1c4 -7 4 -21 0 -29c-34 -2 -36 -5 -36 -46v-95c0 -51 15 -68 46 -68c21 0 39 18 58 41z" />
-    <glyph glyph-name="v.superior" unicode="&#x1d5b;" horiz-adv-x="314" 
-d="M204 609c-4 4 -4 19 0 23c23 -1 37 -2 60 -2c16 0 27 1 41 2c4 -4 4 -19 0 -23c-31.5 -3.5 -39.1 -21.4 -53 -52l-83.2 -182.8c-5 -11 -8.7 -16.1 -14.9 -16.1c-8.09999 0 -11.2 4.79999 -15.5 14.7l-79.4 185.2c-15.1 35.1 -17 47 -50 51c-4 4 -4 19 0 23
-c23 -1 33 -2 55 -2c25.8 0 43 1 66 2c4 -4 4 -19 0 -23c-32.5 -3 -31.7 -15.4 -19 -47l42.1 -105.3c11.4 -28.5 13.9 -28.8 26 -2.10001l46.9 107.4c14.2 32.4 11 44 -22 47z" />
-    <glyph glyph-name="uni1D5D" unicode="&#x1d5d;" horiz-adv-x="312" 
-d="M96 626v-362l-41 -20l-7 14v338c0 41 5 67 24 94c22 33 50 49 94 49c59 0 98 -29 98 -78c0 -34 -12 -61 -64 -80c69 -13 89 -49 89 -107c0 -66 -40 -116 -113 -116c-27 0 -56 10 -69 34v4l23 11c16 -21 33 -24 51 -24c36 0 50 31 50 89c0 47 -19 89 -54 94h-32
-c-17 0 -25 3 -25 14s8 13 25 13h24c32 7 41 43 41 63c0 37 -19 57 -50 57c-36 0 -64 -25 -64 -87z" />
-    <glyph glyph-name="uni1D5E" unicode="&#x1d5e;" horiz-adv-x="364" 
-d="M326 601c0 -38.7 -16 -91 -52 -157c-16 -28.7 -38 -60 -58 -84c4.7 -14.7 5.5 -56.7 5.5 -76c0 -26 -22.5 -64 -51 -64c-24.5 0 -35 13.1 -35 46c0.699997 25.3 10.3 48 41 90l-1.5 8c-19.3 87.3 -39.2 157.8 -72.5 214.5c-6 9.29999 -14 15.5 -20.5 15.5
-c-16 0 -28 -16.5 -36 -31.5c-10.1 2.40002 -16.5 5.5 -22.5 12c22.5 45 56.5 62.5 84.5 62.5c19.5 0 31.7 -10.3 43 -31c29.2 -58.4 48.8 -164.5 58 -220c39.3 67.3 66 144.7 66 172c0 10.7 -4 19 -8 21c-14.9 7.09998 -25 14.4 -25 30c0 17.9 13.1 28 37 28
-c24.3 0 47 -11.8 47 -36z" />
-    <glyph glyph-name="uni1D5F" unicode="&#x1d5f;" horiz-adv-x="353" 
-d="M157 593c-42.1 26.3 -74 59 -74 86c0 40.4 38.6 60 90 60c40 0 72 -9 95 -28c11 -8 13 -16 14 -23c-4 -13 -17 -21 -33 -21c-14 0 -32.2 8.79999 -43 24c-7.5 10.5 -20 18 -34 18c-22.4 0 -36 -5.90002 -36 -24c0 -12 17.7 -36.4 46 -55c52.5 -34.5 86.2 -57 103.2 -80
-c15 -19 21.5 -49 21.5 -69c0 -49 -18 -82 -61 -105c-25 -13 -43.7 -18 -74.7 -18c-48 0 -79.6 12.5 -103.3 43c-15.7 20.2 -22.7 45 -22.7 71c0 55.9 35.7 95.6 112 121zM180 576c-47 -19 -77 -51 -77 -96c0 -48.9 25.3 -93 75 -93c17 0 43.2 5 59.2 28
-c10 14.3 11.8 40 11.8 65c0 42.5 -35.3 71.5 -69 96z" />
-    <glyph glyph-name="b.superior" unicode="&#x1d47;" horiz-adv-x="297" 
-d="M51 651c0 42 -6 49 -19 49l-21 1c-2 0 -4 1 -4 3l-1 18c26 2 72 10 88 17c6 0 8 -2 8 -7c0 0 -2 -26 -2 -68v-58c25 16 48 25 74 25c62 0 99 -62 99 -130c0 -74 -54 -143 -119 -143c-30 0 -55 10 -71 24c-6 -8 -14 -17 -20 -24l-14 4c2 15 2 26 2 52v237zM100 578v-129
-c0 -52 33 -65 55 -65c23.5 0 64 12 64 105c0 73 -30 111 -60 111c-26 0 -38 -6 -59 -22z" />
-    <glyph glyph-name="aturned.superior" unicode="&#x1d44;" horiz-adv-x="307" 
-d="M121.1 493c85 22 109 40 109 71c0 21 -11 41 -45 41c-21 0 -38 -10 -64 -33v-79zM78.1 637c25 0 39 -21 42 -39c34 30 52 39 85 39c42 0 77 -27 77 -70c0 -42 -40 -70 -103 -86l-58 -15c0 -75 31 -83 54 -83c33 0 54 11 54 27c0 7 -1 11 -2 13s-2 7 -2 12c0 8 7 21 26 21
-c15 0 26 -10 26 -25c0 -40 -62 -73 -104 -73c-49 0 -106 20 -106 114v75c0 41 -5 57 -14 57c-4 0 -9 -2 -12 -5c-7.3 2.70001 -10.6 8 -10 16c9 10 28 22 47 22z" />
-    <glyph glyph-name="c.superior" unicode="&#x1d9c;" horiz-adv-x="282" 
-d="M157 637c63 0 96 -33 96 -67c0 -20 -11 -29 -25 -29s-27 7 -29 23c-2 22 -7 46 -45 46c-31 0 -73 -33 -73 -114c0 -25 4 -49 16 -68c14 -23 38 -38 60 -38c38 0 57 21 77 43l19 -16c-25 -35 -56 -59 -101 -59c-85 0 -125 61 -125 134s44 145 130 145z" />
-    <glyph glyph-name="f.superior" unicode="&#x1da0;" horiz-adv-x="253" 
-d="M72 417v152h-42c-3 0 -3 1 -3 3v14c0 5 3 12 14 12h31c0 96 53 141 105 141c23 0 39 -6 54 -17c13 -9 20 -20 20 -31c0 -12 -11 -23 -23 -23s-22 8 -27 19c-8 20 -18 27 -36 27c-20 0 -44 -11 -44 -106v-10h68c3 0 5 -1 5 -3v-18c0 -6 -8 -8 -14 -8h-59v-152
-c0 -18 6.8 -26.2 26 -28l21 -2c2 -0.200012 5 -1 5 -5v-17l-1 -1s-54 1 -78 1c-22 0 -63 -1 -63 -1l-2 1v17c0 4 2 4.5 5 5l12 2c20.8 3.5 26 10 26 28z" />
-    <glyph glyph-name="z.superior" unicode="&#x1dbb;" horiz-adv-x="274" 
-d="M70 631h118c18 0 46 2 48 2c4 0 8 0 8 -3v-1c0 -2 0 -6 -13 -25l-142 -210h74c36 0 46 8 61 41l7 17c7.60001 0.299988 14.9 -1.20001 22 -4c-11 -36 -17 -65 -20 -84h-197c-10 0 -14 3 -14 7s0 5 5 13l146 218h-76c-19 0 -40 -6 -52 -50
-c-7.3 -0.900024 -15.8 0.299988 -22 3c5 30 9 55 9 83l6 1c4.8 -5 22 -8 32 -8z" />
-    <glyph glyph-name="A.alt" unicode="&#xe0f7;" horiz-adv-x="700" 
-d="M253 283h184l-92.6 254h-4.39999c-50 -108 -64 -143 -102.2 -240.7c0.199997 -6.29999 3.2 -13.3 15.2 -13.3zM156 79c-15.4 -39.2 30.4 -45.4 68 -48c6 -6 6 -27 0 -33c-37 1 -87 2 -128 2c-39 0 -52 -1 -89 -2c-6 6 -6 27 0 33c43.5 3 73.3 9.3 100 71l94.3 218
-c109.9 242.8 97.5 215.9 123.7 269c-5 14 -12 29 -19 36c0 2 0 4 2 5c17.3 3.40002 24.6 4.20001 38 9c14 5 28 18 34 19c6 0 7.70001 -10.7 15 -30l205 -542c18.5 -51.5 51.2 -51.5 90 -55c6 -6 6 -27 0 -33c-37 1 -78 2 -119 2c-39 0 -94 -1 -131 -2c-6 6 -6 27 0 33
-c47.6 3.4 88.9 -0.200001 74 41l-61 169h-215c-16 0 -19.6 -3.2 -25 -17z" />
-    <glyph glyph-name="uniE0E2" unicode="&#xe0e2;" horiz-adv-x="700" 
-d="M204 706c0 26 22 48 48 48s48 -22 48 -48s-22 -48 -48 -48s-48 22 -48 48zM451 706c0 26 22 48 48 48s48 -22 48 -48s-22 -48 -48 -48s-48 22 -48 48zM258 283h185l-88.6 273h-7.39999l-104.2 -259.7c0.199997 -6.29999 3.2 -13.3 15.2 -13.3zM156 79
-c-15.4 -39.2 30.4 -45.4 68 -48c6 -6 6 -27 0 -33c-37 1 -87 2 -128 2c-39 0 -52 -1 -89 -2c-6 6 -6 27 0 33c43.5 3 73 10 100 71l206 459c7.29999 16.3 7 23 2 29s-5 15 3 17c13.9 3.5 20 6 32 14c32.8 21.9 40 37 50 37c6 0 7.70001 -10.7 15 -30l185 -542
-c18 -52 51.2 -51.5 90 -55c6 -6 6 -27 0 -33c-37 1 -78 2 -119 2c-39 0 -94 -1 -131 -2c-6 6 -6 27 0 33c47.6 3.4 88 -1 74 41l-55 169h-221c-16 0 -19.6 -3.2 -25 -17z" />
-    <glyph glyph-name="uniE0E3" unicode="&#xe0e3;" horiz-adv-x="695" 
-d="M253 283h184l-92.6 254h-4.39999c-50 -108 -64 -143 -102.2 -240.7c0.199997 -6.29999 3.2 -13.3 15.2 -13.3zM156 79c-15.4 -39.2 30.4 -45.4 68 -48c6 -6 6 -27 0 -33c-37 1 -87 2 -128 2c-39 0 -52 -1 -89 -2c-6 6 -6 27 0 33c43.5 3 73.3 9.3 100 71l94.3 218
-c109.9 242.8 97.5 215.9 123.7 269c-5 14 -12 29 -19 36c0 2 0 4 2 5c17.3 3.40002 24.6 4.20001 38 9c14 5 28 18 34 19c6 0 7.70001 -10.7 15 -30l205 -542c18.5 -51.5 51.2 -51.5 90 -55c6 -6 6 -27 0 -33c-37 1 -78 2 -119 2c-39 0 -94 -1 -131 -2c-6 6 -6 27 0 33
-c47.6 3.4 88.9 -0.200001 74 41l-61 169h-215c-16 0 -19.6 -3.2 -25 -17zM417 820c28.6 -13.3 49.3 -30.7 62 -52l-144 -58c-21 -9 -33 -12 -42 -12s-15 7 -15 15c0 7 2 12 15 21z" />
-    <glyph glyph-name="uniE0E4" unicode="&#xe0e4;" horiz-adv-x="695" 
-d="M253 283h184l-92.6 254h-4.39999c-50 -108 -64 -143 -102.2 -240.7c0.199997 -6.29999 3.2 -13.3 15.2 -13.3zM156 79c-15.4 -39.2 30.4 -45.4 68 -48c6 -6 6 -27 0 -33c-37 1 -87 2 -128 2c-39 0 -52 -1 -89 -2c-6 6 -6 27 0 33c43.5 3 73.3 9.3 100 71l94.3 218
-c109.9 242.8 97.5 215.9 123.7 269c-5 14 -12 29 -19 36c0 2 0 4 2 5c17.3 3.40002 24.6 4.20001 38 9c14 5 28 18 34 19c6 0 7.70001 -10.7 15 -30l205 -542c18.5 -51.5 51.2 -51.5 90 -55c6 -6 6 -27 0 -33c-37 1 -78 2 -119 2c-39 0 -94 -1 -131 -2c-6 6 -6 27 0 33
-c47.6 3.4 88.9 -0.200001 74 41l-61 169h-215c-16 0 -19.6 -3.2 -25 -17zM377 808c30 -36 67 -70 103 -97c-2.79999 -9.09998 -6.89999 -17.2 -16 -21c-39 18 -73 36 -106 61c-37 -27 -69 -44 -107 -61c-9 6 -12 12 -14 21c37 28 70 63 101 97c14 8.40002 23.6 7.70001 39 0
-z" />
-    <glyph glyph-name="uniE0E5" unicode="&#xe0e5;" horiz-adv-x="695" 
-d="M253 283h184l-92.6 254h-4.39999c-50 -108 -64 -143 -102.2 -240.7c0.199997 -6.29999 3.2 -13.3 15.2 -13.3zM156 79c-15.4 -39.2 30.4 -45.4 68 -48c6 -6 6 -27 0 -33c-37 1 -87 2 -128 2c-39 0 -52 -1 -89 -2c-6 6 -6 27 0 33c43.5 3 73.3 9.3 100 71l94.3 218
-c109.9 242.8 97.5 215.9 123.7 269c-5 14 -12 29 -19 36c0 2 0 4 2 5c17.3 3.40002 24.6 4.20001 38 9c14 5 28 18 34 19c6 0 7.70001 -10.7 15 -30l205 -542c18.5 -51.5 51.2 -51.5 90 -55c6 -6 6 -27 0 -33c-37 1 -78 2 -119 2c-39 0 -94 -1 -131 -2c-6 6 -6 27 0 33
-c47.6 3.4 88.9 -0.200001 74 41l-61 169h-215c-16 0 -19.6 -3.2 -25 -17zM422 747c22 0 33 10 47 52c11 1 21 -2 27 -6c-12 -60 -41 -99 -87 -99c-22 0 -43 18 -64 32c-18 11 -37 19 -54 19c-26 0 -36 -15 -46 -48c-11 -2 -21 -1 -27 5c14 59 37 98 80 98
-c30 0 52 -20 72 -34c16 -12 33 -19 52 -19z" />
-    <glyph glyph-name="uniE0E6" unicode="&#xe0e6;" horiz-adv-x="700" 
-d="M188 706c0 26 22 48 48 48s48 -22 48 -48s-22 -48 -48 -48s-48 22 -48 48zM425 706c0 26 22 48 48 48s48 -22 48 -48s-22 -48 -48 -48s-48 22 -48 48zM253 283h184l-92.6 254h-4.39999c-50 -108 -64 -143 -102.2 -240.7c0.199997 -6.29999 3.2 -13.3 15.2 -13.3zM156 79
-c-15.4 -39.2 30.4 -45.4 68 -48c6 -6 6 -27 0 -33c-37 1 -87 2 -128 2c-39 0 -52 -1 -89 -2c-6 6 -6 27 0 33c43.5 3 73.3 9.3 100 71l94.3 218c109.9 242.8 97.5 215.9 123.7 269c-5 14 -12 29 -19 36c0 2 0 4 2 5c17.3 3.40002 24.6 4.20001 38 9c14 5 28 18 34 19
-c6 0 7.70001 -10.7 15 -30l205 -542c18.5 -51.5 51.2 -51.5 90 -55c6 -6 6 -27 0 -33c-37 1 -78 2 -119 2c-39 0 -94 -1 -131 -2c-6 6 -6 27 0 33c47.6 3.4 88.9 -0.200001 74 41l-61 169h-215c-16 0 -19.6 -3.2 -25 -17z" />
-    <glyph glyph-name="uniE0E7" unicode="&#xe0e7;" horiz-adv-x="700" 
-d="M258 283h185l-88.6 273h-7.39999l-104.2 -259.7c0.199997 -6.29999 3.2 -13.3 15.2 -13.3zM156 79c-15.4 -39.2 30.4 -45.4 68 -48c6 -6 6 -27 0 -33c-37 1 -87 2 -128 2c-39 0 -52 -1 -89 -2c-6 6 -6 27 0 33c43.5 3 73 10 100 71l206 459c7.29999 16.3 7 23 2 29
-s-5 15 3 17c13.9 3.5 20 6 32 14c32.8 21.9 40 37 50 37c6 0 7.70001 -10.7 15 -30l185 -542c18 -52 51.2 -51.5 90 -55c6 -6 6 -27 0 -33c-37 1 -78 2 -119 2c-39 0 -94 -1 -131 -2c-6 6 -6 27 0 33c47.6 3.4 88 -1 74 41l-55 169h-221c-16 0 -19.6 -3.2 -25 -17z" />
-    <glyph glyph-name="uni0242" unicode="&#x242;" horiz-adv-x="433" 
-d="M241 113c0 -77 16 -81 81 -84c3 -3 4 -9 4 -15s-1 -13 -4 -16c-46 1 -73.2 2 -120 2c-47.2 0 -75 -1 -121 -2c-3 3 -5 10 -5 16s2 12 5 15c65 3 81 7 81 83v87c115 6 148 70 148 115c0 43 -26 91 -107 91c-44 0 -90 -8 -90 -49c0 -7 1 -13 1 -19c0 -22 -18 -39 -43 -39
-c-24 0 -44 16 -44 40c0 54 91 101 175 101c94 0 181 -40 181 -126c0 -56.6 -31 -100 -72.7 -124c-32.4 -18.6 -69.3 -43 -69.3 -64v-12z" />
-    <glyph glyph-name="uni0244" unicode="&#x244;" horiz-adv-x="661" 
-d="M87 322h-61c-9 0 -13 8 -13 15c0 12 11 29 22 29h52v157c0 83 -17 88 -77 91c-6 6 -6 27 0 33c39 -1 80 -2 119 -2c39.4 0 88 1 135 2c6 -6 6 -27 0 -33c-77 -3 -92 -8 -92 -91v-157h354v157c0 81 -17 84 -92 91c-6 6 -6 27 0 33c46 -1 94.5 -2 116 -2c23.2 0 64 1 102 2
-c6 -6 6 -27 0 -33c-60 -7 -77 -10.7 -77 -91v-157h61c9 0 13 -8 13 -14c0 -12 -10 -30 -23 -30h-51v-27c0 -178 -49 -305 -254 -305c-102.5 0 -234 39 -234 243v89zM526 322h-354v-56c0 -65 2 -141 51 -188c30.1 -28.9 71 -47 119 -47c169 0 184 134 184 246v45z" />
-    <glyph glyph-name="uni0245" unicode="&#x245;" horiz-adv-x="658" 
-d="M205 31c6 -6 6 -27 0 -33c-41 1 -86 2 -109 2s-58 -1 -88 -2c-6 6 -6 27 0 33c63 7 79.1 45.7 98.3 93l206.7 510c5.79999 14.3 13 23 24 23c10 0 17 -7.40002 23 -23l197.5 -512c26.6 -69 34.5 -86 89.5 -91c6 -6 7 -27 1 -33c-33 1 -67.7 2 -104 2
-c-36 0 -81 -1 -121 -2c-6 6 -6 27 0 33c68 7 73.8 20.5 50.6 80l-159.1 407h-4.60001l-157.9 -401c-21.4 -54.4 -21 -81 53 -86z" />
-    <glyph glyph-name="uni0246" unicode="&#x246;" horiz-adv-x="557" 
-d="M8 -13c-19 0 -33 17 -36 32l133 163.8v340.2c0 83 -17 88 -87 91c-6 6 -6 27 0 33c40 -1 98.5 -2 129 -2h255c24 0 32 1 49 4c3 0 4 -1 4 -3c0.600006 -2.40002 2.29999 -12.5 4.60001 -26.6l31.4 38.6c19 0 33.7 -15.1 36 -30l-57.7 -71.3
-c3.10001 -21.2 6 -41.7 7.70001 -55.7c-9.79999 -4.70001 -20.6 -6.79999 -33 -5c-2.29999 7.29999 -4.60001 14.3 -6.89999 21l-125.6 -155.2c55.4 3.5 57.9 19.7 60.5 67.2c6 6 27 6 33 0c-1 -24 -2 -58 -2 -86c0 -34.3 1 -62 2 -88c-6 -6 -27 -6 -33 0
-c-3 45 -6 68 -91 68h-1l-90 -111.2v-109.8c0 -47 14 -63 56 -63h116c76 0 111 59 131 131c13.1 3.2 24.6 1 35 -5c-8 -51 -23 -117 -37 -167c0 0 -80 2 -128 2h-215c-33 0 -93 -1 -130 -2l-0.6 0.6zM45 32.6c43.9 4.1 57.9 16.2 59.8 73.9zM218.9 323h-28.9v-35.6z
-M415.7 565.2c-16.5 25.8 -40.3 39.8 -84.7 39.8h-75c-54 0 -66 -20 -66 -64v-180h59.8z" />
-    <glyph glyph-name="uni0247" unicode="&#x247;" horiz-adv-x="447" 
-d="M388 454c17 0 27 -10 31 -23l-43.2 -52.5c23.1 -32.6 30.2 -74.8 30.2 -115.5c0 -11 -7 -17 -19 -17l-119.2 0.899994l-113.4 -138.1c30.9 -49.4 72.1 -69.8 107.6 -69.8c58 0 87 16 124 54c12 -1 18 -6 21 -16c-40 -52 -94 -87 -170 -87
-c-62.9 0 -106.8 18.3 -139.5 49.6l-55.5 -67.6c-16 0 -28 11 -30 26l59.6 72.3c-24.2 36.4 -34.6 83.3 -34.6 131.7c0 152 113 235 200 235c50.2 0 86.2 -11.7 111.7 -30.7zM319.7 310.1l-20.7 -25.2l6 0.100006c11 0.200012 15 5 15 14
-c0 3.79999 -0.100006 7.5 -0.299988 11.1zM309.3 358.6c-15.6 35.1 -45.7 45.4 -72.3 45.4c-24 0 -94 -9 -113 -122l123.9 2.10001zM135.8 148.2l81.7 99.1l-96.5 0.699997c0 -38.7 5.3 -72.1 14.8 -99.8z" />
-    <glyph glyph-name="uni0248" unicode="&#x248;" horiz-adv-x="404" 
-d="M191 230h-105c-9 0 -13 8 -13 15c0 12 11 29 22 29h96v249c0 83 -17 88 -97 91c-6 6 -6 27 0 33c50 -1 102.7 -2 139 -2c38.7 0 82 1 120 2c6 -6 6 -27 0 -33c-60 -3 -77 -8 -77 -91v-249h100c9 0 13 -8 13 -14c0 -12 -10 -30 -23 -30h-90v-127
-c0 -143 -58.3 -194.7 -102 -232c-41 -35 -72 -43 -117 -43c-22 0 -75 18 -75 54c0 22 30 43 44 43c24.9 0 33.7 -12.8 39.7 -25.5c7 -14.7 21.2 -26.5 40.3 -26.5c33 0 85 28 85 208v149z" />
-    <glyph glyph-name="uni0249" unicode="&#x249;" horiz-adv-x="272" 
-d="M99 599c0 24 28 48 52 48c27 0 48 -28 48 -52c0 -21.1 -24 -48 -52 -48c-24 0 -48 26 -48 52zM113 317c0 57 -11 63 -65 68c-2 6 -4 22 -2 28c69 9 109 18 137 29c8 0 13 -3 13 -7c0 0 -4 -64 -4 -114v-91h75c9 0 12 -8 12 -13c0 -11 -9 -26 -21 -26h-66v-81
-c0 -189 -28 -261 -75 -299c-37 -31 -89 -34 -110 -34c-19 0 -55 14 -55 43c0 18 21 38 32 38c22 0 34 -16 44 -26c7 -7 20 -11 31 -11c50 0 54 123 54 255v115h-84c-8 0 -11 8 -11 14c0 10 10 25 19 25h76v87z" />
-    <glyph glyph-name="uni024C" unicode="&#x24c;" horiz-adv-x="587" 
-d="M272 618c-71 0 -83 -35 -83 -64v-229h48c97 0 168 28 168 153c0 118 -72 140 -133 140zM189 122c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-44 1 -91.4 2 -129 2c-38.5 0 -85 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v169h-75c-8 0 -11 8 -11 14c0 10 10 25 19 25h67
-v193c0 83 -17 88 -87 91c-6 6 -6 27 0 33c47 -1 94 -2 129 -2c36 0 78 7 125 7c63 0 125 -3 173 -48c36 -34 53 -75 53 -125c0 -105 -90 -157 -133 -171l126 -210c26 -43.4 51 -77 96 -77c4 -8 4.5 -17.1 1 -24c-10 -5 -27 -7 -42 -7c-60 0 -103.3 42.4 -132 89l-107 174
-c-14.3 23.3 -33 38 -117 38v-169z" />
-    <glyph glyph-name="uni024D" unicode="&#x24d;" horiz-adv-x="372" 
-d="M176 358c0.199997 -5 5 -13 11 -2c23 39 64 83 111 83c42 0 60 -28.9 60 -48c0 -25 -23 -50 -47 -50c-17.4 0 -28.6 13.3 -36.2 23.3c-7.79999 10.3 -16.8 12.7 -25.8 12.7c-12 0 -35 -33 -46 -49c-10.6 -15.9 -21.2 -35.7 -23.5 -58h107.5c9 0 12 -8 12 -13
-c0 -11 -9 -26 -21 -26h-99v-109c0 -83 12 -86 82 -91c6 -6 6 -27 0 -33c-35 1 -81 2 -121 2s-79 -1 -114 -2c-6 6 -6 27 0 33c62 4 74 8 74 91v109h-71c-8 0 -11 8 -11 14c0 10 10 25 19 25h63v47c0 58 -11 63 -65 68c-2 6 -4 22 -2 28c69 9 95 18 123 29
-c8 0 9.89999 -3.39999 12 -8c4.7 -10.3 6.3 -36 8 -76z" />
-    <glyph glyph-name="uni024E" unicode="&#x24e;" horiz-adv-x="575" 
-d="M337 122c0 -83 17 -88 97 -91c6 -6 6 -27 0 -33c-50 1 -100.3 2 -139 2c-38.6 0 -91 -1 -140 -2c-6 6 -6 27 0 33c80 3 97 8 97 91v127c0 37 -3.5 47.5 -21 77l-92.1 155h-62.9c-9 0 -13 8 -13 15c0 12 11 29 22 29h27.7l-13 22c-34.5 58.1 -51.7 64 -93.7 67
-c-6 6 -7 27 -1 33c30 -1 63 -2 102 -2c40 0 78 1 114 2c6 -6 6 -27 0 -33c-56 -3 -60 -12.6 -35.8 -55.2l19.2 -33.8h210.3l19.1 36c21.4 40.4 5.5 50 -38.8 53c-6 6 -6 27 0 33c32 -1 68 -2 91 -2s55 1 83 2c6 -6 6 -27 0 -33c-44.7 -4.29999 -67 -13.3 -95 -64l-13.8 -25
-h35.8c9 0 13 -8 13 -14c0 -12 -10 -30 -23 -30h-50.2l-81.3 -147c-16.4 -29.6 -17.5 -46.5 -17.5 -76.3v-135.7zM391.4 481h-162.1l71.9 -127c9 -15.9 13.8 -17.2 21.8 -2z" />
-    <glyph glyph-name="uni024F" unicode="&#x24f;" horiz-adv-x="515" 
-d="M204 -160c-36 -64 -76 -72 -97 -72c-27 0 -47 16 -47 37c0 13 15 43 44 43c11 0 15 -3 29 -3c25 0 39 9 50 29c15 31 27.1 58.6 39 92c10 28 -5.3 73.9 -14 94l-73.5 171h-95.5c-8 0 -11 8 -11 14c0 10 10 25 19 25h70.7l-22.8 53c-26.2 61 -39.2 70 -78.9 75
-c-6 6 -6 27 0 33c20 -1 47 -2 81 -2c36 0 76 1 113 2c6 -6 6 -27 0 -33c-56 -4.29999 -50.8 -22.8 -32.8 -65l26.9 -63h149l35.9 83c16 36 -16.4 42 -48 45c-6 6 -6 27 0 33c30 -1 61 -2 91 -2c28 0 51 1 71 2c6 -6 6 -27 0 -33c-47 -5.70001 -61.3 -21.7 -81 -64
-c-10 -21.5 -19.7 -42.6 -29.4 -64h74.4c9 0 12 -8 12 -13c0 -11 -9 -26 -21 -26h-82.9c-35.9 -80.4 -74.5 -170.9 -130.1 -305c-12.3 -29.6 -25.4 -58.2 -41 -86zM336.2 231h-115.5l45.2 -106c8.5 -19.8 16.9 -17.1 23.9 -1z" />
-    <glyph glyph-name="uni0240" unicode="&#x240;" horiz-adv-x="424" 
-d="M60 0c-15 0 -23 5 -23 12c0 5 0.400002 8.4 9 20c78 105 178 249 246 363l-128 -3c-30 -0.700012 -61 -18 -81 -91c-11.6 -2.60001 -24.2 -0.700012 -33 3c8 49 14 84 15 129c0 2.39999 3.6 6 6 6c17.5 -3.39999 26.9 -10 59 -10h183c29 0 57 2 62 2c7 0 12 -3 12 -7
-s-2.70001 -11.8 -18 -37c-62 -102 -166 -259 -240 -353c-0.699997 -1 -1.3 -2.1 -2 -3.1c29.3 -1.7 55 -22.8 78 -64.9l39 -72c23 -43 45 -64 66 -64c10 0 21 8 33 26c12 17 24 26 37 26c21 0 32 -12 32 -35c0 -37 -28 -55 -82 -55c-28 0 -50 8 -69 23c-14 12 -30 32 -45 60
-l-39 72c-19 35 -40 53 -62 53h-8c23.9 0.5 15.9 0.6 0.300003 0.5l-0.300003 -0.5h-3l0.300003 0.5c-18.4 -0.1 -44.3 -0.5 -44.3 -0.5z" />
-    <glyph glyph-name="uni024B" unicode="&#x24b;" horiz-adv-x="511" 
-d="M322 368.4c-21.9 24.5 -48.6 36.6 -79 36.6c-80 0 -122 -74 -122 -178c0 -151 87 -193 145 -193c15.8 0 42.6 1.1 66 13.2c13 6.8 14 11.8 14 29.8v52v178c0 24.1 -4 39 -24 61.4zM346.2 20.1c-27.5 -17.3 -59.3 -30.1 -104.2 -30.1c-144 0 -207 124 -207 217
-c0 132 90 232 212 232c42.4 0 81.4 -8.70001 113 -29.2c12 -7.79999 16 -4.79999 29 13.2c8.10001 11.3 14 19 21 19c11 0 15 -11 15 -25v-288v-8v-93c0 -156 17 -184 46 -184c30 0 35 20 41 41c5 21 19 39 46 39c21 0 34 -14 34 -36c0 -31 -31 -76 -116 -76
-c-58.2 0 -125.7 44.2 -129.8 208.1z" />
-    <glyph glyph-name="uni024A" unicode="&#x24a;" horiz-adv-x="668" 
-d="M334 624c-96 0 -206 -87 -206 -297c0 -192 108 -303 239 -303c41 0 75 12 106 37v72v436c-40 36 -86 55 -139 55zM473.5 12c-37.6 -14.5 -79.8 -22 -125.5 -22c-172 0 -312 123 -312 320c0 196 132 348 311 348c50 0 100 -12 143 -35c17 6 38 25 49 35c12 0 15 -3 15 -13
-v-512v-73v-31c0 -160 17 -188 47 -188c31 0 36 20 42 42c5 22 19 40 47 40c22 0 35 -14 35 -37c0 -32 -32 -78 -119 -78c-58.9 0 -126 44.3 -132.5 204z" />
-    <glyph glyph-name="u1D538" unicode="&#x1d538;" horiz-adv-x="805" 
-d="M265 79c-15.6 -41.1 31.4 -45.4 69 -48c6 -6 6 -27 0 -33c-37 1 -197 2 -238 2c-39 0 -52 -1 -89 -2c-6 6 -6 27 0 33c43.5 3 73.6 9.2 100 71l222.3 520.3c11.4 26.8 13.7 27.7 19.7 35.7c9.10001 -1.29999 83 -2 136 -0.0999756c7 -12.9 9 -19.9 15 -29.9l205 -542
-c18.5 -51.5 51.2 -51.5 90 -55c6 -6 6 -27 0 -33c-37 1 -73 2 -114 2c-39 0 -94 -1 -131 -2c-6 6 -6 27 0 33c47.6 3.4 88.9 -0.200001 74 41l-61 169h-208c-24 0 -30 -4 -35 -17zM373 283h174l-97 267h-2l-100.2 -253.7c-4.19998 -10.8 3 -13.3 25.2 -13.3zM410 637
-l-246 -607h52l242 607h-48z" />
-    <glyph glyph-name="u1D539" unicode="&#x1d539;" horiz-adv-x="680" 
-d="M148 645c43 0 182 2 217 2c186 0 215 -87 215 -154c0 -54.3 -44.9 -105.6 -95 -131v-2c87 -25 154 -80 154 -176c0 -86 -53 -186 -252 -186c-89 0 -195 2 -238 2c-51 0 -81 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33
-c50 -1 79 -2 129 -2zM283 332v-234c0 -33 13 -67 83 -67c152 0 180 61 180 134c0 90 -57 167 -194 167h-69zM283 570v-204h74c83 0 142 30 142 115c0 102 -73 132 -129 132c-87 0 -87 -10 -87 -43zM256 603h-62.2l-0.5 -559c52.7 1 3.7 1 63.7 0z" />
-    <glyph glyph-name="u1D53B" unicode="&#x1d53b;" horiz-adv-x="744" 
-d="M254 42c-1 148 -1 461 -2 563h-64.2c0.199997 -120 -0.800003 -541.6 -0.800003 -563h67zM196 645c39 0 124 2 188 2c192 0 312 -153 312 -339c0 -246 -153 -310 -294 -310c-103 0 -173 2 -210 2c-51 0 -124 -1 -173 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401
-c0 83 -17 88 -87 91c-6 6 -6 27 0 33c47 -2 134 -2 177 -2zM284 83c0 -32 -7 -51 91 -51c141 0 225 50 225 252c0 154 -34 329 -250 329c-49 0 -66 -14 -66 -49v-481z" />
-    <glyph glyph-name="u1D53C" unicode="&#x1d53c;" horiz-adv-x="633" 
-d="M359 361c85 0 88 13 91 68c6 6 27 6 33 0c-1 -30 -2 -52 -2 -86s1 -53 2 -88c-6 -6 -27 -6 -33 0c-3 45 -6 68 -91 68h-91v-241c0 -27 14 -43 36 -43h136c76 0 111 59 131 131c13.1 3.2 24.6 0.899994 35 -5c-8 -51 -23 -117 -37 -167c0 0 -80 2 -128 2
-c0 0 -116.5 0.3 -191 0c-93.6 -0.4 -191 -1 -240 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c50 -1 135.8 -2 229 -2h241c24 0 32 1 49 4c3 0 4 -1 4 -3c2 -8 17 -104 22 -145c-9.79999 -4.70001 -20.6 -6.79999 -33 -5
-c-22 69 -38 109 -113 109h-105c-24 0 -36 -20 -36 -44v-200h91zM240 562v43h-62.2c0.199997 -120 0.199997 -50.6 0.199997 -72v-408c0 -22.3 0 -4 0.300003 -83h62.7c-1 21 -0.899994 54.9 -1 84c-0.899994 167.5 0 432 0 436z" />
-    <glyph glyph-name="u1D53D" unicode="&#x1d53d;" horiz-adv-x="575" 
-d="M240 562v43h-63.2c0.199997 -120 0.199997 -50.6 0.199997 -72v-408c0 -22.3 0 -4 0.300003 -83h63.7c-1 21 -0.899994 54.9 -1 84v436zM362 323h-93v-201c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-50 1 -166 2 -216 2c-51 0 -81 -1 -130 -2c-6 6 -6 27 0 33
-c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c50 -1 107.4 -1.70001 176 -2c115.2 -0.5 295.3 0 295.3 0c23.7 0 29.5 0.599976 47 4c2.40002 0 3.60004 -0.700012 4 -3c1.40002 -7.59998 16.5 -104 21.7 -145l-31 -5c-22 69 -38 109 -113 109h-105
-c-24 0 -36 -10 -36 -34v-210h93c85 0 88 13 91 68c6 6 27 6 33 0c-1 -30 -2 -52 -2 -86s1 -53 2 -88c-6 -6 -27 -6 -33 0c-3 45 -6 68 -91 68z" />
-    <glyph glyph-name="u1D53E" unicode="&#x1d53e;" horiz-adv-x="695" 
-d="M198 120.1v425.9c-45.9 -50.8 -75 -128.4 -75 -219c0 -68.2 26.1 -148.3 75 -206.9zM230 87.1c42.7 -38 97.9 -61.1 165 -61.1c54 0 111 16 145 48v149c0 40.1 -27.1 43.8 -82 48c-6 6 -6 30 0 36c47 -1 85 -2 124 -2c40 0 59 1 89 2c6 -6 6 -30 0 -36
-c-29 -3 -46 -12.8 -46 -48v-112c0 -11 5 -19 16 -28c-68 -58 -151 -93 -269 -93c-201 0 -340 144 -340 317c0 220 173 351 345 351c122 0 158 -45 218 -45c7 -72 13 -112 22 -154l-34 -6c-26 86 -75 168 -220 168c-49.6 0 -95.2 -15.1 -133 -45.1v-488.8z" />
-    <glyph glyph-name="u1D540" unicode="&#x1d540;" horiz-adv-x="388" 
-d="M281 122c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33l-160 2c-51 0 -140 -1 -189 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c50 -1 138 -2 188 -2l161 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-401zM251 608h-64.2
-c0.199997 -120 -0.800003 -550.6 -0.800003 -572h66z" />
-    <glyph glyph-name="u1D541" unicode="&#x1d541;" horiz-adv-x="421" 
-d="M313 523v-420c0 -143 -59 -193.9 -102 -232c-26 -23 -95 -43 -204 -43c-22 0 -75 18 -75 54c0 22 30 43 44 43c31 0 35.3 -20.8 45 -34c7.3 -10 21 -18 35 -18c33 0 85 28 85 208v442c0 83 -17 88 -97 91c-6 6 -6 27 0 33c50 -1 133 -2 187 -2c47 0 110 1 159 2
-c6 -6 6 -27 0 -33c-60 -3 -77 -8 -77 -91zM217.3 110c0 -130 -25.3 -209 -79.6 -237.7c63.3 23.7 132.3 77.7 143 228c-2.80002 141.6 -0.300018 399.7 -0.100006 501.7h-64.3z" />
-    <glyph glyph-name="u1D542" unicode="&#x1d542;" horiz-adv-x="737" 
-d="M281 122c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-50 1 -169 2 -219 2c-51 0 -81 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c50 -1 79 -2 129 -2c51 0 171 1 220 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-175.7
-c35 3 55.9 17.7 76 38.7l168 176c48.1 53.4 8.09998 48.6 -28 52c-6 6 -6 27 0 33c47 -1 73 -2 113 -2s48 1 95 2c6 -6 6 -27 0 -33c-40 -5 -84 -7 -130 -56l-140 -151c-32.7 -35.3 -37 -42 -37 -49c0 -8 3 -15 12 -25l219 -260c33.6 -41.6 70.1 -39.4 88 -42
-c6 -6 6 -27 0 -33c-47 1 -62 2 -101 2c-30 0 -47 -1 -67 -2c-4 0 -5 3 -5 6c0 18.2 -0.0999756 44.8 -20 69l-163 198c-20 25.7 -46.4 36.9 -80 37.9v-186.9zM251 608h-64.2l-0.800003 -572h66z" />
-    <glyph glyph-name="u1D543" unicode="&#x1d543;" horiz-adv-x="610" 
-d="M147 0c0 0 -81 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c50 -1 79 -2 129 -2c51 0 171 1 220 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-434c0 -31 18 -50 47 -50h113c76 0 103 59 123 131c12.4 1.8 23.2 -0.300003 33 -5
-c-6 -52 -16 -117 -26 -167c0 0 -92 2 -119.3 2h-302.7zM251 608h-64.2c0.199997 -120 -0.800003 -550.6 -0.800003 -572h66z" />
-    <glyph glyph-name="u1D544" unicode="&#x1d544;" horiz-adv-x="979" 
-d="M797.7 116l-25.7 418h-2l-225 -529c-4 -8 -8 -11 -14 -11s-12.2 3.9 -15 11l-207 519h-2l-38 -401c-5.29999 -56.3 0 -87 66 -92c6 -6 10 -27 4 -33c-30 1 -144 2 -168 2s-121 -1 -151 -2c-6 6 -6 27 0 33c57 5 69 30.1 74.9 90l40.1 412c7 75 1 77 -68 81
-c-6 6 -6 27 0 33l280 -2l205 -508c4 -9 5 -13 8 -13c2 0 5 4 9 14l212 507l131 2c6 -6 6 -27 0 -33c-68 -4 -72.5 -18 -68.7 -72l29.8 -421c5.90002 -82.8 8.90002 -87 76.9 -90c6 -6 6 -27 0 -33c-33.2 1 -79 2 -109 2s-60 -1 -107 -2c-6 6 -6 27 0 33c65 3 68.7 4 63.7 85
-zM218 614l-58 -583h68l58 583h-68z" />
-    <glyph glyph-name="u1D546" unicode="&#x1d546;" horiz-adv-x="703" 
-d="M666 329c0 -200 -125 -339 -316 -339c-172 0 -313 123 -313 320c0 196 128 348 307 348c175 0 322 -131 322 -329zM206 97.7v467.8c-40.8 -47.7 -73 -128.9 -73 -238.5c0 -93.4 30.7 -177.7 73 -229.3zM237 73.5c39.3 -32.4 85.9 -49.5 133 -49.5c114 0 200 107 200 286
-c0 208 -103 314 -239 314c-31.1 0 -64.1 -10.1 -94 -31.9v-518.6z" />
-    <glyph glyph-name="u1D547" unicode="&#x1d547;" horiz-adv-x="582" 
-d="M422 301c-48 -14 -84.1 -12.9 -158 -12.2c-4.70001 -0.399994 -9.7 0.100006 -15 0.200012v-167c0 -83 17 -88 87 -91c6 -6 6 -27 0 -33c-50 1 -139 2 -189 2c-51 0 -81 -1 -130 -2c-6 6 -6 27 -0.5 33.3c11.2 0.900002 20.6 -1.6 28.5 0.900002
-c21 8.7 34.5 34.2 36 90.8v407c0 30.1 0.0999985 83.7 -30 83.9l-16 0.0999756c-6 6 -6 27 0 33c50 -1 121 -2 171 -2c38 -2.09998 100 8 125 8c63 0 125 -4 173 -49c36 -34 53 -75 53 -125c0 -105 -63.3 -157.1 -135 -178zM332 618c-71 0 -83 -35 -83 -64v-229h48
-c97 0 168 28 168 153c0 118 -72 140 -133 140zM219 614h-63.2c0.199997 -120 0.199997 -560.6 0.199997 -582c63 -1 36.1 3.6 63 -1c-1 21 0.100006 553.9 0 583z" />
-    <glyph glyph-name="u1D550" unicode="&#x1d550;" horiz-adv-x="676" 
-d="M430 122c0 -83 17 -88 97 -91c6 -6 7 -27 1 -33l-170 2c-55 0 -154 -1 -203 -2c-6 6 -6 27 0 33c80 3 97 8 97 91v137c0 37 -3.5 37.5 -21 67l-131.3 221c-40.6 68.4 -51.7 64 -93.7 67c-6 6 -7 27 -1 33c30 -1 107 -2 146 -2l163 2c6 -6 6 -27 0 -33
-c-56 -3 -70.2 4.59998 -46 -38l126.2 -222c8.79999 -16 12.8 -19 21.8 -2l119 224c22.3 42.1 -2.70001 35 -47 38c-6 6 -6 26 0 32c40 -1 68 -1 91 -1s53 0 83 1c6 -6 6 -26 0 -32c-44.7 -4.29999 -58.8 1.70001 -86.8 -49l-127.7 -231c-20.2 -36.5 -17.5 -26.5 -17.5 -66.3
-v-145.7zM148 606l201 -327v-248l48 -1v266l-185 310h-64z" />
-    <glyph glyph-name="u1D54A" unicode="&#x1d54a;" horiz-adv-x="474" 
-d="M193 407.5v215.1c-58 -18.6 -70.6 -60.2 -70.6 -110.6c0 -43.4 36.7 -81.5 70.6 -104.5zM291.8 33.9c42.8 16.8 68.2 56.8 68.2 115.1c0 61.8 -31.4 97.7 -68.4 120.2c0 -64.8 0.100006 -186.2 0.199982 -235.3zM262 28.4v253.2c-24.4 11.1 -45.6 19.3 -66.6 28.4
-c-77.5 33.7 -144.4 81.9 -144.4 175c0 106 99 173 190.4 173c97.6 0 95.4 -19 153.2 -27c10.4 -53 14.4 -81 17.9 -129c-9 -7 -21 -5.79999 -32.5 -6c-19.9 65.8 -84 127 -155 128l-0.300003 -230.4c35.3 -18 61.2 -26.6 82.2 -35.6c72.1 -30.8 137.1 -78.8 137.1 -174
-c0 -102 -96.6 -194 -217.4 -194c-88.7 0 -116.6 23 -179.6 23c-12 49 -16 75 -20 152c9.6 5.10001 20.2 7 32.5 3c22 -99.5 82.1 -142 175.5 -142c11 0 17.3 0.799999 27 2.4z" />
-    <glyph glyph-name="u1D54B" unicode="&#x1d54b;" horiz-adv-x="682" 
-d="M409 603h-62.2c0.200012 -120 -0.5 -545.6 -0.5 -567c52.7 1 3.70001 1 63.7 0zM441 122c0 -83 17 -88 97 -91c6 -6 6 -27 0 -33c-50 1 -123 2 -177 2c-55 0 -144 -1 -193 -2c-6 6 -6 27 0 33c80 3 97 8 97 91v425c0 31 -20 59 -57 59h-79c-55 0 -68 -13 -88 -93
-c-12.5 -0.200012 -24.1 0.900024 -34 5c12 53 18 91 22 140c15.6 1.59998 23.2 -1.20001 31 -4c0 -6 0 -9 21 -9h526c21 0 22 3 22 9c10 3 20 3.90002 30 4c0 -49 5 -89 13 -140c-11.4 -5.59998 -22.7 -4.70001 -34 -5c-17 77 -24 93 -79 93h-62c-36 0 -56 -28 -56 -62v-422
-z" />
-    <glyph glyph-name="u1D54C" unicode="&#x1d54c;" horiz-adv-x="752" 
-d="M262 523v-254c0 -65 2 -141 51 -188c30.1 -28.9 71 -50 119 -50c169 0 184 134 184 246v246c0 83 -17 84 -92 91c-6 6 -6 27 0 33c50 -1 71 -2 116 -2c40 0 53 1 102 2c6 -6 6 -27 0 -33c-60 -7 -77 -8 -77 -91v-228c0 -178 -40 -308 -275 -306c-187 1 -303 43 -303 247
-v287c0 83 -17 88 -77 91c-6 6 -6 27 0 33c50 -1 73 -2 119 -2c53 0 176 1 225 2c6 -6 6 -27 0 -33c-77 -3 -92 -8 -92 -91zM230 260l1 340c-75 1 -64.2 0 -64.2 0c0.199997 -102 -0.400009 -208 -0.100006 -349.7c0.300003 -165.3 115.3 -208.3 174 -217
-c-83.7 32.7 -110.7 96.7 -110.7 226.7z" />
-    <glyph glyph-name="u1D54D" unicode="&#x1d54d;" horiz-adv-x="754" 
-d="M548 614c-6 6 -6 27 0 33c47 -1 86 -2 109 -2s48 1 88 2c6 -6 6 -27 0 -33c-66 -8 -78.3 -46 -98.3 -93l-206.7 -486c-22.1 -51.9 -16 -45 -74 -47c-54 2 -56.7 -10.9 -78 43l-192.5 492c-28.6 73 -32.5 86 -89.5 91c-6 6 -7 27 -1 33c47 -1 126 -2 166 -2
-c39 0 112 1 159 2c6 -6 6 -27 0 -33c-68 -7 -73.8 -20.5 -50.6 -80l159.1 -407h4.60001l157.9 401c21.4 54.4 21 81 -53 86zM152 610c3.8 -2.29999 206 -495 245 -585l24 66l-206 519h-63z" />
-    <glyph glyph-name="u1D54E" unicode="&#x1d54e;" horiz-adv-x="1078" 
-d="M910 565c14.9 42.7 -25 46 -66 49c-6 6 -6 27 0 33c40 -1 84 -2 110 -2s80 1 117 2c6 -6 6 -27 0 -33c-55 -3 -104 -26 -116 -61l-197 -542c-5 -15 -13 -23 -27 -23c-13 0 -25 7 -31 24l-117 355c-4.59998 13.8 -10 28 -14 28c-5 0 -10 -13 -14 -25l-139 -358
-c-5 -14 29 -24 -53 -24c-97 0 -96 8 -101 24l-182 544c-18 53.7 -29 55 -74 58c-6 6 -6 27 0 33c40 -1 53 -2 93 -2c39 0 175 1 208 2c6 -6 6 -27 0 -33c-35 -2 -62 -7 -50 -42l155 -453h2l121 323c4.79999 12.7 7 25 7 38c0 9 -1.09998 16 -5 28l-15 46
-c-8.40002 25.9 -34 57 -87 60c-6 6 -6 27 0 33c40 -1 61 -2 100 -2c40 0 75 1 122 2c6 -6 6 -27 0 -33c-34 -3 -69.4 -6.09998 -52 -60l144 -445h2zM156 608c3.8 -2.29999 170 -504 209 -594l29 74c-63 160 -175 520 -175 520h-63z" />
-    <glyph glyph-name="u1D54F" unicode="&#x1d54f;" horiz-adv-x="798" 
-d="M13 625v19l3 3c40 -1 79 -2 103 -2s211 1 258 2c0 0 1 -3 2 -3v-19c0 -5 -2.29999 -6.79999 -5 -7l-32 -2c-32.5 -2 -23.5 -16.3 -5 -44l96 -144c5 -7 9 -11 12 -11s7 4 13 12l152 143c22.9 21.6 23.4 42 -6 44l-30 2c-4 0.299988 -7 2 -7 7v20l2 2c40 -1 76 -2 99 -2
-s57 1 97 2l3 -2v-20c0 -3 -1 -6.70001 -9 -7c-60.5 -2 -77.2 -35.1 -110 -66l-154 -145c-8.89999 -12.1 -13 -21 -13 -30c0 -10 6 -20 16 -33l177 -242c27 -39 61.5 -72 106 -75c5 -0.299999 7 -4 7 -7v-20l-2 -2c-40 1 -218 2 -241 2s-78 -1 -125 -2l-3 2v20c0 4 2 6.6 6 7
-l20 2c40.1 4 37.7 9.8 13 44l-112 155c-6 8 -10 11 -14 11c-3 0 -9 -6 -15 -14l-152 -148c-20.9 -20.4 -24.1 -43.9 15 -48l19 -2c5.10001 -0.5 6 -4 6 -7v-20l-3 -2l-112 2c-30 0 -54 -1 -84 -2l-1 2v20c0 5 5 6.7 11 7c58 3 88.4 50.9 115 77l157 154c6 8 10 17 10 23
-c0 10 -5 19 -14 30l-164 238c-40.3 58.5 -71.5 66 -89 69c-9.9 1.70001 -16 3 -16 7zM181 607l403 -568h79l-403 568h-79z" />
-    <glyph glyph-name="leaf" unicode="&#xe138;" horiz-adv-x="1014" 
-d="M40 8c0 99.7 42.1 251 132 372.5c127.8 172.7 332.7 277.5 549 277.5c50 0 124 -6 201 -30c11 -4 22 -5 22 -22c0 -26.1 -9.5 -147.5 -70 -270.2c-97.3 -197.4 -285.6 -336.3 -503 -371.8c-33 -5 -65 -8 -98 -8c-64 0 -131 4 -211 29c-11 4 -22 4 -22 23zM62 21l199 138
-v290c-70 -66 -181 -207 -199 -428zM262 -23c200 0 354 89 438 165l-425 -0.300003c-20.4 -13.1 -180.5 -123.3 -200 -137.7c61 -18 124 -27 187 -27zM282 174l243 169v264c-128 -39 -234 -125 -243 -141v-292zM722 163c15.9 10.6 78.5 78.2 123 164h-305l-235 -164h417z
-M721 637c-70 0 -124 -11 -175 -24v-255l363 251c-61 19 -124 28 -188 28zM570 348h286c43 88 59 170 66 244z" />
-    <glyph glyph-name="integralextension" unicode="&#x23ae;" horiz-adv-x="399" 
-d="M210 431h80v-431h-80v431z" />
-    <glyph glyph-name="uni23A1" unicode="&#x23a1;" horiz-adv-x="356" 
-d="M108 0v893h212c6 -6 6 -24 0 -30c-137 -10 -145 -25 -145 -112v-751h-67z" />
-    <glyph glyph-name="uni23A3" unicode="&#x23a3;" horiz-adv-x="356" 
-d="M108 893h67v-751c0 -87 8 -102 145 -112c6 -6 6 -24 0 -30h-212v893z" />
-    <glyph glyph-name="uni23A2" unicode="&#x23a2;" horiz-adv-x="356" 
-d="M108 893h67v-893h-67v893z" />
-    <glyph glyph-name="uni23A4" unicode="&#x23a4;" horiz-adv-x="356" 
-d="M248 0h-67v751c0 87 -8 102 -145 112c-6 6 -6 24 0 30h212v-893z" />
-    <glyph glyph-name="uni23A5" unicode="&#x23a5;" horiz-adv-x="356" 
-d="M248 893v-893h-67v893h67z" />
-    <glyph glyph-name="uni23A6" unicode="&#x23a6;" horiz-adv-x="356" 
-d="M248 893v-893h-212c-6 6 -6 24 0 30c137 10 145 25 145 112v751h67z" />
-    <glyph glyph-name="uni23A8" unicode="&#x23a8;" horiz-adv-x="400" 
-d="M117 444c49 -21 100 -76 100 -167c0 -88.1 -28 -110 -28 -219v-58h-80v68c0 95 25 148.9 25 225c0 50 -23 139 -122 146v15c99 7 122 96 122 146c0 76.1 -25 130 -25 225v68h80v-58c0 -109 28 -130.9 28 -219c0 -91 -51 -146 -100 -167v-5z" />
-    <glyph glyph-name="uni23A7" unicode="&#x23a7;" horiz-adv-x="400" 
-d="M109 0v138c0 185 94 286 279 293c6 -6 6 -18 0 -24c-84 -20 -199 -105 -199 -261v-146h-80z" />
-    <glyph glyph-name="uni23A9" unicode="&#x23a9;" horiz-adv-x="400" 
-d="M109 431h80v-146c0 -156 115 -241 199 -261c6 -6 6 -18 0 -24c-185 7 -279 108 -279 293v138z" />
-    <glyph glyph-name="uni23AA" unicode="&#x23aa;" horiz-adv-x="400" 
-d="M109 431h80v-431h-80v431z" />
-    <glyph glyph-name="uni239B" unicode="&#x239b;" horiz-adv-x="319" 
-d="M44 148c0 130 15.1 258.2 32 348c38 202 104.8 291.1 210 397c11.4 -0.799988 17.6 -7.70001 21 -18c-51.6 -69.3 -119 -138 -157 -383c-13.7 -88.4 -23 -233 -23 -356v-136h-83v148z" />
-    <glyph glyph-name="uni239D" unicode="&#x239d;" horiz-adv-x="319" 
-d="M44 745v148h83v-136c0 -123 9.3 -267.6 23 -356c38 -245 105.4 -313.7 157 -383c-3.39999 -10.3 -9.60001 -17.2 -21 -18c-105.2 105.9 -172 195 -210 397c-16.9 89.8 -32 218 -32 348z" />
-    <glyph glyph-name="uni239E" unicode="&#x239e;" horiz-adv-x="319" 
-d="M275 148v-148h-83v136c0 123 -9.3 267.6 -23 356c-38 245 -105.4 313.7 -157 383c3.4 10.3 9.6 17.2 21 18c105.2 -105.9 172 -195 210 -397c16.9 -89.8 32 -218 32 -348z" />
-    <glyph glyph-name="uni23A0" unicode="&#x23a0;" horiz-adv-x="319" 
-d="M275 745c0 -130 -15.1 -258.2 -32 -348c-38 -202 -104.8 -291.1 -210 -397c-11.4 0.8 -17.6 7.7 -21 18c51.6 69.3 119 138 157 383c13.7 88.4 23 233 23 356v136h83v-148z" />
-    <glyph glyph-name="uni239C" unicode="&#x239c;" horiz-adv-x="319" 
-d="M127 893v-893h-83v893h83z" />
-    <glyph glyph-name="uni239F" unicode="&#x239f;" horiz-adv-x="319" 
-d="M275 893v-893h-83v893h83z" />
-    <glyph glyph-name="uniA656" unicode="&#xa656;" horiz-adv-x="1035" 
-d="M603 283h177l-94 272h-6l-102.2 -258.7c-3.79999 -10.3 3.20001 -13.3 25.2 -13.3zM495 79c-15.6 -41.1 31.4 -45.4 69 -48c6 -6 6 -27 0 -33c-37 1 -87 2 -128 2c-30.3 0 -63 -1 -89 -2c-6 6 -6 27 0 33c43.5 3 74 9 100 71l61.4 145h-317.4v-125c0 -83 17 -88 87 -91
-c6 -6 6 -27 0 -33c-45 1 -93.4 2 -129 2c-36.3 0 -85 -1 -130 -2c-6 6 -6 27 0 33c70 3 87 8 87 91v401c0 83 -17 88 -87 91c-6 6 -6 27 0 33c47 -1 95.5 -2 129 -2c38.5 0 86 1 130 2c6 -6 6 -27 0 -33c-70 -3 -87 -8 -87 -91v-237h333.9l149.1 352c13 0 40 11 55 20
-l206 -572c17.4 -48.2 51.2 -51.5 90 -55c6 -6 6 -27 0 -33c-35 1 -73 2 -114 2c-39 0 -94 -1 -131 -2c-6 6 -6 27 0 33c47.6 3.4 85.8 6.5 74 41l-58 169h-211c-24 0 -30 -4 -35 -17z" />
-    <glyph glyph-name="uniA657" unicode="&#xa657;" horiz-adv-x="749" 
-d="M585 233l-79 -21c-9.10001 -2.3 -17.4 -5.10001 -25 -8.2v-0.800003h-1.89999c-52.3 -22.3 -68.1 -62 -68.1 -101c0 -31 22 -71 72 -71c28 0 62 23 88 44c8 6 14 13 14 26v132zM585 48h-2l-20 -16c-44 -34 -74.2 -42 -109 -42c-70 0 -126 26 -126 108
-c0 41.7 25.9 77.8 68.2 105h-225.2v-131c0 -29 11 -45 43 -45h19c5 0 9 -3 9 -8v-19l-2 -2s-69 2 -108 2c-35 0 -103 -2 -103 -2l-2 2v19c0 5 3 8 8 8h19c33 0 43 16 43 45v286c0 28 -10 44 -43 44h-19c-5 0 -8 3 -8 8v19l2 2s68 -2 103 -2c39 0 108 2 108 2l2 -2v-19
-c0 -5 -4 -8 -9 -8h-19c-32 0 -43 -16 -43 -44v-121h300.5c7 2.2 14.2 4.2 21.5 6l86 21c3 1 6 5 6 12c0 113 -47 130 -81 130c-38 0 -80 -11 -80 -42c0 -11 1 -17 2 -20c2 -4 3 -11 3 -18c0 -13 -18 -34 -47 -34c-23 0 -35 12 -35 36c0 57 83 111 165 111
-c73 0 151 -27 151 -169v-147c0 -46 1 -85 30 -85c12.7 0 29.5 9.8 37 16c11.3 -6.3 15.3 -14.7 17 -27c-20.7 -20 -56.7 -37 -95 -37c-50.4 0 -61 27 -67 58z" />
-    <glyph glyph-name="uni26A7" unicode="&#x26a7;" horiz-adv-x="782" 
-d="M620 210c0 -110 -85 -208 -193 -222l-2 -91h106v-47h-107l-3 -88h-47l-3 88h-107v47h106l-2 92c-106 15 -192 110 -192 221c0 60.4 22.8 115.1 61.3 155l-36 40.7l-73.3 -65.7l-31.4 34.9l73.5 66l-98.1 111.1c7 -61 8 -99 -3 -164l-43 -16c9 100 9 153 -6 251l19 17
-c103 -32 154 -38 255 -40l-19 -41c-70 -2 -110 4 -172 20l101.8 -107l75.8 67.9l31.4 -34.9l-74.8 -67.1l39.1 -41.1c34.1 21.6 75.2 34.2 120.7 34.2c43.1 0 81.8 -10.3 114.4 -28.4l167.6 176.4c-62 -16 -102 -22 -172 -20l-19 41c101 2 153 7 256 39l18 -16
-c-15 -98 -15 -151 -6 -251l-42 16c-11 65 -11 103 -4 164l-158 -178.8c42.9 -39.9 68 -97.6 68 -163.2zM398 381c-95 0 -171 -76 -171 -170c0 -92 72 -174 171 -174s171 82 171 174s-73 170 -171 170z" />
-    <glyph glyph-name="uni26A6" unicode="&#x26a6;" horiz-adv-x="667" 
-d="M279 367c-96 0 -171 -78 -171 -172c0 -92 72 -171 171 -171s171 79 171 171s-73 172 -171 172zM500 195c0 -119 -102 -217 -223 -217c-120 0 -219 95 -219 217s93 221 222 221c22 0 39 0 64 -8l27 49.2l-86 41.8l20 42l88.4 -43l68.6 125c-56 -32 -93 -49 -161 -64
-l-30 34c97 28 147 48 238 104l21 -10c12 -99 25 -151 59 -245l-44 4c-28 60 -37 97 -46 158l-63.8 -126.4l91.8 -44.6l-20 -42l-92.7 45.1l-24.3 -48.1c68 -35 110 -103 110 -193z" />
-    <glyph glyph-name="afii10066.ital" unicode="&#xf6c5;" horiz-adv-x="505" 
-d="M266 25c61 0 116 56 116 176c0 100 -38 158 -141 209c-48 -20 -113 -69 -113 -180c0 -112.8 59.1 -205 138 -205zM256 -10c-135 0 -214 107.5 -214 230c0 86.1 39 133 125 182l44 25c-73 42 -94 94 -94 140c0 71 63 129 147 129c48 0 78 -16 126 -17c31 -1 46 3 57 12
-c7 0 13 -8.29999 14 -12c-16 -38 -52 -64 -107 -64c-54 0 -94 21 -137 21c-39 0 -54 -21 -54 -40c0 -35 42.7 -79.1 109 -113c125 -64 196 -124 196 -257c0 -152.6 -101 -236 -212 -236z" />
-    <glyph glyph-name="gravecomb.sups" unicode="&#xe0db;" 
-d="M-109.2 495.6l49 -88.2c3.5 -7 4.2 -11.9 4.2 -16.8c0 -3.5 -4.9 -7.70001 -10.5 -7.70001c-4.2 0 -9.1 3.5 -20.3 14l-79.8 76.3l1.40001 7.69998c5.59999 4.20001 21.7 16.1 45.5 16.1c3.5 0 7.7 -0.700012 10.5 -1.39999z" />
-    <glyph glyph-name="acutecomb.sups" unicode="&#xe0dc;" 
-d="M-106.4 495.6c2.1 0.699982 6.3 1.39999 9.8 1.39999c4.5 0 22.4 -0.700012 38.5 -16.1l2.1 -7.69998l-80.5 -76.3c-10.5 -10.5 -16.1 -13.3 -21 -13.3s-9.8 4.19998 -9.8 9.10001c0 7.79999 2.3 10.6 8 19.6z" />
-    <glyph glyph-name="circumflexcomb.sups" unicode="&#xe0dd;" 
-d="M-86.1 497.7c20.3 -32.9 51.1 -70 76.3 -98c-3.5 -4.90002 -9.5 -10.6 -16.1 -11.9c-26.6 16.8 -51.1 36.4 -72.1 58.1c-22.4 -22.4 -45.5 -42.7 -72.8 -58.1c-6.3 1.40002 -11.2 5.60001 -15.4 11.9c25.2 28 57.4 65.8 77.7 98c7.5 1.59998 14.9 2.09998 22.4 0z" />
-    <glyph glyph-name="tildecomb.sups" unicode="&#xe0de;" 
-d="M-58.8 434.7c15.4 0 23.1 7 32.9 36.4c7.7 0.699982 14.7 -1.39999 18.9 -4.20001c-8.4 -42 -28.7 -69.3 -60.9 -69.3c-15.4 0 -30.1 12.6 -44.8 22.4c-12.6 7.70001 -25.9 13.3 -37.8 13.3c-18.2 0 -25.2 -10.5 -32.2 -33.6c-7.7 -1.40002 -14.7 -0.700012 -18.9 3.5
-c9.8 41.3 25.9 68.6 56 68.6c21 0 36.4 -14 50.4 -23.8c11.2 -8.39999 23.1 -13.3 36.4 -13.3z" />
-    <glyph glyph-name="macroncomb.sups" unicode="&#xe0df;" 
-d="M-73.5 374.5h-156.8c-6.3 0 -9.09999 7.70001 -9.09999 12.6c0 8.39999 7.7 22.4 15.4 22.4h157.5c7 0 9.8 -7.70001 9.8 -11.9c0 -8.39999 -7.7 -23.1 -16.8 -23.1z" />
-    <glyph glyph-name="uniE02A" unicode="&#xe02a;" horiz-adv-x="372" 
-d="M100 317c0 55 -11 63 -65 68c-4 6 -4 22 -2 28c69 9 106 18 134 29c8 0 13 -3 13 -7c0 0 -2 -47 -2 -79c0 -5 3 -11 9 0c23 39 64 83 111 83c42 0 60 -28.9 60 -48c0 -25 -23 -50 -47 -50c-21 0 -31 19 -41 29c-6 6 -14 7 -21 7c-12 0 -35 -33 -46 -49
-c-12 -18 -24 -41 -24 -67v-139c0 -83 12 -86 82 -91c6 -6 6 -27 0 -33c-43 1 -80 2 -121 2c-40 0 -72 -1 -114 -2c-6 6 -6 27 0 33c62 4 74 8 74 91v195z" />
-    <glyph glyph-name="uni209A" unicode="&#x209a;" horiz-adv-x="305" 
-d="M104 -163c0 -41 17 -44 51 -46c4 -8 4 -22 0 -29c-30 1 -51 1 -76 1c-23 0 -46 0 -76 -1c-4 6 -5 21 0 29c40 2 53 5 53 46v234c0 40 -9 45 -42 48c-1 4 -3 18 -2 22c43 6 63 12 80 20c5 0 6 -3 7 -6c3 -7 5 -20 5 -48c0 -3 -0.300003 -7.8 5 -1c18.5 23.5 57 49 86 49
-c58 0 93 -40 93 -108c0 -74 -49 -154 -114 -154c-20 0 -56 8 -70 20v-76zM104 -36c12.5 -40 49 -45 71 -45c23 0 59 23 59 116c0 73 -23 89 -51 89c-25 0 -72.5 -35 -79 -62v-98z" />
-    <glyph glyph-name="uniE188" unicode="&#xe188;" horiz-adv-x="388" 
-d="M57 531c0 -76 61 -138 137 -138c77 0 138 62 138 138s-61 137 -138 137c-76 0 -137 -61 -137 -137zM28 531c0 91 75 166 166 166c92 0 166 -75 166 -166c0 -92 -74 -166 -166 -166c-91 0 -166 74 -166 166zM210 547h86v-31h-86v-86h-31v86h-87v31h87v87h31v-87z" />
-    <glyph glyph-name="uniE189" unicode="&#xe189;" horiz-adv-x="388" 
-d="M57 531c0 -76 61 -138 137 -138c77 0 138 62 138 138s-61 137 -138 137c-76 0 -137 -61 -137 -137zM28 531c0 91 75 166 166 166c92 0 166 -75 166 -166c0 -92 -74 -166 -166 -166c-91 0 -166 74 -166 166zM296 516h-204v31h204v-31z" />
-    <glyph glyph-name="uni2096" unicode="&#x2096;" horiz-adv-x="318" 
-d="M56 -37v212c0 42 -7 49 -20 49l-21 1c-2 0 -4 1 -4 3l-1 18c26 2 72 10 88 17c6 0 8 -2 8 -7c0 0 -2 -26 -2 -68v-150.5c21.8 8.8 39.8 18.4 61 40l25 25.5c7.7 8.3 23 23 -9 26c-3 0.300003 -5 3 -5 5v20l1 1s30 -1 52 -1c24 0 64 1 64 1l2 -1v-20c0 -3 -4 -4.8 -6 -5
-c-24.5 -3 -45.9 -8.1 -68 -32l-38 -41c-1.89999 -2.1 -2 -6 -2 -8c0 -3 1 -6 3 -8l63 -93c7 -10 19.5 -27 52 -30c4 -0.400002 8 -2 8 -5v-22l-2 -2s-37 1 -61 1c-22 0 -38 -1 -38 -1l-2 2v16c0 6 -2 10 -14 27l-45 64c-9 11 -16 22 -31 22c-2.9 0 -6.2 -0.700001 -10 -1.9
-v-54.1c0 -41 7 -44 41 -46c4 -8 4 -22 0 -29c-30 1 -41 1 -66 1c-23 0 -46 0 -76 -1c-4 6 -5 21 0 29c40 2 53 5 53 46z" />
-    <glyph glyph-name="uni2097" unicode="&#x2097;" horiz-adv-x="161" 
-d="M55 -36v211c0 52 -8 48 -40 50c-4 4 -4 16 -3 21c25 2 70 11 86 17c6 0 8 -2 8 -6c0 0 -2 -26 -2 -66v-227c0 -51 7 -53 40 -55c4 -4 4 -18 0 -22c-22 1 -39 1 -64 1s-44 0 -65 -1c-4 4 -4 16 0 20c33 2 40 6 40 57z" />
-    <glyph glyph-name="uni2095" unicode="&#x2095;" horiz-adv-x="307" 
-d="M104 188v-84c14 16 49 51 85 51c45 0 75 -25 75 -92v-124c0 -19 6.20001 -23.7 26 -27l6 -1c4 -1 5 -3 5 -5v-18s-38 1 -62 1c-25 0 -65 -1 -65 -1v18c0 2 1 5 5 5l11 1c18.8 1.7 25 6 25 27v114c0 51 -20 68 -50 68c-21 0 -42 -22 -61 -45v-137c0 -21 7.1 -25.4 25 -27
-l11 -1c2 0 5 -1 5 -5v-18s-40 1 -66 1c-24 0 -61 -1 -61 -1v18c0 2 0 5 4 5l8 1c23.6 3 25 6 25 27v236c0 42 -6 49 -19 49l-21 1c-2 0 -4 1 -4 3l-1 18c26 2 72 10 88 17c6 0 8 -2 8 -7c0 0 -2 -26 -2 -68z" />
-    <glyph glyph-name="uni209B" unicode="&#x209b;" horiz-adv-x="253" 
-d="M28 -18h22c1 -14 7 -41 23 -57c7 -6 26 -18 49 -18c24 0 48 11 48 38c0 21 -8 41 -58 62c-46 19 -77 35 -77 80c0 42 45 74 94 74c31 0 70 -10 81 -17l9 -75l-23 -1c-14 58 -48 68 -67 68c-25 0 -46 -13 -46 -40c0 -24 10 -33 44 -47c51 -21 97 -40 97 -90
-c0 -61 -66 -77 -100 -77c-30 0 -52 14 -72 14c-3 0 -13 -1 -19 -2c0 24 -2 56 -5 88z" />
-    <glyph glyph-name="uni209C" unicode="&#x209c;" horiz-adv-x="206" 
-d="M106 126v-148c0 -38 6 -56 21 -56c16 0 36 0 52 12l16 -17c-26 -27 -59 -35 -87 -35c-29 0 -50 17 -50 61v183h-40c-2 0 -3.2 0 -3 2l2 24c0 2 1 3 3 3c37 0 48 24 48 71v11l38 13v-95h80c3 0 5.3 -1 5 -4l-2 -18c-0.699997 -6 -9 -7 -14 -7h-69z" />
-    <glyph glyph-name="eng.superior" unicode="&#x1d51;" horiz-adv-x="362" 
-d="M247 535c0 51 -25 68 -56 68c-21 0 -45 -18 -64 -41c-4 -5 -9 -14 -9 -22v-100c0 -41 3 -44 37 -46c4 -8 4 -22 0 -29c-30 1 -37 1 -62 1c-23 0 -46 0 -76 -1c-4 6 -5 21 0 29c40 2 53 5 53 46v107c0 40 -9 45 -42 48c-1 4 -3 18 -2 22c43 6 64 12 81 20c5 0 6 -3 7 -6
-c3 -7 5 -20 5 -48c0 -3 0 -8.29999 5 -1c24.3 35.3 55 55 91 55c46 0 80 -25 80 -92v-125c0 -85 -5 -112 -32 -142c-16 -18 -36 -25 -52 -25c-27 0 -61 13 -61 33c0 16 9 25 21 25c15 0 23 -15 27 -29c1 -6 5 -10 10 -10c29 0 39 35 39 128v135z" />
-    <glyph glyph-name="uni1D55" unicode="&#x1d55;" horiz-adv-x="307" 
-d="M281 496v-2c0 -65 -46.9 -135 -130 -135c-81 0 -128 68 -128 132c0 1.70001 0.1 5 0.1 5h59c2.3 -73.5 40.1 -112 79.9 -112c29 0 60 30 60 91c0 7.20001 -0.300003 14.2 -0.800003 21h59.8z" />
-    <glyph glyph-name="uni1D59" unicode="&#x1d59;" horiz-adv-x="362" 
-d="M241 554c-5 4 -14 9 -22 9h-100c-41 0 -44 -3 -46 -37c-8 -4 -22 -4 -29 0c1 30 1 37 1 62c0 23 0 46 -1 76c6 4 21 5 29 0c2 -40 5 -53 46 -53h107c40 0 45 9 48 42c4 1 18 3 22 2c6 -43 12 -64 20 -81c0 -5 -3 -6 -6 -7c-7 -3 -20 -5 -48 -5c-3 0 -8.3 0 -1 -5
-c35.3 -24.3 55 -65 55 -101c0 -46 -25 -70 -92 -70h-105c-41 0 -44 -8 -46 -48c-8 -5 -23 -4 -29 0c1 30 1 35.7 1 71c0 23.8 0 31 -1 61c7 4 21 4 29 0c2 -34 5 -36 46 -36h95c51 0 68 15 68 46c0 21 -18 55 -41 74z" />
-    <glyph glyph-name="uni1D5C" unicode="&#x1d5c;" horiz-adv-x="508" 
-d="M203 455c-15 6 -15 6 -34 13c-36.7 16 -55 39 -55 69c0 29.3 18.3 52.3 55 69c32 14 60 21.3 84 22c24 -0.700012 52 -8 84 -22c36.7 -16.7 55 -39.7 55 -69c0 -30 -18.3 -53 -55 -69c-13.3 -4.70001 -25 -9 -35 -13c-12.7 -6.70001 -16.7 -14.7 -12 -24
-c6 -11.3 15 -20.7 27 -28c12.7 -9.29999 27 -14 43 -14c20.7 0 36.3 4.29999 47 13c6 6 15 19.7 27 41l15 -1l13 -48l-2 -3c-26 -22.7 -59 -34 -99 -34c-41.3 0 -75.3 8.70001 -102 26c-2 1.29999 -3.7 2.29999 -5 3c-1.3 -0.700012 -3 -1.70001 -5 -3
-c-26.7 -17.3 -60.7 -26 -102 -26c-40 0 -73 11.3 -99 34l-2 3l13 48l15 1c12 -21.3 21.3 -35 28 -41c10 -8.70001 25.3 -13 46 -13c16 0 30.3 4.70001 43 14c12 7.29999 20.3 16.7 25 28c4 9.29999 -0.300003 17.3 -13 24z" />
-    <glyph glyph-name="uni1D4B" unicode="&#x1d4b;" horiz-adv-x="317" 
-d="M166 607c-25.5 0 -47 -11.6 -47 -37c0 -29 24.8 -49 53 -49h24c7.3 0 11 -3 11 -9v-9c0 -4.70001 -3.7 -7 -11 -7h-25c-34.4 0 -52 -19.5 -52 -53c0 -38.4 19.4 -59 57 -59c23.2 0 36 8.5 41 32c5.2 17.4 10.9 26.4 28.3 26.4c13.3 0 27.9 -8.60001 27.9 -25.2
-c0 -19.3 -19.1 -37.9 -32.2 -45.2c-20.7 -10 -44.7 -14 -72 -14c-60.5 0 -113 30.6 -113 87c0 34.5 22.8 60.3 57.5 64.5l0.5 2.5c-32.7 9.29999 -49 30.7 -49 60c0 45.8 53.1 65 103 65c46 0 72 -15 98 -32l2 -3l-12 -46h-16c-17.3 34 -42 51 -74 51z" />
-    <glyph glyph-name="uni1D4C" unicode="&#x1d4c;" horiz-adv-x="317" 
-d="M160.2 607c-32 0 -53.7 -17 -71 -51h-16l-12 46l2 3c26 17 55 32 101 32c50 0 100 -22.2 100 -68c0 -29.3 -16.3 -47.7 -49 -57l0.400009 -2.5c34.7 -4.20001 57.6 -33 57.6 -67.5c0 -56.4 -56.5 -84 -117 -84c-27.3 0 -47.3 4 -68 14
-c-13.1 7.29999 -32.2 25.9 -32.2 45.2c0 16.6 14.6 25.2 27.9 25.2c17.4 0 23.1 -9 28.3 -26.4c5 -23.5 21.8 -32 45 -32c37.6 0 53 21.6 53 60c0 33.5 -17.6 52 -52 52h-25c-7.3 0 -11 2.29999 -11 7v9c0 6 3.7 9 11 9h24c28.2 0 53 21 53 50c0 25.4 -24.5 36 -50 36z" />
-    <glyph glyph-name="uni1D45" unicode="&#x1d45;" horiz-adv-x="343" 
-d="M232 389c-20.5 -21 -53.5 -33 -76 -33c-72 0 -116 47.5 -116 122c0 39.3 12.8 81.8 42 112c28 29 57.3 40 96 40c23.5 0 40.3 -8.29999 59 -25l9 15c4.7 8 11.3 12 20 12c9.29999 0 14 -5.29999 14 -16v-205c0 -9.29999 3 -15.3 9 -18c4.70001 -2.70001 14 -4 28 -4
-c3.29999 -2.70001 5.29999 -7 6 -13c-17.3 -13.3 -37.3 -20 -60 -20c-18.5 0 -29.5 14 -31 33zM232 554c-16.7 28.7 -48.5 43 -63 43c-39.3 0 -71 -34.3 -71 -99c0 -71.3 24.3 -109 73 -109c14 0 47 13 61 32v133z" />
-    <glyph glyph-name="uni1D62" unicode="&#x1d62;" horiz-adv-x="194" 
-d="M101 278c16 0 29 -13 29 -29s-13 -29 -29 -29s-29 13 -29 29s13 29 29 29zM128 -36c0 -41 17 -44 51 -46c4 -8 4 -22 0 -29c-30 1 -51.3 1 -76 1c-23 0 -46 0 -76 -1c-4 6 -5 21 0 29c40 2 53 5 53 46v109c0 53 -11 48 -43 50c-4 6 -5 13 -4 21c26 2 73 10 89 17
-c6 0 8 -2 8 -7c0 0 -2 -27 -2 -54v-136z" />
-    <glyph glyph-name="uni1D63" unicode="&#x1d63;" horiz-adv-x="246" 
-d="M170 117c-7 0 -23 -8 -39 -31c-4 -5 -9 -14 -9 -22v-100c0 -41 17 -44 51 -46c4 -8 4 -22 0 -29c-30 1 -51 1 -76 1c-23 0 -46 0 -76 -1c-4 6 -5 21 0 29c40 2 53 5 53 46v107c0 40 -9 45 -42 48c-1 4 -3 18 -2 22c43 6 63 12 80 20c5 0 6 -3 7 -6c3 -7 5 -20 5 -48
-c0 -3 1 -9 5 -1c14 27 42 55 74 55c26 0 37 -21 37 -34c0 -17 -14 -35 -29 -35c-13 0 -20 14 -26 21c-4 4 -9 4 -13 4z" />
-    <glyph glyph-name="uni1D64" unicode="&#x1d64;" horiz-adv-x="319" 
-d="M55 76c0 46 -8 55 -38 57c-4 4 -4 19 0 23c23 -1 42 -2 62 -2c9 0 19 1 22 2c3 0 4 -2 4 -4c0 0 -2 -51 -2 -72v-96c0 -51 20 -67 50 -67c21 0 44 20 63 42v117c0 46 -8 55 -38 57c-4 4 -4 19 0 23c23 -1 42 -2 62 -2c9 0 19 1 22 2c3 0 4 -2 4 -4c0 0 -2 -51 -2 -72
-v-108c0 -40 9 -45 42 -48c1 -4 3 -18 2 -22c-43 -6 -63 -12 -80 -20c-5 0 -6 3 -7 6c-3 7 -5 19.8 -5 38c0 3 -1.7 5.5 -5 1c-12.7 -17.6 -45 -45 -82 -45c-45 0 -74 25 -74 92v102z" />
-    <glyph glyph-name="uni1D65" unicode="&#x1d65;" horiz-adv-x="314" 
-d="M204 133c-4 4 -4 19 0 23c23 -1 37 -2 60 -2c16 0 27 1 41 2c4 -4 4 -19 0 -23c-31.5 -3.5 -39.1 -21.4 -53 -52l-83.2 -182.8c-5 -11 -8.7 -16.1 -14.9 -16.1c-8.09999 0 -11.2 4.8 -15.5 14.7l-79.4 185.2c-15.1 35.1 -17 47 -50 51c-4 4 -4 19 0 23c23 -1 33 -2 55 -2
-c25.8 0 43 1 66 2c4 -4 4 -19 0 -23c-32.5 -3 -31.7 -15.4 -19 -47l42.1 -105.3c11.4 -28.5 13.9 -28.8 26 -2.1l46.9 107.4c14.2 32.4 11 44 -22 47z" />
-    <glyph glyph-name="uni1D66" unicode="&#x1d66;" horiz-adv-x="312" 
-d="M96 150v-362l-41 -20l-7 14v338c0 41 5 67 24 94c22 33 50 49 94 49c59 0 98 -29 98 -78c0 -34 -12 -61 -64 -80c69 -13 89 -49 89 -107c0 -66 -40 -116 -113 -116c-27 0 -56 10 -69 34v4l23 11c16 -21 33 -24 51 -24c36 0 50 31 50 89c0 47 -19 89 -54 94h-32
-c-17 0 -25 3 -25 14s8 13 25 13h24c32 7 41 43 41 63c0 37 -19 57 -50 57c-36 0 -64 -25 -64 -87z" />
-    <glyph glyph-name="uni1D67" unicode="&#x1d67;" horiz-adv-x="364" 
-d="M326 125c0 -38.7 -16 -91 -52 -157c-16 -28.7 -38 -60 -58 -84c4.7 -14.7 5.5 -56.7 5.5 -76c0 -26 -22.5 -64 -51 -64c-24.5 0 -35 13.1 -35 46c0.699997 25.3 10.3 48 41 90l-1.5 8c-19.3 87.3 -39.2 157.8 -72.5 214.5c-6 9.3 -14 15.5 -20.5 15.5
-c-16 0 -28 -16.5 -36 -31.5c-10.1 2.4 -16.5 5.5 -22.5 12c22.5 45 56.5 62.5 84.5 62.5c19.5 0 31.7 -10.3 43 -31c29.2 -58.4 48.8 -164.5 58 -220c39.3 67.3 66 144.7 66 172c0 10.7 -4 19 -8 21c-14.9 7.1 -25 14.4 -25 30c0 17.9 13.1 28 37 28c24.3 0 47 -11.8 47 -36
-z" />
-    <glyph glyph-name="uni1D46" unicode="&#x1d46;" horiz-adv-x="482" 
-d="M157 383c32 0 45 43 51 92c-43.5 -1.5 -93 -4 -105 -18c0 -37 20 -74 54 -74zM285 574c-3.5 -6 -5 -41 -5 -71c58 7 92 32 92 60c0 8 -1 18 -3 24c-5 13 -19 20 -31 20c-15 0 -39 -9 -53 -33zM143 593c-23 0 -62 -11 -87 -37c-6 0 -11 7 -11 15c31 45 77 66 108 66
-c24.5 0 56 -3.5 68.5 -12.5c12.4 -8.90002 26.5 -19.5 33.5 -34.5c27 34 75 47 92 47c25 0 44 -2 60 -13s29 -31 29 -53c0 -51 -53 -83 -156 -92c0 -65 16 -96 45 -96c23 0 43 6 43 20c0 12 -5 20 -5 27c0 9 6 25 34 25c22 0 29 -16 29 -32c0 -37 -58 -65 -102 -65
-c-33 0 -72 10 -88 43c-25 -35 -51 -43 -86 -43c-92 0 -105 63 -105 92c0 13 1 21.5 2 30c25 16 96 18 162 18c0 62 -29 95 -66 95z" />
-    <glyph glyph-name="afii10086.alt" unicode="&#xe19c;" horiz-adv-x="660" 
-d="M223 30c27 0 50 14 69 44v288c-22 27 -42 37 -64 37c-87 0 -105 -90 -105 -177c0 -84 18 -192 100 -192zM440 399c-22 0 -47 -10 -69 -42v-289c22 -32 44 -38 65 -38c87 0 103 91 103 178c0 84 -16 191 -99 191zM371 -63c0 -52 19 -112 91 -155l-16 -20
-c-77 38 -101 78 -115 106c-11 -27 -36 -72 -114 -106l-17 20c74 44 92 103 92 155v93c-26 -28 -57 -40 -97 -40c-100 0 -154 95 -154 203c0 160 85 246 176 246c31 0 56 -13 75 -34v99c0 52 -18 112 -92 155l17 21c78 -34 103 -79 114 -107c14 28 38 69 115 107l16 -21
-c-72 -43 -91 -103 -91 -155v-110c22 27 50 45 97 45c100 0 153 -94 153 -205c0 -135 -71 -244 -175 -244c-31 0 -53 7 -75 29v-82z" />
-    <glyph glyph-name="uniE19D" unicode="&#xe19d;" horiz-adv-x="548" 
-d="M343 437v-35h-149v-114c54 52 102 69 153 69c83 0 158 -49 158 -225c0 -203 -103 -284 -223 -333l-12 15c63 46 156 66 156 315c0 147 -45 184 -95 184c-27 0 -81 -12 -137 -69v-166c0 -29 11 -42 45 -45l21 -2c4 0 8 -3 8 -8v-23l-2 -2s-72 2 -113 2
-c-38 0 -110 -2 -110 -2l-2 2v23c0 5 4 7 9 8l20 2c34 3 45 16 45 45v324h-77v35h77v67c0 52 -18 112 -92 155l17 21c78 -34 103 -79 114 -107c14 28 38 69 115 107l16 -21c-72 -43 -91 -103 -91 -155v-67h149z" />
-    <glyph glyph-name="uniE13C" unicode="&#xe13c;" horiz-adv-x="1983" 
-d="M201.9 603.3c-1.29999 6.29999 -6.09999 12.3 -16.7 9.5c-6.89999 -1.79999 -15.1 -11.1 -17.2 -16.9zM220.4 670.8c29.9 -8.5 45.9 -24.6 61.6 -48.8c6.70001 -10.4 34.7 -26.7 61.8 -40.9c51.2 -27 58.2 -93.2 53.7 -128.6c-6.29999 -49.2 11.6 -85.1 34.5 -99.1
-c19.5 -11.9 48.4 -16.2 54.3 -15.5c-12.9 31.3 -16.9 61.3 -14.3 98.6c13 98.2 60.5 157.1 125.5 203c10.7 7.59998 26.3 11.6 38.5 8.40002c-11.8 -11.9 -16.3 -18.1 -18.4 -26.2c0 0 42.8 16.4 150.4 10.6c121.3 -6.59998 409.4 -43.6 566.1 -104.5
-c-67.1 1.29999 -127.7 -13.4 -123.7 -42.1c-40.6 2.09998 -46 -6.10001 -43.4 -9.80002c-39.2 9.80002 -111.1 24 -192.2 34c-80.3 9.89999 -172.6 12 -246.7 7.19998c6.5 7.90002 -12 21.6 -50 17.1c-27.4 -3.20001 -68 -31.8 -94.2 -73.2
-c-20.9 -32.9 -48.2 -114.3 -53.1 -153.2l24.9 -9.09998c3.09998 3.5 4.89996 7 5.70001 11.1c0.899963 4.70001 -13.6 6.60001 -12.5 12.8c7.89996 44.7 29 98.8 47.3 128.2c13.9 22.3 33.9 47.9 60.3 61.5c15 7.70001 24.8 12.1 50.1 6.60004
-c-14.9 -5.40002 -24.1 -11.8 -28 -19.1c260.1 25.9 524.3 -37.7 704 -99.7c-88.7999 7.79999 -166.5 -1.80002 -144 -59.1c-83 27.1 -141.7 19.2 -141.2 -46.4c-84.3 24.2 -146.6 16.4 -168.2 -25.9c-34.1 11.4 -51.7 9.39999 -62.3 4.5c42.9 -12.8 99.3 -48.7 136.1 -73.8
-c36.9 -25.1 79.7 -77.1 158.5 -84.8c50.7 -4.9 81.1 31.5 127.7 27.4c46.6001 -4.10001 94.7001 -52.4 138.7 -56.8c44 -4.39999 52.2999 26.3 113.3 21.5c61 -4.8 118.3 -52.7 173.3 -61.7c55.1 -9 85.1 9.4 124.3 37.1c-9.40002 10.9 -20.1001 17.1 -30.8 22.8
-c53.3 6.5 95.2 36.8 137 67.5c-32.7 -42.4 -60.4 -89.6 -84 -141.2c-2.40002 10.3 -5.40002 20.6 -14.2 32.1c-45 -34.7 -92.3 -66.6 -145.4 -61.9s-77.7001 40.8 -127 41.9c-49.3 1.1 -104 -46.1 -156.2 -43.6c-52.2 2.5 -68.8999 50.8 -122.8 52.3
-c-54 1.5 -109.3 -52.3 -182.4 -50.6c-73.1 1.7 -196.1 72.1 -227.2 90.7c-31.1 18.6 -60.6 26.6 -82.2 33.7l-52.3 -60l10.8 -35c26.4 -4.7 49.6 -12.1 64.4 -26.6c-22.2 -6.6 -57.9 -4.6 -89.7 -5.2c-26.1 -5.4 -48 -15.7 -70.3 -25.6
-c-2.70001 -4.8 -1.90002 -9.7 -1.40002 -14.5c-6.39996 2.4 -12.5 5.5 -16.3 12.4c16.1 13.3 30.6 27.4 54.1 37l-39.9 -0.3l-6.20001 3.5l-2.09998 -12.5c-8 5.1 -14.2 11 -18.3 18c6.39996 3.9 15.2 6 24.9 7.3l36.7 3.5l-13.2 7.9c-35.7 3.9 -67 1.8 -97.5 -1.4
-l-8.70001 -7.9c-3 8.1 -4.79999 16.2 -0.699951 24.9l55.6 6.2l-45.5 8.6l-10.1 -8.6c1.59998 8.8 -1.60004 15.7 7.59998 27.4c13.4 -0.5 39.4 -7.6 47.6 -11.5l-15.4 20.1c3.89996 10.9 44 46.8 60.7 57.2c-45.9 24 -127.8 -35.3 -193.3 -35.8
-c-19.4 -0.0999985 -44 4.8 -57.4 9.8c-8.40002 -18.4 -13.4 -39.8 -20.4 -76.5c11.6 -18.3 21.8 -37.9 30.8 -58.2c-0.600006 -8.2 -4.89999 -11.7 -9.70001 -13.9c-9.10001 -1.2 -17.8 -1.4 -26 7l12.5 8.3l-26.3 26l-51.2 -13.2
-c-3.60001 -7.4 -5.89999 -14.7 -6.29999 -22.1c-8.39999 3.7 -16 8.9 -15.2 25.9l24.5 28.7l-29.4 9.7c-6.20001 -3.3 -9.89999 -8 -13.8 -12.8c-3.60001 10.6 -5.70001 22.5 -4.10001 37.7l53.6 -5.9l-0.700012 81.4c-19.9 9.8 -33.7 22.4 -41.7 36
-c-40.5 2 -79.6 23.9 -100.2 42.3l-19.7 -11.8l24.2 -40.2c-10 -13.1 -21.3 -22.5 -31.3 -28.6l8.8 26.9l-41.5 39.8l-39.5 1.3l-5.9 5.2l-4.8 -20.4c-12.1 5.8 -21.1 15.5 -19 40.1l62.1 -5.09999c-16.9 7 -38.2 6.7 -52.1 23.2l-9.3 -10.4
-c-5.5 8.79999 -7.9 23.3 0.200005 37.3c-0.400002 -0.699982 55 -31.2 66.6 -31.4c7.5 -0.100006 14.8 -0.699997 14.8 -0.699997c17.5 14.8 42.6 35.2 61.6 33.8s25.3 -35.5 61.1 -45.6c-9.79999 21.1 -10.7 81.5 2.5 108.4c18.6 37.9 32.4 112.3 27.3 140.6
-c-4.20001 23 -22.7 31.1 -41 33.1c-12.1 1.30005 -26.5 1.90002 -42.5 -11.9c-15 -12.9 -39.8 -37.1 -53.1 -51.5c6 -17.4 2.09999 -38.4 -15.3 -48.1c0 0 2.09999 21.4 -2 31.6l-12.7 2.69998c-2.10001 -5.19998 -5.8 -9.29999 -9.20001 -13.5
-c-5.59999 -5.10001 -7.49999 -4.69998 -6.2 2.10001c1.2 7.89999 2.60001 11.6 2.5 20.1c-9.8 10.1 -19.1 19.2 -24.4 30l6.39999 5.89999c5.9 0.399994 10.9 -2.60001 15.9 -5.79999c15.7 11.3 32.8 23.2 40.2 36.3c-6.90001 4.79999 -19.3 7.29999 -30.5 4.5
-c-11.2 -2.79999 -32.4 -29.6 -42.8 -36c-5.8 -3.60001 -15 -4.20001 -15 -4.20001l6.3 -10.7c-23.1 0.600006 -41 8 -55.1 19.4c15.3 -2.70001 29 2.29999 41.6 12.5l4.3 -12c4.1 1.20001 10.2 2 14.8 5.60001c15.1 11.9 26.7 31.7 43.1 37
-c13.6 4.40002 28.9 1.90002 28.9 1.90002l-4.29999 8.29999c-12.1 3 -24.1 4.10004 -34.6 1.40002s-30.2 -6.90002 -30.2 -6.90002c-2.3 -10.7 -5.3 -15.3 -8.2 -21.1c-12.4 1.5 -40.6 46.5 -25.3 55.7c6.8 4 79.5 10.6 86.7 22.5c5.39999 8.79999 16.7 26.3 32.6 30
-c20.4 4.79999 27.8 -7 35.9 -3.60004c-3.7 13.3 -8.8 18.1 -21.9 29.7c0 0 10 0.700012 20 -3.79999s26.6 -21.7 26.6 -21.7h5.3s-6.5 27.2 -26.6 43.8z" />
-    <glyph glyph-name="uniE13B" unicode="&#xe13b;" horiz-adv-x="2001" 
-d="M1797.6 603.3l33.9 -7.39996c-2.19995 5.79999 -10.3 15.1 -17.2 16.9c-10.6001 2.79999 -15.5 -3.20001 -16.7001 -9.5zM1779.1 670.8c-20.1 -16.6 -26.6 -43.8 -26.6 -43.8h5.30005s16.6 17.2 26.6 21.7s20 3.79999 20 3.79999c-13.1 -11.6 -18.2001 -16.4 -21.9 -29.7
-c8.09998 -3.39996 15.5 8.40002 35.9 3.60004c15.9 -3.70001 27.2999 -21.2 32.6 -30c7.19995 -11.9 79.9 -18.5 86.7 -22.5c15.3 -9.20001 -12.7999 -54.2 -25.2999 -55.7c-2.90002 5.79999 -5.90002 10.4 -8.20007 21.1c0 0 -19.7 4.20001 -30.2 6.90002
-s-22.5 1.59998 -34.6 -1.40002l-4.20007 -8.29999s15.2001 2.5 28.8 -1.90002c16.4 -5.29999 28 -25.1 43.1 -37c4.59998 -3.60001 10.7001 -4.39999 14.8 -5.60001l4.29993 12c12.6001 -10.2 26.3 -15.2 41.6001 -12.5c-14.1001 -11.4 -32 -18.8 -55.1001 -19.4
-l6.30005 10.7s-9.19995 0.600006 -15 4.20001c-10.4 6.39999 -31.6 33.2 -42.8 36c-11.2 2.79999 -23.6 0.299988 -30.5 -4.5c7.40002 -13.1 24.4 -25 40.1001 -36.3c5 3.19998 10.1 6.19998 16 5.79999l6.3999 -5.89999c-5.19995 -10.8 -14.6 -19.9 -24.3999 -30
-c-0.100098 -8.5 1.29993 -12.2 2.5 -20.1c1.29993 -6.79999 -0.600098 -7.20001 -6.20007 -2.10001c-3.40002 4.20001 -7.09998 8.30002 -9.19995 13.5l-12.7001 -2.69998c-4.09998 -10.2 -2 -31.2 -2 -31.6c-17.3999 9.69998 -21.2999 30.7 -15.2999 48.1
-c-13.3 14.4 -38.1 38.6 -53.1 51.5c-16 13.8 -30.4 13.2 -42.5 11.9c-18.3 -2 -36.9 -10.1 -41 -33.1c-5.1001 -28.3 8.69995 -102.7 27.2999 -140.6c13.2001 -26.9 12.3 -87.3 2.5 -108.4c35.8 10.1 42.1 44.2 61.1 45.6s44.1001 -19 61.6001 -33.8
-c0 0 7.29993 0.599991 14.7999 0.699997c11.6 0.199997 66.6 30.5 66.6 31.4c8.1001 -14 5.70007 -28.5 0.200073 -37.3l-9.30005 10.4c-13.9 -16.5 -35.2 -16.2 -52.1 -23.2l62.1 5.09999c2.09998 -24.6 -6.90002 -34.3 -19 -40.1l-4.79993 20.4l-5.90002 -5.2l-39.5 -1.3
-l-41.5 -39.8l8.79993 -26.9c-10 6.10001 -21.2999 15.5 -31.2999 28.6l24.2 40.2l-19.7 11.8c-20.6 -18.4 -59.7001 -40.3 -100.2 -42.3c-8 -13.6 -21.7999 -26.2 -41.7 -36l-0.699951 -81.4l53.6 5.9c1.59998 -15.2 -0.5 -27.1 -4.09998 -37.7
-c-3.90002 4.8 -7.70007 9.5 -13.9 12.8l-29.3 -9.7l24.5 -28.7c0.800049 -17 -6.79993 -22.2 -15.2 -25.9c-0.400024 7.4 -2.70007 14.7 -6.30005 22.1l-51.2 13.2l-26.3 -26l12.5 -8.3c-8.19995 -8.4 -16.9 -8.2 -26 -7c-4.79993 2.2 -9.09998 5.7 -9.69995 13.9
-c9 20.3 19.2 39.9 30.7999 58.2c-7 36.7 -12.1 58.1 -20.3999 76.5c-13.4 -5 -38 -9.89999 -57.4 -9.8c-65.5 0.5 -147.4 59.8 -193.3 35.8c16.7001 -10.4 56.8 -46.3 60.7001 -57.2l-15.4 -20.1c8.19995 3.9 34.2 11 47.6 11.5c9.19995 -11.7 6 -18.6 7.59998 -27.4
-l-10 8.6l-45.6 -8.6l55.6 -6.2c4.09998 -8.7 2.30005 -16.8 -0.699951 -24.9l-8.70007 7.9c-30.5 3.2 -61.7999 5.3 -97.5 1.4l-13.2 -7.9l36.7 -3.5c9.70007 -1.3 18.5 -3.4 24.9 -7.3c-4.09998 -7 -10.2999 -12.9 -18.2999 -18l-2.1001 12.5l-6.19995 -3.5l-39.9 0.3
-c23.5 -9.6 38 -23.7 54.1 -37c-3.79993 -6.9 -9.8999 -10 -16.2999 -12.4c0.5 4.8 1.29993 9.7 -1.40002 14.5c-22.3 9.9 -44.2 20.2 -70.3 25.6c-31.7999 0.6 -67.5 -1.4 -89.7 5.2c14.8 14.5 38 21.9 64.4 26.6l10.7999 35l-52.2999 60
-c-21.6 -7.10001 -51.1 -15.1 -82.2001 -33.7c-31.1 -18.6 -154.1 -89 -227.2 -90.7c-73.1 -1.7 -128.4 52.1 -182.4 50.6s-70.6 -49.8 -122.8 -52.3s-106.9 44.7 -156.2 43.6c-49.3 -1.1 -73.9 -37.2 -127 -41.9s-100.4 27.2 -145.4 61.9
-c-8.8 -11.5 -11.8 -21.8 -14.2 -32.1c-23.5 51.6 -51.3 98.8 -84 141.2c41.8 -30.7 83.7 -61 137 -67.5c-10.7 -5.7 -21.3 -11.9 -30.8 -22.8c39.2 -27.7 69.3 -46.1 124.3 -37.1s112.3 56.9 173.3 61.7c61 4.8 69.3 -25.9 113.3 -21.5c44 4.4 92.1 52.7 138.7 56.8
-c46.6 4.10001 77 -32.3 127.7 -27.4c78.8 7.7 121.5 59.7 158.4 84.8c36.9 25.1 93.2999 61 136.2 73.8c-10.6 4.89999 -28.2 6.89999 -62.2999 -4.5c-21.7001 42.3 -83.9 50.1 -168.2 25.9c0.5 65.6 -58.2 73.5 -141.2 46.4c22.5 57.3 -55.2 66.9 -144 59.1
-c179.7 62 443.9 125.6 704 99.7c-3.80005 7.30002 -13.1 13.7 -28 19.1c25.2999 5.5 35.1 1.09998 50.1 -6.60004c26.4 -13.6 46.4 -39.2 60.3 -61.5c18.2999 -29.4 39.3999 -83.5 47.2999 -128.2c1.09998 -6.20001 -13.4 -8.10001 -12.5 -12.8
-c0.800049 -4.09998 2.59998 -7.59998 5.70007 -11.1l24.8999 9.09998c-4.8999 38.9 -32.2 120.3 -53.1 153.2c-26.2 41.4 -66.7999 70 -94.2 73.2c-38 4.5 -56.5 -9.20001 -50 -17.1c-74.1 4.80005 -166.5 2.70001 -246.8 -7.19998c-81.1 -10 -152.9 -24.2 -192.1 -34
-c2.5 3.70001 -2.79999 11.9 -43.4 9.80002c4 28.7 -56.6 43.4 -123.7 42.1c156.7 60.9 444.8 97.9 566.1 104.5c107.6 5.79999 150.4 -10.6 150.4 -10.6c-2.09998 8.09998 -6.59998 14.3 -18.4 26.2c12.2 3.19995 27.8 -0.800049 38.5 -8.40002
-c65 -45.9 112.5 -104.8 125.5 -203c2.59998 -37.3 -1.40002 -67.3 -14.3 -98.6c5.90002 -0.699982 34.8 3.60001 54.3 15.5c22.9 14 40.8 49.9 34.5 99.1c-4.5 35.4 2.5 101.6 53.7 128.6c27.1001 14.2 55.1001 30.5 61.8 40.9c15.7 24.2 31.7 40.3 61.6 48.8zM1923.2 282.4
-v0v0z" />
-    <glyph glyph-name="uniE13D" unicode="&#xe13d;" horiz-adv-x="1450" 
-d="M1290.5 -115.4c13.5 2.6 25 1.1 38.1 -5.4c14.1 -7 23.1 -21.8 23.1 -32.9c0 -11.1 -14 -31.6 -37 -31.6c-15.6 0 -42.7 13.3 -54.2 32.3c-11.5 -6.8 -38.6 -14.7 -57.3 -14.7c-20.6 0 -45.3999 13.6 -51.7 28.2c-2.90002 -5.8 -16 -10.6 -25.4 -10.6
-c-8.5 0 -18 6.40001 -22.7999 11.7c-4.30005 -7.10001 -18.4 -16.6 -31.3 -16.6c-26 0 -41.2 23.7 -42.2 37.4c-8.60004 -13.7 -30.9 -21.2 -47.5001 -21.2c-19.9 0 -41 12.8 -45.4 30.4c-10.2 -10.2 -30.5 -24.8 -50.2 -24.8c-25.4 0 -48 16 -48 35.2c0 1.7 0 7.1 0.5 8.9
-c-23.2 -16.9 -52.9 -24.9 -59.7 -24.9c-19.2 0 -25 1.5 -34 6.5c-12.1 6.7 -26.2 19.2 -31 27.7c-6 10.5 -7.40002 24.5 -7.40002 36.6c0 22.6 17.3 45.3 35.8 50.4c-1.90002 9.2 -1.80005 23.9 4.59998 33.3c6.29999 9.2 20.6 18.4 31.2 19.4
-c-2.10004 4.2 -5.60004 17.9 -5.60004 24.6c0 15 5 26 15.4 35.5c13.2 12.1 28.4 14.2 39.8 14.4c-2.59998 13.5 -9.39996 46.8 -15.3 61.9c-7.5 19.2 -30.7 59.5 -62.2 103.3c-31.5 43.8 -70.3 50.9 -90.8 50.9c-22.2 0 -41.8 -6.79999 -41.8 -6.79999
-c-18.8 -9.80002 -36 -21.4 -51.3 -35c4.19995 1.59998 8 -0.600006 9.29999 -1.5c6 -4.5 26.9 -31.2 26.9 -31.2s4.20001 -34.9 4.20001 -45.4c0 -5.20001 -7.70001 -33 -8 -34.1c0 0 -1.59998 -12.2 2 -11.9c6.70001 0.599991 6.5 -1.40001 6.40002 -2
-c0.200012 0.399994 1.5 2.09999 6.29999 6.79999c13.1 13.1 31.4 12.7 31.4 12.7l21.4 6.29999l7.40002 -1.29999l1.39996 -4.10001l8.60004 -1.10001l-0.200012 -5.2l8.70001 -3l1.39996 -2.5l7.60004 -8.39999l-2.20001 -5.8l9.40002 -5.5l7 -5.2l11 -11.7l4.59998 -6.3
-l7.20001 -9.5l-12 4.59999l-9.90002 -1.09999l-10.9 0.399994l-2.80005 -3.39999l-4.19995 -0.699997l7.69995 -11.6l-2.59998 -5.1l9.90002 -9.1l-0.700012 -2.7l9 -9.9l2.39996 -11.6l-11.3 6.9l-11.4 5.6l3.09998 -8.9l2.79999 -10.5l-9.29999 0.700005l4.70001 -10.6
-l2.5 -9l-0.700012 -1.2l-7.79999 2.8l4.70001 -9.4l2.59998 -8.3l-1.40002 -2.2l-6.69995 0.400002l3.29999 -8.5l1.29999 -5.7l-4.5 0.299999l3.09998 -15.6l5.40002 -11.9l7 -14.1l-20.4 11.4l-10.4 14l-2.29999 -5.5l-6.30005 7.1l-9.19995 6.4l-2 3.7l-2.10004 -3.8
-l-2.29999 1.4l-5 9.3l-4.90002 4.1l-1.5 -3.2l-10.1 9.9l-2.29999 8.4l-2.70001 1.7l-6.09998 13l0.899963 3.39999l-3.59998 6.3l1.39996 4.9l-7.39996 12.1l-1.20001 6.7s-0.0999756 12.6 -2.29999 13.2s-4.70001 2 -6.20001 -0.0999985
-c-1.5 -2.10001 -1 -9.3 0.599976 -11.9c1.60004 -2.6 6.40002 -6.3 6.40002 -6.3l8.40002 -13.5l-1.80005 -5.9l3.40002 -6.2l2.09998 -9.2l3.30005 -8.5l-5 -0.599998l7.09998 -13.7l2.70001 -17.6l-7.20001 2.7l-13.6 4.3l1 -11.1l-1.10004 -9.9l-2.39996 -11.8
-l-8.90002 9.6v-10.4l-4.20001 1.8l0.799988 -8.1l-1.69995 -11.2l-8.70001 3.7l-3.60004 -19.1l-7.09998 -1.9l-6 -25.6l-14.3 -14.6l-0.200012 22.4l1.09998 13.4l-4.89996 15.1l-5.29999 -2.6l-1.60004 21.2l-8.09998 -3.8l1.39996 16l-8.39996 -0.6l2.09998 17.5l-2 2.8
-l-5.5 -4.5l-1.79999 19l-3.29999 0.399998l0.899963 7l-7.19995 -5.3l4 16.8l-0.600037 4.3l3.20001 7.1l-3.5 1.5l6 11.3l7.59998 7.89999s10.3 6 12.6 10.9s2.39996 8.4 0.0999756 9.6c-2.29999 1.2 -6.79999 0.700005 -9.59998 -3.8s-5.90002 -14.3 -11.5 -19.2
-c-5.60004 -4.89999 -10.4 -6.6 -10.4 -6.6l-2.29999 -0.299995c-0.799988 -0.400002 -1.60001 -0.700005 -2.5 -1l-5.70001 -4.5c0.200012 -2.3 -0.0999756 -4.5 -1 -6.4c-1.79999 -3.8 -5.29999 -6.3 -8.5 -8c-1 -0.5 -1.89999 -0.800003 -2.79999 -1.2
-c0.399994 -1.8 0.100006 -3.6 -0.600006 -5.1c-1.39999 -3.1 -3.89999 -5.5 -6.39999 -7.8c-0.899994 -0.799999 -1.29999 -1.2 -2.10001 -1.9l3.60001 0.299999l-7 -6c-1.79999 -1.5 -1.89999 -1.4 -3.10001 -2.4c1.89999 -1.9 2.70001 -5 2.70001 -9.5v-0.599998
-l-0.300018 -0.6c-4.09998 -8.2 -11.8 -13.2 -19.9 -16.6c1 -0.7 2 -1.6 2.5 -2.9c0.700012 -1.6 0.5 -3.5 -0.199982 -5.3c-0.600006 -1.5 -1.80002 -3.1 -3.20001 -4.8c-0.100006 -0.1 -0.200012 -0.3 -0.299988 -0.4c-0.100006 -0.1 -0.100006 -0.3 -0.200012 -0.400001
-c-1.20001 -2.3 -3.10001 -4.6 -5.39999 -6.9c-2.10001 -2 -4.5 -3.8 -7 -5.5c0.199982 -2.3 -0.100006 -4.6 -1 -6.7c-1 -2.4 -2.70001 -4.7 -5.10001 -6.1l-1 -0.599998l-1.10001 0.199997c-4.39999 0.900002 -6.69998 0.600002 -7.79999 0.100002
-s-1.60001 -1.4 -2.10001 -3.1c-1 -3.3 -1.29999 -9.5 -6.29999 -13.6l1.5 -3.7c-1.20001 -0.5 -2.30002 -0.799999 -3.40002 -1c-1.09998 -0.200001 -2.29999 -0.5 -3.79999 0.700001c-0.700012 0.599998 -1.20001 1.7 -1.29999 2.6
-c-0.100006 0.900002 0.199982 1.4 0.399994 2c0.5 1.1 1.19998 1.9 2.10001 3l0.199982 0.300003l0.300018 0.199997c3.19998 2.2 3.19998 6.4 4.69998 11.2c0.700012 2.4 2.10001 5.2 5 6.6c2.5 1.3 5.89999 1.3 10.1 0.6c0.799988 0.700001 1.70001 1.6 2.20001 2.9
-c0.0999756 0.200001 0 0.200001 0.0999756 0.4c-1.39999 -0.599998 -2.89999 -1 -4.29999 -1.2c-1.5 -0.200001 -3.20001 0 -4.60001 1.1c-1.39999 1.1 -2.19998 3 -2.19998 4.7v1.6l1.39999 0.9c4 2.6 7.29999 3.7 10.3 3.3c1.10001 -0.2 2.10001 -0.7 2.89999 -1.3
-c2 1.4 4 2.9 5.70001 4.6c2.29999 2.2 4.10001 4.6 4.60001 5.8l0.199982 0.4l0.300018 0.4c1.5 1.7 2.39999 3 2.69998 3.8c0.300018 0.8 0.200012 1 0.200012 1s0 0.2 -0.5 0.4c-0.5 0.2 -1.39999 0.5 -2.29999 0.7c-1.90002 0.3 -4.10001 0.3 -5.5 0.2h-0.200012
-h-0.200012c-0.299988 0 -0.5 -0.1 -0.5 -0.1h-0.299988s-0.100006 -0.1 -0.299988 -0.1c-0.100006 0 -0.200012 0.1 -0.5 0.1c-0.200012 0 -1.10001 0.4 -1.10001 0.4l-0.300018 4.8s0.800018 0.4 0.900024 0.4c0.0999756 0 0.199982 0.1 0.199982 0.1h0.200012
-c0.100006 0 0.299988 0.0999999 0.399994 0.0999999v0h0.399994c10.5 2.6 21.9 7.7 26.8 16.7c-0.100006 3.5 -1 4.7 -1.10001 4.8s-0.600006 0 -1 -0.199999c-0.100006 0 -0.399994 -0.400002 -0.5 -0.400002c-0.399994 -0.199999 -0.5 -0.4 -1.30002 -0.599998
-c-0.199982 0 -0.399994 -0.1 -1 -0.1c-0.599976 0 -1.89999 0.5 -2.5 1.8c-0.599976 1.3 -0.0999756 2.1 0.100006 2.5c0.200012 0.4 0.300018 0.6 0.399994 0.699999c0.400024 0.5 0.700012 0.600002 1 0.800003c0.300018 0.199997 0.600006 0.299999 1 0.5
-l0.100006 0.0999985c0.600006 0.400002 2.70001 2 4.60001 3.6c-0.100006 1.2 0.399994 1.9 0.700012 2.4c0.299988 0.5 0.699982 1 1.09998 1.4c1.60001 1.7 3.90002 3.5 6.20001 5.6s4.39999 4.5 5.10001 6c0.199982 0.5 0.199982 0.700001 0.199982 0.900002
-c-0.399994 -0.100002 -0.899994 -0.100002 -1.5 -0.100002c-0.299988 0 -0.699982 0 -1.5 0.5c-0.399994 0.200001 -0.899994 0.700001 -1.19998 1.5c-0.300018 0.799999 -0.200012 1.7 0 2.2c0.399994 1 0.799988 1.2 1.10001 1.4
-c0.299988 0.199997 0.599976 0.399998 0.799988 0.5c0.5 0.299999 1 0.5 1.70001 0.799999l1.29999 0.5l1 -0.600002c1.29999 0.400002 2.5 0.600002 4.10001 1.5c2 1.1 3.79999 2.4 5 3.9l-1.80002 5.7l-10.1 -3.8l-2.5 2.5l-13.6 -9.8l1 2.9l-10.5 -6.6l-19.6 -17.6
-l-3.60001 1.3l3.70001 6.5l5.19998 16.3l6.40002 10l7.69998 12.6l-7 -0.0999985l6.80002 9.3l-4.80002 0.400002l5.20001 9.3l-4.39999 0.699997l7.39999 17.9l-5.39999 1l7.29999 11l-7.10001 -0.899994l4.10001 4.79999s8.29999 7.90001 7.60001 8.60001
-c-0.700012 0.699997 -7.80002 -1.39999 -7.80002 -1.39999l-17 -4.3l14.2 14.4l-2.70001 2.5s11.3 9.8 11.1 12.9c-0.199982 3.09999 -7.39999 5.2 -7.39999 5.2l-6.60001 3.3l-79.7 -103.5l-80.7 -101.3l-84.9 -142.2l20.6 43.8l-39.7 -46.6l15.9 33.7l21.5 38.8
-l-34.9 -28.1l30 32.2l-18.4 -15l-5.90001 1.4l19.1 16.5l-43.6 -22.6l37 39l-24.7 -16.4l12.4 21.9l-16.1 -7.5s174.5 225.8 224.4 283.3c13.1 15.1 25 28.6 35.6 40.5c0 4.7 -16.3 28.8 -16.3 34.9c0 7.5 3.60001 13.5 1.89999 21.8l-0.100006 0.5l0.100006 0.599976
-c1.60001 8.90002 -1.79999 15.4 -5.89999 22.6c-4 6.89999 -8.70001 14.3 -9 23.6l-0.100006 0.100006c-2.60001 7.19998 -4.29999 15 -7.5 21.4c-3.29999 6.39999 -7.69998 11.3 -16.4 13.6l-0.299988 0.100006l-0.400024 0.199982
-c-5.69998 3.20001 -10.3 5.10001 -14.7 6.89999l-6 -7.69998l-19.4 -10.4l6.79999 12.8l0.600006 9.20001l-24.8 -13.8l4.90002 15.4l-12.8 -2.29999s1.89999 8.79999 -2.39999 6.70001c-0.5 -0.200012 -1.29999 -0.300018 -2.39999 -0.300018
-c-8.10001 0 -30.1 6.10001 -30.1 6.10001l12.6 2.39999l8.5 7.60001s3 2 5.19998 4.39999c-4.59998 1.60001 -8.79999 3.89999 -12.9 5.80002c-6.69998 3.09998 -13.1 5.59998 -20.8 4.69998l-0.800018 -0.100006l-0.799988 0.400024
-c-6.60001 3.19998 -15.4 3.19998 -24.3 3.5c-8.89999 0.299988 -18.3 0.799988 -25.5 6.39999l-1 0.799988l-0.0999908 1.20001c-0.400009 4 -1.90001 6.29999 -3.90001 8c-2 1.69998 -4.8 2.60001 -8 2.89999c-3.5 0.399994 -7.3 -0.200012 -10.8 -1.10001
-c0.200012 -3.19998 -0.199997 -6.39999 -1.89999 -9.5l-0.100006 -0.199982l-0.0999908 -0.200012c-2.60001 -3.5 -6 -5.39999 -9.2 -5.39999c-3.20001 0 -6.10001 1.60001 -7.70001 4c-1.59999 2.39999 -2 5.89999 -0.199997 8.69998
-c1.60001 2.60001 4.8 4.30002 9.2 5.20001l0.100006 0.100006c0.800003 0.5 1.8 0.899994 2.8 1.29999c-0.400009 1.20001 -0.400009 2.39999 -0.900009 3.5c-1.09999 2.39999 -2.5 4.70001 -3.7 6.39999c-1.2 1.70001 -2.5 2.90002 -2.5 2.90002l-0.300003 0.0999756
-l-0.0999908 0.100006c-1.10001 1 -3.5 1.70001 -6 2.20001c-0.100006 -0.700012 0 -1.39999 -0.199997 -2.10001c-1.8 -6.39999 -7.10001 -12 -14.8 -13.1l-0.800003 -0.100006l-0.800003 0.400024c-3.2 1.59998 -5.59999 3.09998 -7.2 4.89999
-c-1.60001 1.79999 -2.60001 4 -2.3 6.19998c0.300003 2.20001 1.5 3.90002 3.10001 5.20001c1.59999 1.29999 3.5 2.20001 5.59999 3c3.5 1.29999 7.60001 1.79999 11.7 1.89999c-0.5 2.30002 -1.60001 4.5 -3.20001 6.30002c-3.7 1.59998 -12.1 2.69998 -19.2 2.09998
-c-0.199997 0 -0.300003 -0.0999756 -0.5 -0.0999756c-0.800003 -1.70001 -1.8 -3.40002 -3.3 -4.70001c-2.79999 -2.5 -7.2 -3.39999 -11.8 -1.70001l-1.90001 0.700012v2.10001c0 1.79999 0.900009 3.39999 2 4.60001c1.10001 1.19998 2.5 2 4 2.59998
-c1.90001 0.800018 4.2 1.30002 6.5 1.70001c0 0.100006 0.100006 0.299988 0.100006 0.399994c0.300003 2.39999 -0.300003 4.80002 -1.10001 6c-0.800003 1.20001 -1.39999 1.70001 -3.7 1l-0.800003 -0.199982l-0.800003 0.199982
-c-1.5 0.399994 -4.79999 0.100006 -8.2 -1c-0.300003 -0.100006 -0.599991 -0.299988 -0.899994 -0.399994c-1.3 -2.70001 -3.5 -5.10001 -6.60001 -6.60001l-0.199997 -0.100006l-0.199997 -0.0999756c-2.5 -0.800018 -4.3 -1.20001 -5.8 -1.40002
-c-0.699997 -0.0999756 -1.4 -0.199982 -2.3 0c-0.399994 0.100006 -0.899994 0.300018 -1.5 0.800018c-0.599998 0.5 -1 1.39999 -1.1 2.19998c-0.0999985 1.60001 0.5 2.20001 0.900002 2.70001s1 1 1.5 1.39999c1 0.800018 2.2 1.5 3.7 2.39999
-c1.9 1.10001 4.60001 2.10001 7 3.10001c0.300003 1.39999 0.300003 2.89999 -0.0999985 4.10001c-0.599998 1.5 -1.6 2.70001 -3.4 3.29999c-1.8 0.600037 -4.6 0.799988 -8.5 -0.700012l-1 -0.399963l-1.1 0.399963c-0.199997 0.100037 -0.599998 0 -0.799995 0.100037
-c-0.600006 -2 -1.2 -4 -2 -5.60001c-2.2 -4.20001 -4.60001 -7.39999 -5.4 -10.3l-0.599998 -2.29999l-2.4 0.100006c-2.7 0.100006 -5 0.600006 -6.8 1.5c-1.8 0.899994 -3.3 2.5 -3.9 4.29999c-1.3 3.60001 0.400002 7.10001 2.7 10c2.3 2.89999 5.5 5.39999 9.2 7.00003
-c1.4 0.599976 3 0.799988 4.5 1.09998c0.0999985 1.20001 0 2.59998 -0.199997 4.09998c-2 4.30005 -4.4 5.60004 -7.4 5.80005c-0.199997 0 -0.400002 -0.100037 -0.599998 -0.100037c-2.1 -6 -6.1 -11.6 -11.6 -15.4l-0.700005 -0.5h-1c-2.6 0 -4.7 0.5 -6.3 2.09998
-c-1.60001 1.59998 -1.7 4.09998 -1.2 5.90002c1.1 3.69995 4.1 6.79999 8 9.39996c2.4 1.70001 5.2 3 8.2 3.79999c0.899994 4.70001 0.399994 9.30005 -2 12.9l-0.200005 0.299988l-0.0999985 0.200012c-1.8 4.29999 -4.5 7.29999 -8 8.90002
-c-3.5 1.59998 -7.9 1.89996 -13.1 0.399963v0c-12.4 -3.89996 -24.5 -16.7 -23.9 -32.7l-5.9 -0.199951c-0.699997 19 13.2 33.9 28.1 38.5v0h0.100006c3.2 0.899963 6.2 1.29999 9.1 1.19995c2.9 -0.0999756 5.5 -0.799988 8 -1.89996
-c4.8 -2.20001 8.4 -6.20001 10.7 -11.4v0c0.0999985 -0.200012 0.200005 -0.399963 0.300003 -0.599976c2.9 -4.5 3.6 -9.79999 2.9 -15.1c4.8 -0.5 9.5 -3.5 12.1 -9.39996l0.199997 -0.299988v-0.400024c0.300003 -2 0.5 -3.79999 0.400002 -5.5
-c0.300003 -0.0999756 0.5 -0.0999756 0.800003 -0.200012c4.39999 1.40002 8.3 1.60004 11.4 0.5c3.40001 -1.20001 5.8 -3.89996 6.90001 -6.89996c0.399994 -1.20001 0.599991 -2.60004 0.599991 -3.90002c2.8 0.700012 5.5 1.10001 8.10001 0.600006
-c4 1 7.8 -0.600006 9.7 -3.39999c1.8 -2.60001 2.3 -5.90002 2.10001 -9.10001c7.79999 0.5 16.1 -0.200012 21.4 -2.80002l0.399994 -0.199982l0.400009 -0.399994c3.09999 -3.20001 4.59999 -7.10001 5.09999 -11.1c3.5 -0.5 6.90001 -1.39999 9.40001 -3.5
-c0.0999908 -0.100006 0.300003 -0.200012 0.399994 -0.300018l-0.0999908 -0.0999756c1.39999 -1 2.5 -2.20001 3.79999 -4c1.5 -2 3 -4.5 4.3 -7.40002c0.600006 -1.19998 1.10001 -2.59998 1.5 -4c3.90001 1 8.3 1.40002 12.6 1c4 -0.399994 8 -1.59998 11.2 -4.19998
-c2.8 -2.30002 4.7 -5.89999 5.5 -10.2c5.39999 -3.79999 12.9 -4.60001 21.4 -4.89999s17.7 -0.200012 25.9 -3.79999c9 0.799988 16.4 -2 23.1 -5.20001c4.20001 -2 8.20001 -4.10001 12.2 -5.60001c-2.30002 4.30002 -16.8 12.3 -16.8 12.3l2.40002 4.09998l-21.1 14
-l21.6 -0.0999756s9.09998 -0.5 9.79999 0.599976c0.700012 1.10001 -11.6 8.60001 -11.6 8.60001l-6.39999 5l8.79999 1l-12 12l6.30002 3l-14.3 20.6l5.20001 2.29999l-9 10.3l5.60001 2l-10.9 9.80005l8.5 2.09998l-13 13.8l-10.6 10.9l-10.9 19.4l-6.5 7.20001l4 2.79999
-l28.8 -16.6l14.5 -5.09998l-2.10001 3.29999l19.2 -8.20001l2.19998 3.90002l13.4 -1.70001l0.5 8.39996l19.8 -9.79999l4.70001 0.600037s6.29999 -0.700012 14.4 -5.30005c8.10001 -4.59998 14.7 -16 19.4 -21s10.2 -4.19995 12.6 -2
-c2.39999 2.20001 1.29999 6.90002 -2.89999 12.4c-4.20001 5.5 -18.2 10.1 -18.2 10.1l-11.4 7.70001l-10.6 12.8l3.79999 2.90002l-5.89999 8.09998l-0.600006 5.80005l-9.79999 20.3l10.3 -4.60004l-3.19998 8.90002l3.79999 1.5l-3.29999 24.9l7.89999 -4
-l1.60001 4.29999l-7.70001 21.8l10.4 1.90002l-6.5 20.1l10.9 -2.40002l-4.20001 27.8l7 -1.60004l1.5 20.9l-5.20001 17l-6.29999 28.8l21.4 -14.3l14.7 -31.1l9.10001 -0.0999756l10 -23.5l9.29999 7.5l5.39999 -13.9l1.39999 -10.7l4.5 3.69995l3 -13.5l7.80002 15.2
-l6.29999 -14.4l4.39999 -12.4l1.90002 -14.6l15.2 9.69995l7.80002 5.70001l1.89999 -23.5l-4.60001 -19.8l6.29999 0.799988l-1.5 -12l0.200012 -12.5l-2.20001 -9l3.80002 -7l-6.20001 -20.1s-4.60001 -6.10004 -5.79999 -10
-c-1.20001 -3.90002 0.399994 -13.3 2.79999 -15.5s5 0.200012 7.39999 1.70001c2.40002 1.5 -1.09998 17.7 -1.09998 17.7l-0.5 9.10004l5.5 17.8l-3.20001 5.90002l2.39999 9.29999l-2.10001 4l3.60001 18.7l2.70001 3l0.399994 11.5l9.20001 16l2.79999 -3.80005
-l4.70001 6.90002l3.19998 13.5l2.39999 2.59998l3.60001 -4.19995l1.30002 5.39996l9.20001 11.1l5.5 11.2l4.39996 -6.5l8.40002 21.3l21.2 21l-4.30005 -20.2l-3.09998 -17.1l0.799988 -21l5.40002 1.60004l0.200012 -7.60004l-1.5 -12l7.89996 2.60004l2.20001 -2.40002
-l-0.599976 -11.4l-2.90002 -13.5l8.59998 5.89996l1.20001 -1.29999l-0.399963 -12.4l-2.60004 -15l11.1 3.80005l-0.300049 -14.5l-1.19995 -12.4l12.1 10.8l11.5 12.5l0.599976 -15.8l-7.89996 -15.6l1.5 -3.10004l-9.20001 -14.9l4.70001 -5.70001l-5.90002 -17.4
-l5.20001 0.400024l4.40002 -3.5l12.9 3.89996l12.3 1.80005l13.1 9.59998l-5.90002 -14.4l-3.79999 -9.69995l-9.70001 -18.3l-6.89996 -8.99997l-9.60004 -10l4.29999 -6.80002l-6.69995 -13.2l-1 -3.70001l-9.5 -6.5l1.69995 -6.60001l-10 -4.19998l-0.5 -5.70001
-l-8.39996 -3.89999l-27.7 1.39999s-5.29999 -1.60001 -13.1 -1.60001c-8 0 -18.5 1.70001 -28.4 8.10001c-8.89999 5.80002 -15.6 7.5 -20.7 7.5c-6.09998 0 -9.69998 -2.60001 -11.8 -4c-3.79999 -2.60001 1.10001 -15.9 1.10001 -15.9s6.60001 -31.4 9.39999 -36.2
-c2.79999 -4.79999 4.5 -53.5 4.5 -53.5s20.2 -30.6 22.2 -37.2c26.9 23.1 93.8 74.9 135.8 79.9c0 0 54.2 64.5 60.2 66.5s34.5 24.2 34.5 24.2s14 7.89999 12.3 13c-1.70001 5.09998 11.6 12.9 -15.6 16.8c-27.2 3.90002 -43.1 25.9 -43.1 25.9l-26.6 19.8
-l-5.10004 9.79999l3.60004 5.40002l-6.40002 11.2l6.40002 4.40002l-4.20001 12.9l1.70001 4l3.09998 16.5l8.90002 2.59998l-1.90002 16v13l3.90002 23.3l3.39996 11.2l4.80005 17l5.29999 -18.4l10.2 -10.8l9.19995 -13.2l6.5 -0.299988l4.60004 -4.20001l6.89996 19.5
-l8.40002 1.40002l2 19.9l3.59998 1.5l3.80005 19.5l11.6 13.2l1.90002 -19.5l3.59998 -18.6l7.70001 11.7l9.89996 12.7l7.60004 -11.7l8.29999 15l8.40002 11.1l2 0.200012l3.79999 -11.7l6.89996 13.9l7.5 10.4l3.80005 0.400024l5.59998 -8.29999l7.09998 11.6
-l5.60004 6.40002l3.70001 -5.5l15.7 17.7l9.20001 17.1l10.4 20.7l4.79999 -34.3l-7.29999 -24.9l8.59998 2.29999l-2.79999 -13.7l0.700012 -16.8l-2.70001 -5.59998l6.40002 1l0.399963 -4.10004l-6.59998 -14.2l-0.600037 -9.5l5.20001 1.09998l-2.70001 -20.9
-l-7.89996 -10.1l0.5 -4.70001l-10 -18.9l-4.79999 -2l-4.40002 -9.80005l-7 -2.69995l-7.59998 -19.6l-6.90002 -7.5s-14.9 -11.4 -13.7 -14.5c1.20001 -3.09998 1.90002 -7.20001 5.70001 -7.09998c3.79999 0.0999756 12 7 13.7 11.3s1.59998 13.1 1.59998 13.1l8.5 22
-l8.60004 3.20001l4.39996 9.60004l9 10.5l7.10004 11.6l5.19995 -5.40002l9.80005 20.7l18.5 18.9l3.09998 -11l7.29999 -19.9l12.1 11.2l12.9 7.40002l16 7.79999l-3.39996 -19.2l12.3 9.40002l1.5 -6.60004l8.89996 8.20001l14.9 7.90002l3.29999 -13.5l25.9 12.8
-l8.6001 -6.90002l35.6 15.8l30.2 -3.89996l-26.4 -20.2l-16.8999 -10.7l-13.5 -19.3l7.79993 -3.90002l-23.7 -20.9l11.7999 -6.20001l-20.2999 -12.5l8.29993 -9.5l-22.6 -13.1l-1.59998 -4.90002l10.2 -2.5l-20.8 -19.1l2.5 -4.20001l-9.20001 -5.29999l12.7 -3.80005
-l-23.5 -10.2l-4.60004 -4.5l-11.2 -2.60004l1.40002 -5.39999l-18.8 -3l-16.1 1.89999s-16.3 6.70001 -24.1 5.10004c-7.79999 -1.60004 -12.2 -4.60004 -11.5 -8.40002s5.20001 -8.70001 13.1 -7.89999c6.40002 0.600006 17.2 4 26.8 4
-c2.09998 0 4.09998 -0.200012 6.09998 -0.600006c10.8 -2.20001 17.1 -6.29999 17.1 -6.29999l4 -4l25.3 -6.70001l-5.40002 -7.60001l13.5 -8.69998l-0.700012 -5.10001l23.7 -7.39999l-4.29999 -1.30002l17.1 -6.69998l38.3999 -7.5l1.70007 -5.40002l-11 -1.39999
-l-23.9 -8.39999l-17.6 -1.39999l-21.9 -2.10001l6.40002 -8.20001l-17 -0.199982l3.79999 -6.10001l-15.7 -2.10001l3.20001 -5.89999l-27.9 -7.10001l3.70001 -7.29999l-19.6 -1.30002l7.39996 -7.5l-9.5 0.600006s-16.7 2.80002 -16.9 1.30002
-c-0.200012 -1.5 8.69995 -8 8.69995 -8l20.2 -16.3l-29.5 3.89999l-0.700012 -5.39999s-21.7 4.80002 -25.2 1.80002s0.399963 -13.6 0.399963 -13.6l2.5 -13l9.90002 -11.7s-31.8 14.6 -34.3 19.7s-7 -3.89999 -7 -3.89999l-10.2 11.7l-6.40002 -17.1l-13.2 30.8l-6 -8.5
-l-2.79999 -16.2l-10.5 23.7l-0.200012 14.1l-4.69995 -0.400024l-0.800049 5.20001l-4.69995 3.10001l-5.60004 0.299988l-12.2 15.9l-1.79999 52.6s-17.6 34.8 -23.1 36.9c-5.5 2.10001 -11.6 -2 -11.6 -2l-34.1 -24.8l-25.5 -26l-12.3 -24.2s-2 -6.29999 -5 -12.3
-c14.8 0 28.1 -0.299988 43.3 -4.60001c33.5 -9.60001 45.1 -30.8 64.3 -54.1c4.60004 -5.59998 8.90002 -11.7 12.9 -18.3c5.89996 2.79999 13 4 20.5 4.10001c3.70001 0 7.5 -0.300018 11.3 -0.700012v0.100006c8.09998 -0.5 16.3 -1 23.5 -3.20001
-c7 -2.09998 13.2 -6.09998 16.3 -13.2c2.79999 -4.10001 7 -5.70001 12.3 -6.80002c5.30005 -1.09998 11.6 -1.29999 17.6 -2.89999l0.399963 -0.199982l0.400024 -0.200012c7.09998 -4.5 12 -8.20001 17.2 -10.5s10.7 -3.39999 19.3 -2.70001h0.0999756h0.100037
-c6.39996 0 11.3 2.30002 16.4 5.20001c0.400024 0.200012 0.800049 0.399994 1.20001 0.600006c-4.20001 1.69998 -8.39996 3.89999 -11.6 6.5s-5.79999 6.10001 -5.5 10.3c0.299988 4.20001 3.5 7.89999 9 11.2v0v0c4.20001 2.29999 8.20001 3.10001 11.7 2.29999
-c3.5 -0.799988 6.19995 -3.10001 8.19995 -5.79999c2.5 -3.39999 4.10004 -7.39999 5.40002 -11.5c0.5 0.799988 0.900024 1.60001 1.5 2.29999c4.70001 4.89999 13.8 14.3 22.1 14.1c6 -0.100006 7.30005 -6 7.40002 -12.5
-c0.200012 0.200012 0.400024 0.399994 0.599976 0.5c1.5 2.10001 3 3.60001 4.90002 4.39999c2 0.899994 4.29999 0.800018 6.09998 0c2.90002 -1.29999 4.5 -4.19998 5.5 -7.29999c1 1.79999 2.20001 3.5 4.10004 5.19998c3.29999 3.20001 6.39996 5.40002 9.20001 6.70001
-c2.90002 1.29999 5.59998 1.89999 8.19995 0.5c1.30005 -0.700012 2.20007 -2 2.5 -3.39999c0.300049 -1.39999 0.200073 -2.80002 -0.199951 -4.20001c-1.80005 -6.19998 -8 -13.9 -11.3 -21.4c1.70001 -0.700012 3.5 -1.10001 5.20007 -1.10001
-c2.8999 0 5.3999 1 7.5 3.60001c-0.100098 0.600006 -0.100098 1.10001 -0.100098 1.70001h-0.0999756v0.199982v0.200012h0.0999756c-0.199951 3.39999 0.800049 6.29999 3.1001 7.69998c2.29993 1.40002 5.09998 0.900024 7 -0.5
-c1.8999 -1.39999 3.09998 -4.39999 1.8999 -7.09998c-0.799927 -1.80002 -2.5 -3.20001 -4.69995 -4.5c0.400024 -0.400024 0.599976 -0.900024 1.09998 -1.30002c1.80005 -1.19998 4.80005 -1.89999 8 -2c3.20007 -0.100006 6.80005 0.5 9.70007 1.5
-c2.79993 1 5 2.5 5.79993 3.5v0l2.40002 -1.69998l2.40002 -1.70001v0v0c-2 -2.89999 -3.5 -9.70001 -2.59998 -14c0.5 -2.10001 1.3999 -3.5 2.59998 -4.10001c1.19995 -0.600006 3 -0.5 6.79993 0.600006c11.1001 3.10001 22.5 9.29999 35.9 9.79999v0h0.0999756
-c8.90002 0 22 3.30002 33.9 3.80002c6 0.199982 11.7001 -0.200012 16.7001 -2.5c4.79993 -2.20001 8.79993 -6.20001 10.7999 -12.3c6.20007 -6.39999 8 -14.4 9.40002 -21.9c1.40002 -7.7 2.5 -14.8 6.69995 -20.2l1.6001 -2.09999l-1.80005 -1.8
-c-7.5 -7.40001 -21.1 -10.1 -33 -13l-0.300049 -0.100006h-0.5c-3.8999 0.100006 -6.3999 -0.0999908 -9 -0.300003c-2.59998 -0.199997 -5.3999 -0.199997 -9 0.300003l0.900024 5.8c3.09998 -0.5 5.20007 -0.399994 7.70007 -0.199997
-c2.3999 0.199997 5.29993 0.399994 9.19995 0.300003c10.8 2.59999 22 5.59999 28 10.1c-3.90002 6.3 -5.09998 13.5 -6.30005 20.1c-1.3999 7.5 -3 14.3 -8.19995 19.4l-0.599976 0.5l-0.200073 0.799988c-1.5 5 -4.09998 7.60001 -7.79993 9.29999
-c-3.70007 1.70001 -8.5 2.10001 -14 1.90002c-10.9 -0.5 -23.8 -3.70001 -34.1 -3.70001h-0.100098c-11.5 -0.399994 -22.2999 -6.10001 -33.7999 -9.39999c-4.80005 -1.20001 -8.30005 -2.20001 -11.8 -0.399994c-3.09998 1.59998 -4.79993 4.79999 -5.5 8
-c-0.699951 3.19998 -0.599976 6.59998 0 9.79999c-0.0999756 0 -0.299927 -0.100006 -0.400024 -0.100006c-3.59998 -1.19998 -7.69995 -1.89999 -11.7 -1.79999s-7.90002 0.899994 -11.1 3c-1 0.699982 -1.59998 1.79999 -2.40002 2.69998
-c-3 -2.59998 -6.59998 -3.79999 -10.2 -3.79999c-2.70007 0 -5.20007 0.700012 -7.70007 1.79999c-1.79999 -2.79999 -4.09998 -5.29999 -7.5 -6.5c-5.29999 -1.79999 -21.5 0.200012 -25 3.10001c-5.79999 -0.699982 -12 0.399994 -17.2 3
-c-2.30005 1.10001 -4.30005 2.60001 -6 4.30002c-2.5 -0.200012 -5.10004 -0.300018 -7.5 0v0h-0.100037c-1.20001 0.199982 -2.79999 0.799988 -4.20001 1.19998c-2 -1.10001 -4 -2.29999 -6.09998 -3.5c-5.29999 -3.10001 -11.4 -5.89999 -19.1 -5.89999
-c-0.100037 0 -0.100037 -0.100006 -0.200012 -0.100006v0.100006c-9.20001 -0.700012 -16 0.5 -21.9 3.10001c-5.89996 2.60001 -10.9 6.39999 -17.6 10.7c-5 1.30002 -10.9 1.60001 -16.7 2.80002c-5.90002 1.19998 -12.1 3.39999 -16 9.19998l-0.200012 0.300018
-l-0.0999756 0.299988c-2.29999 5.60001 -6.60004 8.5 -12.8 10.4c-6.20001 1.90002 -14.1 2.30002 -22.2 2.80002h-0.100037h-0.0999756c-10.5 1.19998 -20.9 0.5 -28.3 -2.70001c11.4 -19.7 21.2 -42.5 32.7 -63.5c13.1 -24 30 -75.6 36.3 -95.4
-c1.09998 8.60001 4.29999 23.4 13.3 30.8c8.90002 7.3 17.2 9.89999 27.7 9.89999c2.89996 0 11.3 -1.3 13.5 -2.2c-1.20001 12.9 17.3 29.8 34.4 29.8c11.1 0 23.5 -3.90001 30.5 -10.9c9.40002 7.10001 22.4 11.5 33.9 11.5c20 0 36.7 -23.9 36.7 -33.6
-c0 -7.90001 -0.5 -17.6 -8.19995 -22.4c14.7 -3.2 32.2 -16.7 32.2 -33.1c0 -10.5 -6.3999 -21.3 -12.8999 -27.4c14.3999 -8.5 27.5 -21.2 27.5 -43c0 -8.4 -2 -17 -5.30005 -24.2c0.599976 0.0999985 1.19995 0.0999985 1.90002 0.0999985c11.5 0 32.2 -4.9 41.1 -16.3
-c7.19995 -9.2 8.90002 -19.4 8.90002 -27.8c0 -4.1 -1.20007 -7.9 -4.40002 -10.7c14.9 0.5 25.3 -4.4 31.3 -11.7c4.5 -5.5 9.59998 -17 10.7999 -24.1c1.59998 0.299999 3.20007 0.5 4.90002 0.5c10.1 0 22.1 -3.8 30.5 -9.5c9.19995 -6.2 12.2 -28.4 12.2 -28.4
-s14.4 5.89999 27 5.89999c9.70007 0 20.9 -3.39999 27.4 -7.7s15.8 -14.6 17.4 -22.4zM468.5 204.3l-2.29999 -2.5l-9.70001 -12.6c2.60001 1 4.70001 1.60001 5.70001 1.40001c3.79999 -0.700012 0.699982 5.39999 0.699982 5.39999l10.5 0.800003zM479.5 215.9
-l-9.10001 -9.7l18.3 -4.5l-2.20001 6.7zM517.6 256.3l-37.8 -40l16.2 -3.7l7.70001 -5.70001l1.59998 2.70001l3.20001 -1.70001l3.5 1.3l2.5 2.90001l13.5 0.0999908l23.5 -16.5c1.20001 0.199997 2.29999 0.600006 3.29999 1c2.10004 0.900009 3.5 2.10001 4.40002 4
-c3.20001 6.60001 2.59998 28.1 1.59998 34c-1.79999 10.2 -12.2 21.4 -22.8 22.6c-6.70001 0.800018 -13.2 0.400024 -20.4 -1zM553.8 294.7l-30.8 -32.6c5 1 10.4 1.60001 15.7 1c13 -1.5 25.7 -14.9 27.9 -27.4c1.40002 -8.09999 1.70001 -29.5 -2.09998 -37.5
-c-1.5 -3.09999 -4 -5.3 -6.90002 -6.7c5.30005 -3.2 19.8 -6 27.3 -6c2 0 3.39996 0.199997 4.09998 0.600006c3.40002 2.09999 3.70001 7.09999 3.70001 7.09999l4.09998 43s-0.0999756 15.5 -2 21.8c-5.20001 11.7 -11.3 20.1 -21.2 28.2c1 0.599976 -10.3 5 -19.8 8.5z
-M999.5 301.7c-3 0 -7 -5.70001 -8.90002 -9c-1.5 -2.60001 -2.59998 -5.70001 -2.89996 -8.30002c-0.100037 -1.39999 0 -2.60001 0.299988 -3.60001c4.29999 1.30002 12.1 4 14 7.10001c1.40002 2.39999 1.79999 5.60001 1.20001 8.39999
-c-0.600037 2.90002 -2.29999 5.40002 -3.70001 5.40002zM1025.7 306.8c-0.399902 0 -1 -0.199982 -1.89996 -0.599976c-2 -0.900024 -4.70001 -2.80002 -7.59998 -5.70001h-0.100037l-0.0999756 -0.100006c-3.40002 -2.89999 -4.09998 -5.60001 -3.79999 -8.10001
-c0.299988 -2 1.59998 -4.09998 3.39996 -5.89999c2 4.89999 9.40002 15.1 10.7001 19.6c1.19995 4.20001 0.0999756 0.600006 0.0999756 0.799988h-0.700073zM983.4 308.6c-0.400024 0 -1.10004 -0.100006 -2.10004 -0.600006c-3.89996 -1.79999 -10.2 -7.70001 -15.6 -11.8
-c-3 -3.80002 -2.29999 -6 -0.600037 -8.5c2.90002 0.399994 5.80005 1.19998 8.40002 2.29999c5.29999 2.29999 9.59998 5.79999 11.7 10.2c0.0999756 5.29999 -0.600037 8.39999 -1.79999 8.39999zM943.6 309.9c-2.59998 0 -3.89996 -0.600006 -6 -1.89999
-c-4.59998 -2.79999 -6 -5.20001 -6.09998 -6.60001c-0.0999756 -1.5 0.900024 -3.29999 3.40002 -5.29999c3.59998 -2.89999 9.5 -5.20001 15 -6.89999c1.79999 1 3.89996 1.69998 6 2.5c-1.5 5.29999 -3.40002 11 -6 14.5
-c-1.70001 2.29999 -3.40002 3.69998 -6.30005 3.69998zM450.2 451.3c-5.20001 0.300018 -20.4 -18.9 -20.4 -18.9l-28.9 -35.3l-15.8 -4c0.399994 -0.200012 0.600006 -0.399994 1 -0.600006h0.100006c9.79999 -2.89999 15.8 -9.20001 19.4 -16.3
-c3.69998 -7.30002 5.5 -15.5 7.89999 -22.2l0.200012 -0.5v-0.5c0 -7.70001 4.09998 -14.2 8.39999 -21.6c4.19998 -7.29999 8.29999 -15.6 6.60001 -26.2c1.69998 -9.30002 -2 -16.1 -2 -23.3c0 -2.29999 18.1 -24.5 17.7 -26.1c28.9 32.2 40.4 42.8 45 47
-c-2.10001 2.60001 -9 12.7 -12.2 20.2c-2.70001 6.20001 -8.40002 31.1 -8.40002 31.1l-0.0999756 20.3l-2.70001 32.4l-8.89999 36.4s-1.70001 6.39999 -6.39999 8c-0.100006 0.0999756 -0.300018 0.0999756 -0.5 0.0999756zM174 476.6
-c-3.39999 -0.100006 -6.89999 -0.600006 -9.60001 -1.60001c-1.7 -0.600006 -3.09999 -1.39999 -3.89999 -2.10001c-0.800003 -0.699982 -1 -1.10001 -1 -1.29999c0 -0.200012 -0.100006 -0.700012 0.800003 -1.60001c0.699997 -0.799988 2.5 -1.89999 4.59999 -3
-c4.70001 1 7.8 4.29999 9 8.60001c0.100006 0.299988 0 0.699982 0.100006 1zM1102.6 -44.4c-8.90002 -12.4 -20.6 -22.1 -33.6 -22.1c-13.5 0 -25.4 7.7 -30.5 18.5c-2.19995 -20.2 12.6 -31.5 26 -31.5c13 0 38.7 13.2 38.1 35.1zM1025.7 35.9
-c-6.89996 -13.6 -13.2999 -23.9 -26.2 -25.9c-13.4 -2.1 -31.9 7.5 -38.6 17.3c0.899963 -20.4 22.9 -32.8 36.1 -30.8c12.9 2 32.6 17.9 28.7 39.4zM942.7 -35.1c-7 -13.5 -17.3 -24.9 -30.2 -26.7c-13.4 -1.9 -23.8 6.5 -30.4 16.4c0.600037 -20.4 14.5 -31.8 27.8 -29.9
-c12.9 1.8 36.5 18.6 32.8 40.2zM910.7 62.4c-7 -13.5 -16.2 -24.1 -29.1 -25.9c-13.4 -1.9 -30.4 5 -37 14.9c0.600037 -20.4 21.1 -30.3 34.4 -28.4c12.9 1.8 35.4 17.8 31.7 39.4zM824.1 -21.3c-6 -14 -18.5 -29.7 -31.2 -32.5c-13.2 -2.9 -29.1 5.5 -36.4 14.9
-c2.20001 -20.3 21.7 -31.5 34.8 -28.6c12.7 2.8 38.2 25 32.8 46.2zM990.6 131.6c-8.89996 -12.4 -17.6 -22.6 -30.6 -22.6c-13.5 0 -29.9 10.2 -35 21c-2.20001 -20.2 17.1 -34 30.5 -34c13 0 35.7 13.7 35.1 35.6z" />
-    <glyph glyph-name="uniE3E0" unicode="&#xe3e0;" horiz-adv-x="1168" 
-d="M578 111c-2 0 -3 -15 -10 -15c-6 0 -18 15 -20 20c-1 3 -3 10 -2 18c0 0.899994 -21.2 11.1 -21.2 23.2c0 1.60001 0.400024 3.2 1.20001 4.8c8 16.1 17.3 -2.10001 22.2 -2.10001c0.899963 0 1.29999 6.60001 1.29999 15.2c0 15.8 -1.20001 38.2 -2.5 36.9
-c0 0 -33 -60 -34 -60c-2 0 -58 30 -59 32c0 1 50.1 97.2 50.1 101.8c0 1.10001 -7.10001 1.40002 -13.2 1.40002c-9 0 -19.6 -0.600006 -21.9 -1.20001c-3 -1 -22 -39 -22 -43c0 -2 20 -20 20 -21c0 -2 -6 -13 -7 -13l-23 18s-10 -18 -11 -18l-17 15l1 27l42 69
-s109 -1 116 -4c9 -4 14 -11 18 -21c0.400024 -1 0.599976 -4.60001 0.599976 -10c0 -35.6 -7.5 -151.1 -6.59998 -152c1 -1 90 -78 90 -79c0 -3 -7 -8 -10 -8c-2 0 -81 65 -82 65zM580 -41c3 5 62 74 69 76c18 6 30 25 63 65c10.2 12.3 24.7 17.2 37.5 17.2
-c11.1 0 20.9 -3.6 25.5 -9.2c14.4 -17.3 118.5 -150.2 118.5 -160.4c0 -0.399998 -0.200012 -0.599998 -0.5 -0.599998h-309s-8 6 -4 12zM352 -5c0 3.8 95 176 96 177c2 2 57 -26 62 -32l38 -59l6 -134c-20 0 -27 8 -35 20l-8 98s-41.4 62 -43 62c-8 -14 -86 -153 -100 -175
-c0 -0.0999985 -0.200012 -0.0999985 -0.399994 -0.0999985c-2.39999 0 -15.6 5.8 -15.6 43.1zM577 609c-1 0 -400 -694 -400 -694l800 -2s-399 696 -400 696zM51 -187c-13.3 1.7 -24.5 18.5 -24.5 35.6c0 3.5 0.5 7 1.5 10.4c2 6 520 897 525 904
-c6.79999 10.6 15.7 14.5 24.2 14.5c11.7 0 22.8 -7.40002 26.8 -15.5c2 -5 507 -887 509 -890c6 -10.5 9 -21.2 9 -30.6c0 -15.7 -8.5 -27.4 -26 -27.4c-3.19995 0 -668.2 -1.3 -935.6 -1.3c-66.8 0 -108.8 0.100006 -109.4 0.300003zM624 769c-6 11 -15 20 -24 25
-c-7.70001 4.29999 -16 6.40002 -24.2 6.40002c-18.5 0 -36.7 -10.7 -47.8 -31.4c-5 -8 -511 -881 -513 -885c-11 -17 -15 -32 -15 -45c0.6 -18.4 11.5 -32.3 30.3 -40.3c11.5 -5.09999 26.2 -7.8 43.6 -7.8c1.7 0 3.4 0 5.1 0.100006l981 -1
-c7.69995 -0.699997 14.9 -1 21.6 -1c23.5 0 40.7001 4 52.4 11c12.4 7.8 18.2 19.2 18.2 33.6c0 17 -8.09998 38.1 -23.2 62.4zM593.1 312.7c-2.89996 2.89999 -5.39996 6.39999 -7.09998 10.3c-2.09998 4.70001 -3.09998 9.60001 -3.09998 14.5
-c0 13.6 7.79999 26.6 21.1 32.5c4.79999 2.10001 9.79999 3.10001 14.7 3.10001c13.6 0 26.4 -7.60001 32.3 -20.1c2.09998 -4.70001 3.09998 -9.60001 3.09998 -14.5c0 -13.6 -7.79999 -26.6 -21.1 -32.5c-5 -2.20001 -10.2 -3.29999 -15.3 -3.29999
-c-9.20001 0 -18.1 3.5 -24.6 10zM7.3 -133.6c2.1 5.20001 4.9 10.7 8.7 16.6c-3.6 -5.7 -6.4 -11.3 -8.7 -16.6z" />
-    <glyph glyph-name="uniE3E1" unicode="&#xe3e1;" horiz-adv-x="1154" 
-d="M440 226l95 142c11 15 28 22 57 15l74 -61l8 -15v-58c-7 -15 -17 -26 -34 -26v76l-30 26v-106h-76v85l-53 -77c-15 -9 -30 -13 -41 -1zM534 211h76v-7l80 -149c2 -24 -10 -35 -21 -44l-97 178l-93 -166c-26 -17 -36 -10 -47 -6l102 186v8zM795 -55l-61 135l62 1l82 -136
-h-83zM658 -54l-16 96l2 -2l21 -39c45 25 33 53 21 79l9 1l47 -136zM523 -54l11 134h61l13 -134h-85zM387 -55l45 135h26l-37 -67c17 -10 35 -15 62 1l-13 -69h-83zM252 -54l80 134h63l-59 -134h-84zM591 435c0 -21 -17 -38 -38 -38s-38 17 -38 38s17 38 38 38s38 -17 38 -38
-zM170 -87h789l-394 684zM54 -188c-12 0 -23 7 -29 17s-6 24 0 34l511 885c6 10 17 16 29 16s23 -6 29 -16l511 -885c6 -10 6 -24 0 -34s-17 -17 -29 -17h-1022zM54 -209h1022c20 0 38 10 48 27s10 39 0 56l-511 884c-10 17 -28 28 -48 28s-38 -11 -48 -28l-511 -884
-c-10 -17 -10 -39 0 -56s28 -27 48 -27z" />
-    <glyph glyph-name="uniE3E2" unicode="&#xe3e2;" horiz-adv-x="1000" 
-d="M448 543c0 -20 -16 -36 -36 -36s-35 16 -35 36s15 35 35 35s36 -15 36 -35zM477 525c11 3 120 71 120 71c26 -14 48 -4 69 9l68 -22l36 -71c-14 -7 -28 -5 -41 7l-19 37l-37 13l9 -88l30 -74l69 -30c17 -19 11 -28 9 -41l-101 40c-5 1 -7 7 -10 12l-32 74l-34 -165
-l-38 -20l33 188l-9 89l-85 -46c-22 -3 -29 7 -37 17zM400 275l-8 177l-49 -40c-11 1 -22 1 -28 9l77 75c17 -5 33 -4 49 4l56 -11l26 -55c-8 -2 -13 -9 -31 5l-14 28l-22 1l20 -80l52 -6c14 -2 15 -14 18 -24l-84 -1l-15 21l-24 -7l1 -79c-7 -11 -16 -15 -24 -17zM665 648
-c0 -22 -18 -40 -40 -40s-40 18 -40 40s18 40 40 40s40 -18 40 -40zM170 252h789l-394 684zM54 151c-12 0 -23 7 -29 17s-6 24 0 34l511 885c6 10 17 16 29 16s23 -6 29 -16l511 -885c6 -10 6 -24 0 -34s-17 -17 -29 -17h-1022zM54 130h1022c20 0 38 10 48 27s10 39 0 56
-l-511 884c-10 17 -28 28 -48 28s-38 -11 -48 -28l-511 -884c-10 -17 -10 -39 0 -56s28 -27 48 -27z" />
-    <glyph glyph-name="uniE3E3" unicode="&#xe3e3;" horiz-adv-x="1172" 
-d="M677 162l-48 -127l19 -0.200001c0.299988 36 19.4 67.6 48.1 85c-6.39996 14.1 -12.7 28.1 -19.1 42.2zM486 170l121 -133l49 133h-170zM550 249v-21c-53 0 -47 3 -59 -38h175l5 20c-39 9 -49 9 -41 19h87v-19l-23 -1l-6 -19c10.6 -23.7 19.7 -43.8 27.5 -61.1
-c9.90002 3.3 20.5 5.10001 31.5 5.10001c55 0 99 -45 99 -100s-44 -99 -99 -99c-48.1 0 -87.9 33.7 -97 79h-2c-78 3 -24 -21 -170 133c-2.60001 -8.10001 -5.10001 -15.7 -7.29999 -22.8c35.6 -15 60.3 -50 60.3 -91.2c0 -55 -44 -99 -99 -99s-100 44 -100 99s45 99 100 99
-c6.5 0 12.9 -0.600006 19.1 -1.8c38.9 124.8 26.9 117.8 98.9 118.8zM432 110c-43 0 -77 -34 -77 -77s34 -77 77 -77s77 34 77 77c0 31.5 -18.2 58.2 -44.9 70.2c-25 -79.7 -22.7 -78.3 -33.1 -79.2c-6 0 -9 4 -9 10c0 6.5 -2.60001 -2.4 22.3 75.1
-c-4 0.599998 -8.09998 0.900002 -12.3 0.900002zM184 -124h812l-406 703zM64 -227c-13 0 -24 7 -30 17s-6 25 0 35l526 909c6 10 17 17 30 17s24 -7 30 -17l525 -909c6 -10 6 -25 0 -35s-17 -17 -30 -17h-1051zM672.5 14.1c8.59998 -33.1 38.4 -57.1 74.5 -57.1
-c43 0 77 34 77 77s-34 78 -77 78c-7.79999 0 -15.3 -1.1 -22.4 -3.3c35.2 -78.1 36.4 -80.8 36.4 -84.7c-0.900024 -13.7 -7.70001 -9.9 -88.5 -9.9zM670 34.6l65 -0.599998l-29.8 65.7c-21.2 -13.8 -35 -37.8 -35.2 -65.1z" />
-    <glyph glyph-name="uniE3E4" unicode="&#xe3e4;" horiz-adv-x="1000" 
-d="M405.6 608.9l32.1 -113.2l42.8 -23.8l-21.6 82.1c83.6 -45.2 112.5 -155.8 83.4 -227.6l39.1 -14.4c43.5 130.4 -21.4 229.8 -101.5 278.3l82.2 23.9l-44.2 25.4zM530.2 244.8l-114 29l-42.2 -25l81.9 -22.5c-81 -49.6 -191.2 -19.1 -238.7 42.1l-32 -26.6
-c91 -103.1 209.4 -96.9 291.6 -52l-20.6 -83l44.1 25.4zM151.8 319.8l82.5 83.9l-0.400009 49l-60.7 -59.4c-2 95 79.8 174.7 156.6 185l-6.79999 41.1c-134.9 -26.7 -189.2 -132.2 -191.8 -225.8l-61.3 59.6l-0.300003 -50.9zM690.6 391.5
-c0 -181.1 -147 -328.1 -328.1 -328.1c-181.1 0 -328.1 147 -328.1 328.1c0 181.1 147 328.2 328.1 328.2c181.1 0 328.1 -147.1 328.1 -328.2z" />
-    <glyph glyph-name="uniE3E5" unicode="&#xe3e5;" horiz-adv-x="1936" 
-d="M1190 264v118c0 14.2 18.9 21 38 21c19.8 0 40 -7.29999 40 -21v-24c0 -3 -8 -12 -10 -12c2 0 10 -6 10 -10v-54c0 -5 -15 -18 -20 -18h-20v20h13c3 0 7 5 7 9v36c0 3 -4 7 -6 7h-16v20h14c5.19995 5.20001 7.30005 9.5 7.30005 13c0 7.5 -9.6001 11.2 -19.1001 11.2
-c-9.19995 0 -18.2 -3.40002 -18.2 -10.2v-106h-20zM1376 324v-20h-62c3.40002 -14.3 13.1 -19.8 23.2 -19.8c7.5 0 15.2001 3.09998 20.8 7.79999l13.5 -14.5c-3.90002 -3.89999 -19.9 -14.6 -38.9 -14.6c-14.7999 0 -29.7999 6.80002 -38.6 29.1v39
-c2.19995 12.8 20.4 29.1 41.2 29.1c16.9 0 34.1001 -9.20001 40.8 -36.1zM1352.5 324c-2.19995 13 -10.1 18.2 -17.9 18.2c-9.59998 0 -19.2 -7.70001 -18.6 -18.2h36.5zM1052 363c11 0 20 -4 23 -8l-15 -19c-4.5 3.79999 -8.69995 5.39999 -12.7 5.39999
-c-7.5 0 -14.1001 -5.89999 -19.3 -14.4v-63h-22v98h22v-8c8 6 16 9 24 9zM968 390v-28h14v-18h-14v-57c1 -2 1 -3 4 -3h10v-20h-18c-5 1 -18 11 -18 20v60h-10v18h10v28h22zM851 294c6 -3 11 -6 17 -10c2 -1 14 -2 21 0l6 2c6 2 8 16 0 16c-10 0 -20 1 -30 3
-c-10 3 -19 8 -21 19c0 7 -2 14 0 21c3 8 10 16 28 19c5 1 10 1 16 0c12 -2 24 -5 32 -15l-13 -15c-5 3 -10 6 -19 8c-5 1 -10 1 -15 0c-11 -4 -6 -19 0 -18h25c9 -3 19 -10 23 -22c1 -5 1 -11 0 -16c-4 -13 -16 -21 -33 -22c-3.5 -0.5 -6.79999 -0.799988 -10 -0.799988
-s-6.5 0.299988 -10 0.799988c-16 2 -23 9 -30 18zM737 362h23v-6c4 3 10 5 15 6c7 1 13 1 20 -1c10 -3 20 -10 22 -20v-77h-19v62c-0.5 11.8 -9.40002 17.3 -18.5 17.3c-8.70001 0 -17.5 -5 -19.5 -14.3v-65h-23v98zM630 400h22v-44c4 3 10 5 15 6c7 1 14 1 21 -1
-c10 -3 20 -10 22 -20v-77h-20v62c-0.5 11.8 -9.40002 17.3 -18.5 17.3c-8.70001 0 -17.5 -5 -19.5 -14.3v-65h-22v136zM1113 306c-10 0 -11 -22 0 -22h20c3 0 7 4 8 7v15h-28zM1130 364c16 0 33 -10 33 -24v-76h-22v7c-1 -4 -6 -7 -9 -7h-27c-14.3 0 -22.6 15.8 -22.6 31.1
-c0 14.6 7.5 28.9 24.6 28.9h34v12c0 3 -4 6 -8 6h-21c-2 0 -7 -3 -7 -6h-3l-13 14c0 6 14 14 25 14h16zM554 306c-5.09998 0 -7.90002 -5.79999 -7.90002 -11.4c0 -5.39999 2.5 -10.6 7.90002 -10.6h20c3 0 7 4 8 7v15h-28zM571 364c16 0 33 -10 33 -24v-76h-22v7
-c-1 -4 -6 -7 -9 -7h-27c-14.3 0 -22.6 15.8 -22.6 31.1c0 14.6 7.5 28.9 24.6 28.9h34v12c0 3 -4 6 -8 6h-21c-2 0 -7 -3 -7 -6h-3l-13 14c0 6 14 14 25 14h16zM424 400h22v-46c3 4.60001 11.9 8 16 8h18c11 0 25 -12 25 -26v-47c0 -10 -17 -28 -30 -28h-10
-c-6 0 -18 7 -19 12v-9h-22v136zM318 362h22v-9c3 3 7 9 13 9h20c11 0 25 -14 25 -29v-69h-22v67c-6.39999 7.20001 -12.6 9.79999 -18 9.79999c-8 0 -14.4 -5.59998 -18 -9.79999v-67h-22v98zM269 400h21v-21h-21v21zM270 362h20v-98h-20v98zM1367 600
-c-22.4 0 -33.4 -17 -33.4 -33.8c0 -3.40002 0.5 -6.90002 1.40002 -10.2l29 -104h-1262v-243h1262l-29 -104c-1.19995 -4.3 -1.80005 -8.5 -1.80005 -12.6c0 -19.1 12.7001 -34.3 31.5 -34.3c7 0 14.9 2.1 23.3 6.9l465 266l-465 265c-5.80005 3.29999 -16 4 -21 4zM89 656
-h1759c22 0 58 -20 58 -58v-535c0 -38 -35 -57 -57 -57h-1760c-25 0 -54 26 -54 54v541c0 28 29 55 54 55zM244 400v-22h-66v-36h56v-20h-56v-36h66v-22h-88v136h88zM446 295.8c5.79999 -7 12.4 -11.8 19.1 -11.8c5.69998 0 11.5 3.5 16.9 12v33
-c-3.5 6.39999 -10.6 12.7 -18.5 12.7c-5.79999 0 -12 -3.40002 -17.5 -12.7v-33.2z" />
-    <glyph glyph-name="uniE3E6" unicode="&#xe3e6;" horiz-adv-x="1033" 
-d="M284.1 275.7l-27.7 -88.2c-5.79999 -18.5 -6.39999 -23.2 -6.39999 -29.5c0 -9 6.89999 -16 16 -16c10 0 12.9 4.8 19 23.7c0 0 14.7 46.3 32 100.1c41.4 -19.2 70 -61 70 -109.8c0 -67 -54 -121 -121 -121s-120 54 -120 121s53 121 120 121
-c6.20001 0 12.2 -0.399994 18.1 -1.29999zM678.8 291.4c-44.7 -27.3 -74.8 -76.6 -74.8 -132.4h-30l75 198zM693.1 259.9l45.9 -100.9h-101c0 42.7 21.9 79.7 55.1 100.9zM759 279c67 0 121 -53 121 -120s-54 -121 -121 -121c-55.9 0 -102.8 37.6 -116.8 89l98.3 0.199997
-c34.6 -0.0999985 40.5 2.8 40.5 11.8c0 6.5 -1 10.4 -11.7 34c0 0 -17.2 37.9 -45.6 100.9c11.2 3.30002 23 5.10001 35.3 5.10001zM450 493l-40.5 -0.200012c-43.1 -0.799988 -58.9 -5.59998 -73.1 -50.8l-42 -133.6c-9.19998 1.70001 -18.7 2.60001 -28.4 2.60001
-c-85 0 -155 -70 -155 -155s70 -155 155 -155s156 70 156 155c0 63.3 -39.4 118.2 -94.6 142.2c3.89999 12.1 7.80002 24.2 11.6 35.8c109.9 -115.7 169.5 -185.3 169.5 -185.3c19.8 -19.8 28.2 -21.9 65 -21.8h33.9c14.9 -70.1 77.6 -123.9 151.6 -123.9
-c85 0 155 71 155 156s-70 155 -155 155c-17.3 0 -34.1 -2.89999 -49.7 -8.29999c-12.9 28.6 -27.4 61 -43.3 96.3l11 30h36v31h-140l-0.299988 -9.5c1.5 -6.5 23 -11.8 69.3 -20.5l-11 -30l-272 -1l10.3 36.5c6.40002 18.5 13.5 22.6 39.7 23.4l41 0.100006v31zM511 708
-c259 0 470 -211 470 -470s-211 -470 -470 -470s-469 211 -469 470s210 470 469 470zM351 370h266l-76 -207z" />
-    <glyph glyph-name="uniE3E7" unicode="&#xe3e7;" horiz-adv-x="1025" 
-d="M331 393l14 -3v-112l-14 -13c-13 84 -12 42 0 128zM247 99l280 -2c-11 57 -13 109 -97 181l-1 115h8c19 -41 45 -79 59 -123c-3 -10 -12 -18 0 -39l105 -97l-15 -253c0 -10 33 -12 33 0l11 119h26l18 -104c0 -11 37 -9 37 2l-19 113h29l-20 107l60 -73c10 4 20 8 16 36
-l-90 109c-18 -2 -33 -9 -57 -7c-52 6 -70 45 -105 67c32 18 0 66 -28 119c-23 44 -35 86 -97 97h-33c-54 -20 -62 -51 -76 -83c-2 -4 -5 -27 -5 -43c0 -19 5 -46 6 -50c6 -18 8 -40 21 -46c-49 -56 -56 -98 -66 -145zM395 84l1 -194c0 -22 39 -23 39 0v194h-40zM339 84
-l1 -159c0 -13 39 -15 39 0v159h-40zM588 259c0 -27 23 -49 49 -49c22 0 48 15 48 49c0 27 -19 49 -48 49c-32 0 -49 -21 -49 -49zM335 550c0 -31 24 -54 54 -54c29 0 54 23 54 54s-23 54 -54 54s-54 -21 -54 -54zM981 238c0 -259 -210 -469 -469 -469s-468 210 -468 469
-s209 468 468 468s469 -209 469 -468z" />
-    <glyph glyph-name="uniE3E8" unicode="&#xe3e8;" horiz-adv-x="1000" 
-d="M92 224v-20h837v20h-837zM630 470c0 16 -13 30 -29 30s-29 -14 -29 -30s13 -29 29 -29s29 13 29 29zM484 642c0 18 -15 32 -33 32s-33 -14 -33 -32s15 -33 33 -33s33 15 33 33zM366 381l169 -1c-7 34 -8 57 -59 101v66h5c12 -25 26 -45 35 -71c-2 -7 -8 -10 0 -23l63 -58
-l-9 -137c-0.400024 -6 19 -8.3 20 0l8 64l15 -1l11 -54c1.59998 -7.79999 24 -7.89999 22 2l-12 58h18l-13 58l37 -44c6 2 12 6 10 22l-54 65c-11 -1 -19 -5 -34 -4c-31 3 -43 29 -64 42c19 11 -2 34 -18 66c-14 26 -21 52 -58 59h-19c-32 -12 -37 -31 -46 -50l-5 -22l5 -30
-c3.79999 -10.5 4.89999 -22.7 11.9 -27.3c-28.6 -31.6 -33.1 -52.3 -38.9 -80.7zM456 371v-102c0 -13 24 -14 24 0v102h-24zM422 371l1 -81c0 -8 23 -10 23 0v81h-24zM980 240c0 -259 -186 -470 -469 -470c-289 0 -469 211 -469 470s188 469 469 469
-c279.2 0 469 -210 469 -469zM362 32l-19 -58c-4 -12 -4 -16 -4 -20c0 -6 5 -10 11 -10c7 0 8 3 12 15c0 0 10 30 21 66c27 -13 47 -40 47 -72c0 -44 -36 -80 -80 -80s-79 36 -79 80s35 80 79 80c4 0 8 0 12 -1zM622 42c-30 -18 -49 -50 -49 -87h-20l50 131zM632 22l30 -67
-h-67c0 28 15 53 37 67zM675 34c44 0 80 -35 80 -79s-36 -80 -80 -80c-37 0 -68 25 -77 59h65c23 0 27 2 27 8c0 4 -1 6 -8 22c0 0 -11 25 -30 67c7 2 15 3 23 3zM471 175h-26c-28 -1 -40 -3 -49 -33l-27 -88c-6 1 -13 1 -19 1c-56 0 -102 -46 -102 -102s46 -102 102 -102
-s103 46 103 102c0 42 -27 78 -63 94c3 8 6 15 8 23c73 -76 112 -122 112 -122c13 -13 19 -14 43 -14h22c10 -46 51 -82 100 -82c56 0 102 47 102 103s-46 102 -102 102c-11 0 -23 -1 -33 -5c-9 19 -18 40 -28 63l7 20h24v21h-93v-7c1 -4 15 -7 46 -13l-7 -20h-180l7 23
-c3.70001 12.1 9 15 26 16h27v20zM406 94h175l-50 -136zM417 474.3c-4.5 -4.39999 -8.5 -8.59998 -12.1 -12.6c0.399994 -0.200012 0.700012 -0.5 1.10001 -0.700012c3 4 7 8 11 12v1.29999zM417 474.3v72.7l8 -2v-63c-2.79999 -2.60001 -5.5 -5.20001 -8 -7.70001z" />
-    <glyph glyph-name="uniE3E9" unicode="&#xe3e9;" horiz-adv-x="1061" 
-d="M542 -193h22v835h-22v-835zM868 251c0 15 -14 28 -29 28s-27 -13 -27 -28s12 -27 27 -27s29 12 29 27zM728 418c0 17 -14 30 -31 30s-31 -13 -31 -30s14 -32 31 -32s31 15 31 32zM617 160l160 -1c-6 33 -8 61 -56 103v66h4c11 -23 25 -46 33 -72c-2 -6 -7 -9 0 -21
-l61 -55l-9 -145c0 -6 19 -7 19 0l7 67h14l10 -59c0 -7 22 -5 22 1l-11 65h17l-12 61l34 -41c6 2 12 4 10 20l-52 63c-11 -1 -18 -6 -32 -5c-30 3 -40 26 -60 39c18 10 -1 38 -17 68c-13 24 -20 50 -56 56h-18c-31 -11 -36 -31 -44 -48l-4 -25l5 -28
-c4 -9.89999 4 -22.7 10.8 -26.9c-27.2 -31.6 -30.8 -55.4 -35.8 -82.1zM700 150l1 -111c0 -13 23 -13 23 0v111h-24zM669 150l1 -90c0 -8 22 -9 22 0v90h-23zM1017 235c0 -259 -219 -469 -487 -469s-486 210 -486 469s218 468 486 468s487 -209 487 -468zM167 286l-16 -49
-c-3 -10 -3 -13 -3 -17c0 -5 3 -9 8 -9c6 0 8 2 11 13c0 0 8 27 18 57c23 -11 39 -35 39 -62c0 -38 -30 -68 -68 -68s-67 30 -67 68s29 68 67 68c3 0 8 -1 11 -1zM388 295c-25 -15 -42 -43 -42 -74h-17l42 111zM396 277l25 -56h-56c0 24 12 44 31 56zM433 288
-c38 0 67 -29 67 -67s-29 -68 -67 -68c-31 0 -58 21 -66 50h55c19 0 23 2 23 7c0 4 -1 6 -7 19c0 0 -9 21 -25 56c6 2 13 3 20 3zM260 408h-23c-24 0 -33 -4 -41 -29l-24 -75c-5 1 -11 2 -16 2c-48 0 -86 -39 -86 -87s38 -87 86 -87s88 39 88 87c0 35 -22 67 -53 80
-c2 7 4 13 6 20c62 -65 95 -104 95 -104c11 -11 16 -12 37 -12h19c8 -39 44 -70 85 -70c48 0 86 40 86 88s-38 87 -86 87c-10 0 -19 -2 -28 -5c-7 16 -16 34 -25 54l7 17h20v17h-79v-5c1 -4 13 -7 39 -12l-6 -17h-152l5 20c4 10 8 13 23 13h23v18zM204 339h149l-43 -116z
-M665 255.3c-4.5 -4.5 -8.59998 -9 -12.2 -13.2c0.100037 0 0.100037 -0.100006 0.200012 -0.100006c3 4 8 8 12 12v1.3zM665 255.3v72.7l7 -2v-64c-2.5 -2.29999 -4.79999 -4.5 -7 -6.7z" />
-    <glyph glyph-name="uniE3EA" unicode="&#xe3ea;" horiz-adv-x="1000" 
-d="M304.6 138.4l0.199982 -41.7c-0.0999756 -11 9.20001 -16.9 20 -16.6c12.7 0 21.5 5.6 21.5 16.6l0.100006 41.7c0 8.60001 -9.69998 16.1 -21.6 16.1c-10.9 0 -20.5 -6.2 -20.2 -16.1zM555.6 171.5l-0.0999756 -17.1h-52l0.200012 -28.9h43.8v-15.1l-44 0.0999985
-l0.200012 -29.9h51.8v-16.3h-69v107.1zM383.5 171.7l16.5 -0.0999908l46.5 -75.2l0.100006 75.2l17 0.199997l0.100006 -107.5h-16.6l-46.4 73.6v-73.6h-17zM287.5 144.1c0 13.8 13.9 27.8 37.3 27.8c19.5 0 38.6 -13.1 38.6 -27.9l0.200012 -51.9
-c0 -13.5 -18.4 -29.8 -38.9 -29.8c-20.2 0 -37.1 17.1 -37.1 29.7zM206.4 171.4l67.3 -0.0999908l-0.100006 -13.8l-48 -77h48v-16.1h-69.1l0.100006 14.7l47.4 76.4l-45.6 -0.100006v16zM708.1 720.8l-654.3 -0.200012c-7.8 0 -12.2 -2.5 -15.2 -5.89996
-c-3 -3.40002 -4.7 -8.29999 -4.7 -13.3v-658.4c0 -5.1 2.2 -8.4 5.9 -11.2s9.1 -4.5 13.1 -4.5l657.4 0.300001c2.20001 0 6.79999 2 10.4 5.7c3.59998 3.7 5.70001 8.5 5.70001 11.7v654.9v0v0.0999756c0.0999756 7.40002 -2.60004 12.2 -6.40002 15.7
-s-8.79999 5.09998 -11.9 5.09998zM708.1 737.8c8.10004 0 16.5 -3.20001 23.4 -9.59998c6.90002 -6.40002 12 -16.3 11.9 -28.3v-0.100037v-654.8c0 -9.3 -4.5 -17.3 -10.5 -23.5c-6 -6.2 -13.6 -10.9 -22.6 -10.9l-657.4 -0.3c-8 0 -16.3 2.6 -23.3 7.9
-c-7 5.3 -12.7 14.1 -12.7 24.8v658.4c0 8.59998 2.8 17.5 9 24.5s16 11.7 27.9 11.7zM466.8 454.7c0 13.4 -10.9 24.3 -24.3 24.3s-24.3 -10.9 -24.3 -24.3c0 -13.4 10.9 -24.3 24.3 -24.3s24.3 10.9 24.3 24.3zM345.2 600.3c0 15 -12.2 27.3 -27.2 27.3
-s-27.3 -12.3 -27.3 -27.3s12.3 -27.3 27.3 -27.3s27.2 12.3 27.2 27.3zM247 374.3l140.7 -0.699982c-5.5 28.6 -7 53.8 -49 90.1l-0.300018 58h3.60001c9.89999 -20.7 22.4 -40.1 29.8 -62.1c-1.59998 -5.30002 -6 -8.60001 0 -19.3l52.4 -48.3l-7.20001 -126.8
-c0 -5 16.4 -6.10001 16.4 0l5.80002 59.7l12.7 -0.100006l9.20001 -52.2c0 -5.80002 18.3 -4.30002 18.3 1.10001l-9.5 56.5h14.9l-10.6 53.4l30.3 -36.2c4.89999 2.20001 10.1 3.89999 8 17.9l-44.9 54.5c-9.39999 -1.19998 -15.9 -4.89999 -28.3 -3.59998
-c-25.9 3 -35.1 22.7 -52.6 34.1c15.8 9.20001 -0.700012 32.6 -14.6 59c-11.5 21.8 -17.5 44 -48.6 49.4l-16.2 -0.299988c-27 -10.3 -31.2 -26.5 -38.2 -42.1l0.199982 -46.5c3.30002 -9.19998 4 -19.3 10.6 -22.6c0.200012 0.299988 0.5 0.5 0.700012 0.799988
-c-25 -28.5 -28.7 -49.9 -33.6 -73.7zM321 366.8l0.700012 -97.3c0 -11.4 19.6 -11.8 19.6 0v97.3h-20.3zM292.9 366.8l0.700012 -79.9c0 -6.79999 19.6 -7.89999 19.6 0v79.9h-20.3zM619.3 445.3c0 -132.1 -107.2 -239.3 -239.3 -239.3c-132.1 0 -239.3 107.2 -239.3 239.3
-c0 132.1 107.2 239.4 239.3 239.4c132.1 0 239.3 -107.3 239.3 -239.4zM280.6 448c1.60001 1.79999 3.19998 3.5 4.79999 5.29999c-1.69998 -1.79999 -3.29999 -3.59998 -4.79999 -5.29999zM285.4 453.3c1.20001 1.30002 2.5 2.70001 3.80002 4l-0.100006 64.4l7 -1.79999
-v-56c-3.89999 -3.60001 -7.5 -7.19998 -10.7 -10.6z" />
-    <glyph glyph-name="uniE3EB" unicode="&#xe3eb;" horiz-adv-x="1000" 
-d="M304.6 138.4l0.199982 -41.7c-0.0999756 -11 9.20001 -16.9 20 -16.6c12.7 0 21.5 5.6 21.5 16.6l0.100006 41.7c0 8.60001 -9.69998 16.1 -21.6 16.1c-10.9 0 -20.5 -6.2 -20.2 -16.1zM555.6 171.5l-0.0999756 -17.1h-52l0.200012 -28.9h43.8v-15.1l-44 0.0999985
-l0.200012 -29.9h51.8v-16.3h-69v107.1zM383.5 171.7l16.5 -0.0999908l46.5 -75.2l0.100006 75.2l17 0.199997l0.100006 -107.5h-16.6l-46.4 73.6v-73.6h-17zM287.5 144.1c0 13.8 13.9 27.8 37.3 27.8c19.5 0 38.6 -13.1 38.6 -27.9l0.200012 -51.9
-c0 -13.5 -18.4 -29.8 -38.9 -29.8c-20.2 0 -37.1 17.1 -37.1 29.7zM708.1 737.8c8.10004 0 16.5 -3.20001 23.4 -9.59998c6.90002 -6.40002 12 -16.3 11.9 -28.3v-0.100037v-654.8c0 -9.3 -4.5 -17.3 -10.5 -23.5c-6 -6.2 -13.6 -10.9 -22.6 -10.9l-657.4 -0.3
-c-8 0 -16.3 2.6 -23.3 7.9c-7 5.3 -12.7 14.1 -12.7 24.8v658.4c0 8.59998 2.8 17.5 9 24.5s16 11.7 27.9 11.7zM345.2 600.3c0 15 -12.2 27.3 -27.2 27.3s-27.3 -12.3 -27.3 -27.3s12.3 -27.3 27.3 -27.3s27.2 12.3 27.2 27.3zM619.3 445.3
-c0 -132.1 -107.2 -239.2 -239.3 -239.2c-25.7 0 -50.5 4 -73.7 11.5l-46.3 -46.3h13.7l-0.100006 -13.8l-48 -77h48v-16.1h-69.1l0.100006 14.7l47.4 76.4h-7.89999l-128.2 -128.1l594.4 0.200001c2.20001 0 6.79999 2 10.4 5.7c3.59998 3.7 5.70001 8.5 5.70001 11.7v592.4
-l-118.6 -118.5c7.5 -23.2 11.5 -48 11.5 -73.6v0zM206.4 156.3l-128.7 -128.9h21.3l128.1 128.1l-20.7 -0.100006v0.900009zM243.1 171.4l50.7 50.7c-5.19998 2 -10.2 4.2 -15.2 6.5l-57.1 -57.2h21.6zM715.7 718.6c-2.79999 1.5 -5.60004 2.20001 -7.60004 2.20001h-10.1
-l-128.9 -128.8c3 -3.79999 5.80005 -7.70001 8.5 -11.7zM724.2 710.2l-139.9 -140.2c2.29999 -3.79999 4.5 -7.70001 6.60004 -11.6l135.5 135.7v5.80005v0v0.0999756c0 4.09998 -0.800049 7.5 -2.20001 10.2zM726.4 654.6v22.5l-129.8 -130
-c2.40002 -5.09998 4.60004 -10.4 6.70001 -15.7l120.5 120.3l0.100037 0.200012zM60.7 27.3l206.6 206.9c-3.89999 2.10001 -7.79999 4.40001 -11.6 6.7l-211.2 -211.7c2.9 -1.2 5.9 -1.9 8.4 -1.9h7.8zM35.3 37l210.1 210.5c-4.2 2.8 -8.09999 5.8 -12.1 8.89999
-l-199.4 -199.2v-14.2c0 -2.4 0.5 -4.3 1.4 -6zM33.9 74.1l190 189.9c-3.39999 3 -6.7 6 -10 9.10001l-180 -179.9v-19.1zM33.9 110.1l171.6 171.6c-40.2 42.8 -64.8 100.3 -64.8 163.6v0c0 132.1 107.2 239.4 239.3 239.4c63.3 0 120.9 -24.6 163.7 -64.8l100.9 100.9
-l-590.8 -0.200012c-7.8 0 -12.2 -2.5 -15.2 -5.89996c-3 -3.40002 -4.7 -8.29999 -4.7 -13.3v-591.3zM681 720.8h-20.3l0.5 -0.399963l-109 -109c3.20001 -3.30005 6.29999 -6.60004 9.29999 -10.1zM445 430.5c11.5 1.20001 20.6 10.2 21.7 21.7zM430.9 433.3l33 33.1
-c-2.39999 4.30002 -6 7.80002 -10.4 10l-32.7 -32.6c2.20001 -4.39999 5.80002 -8.09998 10.1 -10.5zM438.8 478.8c-10.5 -1.59998 -18.7 -9.89999 -20.3 -20.4zM280.6 448c-25 -28.5 -28.7 -49.9 -33.6 -73.7l50.9 -0.299988l64.9 65
-c-6.09998 7.70001 -13.9 15.9 -24.1 24.7l-0.300018 58h3.60001c9.89999 -20.7 22.4 -40.1 29.8 -62.1c-1.29999 -4.30002 -4.5 -7.30002 -2.39999 -14l22.8 22.8c-2.90002 11.2 -12 25.5 -20.1 40.9c-11.5 21.8 -17.5 44 -48.6 49.4l-16.2 -0.299988
-c-27 -10.3 -31.2 -26.5 -38.2 -42.1l0.199982 -46.5c3.30002 -9.19998 4 -19.3 10.6 -22.6c0.200012 0.299988 0.5 0.5 0.700012 0.799988zM280.6 448c1.60001 1.79999 3.19998 3.5 4.79999 5.29999c-1.69998 -1.79999 -3.29999 -3.59998 -4.79999 -5.29999zM285.4 453.3
-c1.20001 1.30002 2.5 2.70001 3.80002 4l-0.100006 64.4l7 -1.79999v-56c-3.89999 -3.60001 -7.5 -7.19998 -10.7 -10.6zM432.1 417.5l-17.1 -17l9.20001 -8.5l-0.100006 -0.700012l24.8 24.8c-2.79999 -0.300018 -6 -0.300018 -9.60001 0.100006
-c-2.59998 0.299988 -4.89999 0.699982 -7.19998 1.29999zM420.1 422.5c-4.30002 2.5 -8.10001 5.60001 -11.7 8.89999l-12.9 -12.9l10.7 -9.89999zM399.7 439.6c-3.30002 3.10001 -6.70001 6.19998 -10.4 8.89999l-12.7 -12.6l10.1 -9.29999zM486.1 397.3l-65.3 -65.3
-l-3.79999 -66.8c0 -5 16.4 -6.10001 16.4 0l5.80002 59.7l12.7 -0.100006l9.20001 -52.2c0 -5.80002 18.3 -4.30002 18.3 1.10001l-9.5 56.5h14.9l-10.6 53.4l30.3 -36.2c4.89999 2.20001 10.1 3.89999 8 17.9zM478.5 406.6l-10.1 12.1l-45.3 -45.4l-1.30002 -23.3z
-M385.1 387.4c-1.10001 5.60001 -2.30002 11.1 -4 16.7l-30.4 -30.3l20.6 -0.199982zM376.5 416.5c-1.79999 4.10001 -4 8.20001 -6.70001 12.5l-55.1 -55l19.2 -0.100006zM326.8 366.8h-5.89999l0.100006 -5.79999zM341.3 269.6v21.8l-19.6 -19.7v-2.20001
-c0 -6.10001 5.69998 -9.10001 10.9 -8.70001zM341.3 308.4v18.2l-19.9 -19.9l0.200012 -18.1zM341.3 343.6v20.8l-20.1 -20.2l0.0999756 -20.7zM307.6 366.8l-14.6 -14.5l0.200012 -19.1l20 20v13.6h-5.60001zM313.2 298.5l-15.8 -15.9
-c5.70001 -2.39999 15.8 -1.39999 15.8 4.29999v11.6zM313.2 315.4v20.9l-19.8 -19.9l0.200012 -20.7z" />
-    <glyph glyph-name="uniE3EC" unicode="&#xe3ec;" horiz-adv-x="1000" 
-d="M360 345l-16 -54c-3 -11 -4 -15 -4 -18c0 -5 3 -9 8 -9c6 0 10 1 16 21c0 0 7 22 17 54c25 -12 43 -37 43 -67c0 -41 -33 -74 -74 -74s-74 33 -74 74s33 74 74 74c4 0 7 -1 10 -1zM557 274h-19l47 123l19 -41c-28 -17 -47 -47 -47 -82zM612 337l29 -64l-63 1
-c0 27 13 50 34 63zM652 348c41 0 74 -33 74 -74s-33 -74 -74 -74c-34 0 -64 23 -72 55c25 0 56 -1 56 -1c26 0 29 1 30 10c0 2 -1 4 -6 15c0 0 -14 30 -30 66c7 2 14 3 22 3zM463 479c-38 0 -48 0 -55 -6c-8 -7 -14 -21 -23 -49l-18 -59c-5 1 -11 2 -17 2
-c-52 0 -95 -43 -95 -95s43 -95 95 -95s95 43 95 95c0 39 -24 72 -58 87c2 7 5 15 7 22c52 -55 92 -103 92 -103c18 -21 26 -23 50 -23h23c9 -43 47 -76 93 -76c52 0 95 43 95 95s-43 95 -95 95c-11 0 -20 -2 -30 -5c-8 17 -17 36 -27 59l7 18l22 1l-1 18h-83
-c-1 -2 -2 -4 -2 -5c0 -5 12 -7 42 -13l-7 -18l-166 -1c5 17 8 26 14 31c7 5 18 6 41 6zM812 331c0 -172 -139 -311 -311 -311s-311 139 -311 311s139 311 311 311s311 -139 311 -311zM926 726c25 0 46 -21 46 -49v-852c0 -23 -21 -44 -43 -44l-854 -1c-24 0 -47 18 -47 43
-v856c0 26 20 47 48 47h850zM926 704h-850c-17 0 -26 -10 -26 -25v-856c0 -12 14 -21 25 -21l854 1c15 0 20 10 21 40v834c0 15 -11 27 -24 27zM566 404h-165l117 -128zM192 -65c11 0 22 -7 22 -17v-50h-15v4c-1 -3 -3 -4 -5 -4h-18c-18 0 -22 40 1 40h22v8c0 2 -2 4 -5 4
-h-14c-2 0 -5 -2 -5 -4h-2l-9 9c0 4 11 10 18 10h10zM180 -104c-7 0 -7 -15 0 -15h14c2 0 4 3 5 5v10h-19zM438 -66c11 0 22 -6 22 -16v-50h-15v4c-1 -3 -3 -4 -5 -4h-18c-18 0 -22 40 1 40h22v7c0 2 -2 5 -5 5h-14c-2 0 -5 -2 -5 -4h-2l-9 9c0 4 11 9 18 9h10zM426 -104
-c-7 0 -7 -15 0 -15h14c2 0 4 3 5 5v10h-19zM739 -65c11 0 22 -7 22 -17v-50h-14v4c-1 -3 -4 -4 -6 -4h-18c-18 0 -22 40 1 40h22v8c0 2 -2 4 -5 4h-14c-2 0 -5 -2 -5 -4h-2l-9 9c0 4 11 10 18 10h10zM728 -104c-7 0 -7 -15 0 -15h13c2 0 4 3 5 5v10h-18zM893 -113l11 -9
-c-5 -5 -41 -25 -54 9v27c0 15 45 37 55 -3v-3v-13h-41c4 -16 20 -15 29 -8zM780 -132l1 79c0 19 52 18 52 0v-16c0 -2 -5 -8 -6 -8c1 0 6 -4 6 -7v-36c0 -3 -10 -12 -13 -12h-14v13h9c2 0 5 3 5 6v25c0 2 -2 4 -4 4h-11v14h9c18 18 -20 21 -20 9v-71h-14zM553 -111
-c4 -2 8 -4 12 -7c1 -1 9 -1 14 0l4 1c4 1 5 11 0 11c-7 0 -14 1 -21 2c-7 2 -12 5 -13 13v5c0 3 -1 6 0 9c2 6 10 11 24 12c11 1 20 -3 27 -10l-9 -10c-4 2 -10 7 -18 7c-6 0 -10 -4 -10 -8c0 -3 3 -5 5 -5h17c7 0 12 -7 15 -15c1 -3 1 -8 0 -11c-3 -9 -10 -14 -22 -15
-c-4 0 -9 -1 -14 0c-11 1 -15 7 -20 13zM632 -47l-1 -19h10v-12h-9v-38c0 -1 0 -2 2 -2h7v-14h-12c-3 1 -12 8 -12 14v40h-7v12h7v19h15zM96 -133v92h60v-13h-45v-25h38v-15h-38v-38zM688 -65c7 0 13 -3 15 -6l-10 -12c-8 7 -15 3 -21 -6v-43h-15v66h15v-5c5 4 11 6 16 6z
-M231 -41h15v-29c4 2 8 4 14 4c12 0 23 -5 24 -15v-51h-13v41c-1 8 -6 12 -12 12s-12 -4 -13 -10v-43h-15v91zM333 -66c7 0 12 -2 14 -5l-10 -13c-3 2 -5 4 -8 4c-5 0 -9 -4 -13 -10v-42h-15v65h15v-5c5 4 12 6 17 6zM387 -66c7 0 13 -2 15 -5l-10 -13c-3 3 -5 4 -8 4
-c-5 0 -9 -4 -13 -10v-42h-15v65h15v-5c5 4 11 6 16 6zM515 -40h13v-92h-12v5c0 -3 -9 -7 -13 -7h-9c-6 0 -19 10 -19 18v33c0 9 11 18 20 18h9c5 0 11 -6 11 -8v33zM488 -111c0 -3 4 -7 7 -7h8c4 0 11 6 11 10v17c0 3 -5 11 -10 11h-7c-3 0 -9 -6 -9 -9v-22zM890 -92
-c-3 20 -26 12 -25 0h25z" />
-    <glyph glyph-name="uniE3ED" unicode="&#xe3ed;" horiz-adv-x="1000" 
-d="M652.7 728.9l8.5 -8.5l-114.1 -114c3.30005 -3.20001 6.5 -6.40002 9.60004 -9.80005l133.7 133.6l8.5 -8.5l-134.2 -134.2c3.09998 -3.70001 5.89996 -7.40002 8.79999 -11.3l143 143.2l8.40002 -8.5l-144.4 -144.6c2.40002 -3.70001 4.90002 -7.5 7.09998 -11.3
-l146.5 146.8l8.5 -8.59998l-149 -149.1c2.60004 -5 5 -10 7.20001 -15.2l123 122.8l0.100037 0.200012l5 5.29999l8.79999 -8.10004l-5.10004 -5.5l-0.0999756 -0.0999756l-0.0999756 -0.0999756l-126.7 -126.7c9.5 -25.7 14.6 -53.5 14.6 -82.5
-c0 -132.1 -107.2 -239.3 -239.3 -239.3c-29.1 0 -56.9 5.20001 -82.7 14.7l-86.9 -86.8c1.40001 -1.60001 2.3 -3.4 2.70001 -5.4v-39.5h-10.1v31.7c-0.100006 1.8 -0.5 3.4 -1.2 4.6l-18.2 -18.2v-18.1h-11.6v6.6l-66.8 -66.8l-8.39999 8.5l51.5 51.5h-0.5v3.5
-c-0.600006 -2.1 -2.8 -3.5 -4.40001 -3.5h-13.9c-0.800003 0 -1.60001 0.100006 -2.3 0.300003l-62.5 -62.7l-8.5 8.5l62.8 62.9c-3.2 9.2 -0.300003 22 11.2 22h10.7l6.70001 6.7c-0.5 1.3 -2 2.4 -3.90001 2.4l-10.7 0.0999985c-0.399994 0 -0.899994 -0.200005 -1.5 -0.5
-l-2.3 -2.3c0 -0.0999985 -0.0999908 -0.299995 -0.0999908 -0.400002h-0.300003l-89.1 -89.3l-8.5 8.5l43.3 43.4l-6.5 -0.200005v15.1l-35.5 -35.4l-8.4 8.4l43.9 44l0.0999985 19.1l-36 -36l-8.5 8.5l44.5 44.5v2.7h2.8l128.8 128.9c-36.7 42.1 -59 97.1 -59 157.3
-c0 132.1 107.2 239.3 239.3 239.3c60.2 0 115.2 -22.3 157.3 -59zM371 94.3c0 -2.4 3.39999 -6.10001 5.39999 -6.10001h6.10001c2.70001 0 8 4.8 8 8v13.4c0.100006 2.3 -3.39999 7.9 -7.5 7.9h-5.39999c-2.10001 0 -6.60001 -3.9 -6.60001 -6.6v-16.6zM391.6 148.4h10.3
-v-70.9h-10v4.5c0 -2.4 -6 -5.8 -9.39999 -5.9h-6.79999c-4.70001 0 -14.7 8.2 -14.7 14.1v25.5c0 7 8.60001 13.4 15.4 13.4h6.60001c4 0 8.79999 -4.50001 8.79999 -5.8zM293.4 128.5c5.39999 0 10.1 -1.9 11.4 -4l-7.69998 -9.6c-6.39999 5.5 -12.1 2.1 -16.3 -4.6v-32.7
-h-11.4l-0.100006 50.6h11.5v-4.1c3.90002 3.2 8.5 4.4 12.6 4.4zM251.2 128.5c5.40001 0 10.2 -1.9 11.5 -4l-7.80002 -9.6c-6.39999 5.5 -12.1 2.1 -16.3 -4.6v-32.7h-11.4v50.6h11.4v-4.1c3.89999 3.2 8.5 4.4 12.6 4.4zM524.7 129c5.39996 0 10.1 -1.8 11.4 -3.9
-l-7.69995 -9.6c-6.40002 5.5 -12.1 2.1 -16.3 -4.6v-32.7h-11.4l-0.100006 50.6h11.5v-4.2c3.90002 3.2 8.5 4.4 12.6 4.4zM481.2 143.1l-0.100006 -14.3l7.19998 -0.100006v-9.2h-7v-29.5c0.300018 -0.900002 0.700012 -1.6 2.10001 -1.4l5 -0.199997v-10.3
-l-9.39999 0.0999985c-2.39999 0.600006 -9 5.60001 -9 10.4v31h-5.39999l0.100006 9.00001h5.29999v14.5h11.2zM421 93.9c2.89999 -1.7 5.89999 -3.2 8.79999 -5.3c1.10001 -0.599998 7.20001 -0.799995 10.7 0.0999985l3.10001 1c3 1 3.89999 7.7 -0.100006 8
-c-5.20001 0 -10.3 0.600006 -15.5 1.4c-5.20001 1.5 -9.5 4.1 -10.6 9.9c-0.199982 3.7 -0.699982 7.3 0.100006 11.1c1.79999 4.2 5.10001 7.9 14.3 9.7c2.60001 0.300003 5.10001 0.199997 8.20001 -0.199997c6.39999 -1.10001 12.4 -2.60001 16.6 -7.60001l-7 -7.8
-c-2.5 1.5 -5.30002 3 -9.80002 4.10001c-2.59998 0.5 -5.19998 0.599998 -7.69998 0c-5.89999 -2.10001 -3.20001 -9.3 0 -9l13 -0.100006c4.89999 -1.39999 10 -5.3 12.1 -11.5c0.399994 -2.6 0.599976 -5.3 -0.100006 -7.89999c-2.20001 -6.8 -8.10001 -11.2 -17.1 -11.6
-c-3.39999 -0.299995 -6.79999 -0.399994 -10.4 0c-8.39999 1 -11.7 5 -15.4 9.5zM595.7 77.6l0.299988 61.3c0 14.9 40.3 13.7 40.3 -0.299988v-12.2c0 -1.4 -4 -6 -5 -6c1 0 5 -3.1 5 -5.4l-0.0999756 -27.9c0 -2.5 -8 -9.5 -10.3 -9.5h-10.3v10.4h7
-c1.40002 0 3.5 2.3 3.5 4.6l-0.299988 18.8c0 1.5 -1.5 3.7 -2.70001 3.7l-8.5 -0.0999985v10.3l7.20001 0.0999985c14.2 14.2 -15.3 15.9 -15.3 6.9l-0.0999756 -54.6zM682.1 92.3l8.60004 -7.10001c-3.79999 -3.6 -31 -19.4 -41.2 7l-0.0999756 21.3
-c0 11.2 34.4 27.9 42.1 -2.7l0.0999756 -2.2h-11.2c-2.5 15 -20.3 9.6 -19.8 0.0999985l31 -0.0999985h0.100037l-0.200012 -10.2h-31.8c3 -12.6 15.6 -11.7 22.4 -6.1zM555 99.4c-5.29999 0 -5.79999 -11.2 0 -11.2h10.3c1.5 0 3.70001 1.8 4.29999 3.5v7.7h-14.6z
-M564.1 129.1c8.20001 0 16.8 -5.2 16.8 -12.5v-38.9h-11.3v3.5c-0.599976 -2.1 -2.79999 -3.5 -4.39996 -3.5h-13.9c-14.2 0 -17.2 31 0.700012 31h17.6v5.8c0 1.6 -1.79999 3.4 -4.09998 3.3l-10.7 0.0999985c-1.20001 0 -3.79999 -1.8 -3.79999 -3.2h-1.59998l-6.70001 7
-c0 3.10001 7.79999 7.3 13.2 7.3c2.5 0 5.69995 0.100006 8.19995 0.100006zM323.4 99.2c-5.29999 0 -5.79999 -11.2 0 -11.2h10.3c1.5 0 3.69998 1.8 4.29999 3.5v7.7h-14.6zM332.5 128.9c8.20001 0 16.8 -5.2 16.8 -12.5v-38.9h-11.3v3.5
-c-0.600006 -2.1 -2.79999 -3.5 -4.39999 -3.5h-13.9c-14.2 0 -17.2 31 0.699982 31h17.6v5.9c0 1.6 -1.79999 3.3 -4.10001 3.2l-10.7 0.0999985c-1.20001 0 -3.80002 -1.8 -3.80002 -3.2h-1.60001l-6.69998 7.1c0 3.1 7.79999 7.3 13.2 7.3h8.20001zM351.3 547.9
-c-53.6 -0.5 -44.6 5.59998 -73.4 -87.1v-0.0999756c-4.29999 0.799988 -8.79999 1.29999 -13.4 1.29999c-40.3 0 -73.2 -32.9 -73.2 -73.2c0 -32.7 21.8 -60.6 51.5 -69.9l13.4 13.5c-27.6 4 -48.7 27.7 -48.7 56.4c0 31.6 25.4 57 57 57
-c2.89999 0 5.79999 -0.199982 8.5 -0.599976c-18.2 -57.3 -16.1 -50.8 -16.2 -55.6c-0.0999756 -4 3.20001 -7.20001 7.30002 -7.5c7.39999 0.699982 5.69998 -0.5 24.2 58.5c17.2 -7.89999 29.8 -24.1 32.6 -43.5l13.5 13.5c-6.39999 20.5 -21.6 37.1 -41.2 45.5
-c1.69998 5.19998 3.5 10.7 5.39999 16.7c20.3 -21.4 35.4 -38.1 46.8 -51.2l11.6 11.6l-51.3 55.8l107.3 0.200012l16.1 16l-120.8 -0.200012c8.60001 30.2 3.70001 28.3 42.6 28.2zM708.1 737.8c8.10004 0 16.5 -3.20001 23.4 -9.59998
-c6.90002 -6.40002 12 -16.3 11.9 -28.3v-0.100037v-654.8c0 -9.3 -4.5 -17.3 -10.5 -23.5c-6 -6.2 -13.6 -10.9 -22.6 -10.9l-657.4 -0.3c-8 0 -16.3 2.6 -23.3 7.9c-7 5.3 -12.6 14.1 -12.6 24.8v658.4c0 8.59998 2.7 17.5 8.9 24.5s16 11.7 27.9 11.7zM45.8 750.7
-c-19.3 0 -42 -23.9 -42 -43v-672.4c0 -12.6 27.7 -38 44.6 -38h662.3c20.8 0 46.9 28.1 46.9 45.7v663.1c0 19.2 -27 44.6 -44.3 44.6h-667.5zM173 101.4v21.4l-12.9 -13v-21.4zM173 139.8v8h8l79.5 79.6c-3.79999 2.20001 -7.5 4.60001 -11.2 7l-105.1 -105.3
-c4.90001 -0.200012 9.8 -2.2 12.8 -5.40001zM188 116.4c-0.800003 -0.599998 -1.3 -1.2 -1.89999 -2zM200.1 128.5l86.1 85.9c-5 2.20001 -9.90002 4.5 -14.7 7l-86.9 -87v-9.09999c2.2 1.39999 4.89999 2.39999 7.59999 2.89999c2.60001 0.5 5.3 0.600006 7.90001 0.300003
-zM80.5 103.7v-21.5l24.7 24.8h-21.4zM95.1 118.3h15v-6.4l129.2 129.5c-4 3 -8 6 -11.8 9.20001l-112.4 -112.3v-0.699997h-0.699997zM80.5 120.6l17 17l-17.1 0.0999908zM108 148.2l110.5 110.4c-3.3 3.10001 -6.60001 6.29999 -9.7 9.5l-119.9 -120zM148.8 98.5
-l-10.3 -10.3h6c1.5 0 3.7 1.8 4.3 3.5v6.8zM440.6 516.8l16.7 16.7h-46.8c-5.70001 -7.79999 2.29999 -7.70001 31 -14.1zM474.3 533.5l-14.8 -14.7l15.9 0.299988l-0.699982 14.4h-0.400024zM457.3 516.5l-28.4 -28.4l-11.4 -30.7l39.3 39.3
-c-1.19998 2.69998 -2.39999 5.5 -3.69998 8.29999zM473.7 459.2l-12.4 -12.4l4.10001 -9.29999c3.20001 2.10001 6.60001 4 10.2 5.39999l3.79999 3.70001c-1.79999 3.89999 -3.69998 8.10001 -5.69998 12.6zM473.7 459.2l-0.100006 0.199982
-c-5.20001 -1.79999 -10.2 -4.10001 -14.8 -7l2.5 -5.60001l-33.8 -33.8c-2.29999 -6.89999 -3.60001 -14.3 -3.70001 -22l20.3 20.3c4.29999 10.8 11.8 19.9 21.3 26.2l1.60001 -3.29999l8.60001 8.69998c1.5 0.600006 3.10001 1.20001 4.69998 1.70001
-c-0.299988 0.699982 -0.599976 1.29999 -0.899994 2l16.5 16.6c-7.69998 -0.100006 -15.1 -1.5 -22 -3.80002zM468.4 470.9c-2 4.5 -4.10001 9.20001 -6.29999 14.1l-12.5 -12.4l6.39999 -14.1zM496.8 408l-12.4 -12.4l2.20001 -5h-7.20001l-15.5 -15.5
-c38.7 -0.5 42.7 -1.5 43.4 7.29999c-0.0999756 2.10001 -0.699982 3.80002 -10.5 25.6zM491.6 419.7c-2 4.5 -4.30002 9.5 -6.89999 15.2l-12.5 -12.4l6.89999 -15.2zM447.1 375.3l15.4 15.4h-22l-0.5 -0.5v0.5l-16.2 0.0999756v-0.799988c0 -5 0.5 -9.79999 1.5 -14.5
-l-0.299988 -0.299988h0.299988c1.20001 -5.70001 3.10001 -11.2 5.5 -16.3l12.3 12.4c-0.5 1.30002 -0.800018 2.60001 -1.20001 4h5.20001zM408.3 375.4l15.3 15.4h-13.3l3 7.90002l-22.7 -22.7c4.19998 -0.899994 9.5 -0.700012 17.7 -0.600006zM379.9 382.2l12.4 12.5
-l-9.89999 10.7l-12.4 -12.4c4.10001 -4.70001 7.20001 -8.29999 9.89999 -10.8zM362.1 402.1l12.2 12.2l-9.19998 10l-11.8 -11.8c3.30002 -3.79999 6.20001 -7.29999 8.80002 -10.4zM423.8 426.2l12.6 33.2l-29 -29l-12.2 -32.8zM440 390.2l-14.7 -14.7v-0.299988
-c5.90002 0.0999756 11.5 0.0999756 16.6 0.0999756c-1.19998 4.70001 -1.89999 9.60001 -1.89999 14.7v0.200012zM496.7 447h0.299988c6.60001 0 12.9 -1.10001 18.8 -3.10001l12.3 12.3c-5.29999 2.5 -10.9 4.29999 -16.7 5.5zM448.6 359.8l-11.6 -11.6
-c13.2 -18.9 35.2 -31.4 60 -31.4c40.3 0 73.2 32.9 73.2 73.2c0 24.8 -12.5 46.8 -31.4 60l-11.6 -11.6c16.1 -10.1 26.8 -27.9 26.8 -48.4c0 -31.6 -25.4 -57 -57 -57c-20.5 0 -38.4 10.7 -48.4 26.8zM320.9 380.1c-3.69998 -24.6 -23.1 -44 -47.7 -47.7l-16.4 -16.4
-c2.5 -0.299988 5.10001 -0.399994 7.70001 -0.399994c4.10001 0 8.20001 0.299988 12.1 1l60.1 60.1c0.699982 3.89999 1 8 1 12.1c0 2.60001 -0.100006 5.20001 -0.400024 7.70001zM273 445.2c5.39999 -0.800018 10.5 -2.40002 15.3 -4.60001
-c1.5 4.79999 3.10001 9.89999 4.90002 15.5c-4.90002 2.10001 -10 3.60001 -15.3 4.60001c-1.79999 -5.70001 -3.39999 -10.8 -4.89999 -15.5zM304.4 327.5c8.5 5.60001 15.8 12.9 21.4 21.4z" />
-    <glyph glyph-name="uniE3F0" unicode="&#xe3f0;" horiz-adv-x="1070" 
-d="M715 168v-29h-330l49 -42l-46 -1l-64 57l67 55l47 -1l-53 -39h330zM127 590c-9 0 -23 -11 -23 -29v-576c0 -18 14 -29 23 -29h816c9 0 23 11 23 29v576c0 19 -14 29 -23 29h-816zM943 614c29 0 47 -24 47 -53v-576c0 -30 -22 -53 -47 -53h-816c-25 0 -47 23 -47 53v576
-c0 30 22 53 47 53h816zM392 421c-4 1 -8 1 -12 1c-44 0 -79 -36 -79 -80s35 -80 79 -80s80 36 80 80c0 32 -20 59 -47 72c-11 -36 -21 -66 -21 -66c-4 -12 -5 -15 -12 -15c-6 0 -11 4 -11 10c0 4 0 8 4 20zM652 431l-19 44l-50 -131h20c0 37 19 69 49 87zM662 411
-c-22 -14 -37 -39 -37 -67h67zM705 423c-8 0 -16 -1 -23 -3c19 -42 30 -67 30 -67c7 -16 8 -18 8 -22c0 -6 -4 -8 -27 -8h-65c9 -34 40 -59 77 -59c44 0 80 36 80 80s-36 79 -80 79zM501 564v-20h-27c-17 -1 -22 -4 -26 -16l-7 -23h180l7 20c-31 6 -45 9 -46 13v7h93v-21h-24
-l-7 -20c10 -23 19 -44 28 -63c10 4 22 5 33 5c56 0 102 -46 102 -102s-46 -103 -102 -103c-49 0 -90 36 -100 82h-22c-24 0 -30 1 -43 14c0 0 -39 46 -112 122c-2 -8 -5 -15 -8 -23c36 -16 63 -52 63 -94c0 -56 -47 -102 -103 -102s-102 46 -102 102s46 102 102 102
-c6 0 13 0 19 -1l27 88c9 30 21 32 49 33h26zM436 483l125 -136l50 136h-175zM344 26v29h330l-49 42l46 1l64 -57l-67 -55l-47 1l53 39h-330z" />
-    <glyph glyph-name="uniE3F1" unicode="&#xe3f1;" horiz-adv-x="1070" 
-d="M678 -3h-31l2 161l-53 -50v36l67 64l65 -67v-37l-50 54v-161zM431 197l-1 -161l50 54v-38l-65 -66l-66 64v36l52 -50l-2 160zM127 590c-9 0 -23 -11 -23 -29v-576c0 -18 14 -29 23 -29h816c9 0 23 11 23 29v576c0 19 -14 29 -23 29h-816zM943 614c29.4 0 47 -24.1 47 -53
-v-576c0 -30 -22 -53 -47 -53h-816c-25 0 -47 23 -47 53v576c0 30 22 53 47 53h816zM392 421c-4 1 -8 1 -12 1c-44 0 -79 -36 -79 -80s35 -80 79 -80s80 36 80 80c0 32 -20 59 -47 72c-11 -36 -21 -66 -21 -66c-4 -12 -5 -15 -12 -15c-6 0 -11 4 -11 10c0 4 0 8 4 20z
-M652 431l-19 44l-50 -131h20c0 37 19 69 49 87zM662 411c-22 -14 -37 -39 -37 -67h67zM705 423c-8 0 -16 -1 -23 -3c19 -42 30 -67 30 -67c7 -16 8 -18 8 -22c0 -6 -4 -8 -27 -8h-65c9 -34 40 -59 77 -59c44 0 80 36 80 80s-36 79 -80 79zM501 564v-20h-27
-c-17 -1 -22.3 -3.90002 -26 -16l-7 -23h180l7 20c-31 6 -45 9 -46 13v7h93v-21h-24l-7 -20c10 -23 19 -44 28 -63c10 4 22 5 33 5c56 0 102 -46 102 -102s-46 -103 -102 -103c-49 0 -90 36 -100 82h-22c-24 0 -30 1 -43 14c0 0 -39 46 -112 122c-2 -8 -5 -15 -8 -23
-c36 -16 63 -52 63 -94c0 -56 -47 -102 -103 -102s-102 46 -102 102s46 102 102 102c6 0 13 0 19 -1l27 88c9 30 21 32 49 33h26zM436 483l125 -136l50 136h-175z" />
-    <glyph glyph-name="uniE3F2" unicode="&#xe3f2;" horiz-adv-x="1070" 
-d="M639 130v21h20v-21h-20zM639 8v102h20v-102h-20zM553 68h43c0 13.6 -8.59998 24 -21 24c-12.9 0 -22 -9.9 -22 -24zM616 51h-63c0 -15.5 9.09998 -25 24 -25c8 0 17 3 23 10l14 -13c-7.90002 -9.5 -20.6 -16 -36 -16c-28.9 0 -46 16.7 -46 51c0 32.5 15 53 43 53
-c23.4 0 41 -18.7 41 -43v-17zM462 8v102h20v-11h1c6 8 14 12 25 12c7 0 13 -3 20 -8l-15 -18c-4 3 -7 5 -12 5s-9 -2 -13 -5s-6 -9 -6 -16v-61h-20zM407 8v86h-13v16h13v13c0 17.7 10.9 28 28 28h23v-19h-21c-6 0 -9 -3 -9 -9v-13h18v-16h-18v-86h-21zM127 590
-c-9 0 -23 -11 -23 -29v-576c0 -18 14 -29 23 -29h816c9 0 23 11 23 29v576c0 19 -14 29 -23 29h-816zM943 614c29.4 0 47 -24.1 47 -53v-576c0 -30 -22 -53 -47 -53h-816c-25 0 -47 23 -47 53v576c0 30 22 53 47 53h816zM392 381c-4 1 -8 1 -12 1c-44 0 -79 -36 -79 -80
-s35 -80 79 -80s80 36 80 80c0 32 -20 59 -47 72c-11 -36 -21 -66 -21 -66c-4 -12 -5 -15 -12 -15c-6 0 -11 4 -11 10c0 4 0 8 4 20zM652 391l-19 44l-50 -131h20c0 37 19 69 49 87zM662 371c-22 -14 -37 -39 -37 -67h67zM705 383c-8 0 -16 -1 -23 -3c19 -42 30 -67 30 -67
-c7 -16 8 -18 8 -22c0 -6 -4 -8 -27 -8h-65c9 -34 40 -59 77 -59c44 0 80 36 80 80s-36 79 -80 79zM501 524v-20h-27c-17 -1 -22.3 -3.89999 -26 -16l-7 -23h180l7 20c-31 6 -45 9 -46 13v7h93v-21h-24l-7 -20c10 -23 19 -44 28 -63c10 4 22 5 33 5c56 0 102 -46 102 -102
-s-46 -103 -102 -103c-49 0 -90 36 -100 82h-22c-24 0 -30 1 -43 14c0 0 -39 46 -112 122c-2 -8 -5 -15 -8 -23c36 -16 63 -52 63 -94c0 -56 -47 -102 -103 -102s-102 46 -102 102s46 102 102 102c6 0 13 0 19 -1l27 88c9 30 21 32 49 33h26zM436 443l125 -136l50 136h-175z
-" />
-    <glyph glyph-name="uniE3F3" unicode="&#xe3f3;" horiz-adv-x="1033" 
-d="M511 708c259 0 470 -211 470 -470s-211 -470 -470 -470s-469 211 -469 470s210 470 469 470zM152 312v-150h719v150h-719z" />
-    <glyph glyph-name="uni23AB" unicode="&#x23ab;" horiz-adv-x="400" 
-d="M291 0h-80v146c0 156 -115 241 -199 261c-6 6 -6 18 0 24c185 -7 279 -108 279 -293v-138z" />
-    <glyph glyph-name="uni23AC" unicode="&#x23ac;" horiz-adv-x="400" 
-d="M283 444v5c-49 21 -100 76 -100 167c0 88.1 28 110 28 219v58h80v-68c0 -95 -25 -148.9 -25 -225c0 -50 23 -139 122 -146v-15c-99 -7 -122 -96 -122 -146c0 -76.1 25 -130 25 -225v-68h-80v58c0 109 -28 130.9 -28 219c0 91 51 146 100 167z" />
-    <glyph glyph-name="uni23AD" unicode="&#x23ad;" horiz-adv-x="400" 
-d="M291 431v-138c0 -185 -94 -286 -279 -293c-6 6 -6 18 0 24c84 20 199 105 199 261v146h80z" />
-    <glyph glyph-name="uni27E8" unicode="&#x27e8;" horiz-adv-x="351" 
-d="M131 267l-3 -4l3 -4c60 -92 160 -270 210 -400c-4 -10 -13 -12 -22 -12c-66 138 -175 291 -250 378l-33 38l33 38c75 87 184 240 250 378c10 0 18 -2 22 -12c-50 -130 -150 -308 -210 -400z" />
-    <glyph glyph-name="uni27E9" unicode="&#x27e9;" horiz-adv-x="351" 
-d="M220 258l3 4l-3 4c-60 92 -160 270 -210 400c4 10 13 12 22 12c66 -138 175 -291 250 -378l33 -38l-33 -38c-75 -87 -184 -240 -250 -378c-10 0 -18 2 -22 12c50 130 150 308 210 400z" />
-    <glyph glyph-name="uni2C6E" unicode="&#x2c6e;" horiz-adv-x="839" 
-d="M738.1 121c10.1 -142.6 -7.39996 -212.7 -51.1 -250c-41 -35 -72 -43 -117 -43c-22 0 -75 18 -75 54c0 22 30 43 44 43c31 0 35.3 -20.8 45 -34c7.29999 -10 21 -18 35 -18c58 0 50.3 136 43.7 243l-25.7 418h-2l-225 -529c-4 -8 -8 -15 -14 -15s-12.2 7.9 -15 15
-l-207 519h-2l-38 -401c-5.39999 -56.3 0 -87 66 -92c6 -6 6 -27 0 -33c-30 1 -70 2 -94 2s-56 -1 -86 -2c-6 6 -6 27 0 33c57 5 69 30.1 74.9 90l40.1 412c7 75 1 77 -68 81c-6 6 -6 27 0 33l145 -2l205 -508c3.10001 -7.60001 6 -13 8 -13s5 4 9 14l212 507l131 2
-c6 -6 6 -27 0 -33c-68 -4 -72.5 -18 -68.7 -72z" />
-    <glyph glyph-name="uni2C6F" unicode="&#x2c6f;" horiz-adv-x="695" 
-d="M429 373h-177l94 -272h6l102.2 258.7c3.79999 10.3 -3.20001 13.3 -25.2 13.3zM537 577c15.6 41.1 -31.4 45.4 -69 48c-6 6 -6 27 0 33c37 -1 87 -2 128 -2c30.3 0 63 1 89 2c6 -6 6 -27 0 -33c-43.5 -3 -74 -9 -100 -71l-227 -536c-13 0 -40 -11 -55 -20l-206 572
-c-17.4 48.2 -51.2 51.5 -90 55c-6 6 -6 27 0 33c35 -1 73 -2 114 -2c39 0 94 1 131 2c6 -6 6 -27 0 -33c-47.6 -3.40002 -85.8 -6.5 -74 -41l58 -169h211c24 0 30 4 35 17z" />
-    <hkern g1="a.sc,agrave.sc,aacute.sc,acircumflex.sc,atilde.sc,adieresis.sc,aring.sc,abreve.sc,aogonek.sc"
-	g2="u.sc,ugrave.sc,uacute.sc,ucircumflex.sc,udieresis.sc,uring.sc,uhungarumlaut.sc"
-	k="50" />
-    <hkern g1="a.sc,agrave.sc,aacute.sc,acircumflex.sc,atilde.sc,adieresis.sc,aring.sc,abreve.sc,aogonek.sc"
-	g2="t.sc,v.sc,w.sc,y.sc,yacute.sc,ydieresis.sc"
-	k="50" />
-    <hkern g1="a.sc,agrave.sc,aacute.sc,acircumflex.sc,atilde.sc,adieresis.sc,aring.sc,abreve.sc,aogonek.sc"
-	g2="c.sc,g.sc,o.sc,q.sc,ccedilla.sc"
-	k="15" />
-    <hkern g1="a.sc,agrave.sc,aacute.sc,acircumflex.sc,atilde.sc,adieresis.sc,aring.sc,abreve.sc,aogonek.sc"
-	g2="hyphen.sc,guillemotleft.sc,guillemotright.sc,guilsinglleft.sc,guilsinglright.sc"
-	k="20" />
-    <hkern g1="u.sc,ugrave.sc,uacute.sc,ucircumflex.sc,udieresis.sc,uring.sc,uhungarumlaut.sc,f.sc,Q_u.sc"
-	g2="a.sc,agrave.sc,aacute.sc,acircumflex.sc,atilde.sc,adieresis.sc,aring.sc,abreve.sc,aogonek.sc"
-	k="35" />
-    <hkern g1="k.sc,x.sc"
-	g2="c.sc,g.sc,o.sc,q.sc,ccedilla.sc"
-	k="35" />
-    <hkern g1="v.sc,w.sc,y.sc,yacute.sc,ydieresis.sc,t.sc"
-	g2="a.sc,agrave.sc,aacute.sc,acircumflex.sc,atilde.sc,adieresis.sc,aring.sc,abreve.sc,aogonek.sc"
-	k="70" />
-    <hkern g1="v.sc,w.sc,y.sc,yacute.sc,ydieresis.sc,t.sc"
-	g2="c.sc,g.sc,o.sc,q.sc,ccedilla.sc"
-	k="25" />
-    <hkern g1="v.sc,w.sc,y.sc,yacute.sc,ydieresis.sc,t.sc"
-	g2="hyphen.sc,guillemotleft.sc,guillemotright.sc,guilsinglleft.sc,guilsinglright.sc"
-	k="25" />
-    <hkern g1="d.sc,o.sc,q.sc,ograve.sc,oacute.sc,ocircumflex.sc,otilde.sc,odieresis.sc,oslash.sc"
-	g2="a.sc,agrave.sc,aacute.sc,acircumflex.sc,atilde.sc,adieresis.sc,aring.sc,abreve.sc,aogonek.sc"
-	k="10" />
-    <hkern g1="d.sc,o.sc,q.sc,ograve.sc,oacute.sc,ocircumflex.sc,otilde.sc,odieresis.sc,oslash.sc"
-	g2="t.sc,v.sc,w.sc,y.sc,yacute.sc,ydieresis.sc"
-	k="10" />
-    <hkern g1="d.sc,o.sc,q.sc,ograve.sc,oacute.sc,ocircumflex.sc,otilde.sc,odieresis.sc,oslash.sc"
-	g2="x.sc"
-	k="25" />
-    <hkern g1="d.sc,o.sc,q.sc,ograve.sc,oacute.sc,ocircumflex.sc,otilde.sc,odieresis.sc,oslash.sc"
-	g2="hyphen.sc,guillemotleft.sc,guillemotright.sc,guilsinglleft.sc,guilsinglright.sc"
-	k="-20" />
-    <hkern g1="l.sc"
-	g2="t.sc,v.sc,w.sc,y.sc,yacute.sc,ydieresis.sc"
-	k="25" />
-    <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Abreve"
-	g2="u.sc,ugrave.sc,uacute.sc,ucircumflex.sc,udieresis.sc,uring.sc,uhungarumlaut.sc"
-	k="35" />
-    <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Abreve"
-	g2="t.sc,v.sc,w.sc,y.sc,yacute.sc,ydieresis.sc"
-	k="60" />
-    <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Abreve"
-	g2="c.sc,g.sc,o.sc,q.sc,ccedilla.sc"
-	k="22" />
-    <hkern g1="V,W,Y,Ydieresis"
-	g2="b.sc,d.sc,f.sc,h.sc,i.sc,k.sc,l.sc,n.sc,p.sc,r.sc"
-	k="20" />
-    <hkern g1="V,W,Y,Ydieresis"
-	g2="a.sc,agrave.sc,aacute.sc,acircumflex.sc,atilde.sc,adieresis.sc,aring.sc,abreve.sc,aogonek.sc"
-	k="120" />
-    <hkern g1="V,W,Y,Ydieresis"
-	g2="u.sc,ugrave.sc,uacute.sc,ucircumflex.sc,udieresis.sc,uring.sc,uhungarumlaut.sc"
-	k="20" />
-    <hkern g1="V,W,Y,Ydieresis"
-	g2="c.sc,g.sc,o.sc,q.sc,ccedilla.sc"
-	k="60" />
-    <hkern g1="V,W,Y,Ydieresis"
-	g2="hyphen.sc,guillemotleft.sc,guillemotright.sc,guilsinglleft.sc,guilsinglright.sc"
-	k="50" />
-    <hkern g1="P"
-	g2="a.sc,agrave.sc,aacute.sc,acircumflex.sc,atilde.sc,adieresis.sc,aring.sc,abreve.sc,aogonek.sc"
-	k="90" />
-    <hkern g1="P"
-	g2="c.sc,g.sc,o.sc,q.sc,ccedilla.sc"
-	k="40" />
-    <hkern g1="P"
-	g2="hyphen.sc,guillemotleft.sc,guillemotright.sc,guilsinglleft.sc,guilsinglright.sc"
-	k="20" />
-    <hkern g1="K,X"
-	g2="u.sc,ugrave.sc,uacute.sc,ucircumflex.sc,udieresis.sc,uring.sc,uhungarumlaut.sc"
-	k="25" />
-    <hkern g1="K,X"
-	g2="t.sc,v.sc,w.sc,y.sc,yacute.sc,ydieresis.sc"
-	k="20" />
-    <hkern g1="K,X"
-	g2="c.sc,g.sc,o.sc,q.sc,ccedilla.sc"
-	k="40" />
-    <hkern g1="K,X"
-	g2="hyphen.sc,guillemotleft.sc,guillemotright.sc,guilsinglleft.sc,guilsinglright.sc"
-	k="40" />
-    <hkern g1="p.sc"
-	g2="a.sc,agrave.sc,aacute.sc,acircumflex.sc,atilde.sc,adieresis.sc,aring.sc,abreve.sc,aogonek.sc"
-	k="25" />
-    <hkern g1="p.sc"
-	g2="hyphen.sc,guillemotleft.sc,guillemotright.sc,guilsinglleft.sc,guilsinglright.sc"
-	k="-20" />
-    <hkern g1="hyphen.sc,guillemotleft.sc,guillemotright.sc,guilsinglleft.sc,guilsinglright.sc"
-	g2="a.sc,agrave.sc,aacute.sc,acircumflex.sc,atilde.sc,adieresis.sc,aring.sc,abreve.sc,aogonek.sc"
-	k="20" />
-    <hkern g1="hyphen.sc,guillemotleft.sc,guillemotright.sc,guilsinglleft.sc,guilsinglright.sc"
-	g2="t.sc,v.sc,w.sc,y.sc,yacute.sc,ydieresis.sc"
-	k="20" />
-    <hkern g1="hyphen.sc,guillemotleft.sc,guillemotright.sc,guilsinglleft.sc,guilsinglright.sc"
-	g2="x.sc"
-	k="40" />
-    <hkern g1="hyphen.sc,guillemotleft.sc,guillemotright.sc,guilsinglleft.sc,guilsinglright.sc"
-	g2="c.sc,g.sc,o.sc,q.sc,ccedilla.sc"
-	k="-20" />
-    <hkern g1="T,Tcaron,Tcedilla,Tcommaaccent"
-	g2="a.sc,agrave.sc,aacute.sc,acircumflex.sc,atilde.sc,adieresis.sc,aring.sc,abreve.sc,aogonek.sc"
-	k="80" />
-    <hkern g1="T,Tcaron,Tcedilla,Tcommaaccent"
-	g2="c.sc,g.sc,o.sc,q.sc,ccedilla.sc"
-	k="60" />
-    <hkern g1="T,Tcaron,Tcedilla,Tcommaaccent"
-	g2="hyphen.sc,guillemotleft.sc,guillemotright.sc,guilsinglleft.sc,guilsinglright.sc"
-	k="100" />
-    <hkern g1="Gamma,Tau"
-	g2="Tau"
-	k="-30" />
-    <hkern g1="Gamma,Tau"
-	g2="Upsilon,Upsilondieresis"
-	k="-30" />
-    <hkern g1="Gamma,Tau"
-	g2="gamma,nu"
-	k="24" />
-    <hkern g1="Gamma,Tau"
-	g2="chi"
-	k="23" />
-    <hkern g1="Gamma,Tau"
-	g2="Alpha,Delta,Lambda,uni04D2,uni1FB8,uni1FB9,uni1FBC"
-	k="35" />
-    <hkern g1="Gamma,Tau"
-	g2="alpha,omicron,sigma,phi,uni03F2,uni03F5,omega,sigma1,omegatonos"
-	k="40" />
-    <hkern g1="Gamma,Tau"
-	g2="alphatonos,rho,omicrontonos,phi1,uni03F1,uni1F71,uni1F73,uni1F79"
-	k="20" />
-    <hkern g1="Gamma,Tau"
-	g2="eta,iota,kappa,uniF6BE,upsilon"
-	k="20" />
-    <hkern g1="Upsilontonos,Upsilon,Upsilondieresis,Upsilon1,uni03D3,uni03D4,uni1F59,uni1F5B,uni1F5D,uni1F5F,uni1FE8,uni1FE9,uni1FEA,uni1FEB"
-	g2="Tau"
-	k="-20" />
-    <hkern g1="Upsilontonos,Upsilon,Upsilondieresis,Upsilon1,uni03D3,uni03D4,uni1F59,uni1F5B,uni1F5D,uni1F5F,uni1FE8,uni1FE9,uni1FEA,uni1FEB"
-	g2="gamma,nu"
-	k="17" />
-    <hkern g1="Upsilontonos,Upsilon,Upsilondieresis,Upsilon1,uni03D3,uni03D4,uni1F59,uni1F5B,uni1F5D,uni1F5F,uni1FE8,uni1FE9,uni1FEA,uni1FEB"
-	g2="chi"
-	k="16" />
-    <hkern g1="Upsilontonos,Upsilon,Upsilondieresis,Upsilon1,uni03D3,uni03D4,uni1F59,uni1F5B,uni1F5D,uni1F5F,uni1FE8,uni1FE9,uni1FEA,uni1FEB"
-	g2="Alpha,Delta,Lambda,uni04D2,uni1FB8,uni1FB9,uni1FBC"
-	k="60" />
-    <hkern g1="Upsilontonos,Upsilon,Upsilondieresis,Upsilon1,uni03D3,uni03D4,uni1F59,uni1F5B,uni1F5D,uni1F5F,uni1FE8,uni1FE9,uni1FEA,uni1FEB"
-	g2="alpha,omicron,sigma,phi,uni03F2,uni03F5,omega,sigma1,omegatonos"
-	k="50" />
-    <hkern g1="Upsilontonos,Upsilon,Upsilondieresis,Upsilon1,uni03D3,uni03D4,uni1F59,uni1F5B,uni1F5D,uni1F5F,uni1FE8,uni1FE9,uni1FEA,uni1FEB"
-	g2="alphatonos,rho,omicrontonos,phi1,uni03F1,uni1F71,uni1F73,uni1F79"
-	k="30" />
-    <hkern g1="Upsilontonos,Upsilon,Upsilondieresis,Upsilon1,uni03D3,uni03D4,uni1F59,uni1F5B,uni1F5D,uni1F5F,uni1FE8,uni1FE9,uni1FEA,uni1FEB"
-	g2="mu,uni03F0"
-	k="20" />
-    <hkern g1="Upsilontonos,Upsilon,Upsilondieresis,Upsilon1,uni03D3,uni03D4,uni1F59,uni1F5B,uni1F5D,uni1F5F,uni1FE8,uni1FE9,uni1FEA,uni1FEB"
-	g2="eta,iota,kappa,uniF6BE,upsilon"
-	k="30" />
-    <hkern g1="Kappa,Chi"
-	g2="Tau"
-	k="-20" />
-    <hkern g1="Kappa,Chi"
-	g2="Upsilon,Upsilondieresis"
-	k="-20" />
-    <hkern g1="Kappa,Chi"
-	g2="gamma,nu"
-	k="16" />
-    <hkern g1="Kappa,Chi"
-	g2="chi"
-	k="14" />
-    <hkern g1="Kappa,Chi"
-	g2="alpha,omicron,sigma,phi,uni03F2,uni03F5,omega,sigma1,omegatonos"
-	k="51" />
-    <hkern g1="Kappa,Chi"
-	g2="alphatonos,rho,omicrontonos,phi1,uni03F1,uni1F71,uni1F73,uni1F79"
-	k="31" />
-    <hkern g1="Kappa,Chi"
-	g2="eta,iota,kappa,uniF6BE,upsilon"
-	k="60" />
-    <hkern g1="Omicrontonos,Theta,Omicron,Phi,uni03F4,uni1E0A,uni1E0C,uni1E0E,uni1E10,uni1E12,uni1E4C,uni1E4E,uni1E50,uni1E52"
-	g2="Alpha,Delta,Lambda,uni04D2,uni1FB8,uni1FB9,uni1FBC"
-	k="8" />
-    <hkern g1="gamma,kappa,uni03DB,zeta"
-	g2="alpha,omicron,sigma,phi,uni03F2,uni03F5,omega,sigma1,omegatonos"
-	k="20" />
-    <hkern g1="gamma,kappa,uni03DB,zeta"
-	g2="alphatonos,rho,omicrontonos,phi1,uni03F1,uni1F71,uni1F73,uni1F79"
-	k="10" />
-    <hkern g1="omicron,rho,phi,omicrontonos,phi1"
-	g2="Tau"
-	k="49" />
-    <hkern g1="omicron,rho,phi,omicrontonos,phi1"
-	g2="Upsilon,Upsilondieresis"
-	k="40" />
-    <hkern g1="omicron,rho,phi,omicrontonos,phi1"
-	g2="gamma,nu"
-	k="20" />
-    <hkern g1="omicron,rho,phi,omicrontonos,phi1"
-	g2="Alpha,Delta,Lambda,uni04D2,uni1FB8,uni1FB9,uni1FBC"
-	k="20" />
-    <hkern g1="omicron,rho,phi,omicrontonos,phi1"
-	g2="eta,iota,kappa,uniF6BE,upsilon"
-	k="5" />
-    <hkern g1="Alphatonos,Alpha,Delta,Lambda,afii10017,uni04D2,uni1E00,uni1F0A,uni1F0B,uni1F0C,uni1F0D,uni1F0E,uni1F0F,uni1FB8,uni1FB9,uni1FBA,uni1FBB,uni1F08,uni1F09"
-	g2="Tau"
-	k="60" />
-    <hkern g1="Alphatonos,Alpha,Delta,Lambda,afii10017,uni04D2,uni1E00,uni1F0A,uni1F0B,uni1F0C,uni1F0D,uni1F0E,uni1F0F,uni1FB8,uni1FB9,uni1FBA,uni1FBB,uni1F08,uni1F09"
-	g2="Upsilon,Upsilondieresis"
-	k="60" />
-    <hkern g1="Alphatonos,Alpha,Delta,Lambda,afii10017,uni04D2,uni1E00,uni1F0A,uni1F0B,uni1F0C,uni1F0D,uni1F0E,uni1F0F,uni1FB8,uni1FB9,uni1FBA,uni1FBB,uni1F08,uni1F09"
-	g2="gamma,nu"
-	k="60" />
-    <hkern g1="Alphatonos,Alpha,Delta,Lambda,afii10017,uni04D2,uni1E00,uni1F0A,uni1F0B,uni1F0C,uni1F0D,uni1F0E,uni1F0F,uni1FB8,uni1FB9,uni1FBA,uni1FBB,uni1F08,uni1F09"
-	g2="chi"
-	k="40" />
-    <hkern g1="Alphatonos,Alpha,Delta,Lambda,afii10017,uni04D2,uni1E00,uni1F0A,uni1F0B,uni1F0C,uni1F0D,uni1F0E,uni1F0F,uni1FB8,uni1FB9,uni1FBA,uni1FBB,uni1F08,uni1F09"
-	g2="Alpha,Delta,Lambda,uni04D2,uni1FB8,uni1FB9,uni1FBC"
-	k="-20" />
-    <hkern g1="Alphatonos,Alpha,Delta,Lambda,afii10017,uni04D2,uni1E00,uni1F0A,uni1F0B,uni1F0C,uni1F0D,uni1F0E,uni1F0F,uni1FB8,uni1FB9,uni1FBA,uni1FBB,uni1F08,uni1F09"
-	g2="alpha,omicron,sigma,phi,uni03F2,uni03F5,omega,sigma1,omegatonos"
-	k="27" />
-    <hkern g1="Alphatonos,Alpha,Delta,Lambda,afii10017,uni04D2,uni1E00,uni1F0A,uni1F0B,uni1F0C,uni1F0D,uni1F0E,uni1F0F,uni1FB8,uni1FB9,uni1FBA,uni1FBB,uni1F08,uni1F09"
-	g2="alphatonos,rho,omicrontonos,phi1,uni03F1,uni1F71,uni1F73,uni1F79"
-	k="16" />
-    <hkern g1="Alphatonos,Alpha,Delta,Lambda,afii10017,uni04D2,uni1E00,uni1F0A,uni1F0B,uni1F0C,uni1F0D,uni1F0E,uni1F0F,uni1FB8,uni1FB9,uni1FBA,uni1FBB,uni1F08,uni1F09"
-	g2="eta,iota,kappa,uniF6BE,upsilon"
-	k="44" />
-    <hkern g1="Rho"
-	g2="Tau"
-	k="-20" />
-    <hkern g1="Rho"
-	g2="Alpha,Delta,Lambda,uni04D2,uni1FB8,uni1FB9,uni1FBC"
-	k="60" />
-    <hkern g1="Rho"
-	g2="alpha,omicron,sigma,phi,uni03F2,uni03F5,omega,sigma1,omegatonos"
-	k="30" />
-    <hkern g1="Rho"
-	g2="alphatonos,rho,omicrontonos,phi1,uni03F1,uni1F71,uni1F73,uni1F79"
-	k="20" />
-    <hkern g1="afii10052,afii10020,afii10036,afii10050,uni0492,uni04AC,uni04F6"
-	g2="afii10041,afii10148,uni0476,uni04B6"
-	k="-30" />
-    <hkern g1="afii10052,afii10020,afii10036,afii10050,uni0492,uni04AC,uni04F6"
-	g2="afii10017"
-	k="50" />
-    <hkern g1="afii10052,afii10020,afii10036,afii10050,uni0492,uni04AC,uni04F6"
-	g2="afii10070,afii10080,afii10083,afii10101,afii10846,uni04E9"
-	k="35" />
-    <hkern g1="afii10062,afii10037,uni04EE,uni04F0,uni04F2,afii10148,uni0476"
-	g2="afii10072,afii10085,x,afii10110,uni04B3,uni04DD"
-	k="50" />
-    <hkern g1="afii10062,afii10037,uni04EE,uni04F0,uni04F2,afii10148,uni0476"
-	g2="afii10017"
-	k="100" />
-    <hkern g1="afii10062,afii10037,uni04EE,uni04F0,uni04F2,afii10148,uni0476"
-	g2="afii10070,afii10080,afii10083,afii10101,afii10846,uni04E9"
-	k="60" />
-    <hkern g1="afii10062,afii10037,uni04EE,uni04F0,uni04F2,afii10148,uni0476"
-	g2="afii10065,afii10073,afii10086,afii10095,afii10097,uni04D5"
-	k="40" />
-    <hkern g1="afii10032,afii10048,afii10147"
-	g2="afii10017"
-	k="35" />
-    <hkern g1="afii10085,afii10110"
-	g2="afii10017"
-	k="70" />
-    <hkern g1="afii10070,afii10080,afii10082,afii10071,uni04E7,uni04E9"
-	g2="afii10041,afii10148,uni0476,uni04B6"
-	k="23" />
-    <hkern g1="afii10044,afii10046"
-	g2="afii10041,afii10148,uni0476,uni04B6"
-	k="50" />
-    <hkern g1="f,longs,f_f"
-	g2="T,Tcedilla,Tcaron,Tcommaaccent"
-	k="-98" />
-    <hkern g1="f,longs,f_f"
-	g2="Y,Yacute,Ydieresis"
-	k="-98" />
-    <hkern g1="f,longs,f_f"
-	g2="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis,uniE0E9,uniE0EA"
-	k="-98" />
-    <hkern g1="f,longs,f_f"
-	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Cacute,Ccircumflex,Cdotaccent,Ccaron,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Omacron,Obreve,Ohungarumlaut,OE,uni0187,uni0193,uni019F,Ohorn,Gcaron,uni01EA,uni01EC,uni01F4,Oslashacute,uni020C,uni020E,uni022A,uni022C,uni022E,uni0230,zero.fitted,zero.slashfitted,six.fitted"
-	k="-24" />
-    <hkern g1="f,longs,f_f"
-	g2="quotedbl,quotesingle,asterisk,quoteleft,quoteright,quotereversed,quotedblleft,quotedblright,quotedblrev"
-	k="-73" />
-    <hkern g1="f,longs,f_f"
-	g2="parenright,bracketright,braceright"
-	k="-76" />
-    <hkern g1="f,longs,f_f"
-	g2="J,j,Jcircumflex,jcircumflex"
-	k="-80" />
-    <hkern g1="f,longs,f_f"
-	g2="exclam,question,exclamdbl,interrobang,question_question,question_exclam,exclam_question"
-	k="-80" />
-    <hkern g1="f,longs,f_f"
-	g2="b,h,k,l,thorn,hcircumflex,hbar,kcommaaccent,lacute,lcommaaccent,lcaron,ldot,lslash,uni0180"
-	k="-40" />
-    <hkern g1="f,longs,f_f"
-	g2="two.superior,three.superior,one.superior,zero.superior,i.superior,four.superior,five.superior,six.superior,seven.superior,eight.superior,nine.superior,plus.superior,minus.superior,equal.superior,parenleft.superior,parenright.superior,n.superior,uni2098,uni2099,uniE0C0,uniE0C1,uniE0C2,uniE0C3,uniE0C4,uniE0C5,uniE0C6,uniE0CA,uniE0CC,uniE0CE,uniE0CF,q.superior,uniE0D3,uniE0D4,uniE0D5,uniE0D9,degree"
-	k="-88" />
-    <hkern g1="T,Tcedilla,Tcaron,Tcommaaccent"
-	g2="T,Tcedilla,Tcaron,Tcommaaccent"
-	k="-55" />
-    <hkern g1="T,Tcedilla,Tcaron,Tcommaaccent"
-	g2="Y,Yacute,Ydieresis"
-	k="-24" />
-    <hkern g1="T,Tcedilla,Tcaron,Tcommaaccent"
-	g2="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis,uniE0E9,uniE0EA"
-	k="-24" />
-    <hkern g1="T,Tcedilla,Tcaron,Tcommaaccent"
-	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Cacute,Ccircumflex,Cdotaccent,Ccaron,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Omacron,Obreve,Ohungarumlaut,OE,uni0187,uni0193,uni019F,Ohorn,Gcaron,uni01EA,uni01EC,uni01F4,Oslashacute,uni020C,uni020E,uni022A,uni022C,uni022E,uni0230,zero.fitted,zero.slashfitted,six.fitted"
-	k="5" />
-    <hkern g1="T,Tcedilla,Tcaron,Tcommaaccent"
-	g2="v,w,wcircumflex,wgrave,wacute,wdieresis,y,yacute,ydieresis"
-	k="49" />
-    <hkern g1="T,Tcedilla,Tcaron,Tcommaaccent"
-	g2="x"
-	k="34" />
-    <hkern g1="T,Tcedilla,Tcaron,Tcommaaccent"
-	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,uni01CD,uni01DE,uni01E0,uni01E2,Aringacute,AEacute,uni0200,uni0202,uni0226,Adieresis.alt"
-	k="49" />
-    <hkern g1="T,Tcedilla,Tcaron,Tcommaaccent"
-	g2="comma,period,quotesinglbase,onedotenleader,twodotenleader,ellipsis"
-	k="63" />
-    <hkern g1="T,Tcedilla,Tcaron,Tcommaaccent"
-	g2="e,c,o,d,q,ccedilla,eogonek,oe,uni0188,uni018D,ohorn,eturned,c_k,c_h"
-	k="63" />
-    <hkern g1="T,Tcedilla,Tcaron,Tcommaaccent"
-	g2="a,g,s,aacute,ae,eacute,oacute,oslash,aogonek,cacute,edotaccent,uni022F"
-	k="49" />
-    <hkern g1="T,Tcedilla,Tcaron,Tcommaaccent"
-	g2="m,n,p,r,z,dotlessi"
-	k="20" />
-    <hkern g1="T,Tcedilla,Tcaron,Tcommaaccent"
-	g2="plus,hyphen,less,equal,greater,asciitilde,guillemotleft,uni00AD,periodcentered,guillemotright,divide,hyphentwo,hyphennobreak,figuredash,endash,emdash,horizontalbar,guilsinglleft,guilsinglright"
-	k="59" />
-    <hkern g1="T,Tcedilla,Tcaron,Tcommaaccent"
-	g2="exclam,question,exclamdbl,interrobang,question_question,question_exclam,exclam_question"
-	k="-10" />
-    <hkern g1="T,Tcedilla,Tcaron,Tcommaaccent"
-	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,uni01D3,uni01D5,uni01D7,uni01D9,uni01DB,uni0214,uni0216"
-	k="-37" />
-    <hkern g1="T,Tcedilla,Tcaron,Tcommaaccent"
-	g2="u"
-	k="39" />
-    <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ygrave,seven.fitted,question"
-	g2="T,Tcedilla,Tcaron,Tcommaaccent"
-	k="-24" />
-    <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ygrave,seven.fitted,question"
-	g2="Y,Yacute,Ydieresis"
-	k="-24" />
-    <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ygrave,seven.fitted,question"
-	g2="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis,uniE0E9,uniE0EA"
-	k="-24" />
-    <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ygrave,seven.fitted,question"
-	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Cacute,Ccircumflex,Cdotaccent,Ccaron,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Omacron,Obreve,Ohungarumlaut,OE,uni0187,uni0193,uni019F,Ohorn,Gcaron,uni01EA,uni01EC,uni01F4,Oslashacute,uni020C,uni020E,uni022A,uni022C,uni022E,uni0230,zero.fitted,zero.slashfitted,six.fitted"
-	k="37" />
-    <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ygrave,seven.fitted,question"
-	g2="v,w,wcircumflex,wgrave,wacute,wdieresis,y,yacute,ydieresis"
-	k="44" />
-    <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ygrave,seven.fitted,question"
-	g2="x"
-	k="24" />
-    <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ygrave,seven.fitted,question"
-	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,uni01CD,uni01DE,uni01E0,uni01E2,Aringacute,AEacute,uni0200,uni0202,uni0226,Adieresis.alt"
-	k="61" />
-    <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ygrave,seven.fitted,question"
-	g2="comma,period,quotesinglbase,onedotenleader,twodotenleader,ellipsis"
-	k="44" />
-    <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ygrave,seven.fitted,question"
-	g2="e,c,o,d,q,ccedilla,eogonek,oe,uni0188,uni018D,ohorn,eturned,c_k,c_h"
-	k="71" />
-    <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ygrave,seven.fitted,question"
-	g2="a,g,s,aacute,ae,eacute,oacute,oslash,aogonek,cacute,edotaccent,uni022F"
-	k="60" />
-    <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ygrave,seven.fitted,question"
-	g2="m,n,p,r,z,dotlessi"
-	k="40" />
-    <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ygrave,seven.fitted,question"
-	g2="plus,hyphen,less,equal,greater,asciitilde,guillemotleft,uni00AD,periodcentered,guillemotright,divide,hyphentwo,hyphennobreak,figuredash,endash,emdash,horizontalbar,guilsinglleft,guilsinglright"
-	k="49" />
-    <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ygrave,seven.fitted,question"
-	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,uni01D3,uni01D5,uni01D7,uni01D9,uni01DB,uni0214,uni0216"
-	k="-24" />
-    <hkern g1="Y,Yacute,Ycircumflex,Ydieresis,Ygrave,seven.fitted,question"
-	g2="u"
-	k="39" />
-    <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis,uniE0E9"
-	g2="T,Tcedilla,Tcaron,Tcommaaccent"
-	k="-24" />
-    <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis,uniE0E9"
-	g2="Y,Yacute,Ydieresis"
-	k="-24" />
-    <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis,uniE0E9"
-	g2="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis,uniE0E9,uniE0EA"
-	k="-24" />
-    <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis,uniE0E9"
-	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Cacute,Ccircumflex,Cdotaccent,Ccaron,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Omacron,Obreve,Ohungarumlaut,OE,uni0187,uni0193,uni019F,Ohorn,Gcaron,uni01EA,uni01EC,uni01F4,Oslashacute,uni020C,uni020E,uni022A,uni022C,uni022E,uni0230,zero.fitted,zero.slashfitted,six.fitted"
-	k="34" />
-    <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis,uniE0E9"
-	g2="v,w,wcircumflex,wgrave,wacute,wdieresis,y,yacute,ydieresis"
-	k="49" />
-    <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis,uniE0E9"
-	g2="x"
-	k="24" />
-    <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis,uniE0E9"
-	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,uni01CD,uni01DE,uni01E0,uni01E2,Aringacute,AEacute,uni0200,uni0202,uni0226,Adieresis.alt"
-	k="112" />
-    <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis,uniE0E9"
-	g2="comma,period,quotesinglbase,onedotenleader,twodotenleader,ellipsis"
-	k="88" />
-    <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis,uniE0E9"
-	g2="e,c,o,d,q,ccedilla,eogonek,oe,uni0188,uni018D,ohorn,eturned,c_k,c_h"
-	k="80" />
-    <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis,uniE0E9"
-	g2="a,g,s,aacute,ae,eacute,oacute,oslash,aogonek,cacute,edotaccent,uni022F"
-	k="60" />
-    <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis,uniE0E9"
-	g2="m,n,p,r,z,dotlessi"
-	k="40" />
-    <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis,uniE0E9"
-	g2="plus,hyphen,less,equal,greater,asciitilde,guillemotleft,uni00AD,periodcentered,guillemotright,divide,hyphentwo,hyphennobreak,figuredash,endash,emdash,horizontalbar,guilsinglleft,guilsinglright"
-	k="49" />
-    <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis,uniE0E9"
-	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,uni01D3,uni01D5,uni01D7,uni01D9,uni01DB,uni0214,uni0216"
-	k="-24" />
-    <hkern g1="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis,uniE0E9"
-	g2="u"
-	k="24" />
-    <hkern g1="K,X,Kcommaaccent,K.alt"
-	g2="Y,Yacute,Ydieresis"
-	k="-24" />
-    <hkern g1="K,X,Kcommaaccent,K.alt"
-	g2="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis,uniE0E9,uniE0EA"
-	k="-24" />
-    <hkern g1="K,X,Kcommaaccent,K.alt"
-	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Cacute,Ccircumflex,Cdotaccent,Ccaron,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Omacron,Obreve,Ohungarumlaut,OE,uni0187,uni0193,uni019F,Ohorn,Gcaron,uni01EA,uni01EC,uni01F4,Oslashacute,uni020C,uni020E,uni022A,uni022C,uni022E,uni0230,zero.fitted,zero.slashfitted,six.fitted"
-	k="24" />
-    <hkern g1="K,X,Kcommaaccent,K.alt"
-	g2="v,w,wcircumflex,wgrave,wacute,wdieresis,y,yacute,ydieresis"
-	k="54" />
-    <hkern g1="K,X,Kcommaaccent,K.alt"
-	g2="e,c,o,d,q,ccedilla,eogonek,oe,uni0188,uni018D,ohorn,eturned,c_k,c_h"
-	k="20" />
-    <hkern g1="K,X,Kcommaaccent,K.alt"
-	g2="a,g,s,aacute,ae,eacute,oacute,oslash,aogonek,cacute,edotaccent,uni022F"
-	k="15" />
-    <hkern g1="K,X,Kcommaaccent,K.alt"
-	g2="plus,hyphen,less,equal,greater,asciitilde,guillemotleft,uni00AD,periodcentered,guillemotright,divide,hyphentwo,hyphennobreak,figuredash,endash,emdash,horizontalbar,guilsinglleft,guilsinglright"
-	k="24" />
-    <hkern g1="K,X,Kcommaaccent,K.alt"
-	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,uni01D3,uni01D5,uni01D7,uni01D9,uni01DB,uni0214,uni0216"
-	k="-24" />
-    <hkern g1="at,D,O,Q,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Dcaron,Dcroat,Omacron,Obreve,Ohungarumlaut,uni0186,uni0189,uni018A,uni018F,uni01EA,uni01EC,uni020C,uni020E,uni022A,uni022C,uni022E,uni0230,Odieresis.alt"
-	g2="T,Tcedilla,Tcaron,Tcommaaccent"
-	k="5" />
-    <hkern g1="at,D,O,Q,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Dcaron,Dcroat,Omacron,Obreve,Ohungarumlaut,uni0186,uni0189,uni018A,uni018F,uni01EA,uni01EC,uni020C,uni020E,uni022A,uni022C,uni022E,uni0230,Odieresis.alt"
-	g2="Y,Yacute,Ydieresis"
-	k="34" />
-    <hkern g1="at,D,O,Q,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Dcaron,Dcroat,Omacron,Obreve,Ohungarumlaut,uni0186,uni0189,uni018A,uni018F,uni01EA,uni01EC,uni020C,uni020E,uni022A,uni022C,uni022E,uni0230,Odieresis.alt"
-	g2="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis,uniE0E9,uniE0EA"
-	k="-37" />
-    <hkern g1="at,D,O,Q,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Dcaron,Dcroat,Omacron,Obreve,Ohungarumlaut,uni0186,uni0189,uni018A,uni018F,uni01EA,uni01EC,uni020C,uni020E,uni022A,uni022C,uni022E,uni0230,Odieresis.alt"
-	g2="v,w,wcircumflex,wgrave,wacute,wdieresis,y,yacute,ydieresis"
-	k="-10" />
-    <hkern g1="at,D,O,Q,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Dcaron,Dcroat,Omacron,Obreve,Ohungarumlaut,uni0186,uni0189,uni018A,uni018F,uni01EA,uni01EC,uni020C,uni020E,uni022A,uni022C,uni022E,uni0230,Odieresis.alt"
-	g2="x"
-	k="-10" />
-    <hkern g1="at,D,O,Q,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Dcaron,Dcroat,Omacron,Obreve,Ohungarumlaut,uni0186,uni0189,uni018A,uni018F,uni01EA,uni01EC,uni020C,uni020E,uni022A,uni022C,uni022E,uni0230,Odieresis.alt"
-	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,uni01CD,uni01DE,uni01E0,uni01E2,Aringacute,AEacute,uni0200,uni0202,uni0226,Adieresis.alt"
-	k="29" />
-    <hkern g1="at,D,O,Q,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Dcaron,Dcroat,Omacron,Obreve,Ohungarumlaut,uni0186,uni0189,uni018A,uni018F,uni01EA,uni01EC,uni020C,uni020E,uni022A,uni022C,uni022E,uni0230,Odieresis.alt"
-	g2="comma,period,quotesinglbase,onedotenleader,twodotenleader,ellipsis"
-	k="29" />
-    <hkern g1="at,D,O,Q,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Dcaron,Dcroat,Omacron,Obreve,Ohungarumlaut,uni0186,uni0189,uni018A,uni018F,uni01EA,uni01EC,uni020C,uni020E,uni022A,uni022C,uni022E,uni0230,Odieresis.alt"
-	g2="parenright,bracketright,braceright"
-	k="10" />
-    <hkern g1="r,v,w,y,Thorn,yacute,ydieresis,racute,rcommaaccent,rcaron,wcircumflex,ycircumflex,wgrave,wacute,wdieresis"
-	g2="T,Tcedilla,Tcaron,Tcommaaccent"
-	k="39" />
-    <hkern g1="r,v,w,y,Thorn,yacute,ydieresis,racute,rcommaaccent,rcaron,wcircumflex,ycircumflex,wgrave,wacute,wdieresis"
-	g2="Y,Yacute,Ydieresis"
-	k="12" />
-    <hkern g1="r,v,w,y,Thorn,yacute,ydieresis,racute,rcommaaccent,rcaron,wcircumflex,ycircumflex,wgrave,wacute,wdieresis"
-	g2="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis,uniE0E9,uniE0EA"
-	k="24" />
-    <hkern g1="r,v,w,y,Thorn,yacute,ydieresis,racute,rcommaaccent,rcaron,wcircumflex,ycircumflex,wgrave,wacute,wdieresis"
-	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Cacute,Ccircumflex,Cdotaccent,Ccaron,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Omacron,Obreve,Ohungarumlaut,OE,uni0187,uni0193,uni019F,Ohorn,Gcaron,uni01EA,uni01EC,uni01F4,Oslashacute,uni020C,uni020E,uni022A,uni022C,uni022E,uni0230,zero.fitted,zero.slashfitted,six.fitted"
-	k="-10" />
-    <hkern g1="r,v,w,y,Thorn,yacute,ydieresis,racute,rcommaaccent,rcaron,wcircumflex,ycircumflex,wgrave,wacute,wdieresis"
-	g2="v,w,wcircumflex,wgrave,wacute,wdieresis,y,yacute,ydieresis"
-	k="-15" />
-    <hkern g1="r,v,w,y,Thorn,yacute,ydieresis,racute,rcommaaccent,rcaron,wcircumflex,ycircumflex,wgrave,wacute,wdieresis"
-	g2="x"
-	k="-10" />
-    <hkern g1="r,v,w,y,Thorn,yacute,ydieresis,racute,rcommaaccent,rcaron,wcircumflex,ycircumflex,wgrave,wacute,wdieresis"
-	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,uni01CD,uni01DE,uni01E0,uni01E2,Aringacute,AEacute,uni0200,uni0202,uni0226,Adieresis.alt"
-	k="49" />
-    <hkern g1="r,v,w,y,Thorn,yacute,ydieresis,racute,rcommaaccent,rcaron,wcircumflex,ycircumflex,wgrave,wacute,wdieresis"
-	g2="comma,period,quotesinglbase,onedotenleader,twodotenleader,ellipsis"
-	k="59" />
-    <hkern g1="r,v,w,y,Thorn,yacute,ydieresis,racute,rcommaaccent,rcaron,wcircumflex,ycircumflex,wgrave,wacute,wdieresis"
-	g2="e,c,o,d,q,ccedilla,eogonek,oe,uni0188,uni018D,ohorn,eturned,c_k,c_h"
-	k="8" />
-    <hkern g1="r,v,w,y,Thorn,yacute,ydieresis,racute,rcommaaccent,rcaron,wcircumflex,ycircumflex,wgrave,wacute,wdieresis"
-	g2="parenright,bracketright,braceright"
-	k="17" />
-    <hkern g1="g,k,x,gcircumflex,gbreve,gdotaccent,gcommaaccent,kcommaaccent,kgreenlandic,gcaron,f_k,c_k"
-	g2="Y,Yacute,Ydieresis"
-	k="12" />
-    <hkern g1="g,k,x,gcircumflex,gbreve,gdotaccent,gcommaaccent,kcommaaccent,kgreenlandic,gcaron,f_k,c_k"
-	g2="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis,uniE0E9,uniE0EA"
-	k="24" />
-    <hkern g1="g,k,x,gcircumflex,gbreve,gdotaccent,gcommaaccent,kcommaaccent,kgreenlandic,gcaron,f_k,c_k"
-	g2="x"
-	k="-10" />
-    <hkern g1="b,agrave,egrave,thorn"
-	g2="T,Tcedilla,Tcaron,Tcommaaccent"
-	k="29" />
-    <hkern g1="b,agrave,egrave,thorn"
-	g2="Y,Yacute,Ydieresis"
-	k="37" />
-    <hkern g1="b,agrave,egrave,thorn"
-	g2="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis,uniE0E9,uniE0EA"
-	k="44" />
-    <hkern g1="b,agrave,egrave,thorn"
-	g2="quotedbl,quotesingle,asterisk,quoteleft,quoteright,quotereversed,quotedblleft,quotedblright,quotedblrev"
-	k="20" />
-    <hkern g1="b,agrave,egrave,thorn"
-	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,uni01CD,uni01DE,uni01E0,uni01E2,Aringacute,AEacute,uni0200,uni0202,uni0226,Adieresis.alt"
-	k="20" />
-    <hkern g1="b,agrave,egrave,thorn"
-	g2="comma,period,quotesinglbase,onedotenleader,twodotenleader,ellipsis"
-	k="20" />
-    <hkern g1="b,agrave,egrave,thorn"
-	g2="e,c,o,d,q,ccedilla,eogonek,oe,uni0188,uni018D,ohorn,eturned,c_k,c_h"
-	k="-10" />
-    <hkern g1="e,o,p,eacute,ecircumflex,edieresis,ograve,oacute,ocircumflex,otilde,odieresis"
-	g2="T,Tcedilla,Tcaron,Tcommaaccent"
-	k="49" />
-    <hkern g1="e,o,p,eacute,ecircumflex,edieresis,ograve,oacute,ocircumflex,otilde,odieresis"
-	g2="Y,Yacute,Ydieresis"
-	k="54" />
-    <hkern g1="e,o,p,eacute,ecircumflex,edieresis,ograve,oacute,ocircumflex,otilde,odieresis"
-	g2="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis,uniE0E9,uniE0EA"
-	k="54" />
-    <hkern g1="e,o,p,eacute,ecircumflex,edieresis,ograve,oacute,ocircumflex,otilde,odieresis"
-	g2="v,w,wcircumflex,wgrave,wacute,wdieresis,y,yacute,ydieresis"
-	k="7" />
-    <hkern g1="e,o,p,eacute,ecircumflex,edieresis,ograve,oacute,ocircumflex,otilde,odieresis"
-	g2="x"
-	k="7" />
-    <hkern g1="e,o,p,eacute,ecircumflex,edieresis,ograve,oacute,ocircumflex,otilde,odieresis"
-	g2="quotedbl,quotesingle,asterisk,quoteleft,quoteright,quotereversed,quotedblleft,quotedblright,quotedblrev"
-	k="24" />
-    <hkern g1="e,o,p,eacute,ecircumflex,edieresis,ograve,oacute,ocircumflex,otilde,odieresis"
-	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,uni01CD,uni01DE,uni01E0,uni01E2,Aringacute,AEacute,uni0200,uni0202,uni0226,Adieresis.alt"
-	k="40" />
-    <hkern g1="e,o,p,eacute,ecircumflex,edieresis,ograve,oacute,ocircumflex,otilde,odieresis"
-	g2="comma,period,quotesinglbase,onedotenleader,twodotenleader,ellipsis"
-	k="10" />
-    <hkern g1="e,o,p,eacute,ecircumflex,edieresis,ograve,oacute,ocircumflex,otilde,odieresis"
-	g2="e,c,o,d,q,ccedilla,eogonek,oe,uni0188,uni018D,ohorn,eturned,c_k,c_h"
-	k="-7" />
-    <hkern g1="L,Lacute,Lcommaaccent"
-	g2="Y,Yacute,Ydieresis"
-	k="49" />
-    <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Aringacute,uni0200,uni0202,Adieresis.alt"
-	g2="T,Tcedilla,Tcaron,Tcommaaccent"
-	k="63" />
-    <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Aringacute,uni0200,uni0202,Adieresis.alt"
-	g2="Y,Yacute,Ydieresis"
-	k="73" />
-    <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Aringacute,uni0200,uni0202,Adieresis.alt"
-	g2="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis,uniE0E9,uniE0EA"
-	k="112" />
-    <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Aringacute,uni0200,uni0202,Adieresis.alt"
-	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Cacute,Ccircumflex,Cdotaccent,Ccaron,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Omacron,Obreve,Ohungarumlaut,OE,uni0187,uni0193,uni019F,Ohorn,Gcaron,uni01EA,uni01EC,uni01F4,Oslashacute,uni020C,uni020E,uni022A,uni022C,uni022E,uni0230,zero.fitted,zero.slashfitted,six.fitted"
-	k="34" />
-    <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Aringacute,uni0200,uni0202,Adieresis.alt"
-	g2="v,w,wcircumflex,wgrave,wacute,wdieresis,y,yacute,ydieresis"
-	k="65" />
-    <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Aringacute,uni0200,uni0202,Adieresis.alt"
-	g2="quotedbl,quotesingle,asterisk,quoteleft,quoteright,quotereversed,quotedblleft,quotedblright,quotedblrev"
-	k="73" />
-    <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Aringacute,uni0200,uni0202,Adieresis.alt"
-	g2="e,c,o,d,q,ccedilla,eogonek,oe,uni0188,uni018D,ohorn,eturned,c_k,c_h"
-	k="12" />
-    <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Aringacute,uni0200,uni0202,Adieresis.alt"
-	g2="a,g,s,aacute,ae,eacute,oacute,oslash,aogonek,cacute,edotaccent,uni022F"
-	k="12" />
-    <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Aringacute,uni0200,uni0202,Adieresis.alt"
-	g2="parenright,bracketright,braceright"
-	k="12" />
-    <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Aringacute,uni0200,uni0202,Adieresis.alt"
-	g2="plus,hyphen,less,equal,greater,asciitilde,guillemotleft,uni00AD,periodcentered,guillemotright,divide,hyphentwo,hyphennobreak,figuredash,endash,emdash,horizontalbar,guilsinglleft,guilsinglright"
-	k="37" />
-    <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Aringacute,uni0200,uni0202,Adieresis.alt"
-	g2="u"
-	k="34" />
-    <hkern g1="comma,period,underscore,enquad,emquad,enspace,emspace,threeperemspace,fourperemspace,sixperemspace,figurespace,punctuationspace,quotesinglbase,quotedblbase,ellipsis"
-	g2="T,Tcedilla,Tcaron,Tcommaaccent"
-	k="61" />
-    <hkern g1="comma,period,underscore,enquad,emquad,enspace,emspace,threeperemspace,fourperemspace,sixperemspace,figurespace,punctuationspace,quotesinglbase,quotedblbase,ellipsis"
-	g2="Y,Yacute,Ydieresis"
-	k="73" />
-    <hkern g1="comma,period,underscore,enquad,emquad,enspace,emspace,threeperemspace,fourperemspace,sixperemspace,figurespace,punctuationspace,quotesinglbase,quotedblbase,ellipsis"
-	g2="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis,uniE0E9,uniE0EA"
-	k="73" />
-    <hkern g1="comma,period,underscore,enquad,emquad,enspace,emspace,threeperemspace,fourperemspace,sixperemspace,figurespace,punctuationspace,quotesinglbase,quotedblbase,ellipsis"
-	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Cacute,Ccircumflex,Cdotaccent,Ccaron,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Omacron,Obreve,Ohungarumlaut,OE,uni0187,uni0193,uni019F,Ohorn,Gcaron,uni01EA,uni01EC,uni01F4,Oslashacute,uni020C,uni020E,uni022A,uni022C,uni022E,uni0230,zero.fitted,zero.slashfitted,six.fitted"
-	k="10" />
-    <hkern g1="comma,period,underscore,enquad,emquad,enspace,emspace,threeperemspace,fourperemspace,sixperemspace,figurespace,punctuationspace,quotesinglbase,quotedblbase,ellipsis"
-	g2="quotedbl,quotesingle,asterisk,quoteleft,quoteright,quotereversed,quotedblleft,quotedblright,quotedblrev"
-	k="122" />
-    <hkern g1="zero.inferior,one.inferior,two.inferior,three.inferior,four.inferior,five.inferior,six.inferior,seven.inferior,eight.inferior,nine.inferior,plus.inferior,minus.inferior,equal.inferior,a.inferior,e.inferior,o.inferior,x.inferior,uni2094"
-	g2="quotedbl,quotesingle,asterisk,quoteleft,quoteright,quotereversed,quotedblleft,quotedblright,quotedblrev"
-	k="73" />
-    <hkern g1="zero.inferior,one.inferior,two.inferior,three.inferior,four.inferior,five.inferior,six.inferior,seven.inferior,eight.inferior,nine.inferior,plus.inferior,minus.inferior,equal.inferior,a.inferior,e.inferior,o.inferior,x.inferior,uni2094"
-	g2="two.superior,three.superior,one.superior,zero.superior,i.superior,four.superior,five.superior,six.superior,seven.superior,eight.superior,nine.superior,plus.superior,minus.superior,equal.superior,parenleft.superior,parenright.superior,n.superior,uni2098,uni2099,uniE0C0,uniE0C1,uniE0C2,uniE0C3,uniE0C4,uniE0C5,uniE0C6,uniE0CA,uniE0CC,uniE0CE,uniE0CF,q.superior,uniE0D3,uniE0D4,uniE0D5,uniE0D9,degree"
-	k="308" />
-    <hkern g1="hyphen,asciitilde,guillemotleft,guillemotright,hyphentwo,hyphennobreak,figuredash,endash,emdash,horizontalbar,guilsinglleft,guilsinglright,hyphen.cap"
-	g2="T,Tcedilla,Tcaron,Tcommaaccent"
-	k="49" />
-    <hkern g1="hyphen,asciitilde,guillemotleft,guillemotright,hyphentwo,hyphennobreak,figuredash,endash,emdash,horizontalbar,guilsinglleft,guilsinglright,hyphen.cap"
-	g2="Y,Yacute,Ydieresis"
-	k="49" />
-    <hkern g1="hyphen,asciitilde,guillemotleft,guillemotright,hyphentwo,hyphennobreak,figuredash,endash,emdash,horizontalbar,guilsinglleft,guilsinglright,hyphen.cap"
-	g2="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis,uniE0E9,uniE0EA"
-	k="49" />
-    <hkern g1="hyphen,asciitilde,guillemotleft,guillemotright,hyphentwo,hyphennobreak,figuredash,endash,emdash,horizontalbar,guilsinglleft,guilsinglright,hyphen.cap"
-	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,uni01CD,uni01DE,uni01E0,uni01E2,Aringacute,AEacute,uni0200,uni0202,uni0226,Adieresis.alt"
-	k="37" />
-    <hkern g1="hyphen,asciitilde,guillemotleft,guillemotright,hyphentwo,hyphennobreak,figuredash,endash,emdash,horizontalbar,guilsinglleft,guilsinglright,hyphen.cap"
-	g2="parenright,bracketright,braceright"
-	k="10" />
-    <hkern g1="parenleft,bracketleft,braceleft"
-	g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Cacute,Ccircumflex,Cdotaccent,Ccaron,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Omacron,Obreve,Ohungarumlaut,OE,uni0187,uni0193,uni019F,Ohorn,Gcaron,uni01EA,uni01EC,uni01F4,Oslashacute,uni020C,uni020E,uni022A,uni022C,uni022E,uni0230,zero.fitted,zero.slashfitted,six.fitted"
-	k="10" />
-    <hkern g1="parenleft,bracketleft,braceleft"
-	g2="v,w,wcircumflex,wgrave,wacute,wdieresis,y,yacute,ydieresis"
-	k="17" />
-    <hkern g1="parenleft,bracketleft,braceleft"
-	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,uni01CD,uni01DE,uni01E0,uni01E2,Aringacute,AEacute,uni0200,uni0202,uni0226,Adieresis.alt"
-	k="24" />
-    <hkern g1="parenleft,bracketleft,braceleft"
-	g2="e,c,o,d,q,ccedilla,eogonek,oe,uni0188,uni018D,ohorn,eturned,c_k,c_h"
-	k="17" />
-    <hkern g1="parenleft,bracketleft,braceleft"
-	g2="a,g,s,aacute,ae,eacute,oacute,oslash,aogonek,cacute,edotaccent,uni022F"
-	k="12" />
-    <hkern g1="parenleft,bracketleft,braceleft"
-	g2="J,j,Jcircumflex,jcircumflex"
-	k="-73" />
-    <hkern g1="parenleft,bracketleft,braceleft"
-	g2="plus,hyphen,less,equal,greater,asciitilde,guillemotleft,uni00AD,periodcentered,guillemotright,divide,hyphentwo,hyphennobreak,figuredash,endash,emdash,horizontalbar,guilsinglleft,guilsinglright"
-	k="37" />
-    <hkern g1="parenleft,bracketleft,braceleft"
-	g2="b,h,k,l,thorn,hcircumflex,hbar,kcommaaccent,lacute,lcommaaccent,lcaron,ldot,lslash,uni0180"
-	k="-12" />
-    <hkern g1="parenleft,bracketleft,braceleft"
-	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,uni01D3,uni01D5,uni01D7,uni01D9,uni01DB,uni0214,uni0216"
-	k="-12" />
-    <hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek"
-	g2="T,Tcedilla,Tcaron,Tcommaaccent"
-	k="-37" />
-    <hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek"
-	g2="Y,Yacute,Ydieresis"
-	k="-24" />
-    <hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek"
-	g2="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis,uniE0E9,uniE0EA"
-	k="-24" />
-    <hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek"
-	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,uni01CD,uni01DE,uni01E0,uni01E2,Aringacute,AEacute,uni0200,uni0202,uni0226,Adieresis.alt"
-	k="59" />
-    <hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek"
-	g2="comma,period,quotesinglbase,onedotenleader,twodotenleader,ellipsis"
-	k="24" />
-    <hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek"
-	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,uni01D3,uni01D5,uni01D7,uni01D9,uni01DB,uni0214,uni0216"
-	k="-24" />
-    <hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde,Hcircumflex,Hbar,Imacron,Ibreve,Iogonek,Idotaccent,IJ,Jcircumflex,Nacute,Ncommaaccent,Ncaron,Eng"
-	g2="T,Tcedilla,Tcaron,Tcommaaccent"
-	k="-37" />
-    <hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde,Hcircumflex,Hbar,Imacron,Ibreve,Iogonek,Idotaccent,IJ,Jcircumflex,Nacute,Ncommaaccent,Ncaron,Eng"
-	g2="Y,Yacute,Ydieresis"
-	k="-24" />
-    <hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde,Hcircumflex,Hbar,Imacron,Ibreve,Iogonek,Idotaccent,IJ,Jcircumflex,Nacute,Ncommaaccent,Ncaron,Eng"
-	g2="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis,uniE0E9,uniE0EA"
-	k="-24" />
-    <hkern g1="H,I,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde,Hcircumflex,Hbar,Imacron,Ibreve,Iogonek,Idotaccent,IJ,Jcircumflex,Nacute,Ncommaaccent,Ncaron,Eng"
-	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,uni01D3,uni01D5,uni01D7,uni01D9,uni01DB,uni0214,uni0216"
-	k="-24" />
-    <hkern g1="F,P,uni01A4"
-	g2="V,W,Wcircumflex,Wgrave,Wacute,Wdieresis,uniE0E9,uniE0EA"
-	k="-24" />
-    <hkern g1="F,P,uni01A4"
-	g2="quotedbl,quotesingle,asterisk,quoteleft,quoteright,quotereversed,quotedblleft,quotedblright,quotedblrev"
-	k="-24" />
-    <hkern g1="F,P,uni01A4"
-	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,uni01CD,uni01DE,uni01E0,uni01E2,Aringacute,AEacute,uni0200,uni0202,uni0226,Adieresis.alt"
-	k="59" />
-    <hkern g1="F,P,uni01A4"
-	g2="comma,period,quotesinglbase,onedotenleader,twodotenleader,ellipsis"
-	k="24" />
-    <hkern g1="F,P,uni01A4"
-	g2="exclam,question,exclamdbl,interrobang,question_question,question_exclam,exclam_question"
-	k="-10" />
-    <hkern g1="F,P,uni01A4"
-	g2="b,h,k,l,thorn,hcircumflex,hbar,kcommaaccent,lacute,lcommaaccent,lcaron,ldot,lslash,uni0180"
-	k="-12" />
-    <hkern g1="F,P,uni01A4"
-	g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,uni01D3,uni01D5,uni01D7,uni01D9,uni01DB,uni0214,uni0216"
-	k="-49" />
-    <hkern g1="quotedbl,quotesingle,asterisk,quoteleft,quoteright,quotereversed,quotedblleft,quotedblright,quotedblrev"
-	g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,uni01CD,uni01DE,uni01E0,uni01E2,Aringacute,AEacute,uni0200,uni0202,uni0226,Adieresis.alt"
-	k="49" />
-    <hkern g1="quotedbl,quotesingle,asterisk,quoteleft,quoteright,quotereversed,quotedblleft,quotedblright,quotedblrev"
-	g2="comma,period,quotesinglbase,onedotenleader,twodotenleader,ellipsis"
-	k="49" />
-    <hkern g1="quotedbl,quotesingle,asterisk,quoteleft,quoteright,quotereversed,quotedblleft,quotedblright,quotedblrev"
-	g2="e,c,o,d,q,ccedilla,eogonek,oe,uni0188,uni018D,ohorn,eturned,c_k,c_h"
-	k="24" />
-  </font>
-</defs></svg>
diff --git a/other/SourceCodePro-Regular.svg b/other/SourceCodePro-Regular.svg
deleted file mode 100644
--- a/other/SourceCodePro-Regular.svg
+++ /dev/null
@@ -1,4062 +0,0 @@
-<?xml version="1.0" standalone="no"?>
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
-<svg xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1">
-<metadata>
-Created by FontForge 20170730 at Thu Jun  9 07:20:48 2016
- By tony day
-Copyright 2010, 2012 Adobe Systems Incorporated (http://www.adobe.com/), with Reserved Font Name `Source'.
-</metadata>
-<defs>
-<font id="SourceCodePro-Regular" horiz-adv-x="600" >
-  <font-face 
-    font-family="Source Code Pro"
-    font-weight="400"
-    font-stretch="normal"
-    units-per-em="1000"
-    panose-1="2 11 5 9 3 4 3 2 2 4"
-    ascent="750"
-    descent="-250"
-    x-height="486"
-    cap-height="656"
-    bbox="-193 -454 793 1060"
-    underline-thickness="50"
-    underline-position="-100"
-    unicode-range="U+0020-1F916"
-  />
-<missing-glyph 
-d="M62 0v660h476v-660h-476zM170 58h257l-73 132l-52 103h-4l-54 -103zM127 110l128 230l-128 232v-462zM298 387h4l49 94l66 119h-235l66 -119zM345 340l127 -230v462z" />
-    <glyph glyph-name="u1F3B5_uniFE0F" unicode="&#xfe0f;" 
-d="M178 -24q-41 0 -71 19t-30 57q0 23 11.5 44t32 37.5t49.5 26t64 9.5q20 0 37 -3.5t24 -8.5v537h50q4 -10 8 -17.5t11.5 -15t19.5 -17t31 -22.5q34 -24 56 -47t35 -46.5t18 -49t5 -53.5q0 -39 -10.5 -73.5t-21.5 -57.5l-35 13q8 24 10.5 44.5t2.5 47.5q0 48 -32.5 89.5
-t-92.5 60.5v-407q0 -41 -14 -72.5t-37.5 -52.5t-55 -31.5t-65.5 -10.5z" />
-    <glyph glyph-name="u1F3B5_uniFE0F" unicode="&#xfe0f;" 
-d="M178 -24q-41 0 -71 19t-30 57q0 23 11.5 44t32 37.5t49.5 26t64 9.5q20 0 37 -3.5t24 -8.5v537h50q4 -10 8 -17.5t11.5 -15t19.5 -17t31 -22.5q34 -24 56 -47t35 -46.5t18 -49t5 -53.5q0 -39 -10.5 -73.5t-21.5 -57.5l-35 13q8 24 10.5 44.5t2.5 47.5q0 48 -32.5 89.5
-t-92.5 60.5v-407q0 -41 -14 -72.5t-37.5 -52.5t-55 -31.5t-65.5 -10.5z" />
-    <glyph glyph-name="u1F3B6_uniFE0F" unicode="&#xfe0f;" 
-d="M104 -24q-40 0 -70 19t-30 57q0 23 11 44t30.5 37.5t47.5 26t61 9.5q20 0 37 -3.5t24 -8.5v517l378 60v-539q0 -41 -13.5 -72t-36.5 -52t-53.5 -31.5t-63.5 -10.5q-40 0 -69.5 19t-29.5 57q0 23 11 44t30.5 37.5t47 26t60.5 9.5q20 0 37 -3.5t24 -8.5v363l-267 -42v-388
-q0 -41 -13.5 -72.5t-36.5 -52.5t-53 -31.5t-63 -10.5z" />
-    <glyph glyph-name="u1F3B6_uniFE0F" unicode="&#xfe0f;" 
-d="M104 -24q-40 0 -70 19t-30 57q0 23 11 44t30.5 37.5t47.5 26t61 9.5q20 0 37 -3.5t24 -8.5v517l378 60v-539q0 -41 -13.5 -72t-36.5 -52t-53.5 -31.5t-63.5 -10.5q-40 0 -69.5 19t-29.5 57q0 23 11 44t30.5 37.5t47 26t60.5 9.5q20 0 37 -3.5t24 -8.5v363l-267 -42v-388
-q0 -41 -13.5 -72.5t-36.5 -52.5t-53 -31.5t-63 -10.5z" />
-    <glyph glyph-name="uni2611_uniFE0F" unicode="&#xfe0f;" 
-d="M250 104q-28 77 -62.5 145t-77.5 132l56 38q37 -58 67.5 -121t50.5 -126h4q32 110 84.5 219t118.5 206h-473v-564h532v532q-68 -95 -123.5 -208.5t-90.5 -242.5zM-25 -10v630l61 51h508q51 67 108 124l54 -50l-40.5 -40.5t-40.5 -43.5v-610l-52 -61h-598z" />
-    <glyph glyph-name="uni2713_uniFE0F" unicode="&#xfe0f;" 
-d="M145 -20q-30 83 -66.5 154.5t-84.5 140.5l56 38q42 -63 75.5 -130.5t56.5 -134.5h4q27 89 66 178t87 171.5t103 155.5t114 131l54 -50q-59 -55 -115 -124.5t-105 -151.5t-90 -174.5t-69 -193.5z" />
-    <glyph glyph-name="uni2665_uniFE0F" unicode="&#xfe0f;" 
-d="M302 -12h-4q-90 97 -146.5 171t-88 135.5t-43 114t-11.5 106.5q0 49 11 86t30.5 62t46 37.5t57.5 12.5q49 0 86 -26.5t58 -93.5h4q21 67 58.5 93.5t85.5 26.5q31 0 57.5 -12.5t46 -37.5t30.5 -62t11 -86q0 -54 -11.5 -106.5t-43 -114t-88 -135.5t-146.5 -171z" />
-    <glyph glyph-name="uni2663_uniFE0F" unicode="&#xfe0f;" 
-d="M105 0v40q33 5 61 17t50 35.5t37.5 61.5t24.5 94h-7q-21 -50 -56.5 -68.5t-72.5 -18.5q-60 0 -96.5 42t-36.5 110q0 35 11 61.5t30 44t45 26.5t55 9q17 0 34 -4.5t40 -15.5l4 4q-25 22 -40 43.5t-22.5 41t-10 36t-2.5 29.5q0 27 11.5 50t31.5 39.5t46.5 26t57.5 9.5
-t57.5 -9.5t46.5 -26t31.5 -39.5t11.5 -50q0 -13 -2.5 -29.5t-10 -36t-22.5 -41t-40 -43.5l4 -4q23 11 40 15.5t34 4.5q29 0 55 -9t45 -26.5t30 -44t11 -61.5q0 -34 -9.5 -62t-27 -48t-42 -31t-54.5 -11q-19 0 -37.5 4.5t-35.5 14.5t-31.5 26.5t-24.5 41.5h-7q9 -56 24.5 -94
-t37.5 -61.5t50 -35.5t61 -17v-40h-390z" />
-    <glyph glyph-name="uni2666_uniFE0F" unicode="&#xfe0f;" 
-d="M302 -12h-4l-293 367v4l293 365h4l293 -365v-4z" />
-    <glyph glyph-name="uni2660_uniFE0F" unicode="&#xfe0f;" 
-d="M105 0v40q33 5 61 17t50 35.5t37.5 61.5t24.5 94h-7q-23 -52 -57 -71t-76 -19q-56 0 -92.5 33t-36.5 103q0 45 13 85t46 87.5t88.5 108.5t141.5 149h4q85 -88 141 -149t89 -108.5t46 -87.5t13 -85q0 -70 -36.5 -103t-92.5 -33q-42 0 -76 19t-57 71h-7q9 -56 24.5 -94
-t37.5 -61.5t50 -35.5t61 -17v-40h-390z" />
-    <glyph glyph-name="uni263A_uniFE0F" unicode="&#xfe0f;" 
-d="M300 39q-64 0 -117.5 21.5t-92 60.5t-60 92.5t-21.5 116.5t21.5 116.5t60 92.5t92 60.5t117.5 21.5t117.5 -21.5t92 -60.5t60 -92.5t21.5 -116.5t-21.5 -116.5t-60 -92.5t-92 -60.5t-117.5 -21.5zM300 84q53 0 97.5 18t76 50.5t49 77.5t17.5 100t-17.5 100t-49 77.5
-t-76 50.5t-97.5 18t-97.5 -18t-76 -50.5t-49 -77.5t-17.5 -100t17.5 -100t49 -77.5t76 -50.5t97.5 -18zM221 340q-23 0 -35.5 17.5t-12.5 46.5t12.5 46.5t35.5 17.5t36 -17.5t13 -46.5t-13 -46.5t-36 -17.5zM379 340q-23 0 -36 17.5t-13 46.5t13 46.5t36 17.5t35.5 -17.5
-t12.5 -46.5t-12.5 -46.5t-35.5 -17.5zM300 152q-66 0 -106.5 34.5t-48.5 95.5l34 13q14 -39 45 -57t76 -18t76 18t45 57l34 -13q-8 -61 -48.5 -95.5t-106.5 -34.5zM236 397q13 0 13 15t-13 15t-13 -15t13 -15zM393 397q13 0 13 15t-13 15q-12 0 -12 -15t12 -15z" />
-    <glyph glyph-name="uni263B_uniFE0F" unicode="&#xfe0f;" 
-d="M300 59q-60 0 -110 20.5t-86 56.5t-55.5 85.5t-19.5 108.5t19.5 108.5t55.5 85.5t86 56.5t110 20.5t110 -20.5t86 -56.5t55.5 -85.5t19.5 -108.5t-19.5 -108.5t-55.5 -85.5t-86 -56.5t-110 -20.5zM220 345q23 0 35 18t12 45q0 26 -12 44t-35 18t-35.5 -18t-12.5 -44
-q0 -27 12.5 -45t35.5 -18zM380 345q23 0 35.5 18t12.5 45q0 26 -12.5 44t-35.5 18t-35 -18t-12 -44q0 -27 12 -45t35 -18zM300 149q68 0 108 33t51 96l-34 13q-15 -39 -47 -58t-78 -19t-78 19t-47 58l-34 -13q11 -63 51 -96t108 -33zM208 394q-7 0 -12 4.5t-5 13.5t5 14
-t12 5q6 0 11 -5t5 -14t-5 -13.5t-11 -4.5zM368 394q-7 0 -12 4.5t-5 13.5t5 14t12 5t12 -5t5 -14t-5 -13.5t-12 -4.5z" />
-    <glyph glyph-name="uni2764_uniFE0F" unicode="&#xfe0f;" 
-d="M302 9h-4q-24 47 -60.5 78.5t-77.5 57.5t-82 51t-74.5 59t-54 82t-20.5 119q0 49 14.5 86.5t41 63t62.5 38.5t79 13q66 0 109.5 -29.5t62.5 -103.5h4q19 74 62.5 103.5t109.5 29.5q43 0 79 -13t62.5 -38.5t41 -63t14.5 -86.5q0 -71 -20.5 -119t-54 -82t-74.5 -59t-82 -51
-t-77.5 -57.5t-60.5 -78.5z" />
-    <glyph glyph-name="uni2615_uniFE0F" unicode="&#xfe0f;" 
-d="M248 39q-64 0 -115.5 23t-88 71t-56.5 121.5t-20 173.5q0 94 74 143.5t206 49.5q121 0 190 -39.5t83 -114.5q58 -11 92.5 -44.5t34.5 -102.5q0 -38 -15 -69t-40.5 -53.5t-59.5 -34.5t-72 -12q-35 -58 -91 -85t-122 -27zM248 80q61 0 110.5 24.5t76.5 81.5q42 0 73 11
-t51.5 29t30.5 42.5t10 51.5q0 46 -29 78t-88 32q0 72 -60.5 112t-174.5 40q-113 0 -173.5 -43.5t-60.5 -118.5q0 -90 17 -154t48 -105.5t74 -61t95 -19.5zM248 326q-93 0 -142.5 22t-73.5 62q15 47 71.5 74.5t144.5 27.5t145 -28t72 -74q-12 -20 -30 -35.5t-44 -26.5
-t-61 -16.5t-82 -5.5zM458 250q10 28 14.5 56t6.5 56q29 0 43 -10t14 -38q0 -32 -23 -48t-55 -16zM310 419q-43 29 -73 39.5t-58 10.5q-25 0 -38 -8t-13 -19q0 -8 6.5 -13.5t24.5 -9.5q-18 -5 -24.5 -10t-6.5 -13q0 -11 13 -19.5t38 -8.5q28 0 58 11t73 40zM314 419
-q23 -14 40 -18.5t26 -4.5q11 0 18.5 6t7.5 17t-7.5 16.5t-18.5 5.5q-9 0 -26 -4t-40 -18z" />
-    <glyph glyph-name="u1F4A9_uniFE0F" unicode="&#xfe0f;" 
-d="M300 14q-80 0 -137 6t-94.5 22.5t-55 44.5t-17.5 73q0 95 91 118q-18 14 -27 35.5t-9 54.5q0 54 30.5 83.5t78.5 38.5q-9 9 -15 20t-6 32q0 25 9.5 39.5t24.5 22.5t34.5 12.5t39.5 9.5t39 12.5t33 23.5q142 -39 142 -118q0 -20 -5 -31.5t-16 -22.5q48 -9 78.5 -38.5
-t30.5 -83.5q0 -33 -9 -54.5t-27 -35.5q91 -23 91 -118q0 -45 -17.5 -73t-55 -44.5t-95 -22.5t-136.5 -6zM300 109q63 0 100 28t43 87h-286q6 -59 43 -87t100 -28zM148 312l28 -2q2 35 10.5 50.5t26.5 15.5t27 -15.5t11 -50.5l28 2q-1 65 -17.5 92.5t-48.5 27.5t-48 -27.5
-t-17 -92.5zM321 312l28 -2q2 35 11 50.5t27 15.5t26.5 -15.5t10.5 -50.5l28 2q-1 65 -17 92.5t-48 27.5t-48.5 -27.5t-17.5 -92.5z" />
-    <glyph glyph-name="u1F916_uniFE0F" unicode="&#xfe0f;" 
-d="M300 39q-90 0 -159.5 42.5t-103.5 126.5q-63 12 -63 140q0 38 10.5 56.5t35.5 23.5q22 98 96 145.5t184 47.5t184 -47.5t96 -145.5q25 -5 35.5 -23.5t10.5 -56.5q0 -128 -63 -140q-34 -84 -103.5 -126.5t-159.5 -42.5zM300 84q51 0 95 16t76 48.5t50.5 82.5t18.5 119
-q0 61 -16.5 104t-48 70t-76 39.5t-99.5 12.5q-56 0 -100 -12.5t-75.5 -39.5t-48 -70t-16.5 -104q0 -69 18.5 -119t50.5 -82.5t76 -48.5t95 -16zM300 258q-98 0 -145.5 21t-47.5 75q0 83 51.5 121.5t141.5 38.5t141.5 -38.5t51.5 -121.5q0 -54 -47.5 -75t-145.5 -21zM147 332
-l32 -2q2 33 10 47.5t26 14.5t26 -14.5t10 -47.5l32 2q-2 65 -19 92.5t-49 27.5t-49 -27.5t-19 -92.5zM317 332l32 -2q2 33 10 47.5t26 14.5t26 -14.5t10 -47.5l32 2q-2 65 -19 92.5t-49 27.5t-49 -27.5t-19 -92.5zM300 149q-15 0 -26 5.5t-11 18.5q0 9 7 12t30 3t30 -3
-t7 -12q0 -13 -11 -18.5t-26 -5.5z" />
-    <glyph glyph-name="u1F512_uniFE0F" unicode="&#xfe0f;" 
-d="M85 -70l-40 36v518l40 36h46v153q0 88 44 135.5t125 47.5t125 -47.5t44 -135.5v-153h46l40 -36v-518l-40 -36h-430zM246 59l44 -20h20l44 20l-26 169q29 11 42.5 31.5t13.5 47.5q0 35 -24.5 59t-59.5 24t-59.5 -24t-24.5 -59q0 -27 13.5 -47.5t42.5 -31.5zM199 520h202
-v145q0 60 -25 93t-76 33t-76 -33t-25 -93v-145z" />
-    <glyph glyph-name=".notdef" 
-d="M62 0v660h476v-660h-476zM170 58h257l-73 132l-52 103h-4l-54 -103zM127 110l128 230l-128 232v-462zM298 387h4l49 94l66 119h-235l66 -119zM345 340l127 -230v462z" />
-    <glyph glyph-name="space" unicode=" " 
- />
-    <glyph glyph-name="A" unicode="A" 
-d="M232 367l-31 -100h196l-31 100q-17 55 -33.5 109.5t-31.5 111.5h-4q-16 -57 -32 -111.5t-33 -109.5zM32 0l221 656h94l221 -656h-88l-62 200h-238l-63 -200h-85z" />
-    <glyph glyph-name="B" unicode="B" 
-d="M99 0v656h186q50 0 91.5 -9t71 -28t46 -49.5t16.5 -73.5q0 -49 -28 -88.5t-87 -54.5v-4q72 -11 112 -50t40 -107q0 -48 -18 -84t-50.5 -60t-78 -36t-100.5 -12h-201zM182 380h89q84 0 120.5 27t36.5 82q0 54 -38.5 75.5t-114.5 21.5h-93v-206zM182 70h106q85 0 131 29.5
-t46 96.5q0 61 -45 87.5t-132 26.5h-106v-240z" />
-    <glyph glyph-name="C" unicode="C" 
-d="M351 -12q-61 0 -113 23t-90.5 66.5t-60.5 107t-22 143.5q0 79 22 142t61 107t93 67.5t118 23.5q59 0 104.5 -24t74.5 -56l-47 -53q-26 27 -58 43.5t-74 16.5q-47 0 -85.5 -18.5t-65.5 -53t-42 -83.5t-15 -110q0 -62 15 -111.5t42 -84.5t65.5 -54t85.5 -19q45 0 80.5 19
-t67.5 54l47 -51q-39 -45 -88 -70t-115 -25z" />
-    <glyph glyph-name="D" unicode="D" 
-d="M87 0v656h162q149 0 226.5 -84t77.5 -241t-77.5 -244t-222.5 -87h-166zM170 68h73q113 0 168.5 69t55.5 194t-55.5 191t-168.5 66h-73v-520z" />
-    <glyph glyph-name="E" unicode="E" 
-d="M114 0v656h406v-70h-322v-206h272v-71h-272v-238h332v-71h-416z" />
-    <glyph glyph-name="F" unicode="F" 
-d="M133 0v656h403v-70h-319v-222h270v-70h-270v-294h-84z" />
-    <glyph glyph-name="G" unicode="G" 
-d="M337 -12q-62 0 -114 23t-90 66.5t-59 107t-21 143.5q0 79 21.5 142.5t60 107t92 67t117.5 23.5q33 0 60 -7t49.5 -18.5t40 -25.5t31.5 -29l-47 -53q-24 26 -55 43t-79 17q-46 0 -83.5 -18.5t-64.5 -53t-41.5 -83.5t-14.5 -110q0 -62 13.5 -111.5t39 -84.5t63.5 -54
-t86 -19q35 0 65 10.5t49 28.5v171h-131v69h208v-276q-31 -32 -81.5 -54t-114.5 -22z" />
-    <glyph glyph-name="H" unicode="H" 
-d="M79 0v656h84v-275h274v275h84v-656h-84v309h-274v-309h-84z" />
-    <glyph glyph-name="I" unicode="I" 
-d="M95 0v71h163v515h-163v70h410v-70h-163v-515h163v-71h-410z" />
-    <glyph glyph-name="J" unicode="J" 
-d="M276 -12q-55 0 -108 26t-87 83l52 51q28 -45 65.5 -66t75.5 -21q71 0 103.5 37.5t32.5 118.5v370h-275v70h358v-447q0 -46 -11 -86.5t-36.5 -70.5t-67 -47.5t-102.5 -17.5z" />
-    <glyph glyph-name="K" unicode="K" 
-d="M98 0v656h84v-329h3l276 329h95l-208 -249l232 -407h-94l-191 344l-113 -135v-209h-84z" />
-    <glyph glyph-name="L" unicode="L" 
-d="M134 0v656h82v-585h325v-71h-407z" />
-    <glyph glyph-name="M" unicode="M" 
-d="M72 0v656h102l92 -280l32 -106h4l31 106l93 280h102v-656h-80v328q0 24 1.5 55.5t4 63.5t4.5 62t4 51h-3l-37 -128l-94 -258h-60l-92 258l-38 128h-2q2 -21 4.5 -51t4.5 -62t3.5 -63.5t1.5 -55.5v-328h-78z" />
-    <glyph glyph-name="N" unicode="N" 
-d="M82 0v656h92l210 -412l63 -136h2q-2 49 -6.5 102.5t-4.5 105.5v340h80v-656h-92l-210 412l-63 136h-2q2 -51 6.5 -102.5t4.5 -102.5v-343h-80z" />
-    <glyph glyph-name="O" unicode="O" 
-d="M300 -12q-56 0 -102 23.5t-79.5 67.5t-52 107.5t-18.5 144.5q0 79 18.5 142t52 106t79.5 66t102 23q55 0 101.5 -23t80 -66t52 -106t18.5 -142q0 -81 -18.5 -144.5t-52 -107.5t-80 -67.5t-101.5 -23.5zM300 61q37 0 68 18.5t52.5 53.5t33.5 85t12 113q0 62 -12 111
-t-33.5 83t-52.5 52t-68 18q-38 0 -68.5 -18t-52 -52t-33.5 -83t-12 -111q0 -63 12 -113t33.5 -85t52 -53.5t68.5 -18.5z" />
-    <glyph glyph-name="P" unicode="P" 
-d="M102 0v656h198q54 0 99 -10t77 -32.5t49.5 -59.5t17.5 -91q0 -52 -17.5 -90t-50 -63t-77 -37.5t-98.5 -12.5h-115v-260h-83zM185 328h105q87 0 128 32.5t41 102.5q0 71 -42 98.5t-127 27.5h-105v-261z" />
-    <glyph glyph-name="Q" unicode="Q" 
-d="M300 57q76 0 120.5 72t44.5 202q0 124 -44.5 195t-120.5 71t-120.5 -71t-44.5 -195q0 -130 44.5 -202t120.5 -72zM481 -163q-87 0 -142 44t-79 110q-48 8 -86.5 35t-66 70.5t-42.5 102.5t-15 132q0 79 18 142t51 106.5t79 66.5t102 23t102 -23t79 -66.5t51 -106.5
-t18 -142q0 -71 -14.5 -129.5t-41 -101.5t-63.5 -70.5t-83 -36.5q17 -43 54 -64t88 -21q15 0 27.5 3t21.5 7l16 -67q-17 -6 -35 -10t-39 -4z" />
-    <glyph glyph-name="R" unicode="R" 
-d="M100 0v656h204q50 0 92 -9.5t72.5 -31.5t47.5 -57t17 -86q0 -77 -40 -123t-107 -63l167 -286h-95l-158 277h-117v-277h-83zM183 345h109q77 0 117.5 31.5t40.5 95.5q0 65 -40.5 91t-117.5 26h-109v-244z" />
-    <glyph glyph-name="S" unicode="S" 
-d="M305 -12q-72 0 -132.5 26t-105.5 71l50 58q37 -37 86 -59.5t106 -22.5q68 0 105.5 29t37.5 75q0 26 -9 44t-25 31t-37.5 23t-46.5 21l-94 41q-25 10 -50 24t-45.5 34t-33.5 47.5t-13 63.5q0 37 16 69t44.5 55.5t68 36.5t86.5 13q62 0 114 -22.5t88 -58.5l-44 -54
-q-32 29 -71 45.5t-90 16.5q-57 0 -92 -25.5t-35 -70.5q0 -24 10.5 -40.5t27 -29t37.5 -21.5l42 -18l92 -40q30 -12 56.5 -27.5t46 -36t31 -48t11.5 -63.5q0 -39 -16 -73t-46 -59.5t-73 -40t-97 -14.5z" />
-    <glyph glyph-name="T" unicode="T" 
-d="M258 0v586h-216v70h516v-70h-216v-586h-84z" />
-    <glyph glyph-name="U" unicode="U" 
-d="M301 -12q-48 0 -89 14t-70.5 45.5t-46 80.5t-16.5 120v408h84v-410q0 -51 10.5 -86.5t29 -57t43.5 -31.5t55 -10t55 10t44 31.5t29.5 57t10.5 86.5v410h81v-408q0 -71 -16.5 -120t-45.5 -80.5t-69.5 -45.5t-88.5 -14z" />
-    <glyph glyph-name="V" unicode="V" 
-d="M252 0l-209 656h88l106 -354q17 -59 31 -109t32 -108h4q9 29 17 55.5t15.5 52.5t15 53t15.5 56l105 354h85l-208 -656h-97z" />
-    <glyph glyph-name="W" unicode="W" 
-d="M110 0l-100 657h94l48 -412q2 -21 4 -38t3.5 -34.5t3 -36.5t2.5 -43h3q4 24 8 43t7.5 36.5t7.5 34.5t9 37l64 244h80l62 -244q5 -20 9 -37t7.5 -34.5t7 -36.5t8.5 -43h4q1 24 2.5 43t3 36.5t3 34.5t3.5 37l46 413h90l-96 -657h-104l-64 264q-8 30 -13.5 59t-10.5 59h-3
-q-5 -30 -10 -59t-13 -59l-64 -264h-102z" />
-    <glyph glyph-name="X" unicode="X" 
-d="M54 0l196 339l-183 317h92l92 -168q13 -23 25 -44.5t28 -50.5h4q14 29 24.5 50.5t22.5 44.5l90 168h88l-183 -321l196 -335h-92l-99 177q-14 24 -27.5 49.5t-30.5 55.5h-4q-14 -30 -27 -55.5t-26 -49.5l-98 -177h-88z" />
-    <glyph glyph-name="Y" unicode="Y" 
-d="M258 0v234l-220 422h88l99 -195q19 -38 37 -75.5t38 -77.5h4l39 78l38 76l95 194h86l-220 -422v-234h-84z" />
-    <glyph glyph-name="Z" unicode="Z" 
-d="M65 0v50l366 537h-334v70h437v-50l-367 -536h372v-71h-474z" />
-    <glyph glyph-name="a" unicode="a" 
-d="M246 -12q-34 0 -64 9.5t-52.5 27t-35.5 43t-13 58.5q0 41 19.5 71.5t62 52.5t109.5 36t161 22q-1 25 -8 47t-22 38.5t-39.5 26.5t-59.5 10q-48 0 -92 -18.5t-78 -39.5l-32 56q18 12 42.5 24.5t52 22.5t58.5 16.5t63 6.5q100 0 148.5 -54.5t48.5 -145.5v-298h-67l-7 66h-3
-q-41 -32 -90.5 -55t-101.5 -23zM268 54q42 0 82.5 18.5t82.5 53.5v128q-78 -6 -130.5 -17t-84 -26.5t-44.5 -35t-13 -43.5q0 -21 9 -35.5t23.5 -24t34 -14t40.5 -4.5z" />
-    <glyph glyph-name="b" unicode="b" 
-d="M320 -12q-35 0 -75.5 17.5t-75.5 48.5h-3l-7 -54h-66v712h82v-194l-3 -94h3q33 34 76.5 54t86.5 20q49 0 87 -17.5t63.5 -50t38.5 -78t13 -101.5q0 -62 -18 -111t-48.5 -83t-70.5 -51.5t-83 -17.5zM307 57q32 0 59 13.5t47 38t31 60.5t11 81q0 40 -8 73t-24.5 56.5
-t-42.5 36.5t-62 13q-32 0 -68.5 -17.5t-74.5 -55.5v-242q35 -31 70.5 -44t61.5 -13z" />
-    <glyph glyph-name="c" unicode="c" 
-d="M346 -12q-57 0 -105.5 17t-84.5 49.5t-56 80t-20 107.5q0 61 21.5 108.5t58.5 80.5t86.5 50t104.5 17q60 0 103.5 -21t73.5 -50l-41 -53q-30 26 -62.5 41t-70.5 15q-42 0 -77 -13.5t-59.5 -38.5t-38.5 -59.5t-14 -76.5t13.5 -76t38 -58.5t59 -38t76.5 -13.5
-q45 0 82.5 17.5t67.5 43.5l37 -53q-41 -36 -90 -56t-103 -20z" />
-    <glyph glyph-name="d" unicode="d" 
-d="M271 -12q-48 0 -86.5 17t-66.5 49.5t-43 79.5t-15 108q0 59 18.5 106.5t49 80.5t70.5 51t83 18q44 0 78.5 -16.5t66.5 -46.5h3l-4 90v187h82v-712h-68l-7 64h-3q-30 -31 -71.5 -53.5t-86.5 -22.5zM288 57q72 0 137 73v242q-33 31 -64.5 44t-63.5 13t-59.5 -13.5t-48 -38
-t-32.5 -58.5t-12 -76q0 -88 37.5 -137t105.5 -49z" />
-    <glyph glyph-name="e" unicode="e" 
-d="M330 -12q-55 0 -102.5 17t-83 50t-56 80.5t-20.5 108.5q0 59 20.5 106t55 80t79 50.5t93.5 17.5q52 0 93.5 -16.5t70 -46.5t43.5 -72t15 -93q0 -14 -1 -27t-3 -23h-383q8 -83 60.5 -124.5t128.5 -41.5q44 0 79.5 12.5t68.5 33.5l30 -54q-36 -24 -82.5 -41t-105.5 -17z
-M318 433q-30 0 -57.5 -10t-49.5 -28.5t-37 -46.5t-21 -64h310q-5 75 -43.5 112t-101.5 37z" />
-    <glyph glyph-name="f" unicode="f" 
-d="M242 0v419h-139v62l139 5v41q0 89 47.5 143t148.5 54q72 0 140 -28l-19 -62q-30 14 -55.5 18.5t-57.5 4.5q-66 0 -94.5 -33.5t-28.5 -93.5v-44h204v-67h-204v-419h-81z" />
-    <glyph glyph-name="g" unicode="g" 
-d="M296 -224q-107 0 -165.5 35t-58.5 100q0 29 20.5 57t59.5 51v4q-20 11 -35 30t-15 50q0 23 15 47.5t43 43.5v4q-25 19 -42.5 50.5t-17.5 75.5q0 40 15.5 72t41.5 54.5t60.5 35t73.5 12.5q40 0 72 -12h201v-67h-126q17 -17 29 -43t12 -55q0 -39 -14.5 -70t-40 -52.5
-t-60 -33t-73.5 -11.5q-19 0 -40.5 4.5t-41.5 13.5q-38 -24 -38 -56q0 -29 26.5 -42.5t74.5 -13.5h109q94 0 139.5 -26t45.5 -88q0 -34 -19 -65t-54 -54t-85 -37t-112 -14zM291 209q47 0 79.5 31t32.5 84q0 25 -9 46t-24 36t-35.5 23.5t-43.5 8.5t-43.5 -8.5t-35.5 -23.5
-t-24 -36t-9 -46q0 -53 33 -84t79 -31zM302 -164q42 0 76 8t58 21.5t36.5 31t12.5 36.5q0 35 -27.5 47t-83.5 12h-95q-21 0 -39.5 1.5t-34.5 6.5q-35 -19 -48.5 -39.5t-13.5 -41.5q0 -38 40.5 -60.5t118.5 -22.5z" />
-    <glyph glyph-name="h" unicode="h" 
-d="M93 0v712h82v-194l-5 -115h3q38 41 81.5 68t100.5 27q87 0 127.5 -49.5t40.5 -146.5v-302h-82v291q0 69 -26 102.5t-86 33.5q-22 0 -40.5 -5.5t-36.5 -16.5t-37 -27.5t-40 -38.5v-339h-82z" />
-    <glyph glyph-name="i" unicode="i" 
-d="M316 0v419h-226v67h308v-486h-82zM348 588q-28 0 -47 17.5t-19 46.5t19 46.5t47 17.5t47 -17.5t19 -46.5t-19 -46.5t-47 -17.5z" />
-    <glyph glyph-name="j" unicode="j" 
-d="M194 -217q-38 0 -74 9.5t-65 23.5l27 61q26 -13 54.5 -20t56.5 -7q36 0 60 9t38 26t19.5 41.5t5.5 55.5v437h-226v67h308v-498q0 -45 -10 -82.5t-33.5 -65t-62.5 -42.5t-98 -15zM348 588q-28 0 -47 17.5t-19 46.5t19 46.5t47 17.5t47 -17.5t19 -46.5t-19 -46.5t-47 -17.5
-z" />
-    <glyph glyph-name="k" unicode="k" 
-d="M106 0v712h82v-482h4l262 256h94l-194 -191l220 -295h-92l-179 245l-115 -113v-132h-82z" />
-    <glyph glyph-name="l" unicode="l" 
-d="M407 -12q-78 0 -119 44t-41 131v482h-173v67h255v-555q0 -54 26 -77.5t70 -23.5q43 0 91 22l21 -61q-34 -14 -62 -21.5t-68 -7.5z" />
-    <glyph glyph-name="m" unicode="m" 
-d="M58 0v486h66l7 -64h2q19 34 44 55t67 21q71 0 92 -84q21 39 46.5 61.5t67.5 22.5q51 0 79.5 -38.5t28.5 -111.5v-348h-82v342q0 85 -52 85q-26 0 -42 -18.5t-36 -56.5v-352h-76v342q0 42 -11.5 63.5t-38.5 21.5q-26 0 -44 -18.5t-36 -56.5v-352h-82z" />
-    <glyph glyph-name="n" unicode="n" 
-d="M93 0v486h68l7 -83h4q38 41 82 68t101 27q87 0 127.5 -49.5t40.5 -146.5v-302h-82v291q0 69 -26 102.5t-86 33.5q-22 0 -40.5 -5.5t-36.5 -16.5t-37 -27.5t-40 -38.5v-339h-82z" />
-    <glyph glyph-name="o" unicode="o" 
-d="M300 -12q-48 0 -91.5 17t-76.5 49.5t-52.5 80t-19.5 107.5q0 61 19.5 108.5t52.5 80.5t76.5 50t91.5 17t91.5 -17t76.5 -50t52.5 -80.5t19.5 -108.5q0 -60 -19.5 -107.5t-52.5 -80t-76.5 -49.5t-91.5 -17zM300 56q35 0 63.5 13.5t49 38t31.5 58.5t11 76t-11 76.5
-t-31.5 59.5t-49 38.5t-63.5 13.5t-63.5 -13.5t-49 -38.5t-31.5 -59.5t-11 -76.5t11 -76t31.5 -58.5t49 -38t63.5 -13.5z" />
-    <glyph glyph-name="p" unicode="p" 
-d="M93 -205v691h68l7 -62h3q34 32 78.5 53t89.5 21q49 0 86.5 -17.5t63 -50t38.5 -78t13 -102.5q0 -62 -18 -110.5t-48.5 -82.5t-70.5 -51.5t-84 -17.5q-34 0 -73.5 16.5t-71.5 46.5h-3l4 -92v-164h-82zM305 57q66 0 108 51t42 142q0 40 -8 73t-24.5 56.5t-42.5 36.5t-62 13
-q-32 0 -68.5 -17.5t-74.5 -55.5v-242q35 -31 70 -44t60 -13z" />
-    <glyph glyph-name="q" unicode="q" 
-d="M425 -205v177l4 90h-3q-30 -31 -70.5 -52.5t-85.5 -21.5q-47 0 -86 17t-66.5 49.5t-42.5 79.5t-15 108q0 59 18.5 106.5t49 80.5t70.5 51t83 18q45 0 80 -17t70 -49h3l7 54h66v-691h-82zM288 57q72 0 137 73v242q-33 31 -64.5 44t-63.5 13t-59.5 -13.5t-48 -38
-t-32.5 -58.5t-12 -76q0 -88 37.5 -137t105.5 -49z" />
-    <glyph glyph-name="r" unicode="r" 
-d="M146 0v486h68l7 -115h3q38 59 93.5 93t123.5 34q27 0 50 -4.5t46 -15.5l-19 -71q-26 9 -43.5 13t-46.5 4q-55 0 -105.5 -31.5t-94.5 -107.5v-285h-82z" />
-    <glyph glyph-name="s" unicode="s" 
-d="M310 -12q-72 0 -133 22.5t-106 53.5l38 54q42 -30 92.5 -48t118.5 -18q62 0 92.5 22.5t30.5 53.5q0 14 -5 26t-21.5 23t-46.5 21t-79 20q-95 20 -142.5 53.5t-47.5 88.5q0 29 13 54.5t38.5 44t63 29t87.5 10.5q56 0 108 -18.5t88 -43.5l-40 -53q-34 23 -75 37t-88 14
-q-62 0 -87 -21t-25 -49q0 -32 33 -48.5t108 -32.5q61 -13 100 -27.5t61.5 -32.5t31 -40t8.5 -50q0 -30 -14 -56t-41.5 -46t-68 -31.5t-92.5 -11.5z" />
-    <glyph glyph-name="t" unicode="t" 
-d="M394 -12q-53 0 -89 14.5t-58 41t-31.5 63.5t-9.5 82v230h-137v62l140 5l11 156h68v-156h239v-67h-239v-231q0 -33 6 -57.5t20 -41.5t38 -25.5t59 -8.5t63 6t54 16l18 -60q-33 -12 -69.5 -20.5t-82.5 -8.5z" />
-    <glyph glyph-name="u" unicode="u" 
-d="M246 -12q-88 0 -128.5 49.5t-40.5 146.5v302h83v-291q0 -69 25.5 -102.5t86.5 -33.5q42 0 76 21.5t75 68.5v337h82v-486h-67l-7 85h-4q-37 -43 -80.5 -70t-100.5 -27z" />
-    <glyph glyph-name="v" unicode="v" 
-d="M256 0l-205 486h83l112 -276q15 -37 28.5 -72.5t26.5 -70.5h4q13 35 25.5 70.5t27.5 72.5l112 276h79l-201 -486h-92z" />
-    <glyph glyph-name="w" unicode="w" 
-d="M114 0l-106 486h82l58 -282q7 -35 12 -67t10 -67h4q5 35 12.5 67.5t15.5 66.5l60 252h82l58 -252q8 -35 16.5 -67t13.5 -67h4q6 35 10.5 67t11.5 67l58 282h76l-104 -486h-106l-56 232q-12 51 -24 144h-4q-12 -93 -24 -144l-54 -232h-106z" />
-    <glyph glyph-name="x" unicode="x" 
-d="M64 0l185 252l-171 234h91l77 -107q13 -20 27.5 -41t29.5 -41h4q14 20 28 42t27 42l73 105h87l-173 -241l186 -245h-90l-85 112q-15 21 -31.5 44t-32.5 44h-4q-15 -22 -30 -43.5t-30 -44.5l-80 -112h-88z" />
-    <glyph glyph-name="y" unicode="y" 
-d="M131 -209q-36 0 -64 10l17 65q10 -3 21.5 -5t22.5 -2q51 0 83 29.5t50 74.5l15 36l-227 487h83l119 -269q14 -32 29.5 -69t30.5 -72h4q13 35 26.5 71.5t25.5 69.5l106 269h78l-214 -526q-14 -36 -32 -67t-43 -53.5t-57.5 -35.5t-73.5 -13z" />
-    <glyph glyph-name="z" unicode="z" 
-d="M71 0v44l333 375h-296v67h414v-44l-334 -375h343v-67h-460z" />
-    <glyph glyph-name="Agrave" unicode="&#xc0;" 
-d="M232 367l-31 -100h196l-31 100q-17 55 -33.5 109.5t-31.5 111.5h-4q-16 -57 -32 -111.5t-33 -109.5zM32 0l221 656h94l221 -656h-88l-62 200h-238l-63 -200h-85zM329 697l-152 115l47 55l141 -128z" />
-    <glyph glyph-name="Aacute" unicode="&#xc1;" 
-d="M232 367l-31 -100h196l-31 100q-17 55 -33.5 109.5t-31.5 111.5h-4q-16 -57 -32 -111.5t-33 -109.5zM32 0l221 656h94l221 -656h-88l-62 200h-238l-63 -200h-85zM271 697l-36 42l141 128l47 -55z" />
-    <glyph glyph-name="Acircumflex" unicode="&#xc2;" 
-d="M232 367l-31 -100h196l-31 100q-17 55 -33.5 109.5t-31.5 111.5h-4q-16 -57 -32 -111.5t-33 -109.5zM32 0l221 656h94l221 -656h-88l-62 200h-238l-63 -200h-85zM188 699l-36 26l105 113h86l105 -113l-36 -26l-110 93h-4z" />
-    <glyph glyph-name="Atilde" unicode="&#xc3;" 
-d="M232 367l-31 -100h196l-31 100q-17 55 -33.5 109.5t-31.5 111.5h-4q-16 -57 -32 -111.5t-33 -109.5zM32 0l221 656h94l221 -656h-88l-62 200h-238l-63 -200h-85zM375 709q-28 0 -48 11t-36.5 24.5t-31 24.5t-32.5 11q-19 0 -32 -17t-16 -49l-56 4q3 57 30 90t72 33
-q28 0 48 -11t36.5 -24.5t31 -24.5t32.5 -11q40 0 48 66l56 -4q-3 -58 -30 -90.5t-72 -32.5z" />
-    <glyph glyph-name="Adieresis" unicode="&#xc4;" 
-d="M232 367l-31 -100h196l-31 100q-17 55 -33.5 109.5t-31.5 111.5h-4q-16 -57 -32 -111.5t-33 -109.5zM32 0l221 656h94l221 -656h-88l-62 200h-238l-63 -200h-85zM209 715q-22 0 -36.5 14t-14.5 37t14.5 36.5t36.5 13.5t36 -13.5t14 -36.5t-14 -37t-36 -14zM391 715
-q-22 0 -36 14t-14 37t14 36.5t36 13.5t36.5 -13.5t14.5 -36.5t-14.5 -37t-36.5 -14z" />
-    <glyph glyph-name="Amacron" unicode="&#x100;" 
-d="M232 367l-31 -100h196l-31 100q-17 55 -33.5 109.5t-31.5 111.5h-4q-16 -57 -32 -111.5t-33 -109.5zM32 0l221 656h94l221 -656h-88l-62 200h-238l-63 -200h-85zM166 735v57h268v-57h-268z" />
-    <glyph glyph-name="Abreve" unicode="&#x102;" 
-d="M232 367l-31 -100h196l-31 100q-17 55 -33.5 109.5t-31.5 111.5h-4q-16 -57 -32 -111.5t-33 -109.5zM32 0l221 656h94l221 -656h-88l-62 200h-238l-63 -200h-85zM300 705q-35 0 -61 10.5t-44 28t-28 41t-13 49.5l50 8q6 -35 29.5 -59.5t66.5 -24.5t66.5 24.5t29.5 59.5
-l50 -8q-3 -26 -13 -49.5t-28 -41t-44 -28t-61 -10.5z" />
-    <glyph glyph-name="Aring" unicode="&#xc5;" 
-d="M232 367l-31 -100h196l-31 100q-17 55 -33.5 109.5t-31.5 111.5h-4q-16 -57 -32 -111.5t-33 -109.5zM32 0l221 656h94l221 -656h-88l-62 200h-238l-63 -200h-85zM300 699q-42 0 -69.5 24.5t-27.5 65.5q0 42 27.5 66.5t69.5 24.5t69.5 -24.5t27.5 -66.5q0 -41 -27.5 -65.5
-t-69.5 -24.5zM300 735q20 0 35.5 14t15.5 40t-15.5 40t-35.5 14q-22 0 -37 -14t-15 -40t15 -40t37 -14z" />
-    <glyph glyph-name="Aringacute" unicode="&#x1fa;" 
-d="M232 367l-31 -100h196l-31 100q-17 55 -33.5 109.5t-31.5 111.5h-4q-16 -57 -32 -111.5t-33 -109.5zM32 0l221 656h94l221 -656h-88l-62 200h-238l-63 -200h-85zM300 699q-42 0 -69.5 24.5t-27.5 65.5q0 24 10 43t27 31l132 105l37 -50l-79 -42q30 -8 48.5 -31t18.5 -56
-q0 -41 -27.5 -65.5t-69.5 -24.5zM300 735q20 0 35.5 14t15.5 40t-15.5 40t-35.5 14q-22 0 -37 -14t-15 -40t15 -40t37 -14z" />
-    <glyph glyph-name="uni01CD" unicode="&#x1cd;" 
-d="M232 367l-31 -100h196l-31 100q-17 55 -33.5 109.5t-31.5 111.5h-4q-16 -57 -32 -111.5t-33 -109.5zM32 0l221 656h94l221 -656h-88l-62 200h-238l-63 -200h-85zM257 706l-105 113l36 26l110 -92h4l110 92l36 -26l-105 -113h-86z" />
-    <glyph glyph-name="Aogonek" unicode="&#x104;" 
-d="M515 -225q-44 0 -73.5 22.5t-29.5 68.5q0 23 8 43.5t20.5 37t28 30t30.5 23.5h-19l-62 200h-238l-63 -200h-85l221 656h94l221 -656q-38 -17 -64.5 -48t-26.5 -68q0 -26 16 -38.5t38 -12.5q17 0 29 6.5t21 14.5l26 -43q-17 -15 -40 -25.5t-52 -10.5zM232 367l-31 -100
-h196l-31 100q-17 55 -33.5 109.5t-31.5 111.5h-4q-16 -57 -32 -111.5t-33 -109.5z" />
-    <glyph glyph-name="uni1EA0" unicode="&#x1ea0;" 
-d="M232 367l-31 -100h196l-31 100q-17 55 -33.5 109.5t-31.5 111.5h-4q-16 -57 -32 -111.5t-33 -109.5zM32 0l221 656h94l221 -656h-88l-62 200h-238l-63 -200h-85zM300 -214q-28 0 -47 17.5t-19 46.5t19 46.5t47 17.5t47 -17.5t19 -46.5t-19 -46.5t-47 -17.5z" />
-    <glyph glyph-name="uni1EA2" unicode="&#x1ea2;" 
-d="M232 367l-31 -100h196l-31 100q-17 55 -33.5 109.5t-31.5 111.5h-4q-16 -57 -32 -111.5t-33 -109.5zM32 0l221 656h94l221 -656h-88l-62 200h-238l-63 -200h-85zM268 698l-9 38q24 7 40 17t16 29q0 39 -83 42l9 48q66 -2 102 -22.5t36 -58.5q0 -22 -9 -37.5t-24.5 -27
-t-35.5 -18t-42 -10.5z" />
-    <glyph glyph-name="uni1EA4" unicode="&#x1ea4;" 
-d="M232 367l-31 -100h196l-31 100q-17 55 -33.5 109.5t-31.5 111.5h-4q-16 -57 -32 -111.5t-33 -109.5zM32 0l221 656h94l221 -656h-88l-62 200h-238l-63 -200h-85zM205 699l-34 26l93 90h72l93 -90l-34 -26l-93 69h-4zM421 763l-30 32l97 93l35 -39z" />
-    <glyph glyph-name="uni1EA6" unicode="&#x1ea6;" 
-d="M232 367l-31 -100h196l-31 100q-17 55 -33.5 109.5t-31.5 111.5h-4q-16 -57 -32 -111.5t-33 -109.5zM32 0l221 656h94l221 -656h-88l-62 200h-238l-63 -200h-85zM205 699l-34 26l93 90h72l93 -90l-34 -26l-93 69h-4zM179 763l-90 88l35 37l85 -95z" />
-    <glyph glyph-name="uni1EA8" unicode="&#x1ea8;" 
-d="M232 367l-31 -100h196l-31 100q-17 55 -33.5 109.5t-31.5 111.5h-4q-16 -57 -32 -111.5t-33 -109.5zM32 0l221 656h94l221 -656h-88l-62 200h-238l-63 -200h-85zM205 699l-34 26l93 90h72l93 -90l-34 -26l-93 69h-4zM415 754l-11 35q19 5 32 12.5t13 23.5
-q0 20 -16.5 28.5t-54.5 10.5l9 42q59 -2 89.5 -20t30.5 -53q0 -38 -28 -55.5t-64 -23.5z" />
-    <glyph glyph-name="uni1EAA" unicode="&#x1eaa;" 
-d="M232 367l-31 -100h196l-31 100q-17 55 -33.5 109.5t-31.5 111.5h-4q-16 -57 -32 -111.5t-33 -109.5zM32 0l221 656h94l221 -656h-88l-62 200h-238l-63 -200h-85zM205 699l-34 26l93 87h72l93 -87l-34 -26l-93 66h-4zM366 839q-24 0 -41 8t-31.5 17t-27.5 17t-28 8
-q-18 0 -26.5 -12t-11.5 -34l-45 5q2 38 20 64.5t59 26.5q24 0 41 -7.5t31.5 -17t27.5 -17t28 -7.5q18 0 26.5 12t11.5 34l45 -5q-2 -39 -20 -65.5t-59 -26.5z" />
-    <glyph glyph-name="uni1EAC" unicode="&#x1eac;" 
-d="M232 367l-31 -100h196l-31 100q-17 55 -33.5 109.5t-31.5 111.5h-4q-16 -57 -32 -111.5t-33 -109.5zM32 0l221 656h94l221 -656h-88l-62 200h-238l-63 -200h-85zM188 699l-36 26l105 113h86l105 -113l-36 -26l-110 93h-4zM300 -214q-28 0 -47 17.5t-19 46.5t19 46.5
-t47 17.5t47 -17.5t19 -46.5t-19 -46.5t-47 -17.5z" />
-    <glyph glyph-name="uni1EAE" unicode="&#x1eae;" 
-d="M232 367l-31 -100h196l-31 100q-17 55 -33.5 109.5t-31.5 111.5h-4q-16 -57 -32 -111.5t-33 -109.5zM32 0l221 656h94l221 -656h-88l-62 200h-238l-63 -200h-85zM300 705q-35 0 -61 10.5t-44 28t-28 41t-13 49.5l47 8q6 -37 30 -62.5t69 -25.5t69 25.5t30 62.5l47 -8
-q-3 -26 -13 -49.5t-28 -41t-44 -28t-61 -10.5zM303 803l-41 29l95 116l53 -36z" />
-    <glyph glyph-name="uni1EB0" unicode="&#x1eb0;" 
-d="M232 367l-31 -100h196l-31 100q-17 55 -33.5 109.5t-31.5 111.5h-4q-16 -57 -32 -111.5t-33 -109.5zM32 0l221 656h94l221 -656h-88l-62 200h-238l-63 -200h-85zM300 705q-35 0 -61 10.5t-44 28t-28 41t-13 49.5l47 8q6 -37 30 -62.5t69 -25.5t69 25.5t30 62.5l47 -8
-q-3 -26 -13 -49.5t-28 -41t-44 -28t-61 -10.5zM297 803l-107 109l53 36l95 -116z" />
-    <glyph glyph-name="uni1EB2" unicode="&#x1eb2;" 
-d="M232 367l-31 -100h196l-31 100q-17 55 -33.5 109.5t-31.5 111.5h-4q-16 -57 -32 -111.5t-33 -109.5zM32 0l221 656h94l221 -656h-88l-62 200h-238l-63 -200h-85zM300 705q-35 0 -61 10.5t-44 28t-28 41t-13 49.5l47 8q6 -37 30 -62.5t69 -25.5t69 25.5t30 62.5l47 -8
-q-3 -26 -13 -49.5t-28 -41t-44 -28t-61 -10.5zM277 800l-10 35q18 5 31 12.5t13 23.5q0 20 -16.5 28.5t-53.5 10.5l8 42q59 -2 90 -20t31 -53q0 -19 -8 -32.5t-20.5 -23t-29.5 -15t-35 -8.5z" />
-    <glyph glyph-name="uni1EB4" unicode="&#x1eb4;" 
-d="M232 367l-31 -100h196l-31 100q-17 55 -33.5 109.5t-31.5 111.5h-4q-16 -57 -32 -111.5t-33 -109.5zM32 0l221 656h94l221 -656h-88l-62 200h-238l-63 -200h-85zM300 708q-35 0 -60.5 8.5t-43 23.5t-27 34t-12.5 40l46 8q5 -27 28 -48t69 -21t69 21t28 48l46 -8
-q-3 -21 -12.5 -40t-27 -34t-43 -23.5t-60.5 -8.5zM366 843q-24 0 -41 8t-31.5 17t-27.5 17t-28 8q-18 0 -26.5 -12t-11.5 -35l-45 5q2 39 20 65.5t59 26.5q24 0 41 -8t31.5 -17t27.5 -17t28 -8q18 0 26.5 12t11.5 34l45 -5q-2 -38 -20 -64.5t-59 -26.5z" />
-    <glyph glyph-name="uni1EB6" unicode="&#x1eb6;" 
-d="M232 367l-31 -100h196l-31 100q-17 55 -33.5 109.5t-31.5 111.5h-4q-16 -57 -32 -111.5t-33 -109.5zM32 0l221 656h94l221 -656h-88l-62 200h-238l-63 -200h-85zM300 705q-35 0 -61 10.5t-44 28t-28 41t-13 49.5l50 8q6 -35 29.5 -59.5t66.5 -24.5t66.5 24.5t29.5 59.5
-l50 -8q-3 -26 -13 -49.5t-28 -41t-44 -28t-61 -10.5zM300 -214q-28 0 -47 17.5t-19 46.5t19 46.5t47 17.5t47 -17.5t19 -46.5t-19 -46.5t-47 -17.5z" />
-    <glyph glyph-name="AE" unicode="&#xc6;" 
-d="M231 377l-46 -119h132v332h-3q-20 -54 -41.5 -106.5t-41.5 -106.5zM-1 0l264 656h319v-70h-189v-205h147v-71h-147v-239h198v-71h-274v191h-158l-73 -191h-87z" />
-    <glyph glyph-name="AEacute" unicode="&#x1fc;" 
-d="M231 377l-46 -119h132v332h-3q-20 -54 -41.5 -106.5t-41.5 -106.5zM-1 0l264 656h319v-70h-189v-205h147v-71h-147v-239h198v-71h-274v191h-158l-73 -191h-87zM391 697l-36 42l141 128l47 -55z" />
-    <glyph glyph-name="uni01E2" unicode="&#x1e2;" 
-d="M231 377l-46 -119h132v332h-3q-20 -54 -41.5 -106.5t-41.5 -106.5zM-1 0l264 656h319v-70h-189v-205h147v-71h-147v-239h198v-71h-274v191h-158l-73 -191h-87zM286 735v57h268v-57h-268z" />
-    <glyph glyph-name="uni0243" unicode="&#x243;" 
-d="M105 0v162h-79v56l79 6v432h186q50 0 91.5 -9t71 -28t46 -49.5t16.5 -73.5q0 -49 -28 -88.5t-87 -54.5v-4q72 -11 112 -50t40 -107q0 -48 -18 -84t-50.5 -60t-78 -36t-100.5 -12h-201zM188 70h106q85 0 131 29.5t46 96.5q0 61 -45 87.5t-132 26.5h-106v-86h142v-62h-142
-v-92zM188 380h89q84 0 120.5 27t36.5 82q0 54 -38.5 75.5t-114.5 21.5h-93v-206z" />
-    <glyph glyph-name="uni1E06" unicode="&#x1e06;" 
-d="M99 0v656h186q50 0 91.5 -9t71 -28t46 -49.5t16.5 -73.5q0 -49 -28 -88.5t-87 -54.5v-4q72 -11 112 -50t40 -107q0 -48 -18 -84t-50.5 -60t-78 -36t-100.5 -12h-201zM182 380h89q84 0 120.5 27t36.5 82q0 54 -38.5 75.5t-114.5 21.5h-93v-206zM182 70h106q85 0 131 29.5
-t46 96.5q0 61 -45 87.5t-132 26.5h-106v-240zM174 -169v57h266v-57h-266z" />
-    <glyph glyph-name="Ccedilla" unicode="&#xc7;" 
-d="M351 -12q-61 0 -113 23t-90.5 66.5t-60.5 107t-22 143.5q0 79 22 142t61 107t93 67.5t118 23.5q59 0 104.5 -24t74.5 -56l-47 -53q-26 27 -58 43.5t-74 16.5q-47 0 -85.5 -18.5t-65.5 -53t-42 -83.5t-15 -110q0 -62 15 -111.5t42 -84.5t65.5 -54t85.5 -19q45 0 80.5 19
-t67.5 54l47 -51q-39 -45 -88 -70t-115 -25zM263 -226l-8 40q63 5 86 16.5t23 33.5q0 20 -17 31t-60 17l40 96h54l-26 -72q35 -8 54 -24t19 -47q0 -44 -42.5 -65.5t-122.5 -25.5z" />
-    <glyph glyph-name="Cacute" unicode="&#x106;" 
-d="M351 -12q-61 0 -113 23t-90.5 66.5t-60.5 107t-22 143.5q0 79 22 142t61 107t93 67.5t118 23.5q59 0 104.5 -24t74.5 -56l-47 -53q-26 27 -58 43.5t-74 16.5q-47 0 -85.5 -18.5t-65.5 -53t-42 -83.5t-15 -110q0 -62 15 -111.5t42 -84.5t65.5 -54t85.5 -19q45 0 80.5 19
-t67.5 54l47 -51q-39 -45 -88 -70t-115 -25zM317 697l-36 42l141 128l47 -55z" />
-    <glyph glyph-name="Ccircumflex" unicode="&#x108;" 
-d="M351 -12q-61 0 -113 23t-90.5 66.5t-60.5 107t-22 143.5q0 79 22 142t61 107t93 67.5t118 23.5q59 0 104.5 -24t74.5 -56l-47 -53q-26 27 -58 43.5t-74 16.5q-47 0 -85.5 -18.5t-65.5 -53t-42 -83.5t-15 -110q0 -62 15 -111.5t42 -84.5t65.5 -54t85.5 -19q45 0 80.5 19
-t67.5 54l47 -51q-39 -45 -88 -70t-115 -25zM234 699l-36 26l105 113h86l105 -113l-36 -26l-110 93h-4z" />
-    <glyph glyph-name="Ccaron" unicode="&#x10c;" 
-d="M351 -12q-61 0 -113 23t-90.5 66.5t-60.5 107t-22 143.5q0 79 22 142t61 107t93 67.5t118 23.5q59 0 104.5 -24t74.5 -56l-47 -53q-26 27 -58 43.5t-74 16.5q-47 0 -85.5 -18.5t-65.5 -53t-42 -83.5t-15 -110q0 -62 15 -111.5t42 -84.5t65.5 -54t85.5 -19q45 0 80.5 19
-t67.5 54l47 -51q-39 -45 -88 -70t-115 -25zM303 706l-105 113l36 26l110 -92h4l110 92l36 -26l-105 -113h-86z" />
-    <glyph glyph-name="Cdotaccent" unicode="&#x10a;" 
-d="M351 -12q-61 0 -113 23t-90.5 66.5t-60.5 107t-22 143.5q0 79 22 142t61 107t93 67.5t118 23.5q59 0 104.5 -24t74.5 -56l-47 -53q-26 27 -58 43.5t-74 16.5q-47 0 -85.5 -18.5t-65.5 -53t-42 -83.5t-15 -110q0 -62 15 -111.5t42 -84.5t65.5 -54t85.5 -19q45 0 80.5 19
-t67.5 54l47 -51q-39 -45 -88 -70t-115 -25zM346 714q-25 0 -42 15.5t-17 41.5q0 25 17 40.5t42 15.5t42 -15.5t17 -40.5q0 -26 -17 -41.5t-42 -15.5z" />
-    <glyph glyph-name="Dcaron" unicode="&#x10e;" 
-d="M87 0v656h162q149 0 226.5 -84t77.5 -241t-77.5 -244t-222.5 -87h-166zM170 68h73q113 0 168.5 69t55.5 194t-55.5 191t-168.5 66h-73v-520zM257 706l-105 113l36 26l110 -92h4l110 92l36 -26l-105 -113h-86z" />
-    <glyph glyph-name="uni1E0C" unicode="&#x1e0c;" 
-d="M87 0v656h162q149 0 226.5 -84t77.5 -241t-77.5 -244t-222.5 -87h-166zM170 68h73q113 0 168.5 69t55.5 194t-55.5 191t-168.5 66h-73v-520zM295 -214q-28 0 -47 17.5t-19 46.5t19 46.5t47 17.5t47 -17.5t19 -46.5t-19 -46.5t-47 -17.5z" />
-    <glyph glyph-name="uni1E0E" unicode="&#x1e0e;" 
-d="M87 0v656h162q149 0 226.5 -84t77.5 -241t-77.5 -244t-222.5 -87h-166zM170 68h73q113 0 168.5 69t55.5 194t-55.5 191t-168.5 66h-73v-520zM162 -169v57h266v-57h-266z" />
-    <glyph glyph-name="uni1E10" unicode="&#x1e10;" 
-d="M87 0v656h162q149 0 226.5 -84t77.5 -241t-77.5 -244t-222.5 -87h-166zM170 68h73q113 0 168.5 69t55.5 194t-55.5 191t-168.5 66h-73v-520zM200 -226l-8 40q63 5 86 16.5t23 33.5q0 20 -17 31t-60 17l40 96h54l-26 -72q35 -8 54 -24t19 -47q0 -44 -42.5 -65.5
-t-122.5 -25.5z" />
-    <glyph glyph-name="Dcroat" unicode="&#x110;" 
-d="M87 0v314h-75v56l75 6v280h162q149 0 226.5 -84t77.5 -241t-77.5 -244t-222.5 -87h-166zM170 68h73q112 0 167.5 69t55.5 194t-55.5 191t-167.5 66h-73v-212h144v-62h-144v-246z" />
-    <glyph glyph-name="uni018A" unicode="&#x18a;" 
-d="M209 0v595q-57 -11 -86 -51t-29 -95q0 -48 19 -77t57 -52l-40 -58q-51 26 -80.5 70t-29.5 113q0 48 15.5 89t47 71t78 46.5t108.5 16.5q151 0 224.5 -86t73.5 -244q0 -162 -68.5 -250t-190.5 -88h-99zM292 68h21q82 0 125 70.5t43 199.5q0 122 -44.5 189t-144.5 72v-531z
-" />
-    <glyph glyph-name="Egrave" unicode="&#xc8;" 
-d="M114 0v656h406v-70h-322v-206h272v-71h-272v-238h332v-71h-416zM360 697l-152 115l47 55l141 -128z" />
-    <glyph glyph-name="Eacute" unicode="&#xc9;" 
-d="M114 0v656h406v-70h-322v-206h272v-71h-272v-238h332v-71h-416zM302 697l-36 42l141 128l47 -55z" />
-    <glyph glyph-name="Ecircumflex" unicode="&#xca;" 
-d="M114 0v656h406v-70h-322v-206h272v-71h-272v-238h332v-71h-416zM219 699l-36 26l105 113h86l105 -113l-36 -26l-110 93h-4z" />
-    <glyph glyph-name="Ecaron" unicode="&#x11a;" 
-d="M114 0v656h406v-70h-322v-206h272v-71h-272v-238h332v-71h-416zM288 706l-105 113l36 26l110 -92h4l110 92l36 -26l-105 -113h-86z" />
-    <glyph glyph-name="Edieresis" unicode="&#xcb;" 
-d="M114 0v656h406v-70h-322v-206h272v-71h-272v-238h332v-71h-416zM240 715q-22 0 -36.5 14t-14.5 37t14.5 36.5t36.5 13.5t36 -13.5t14 -36.5t-14 -37t-36 -14zM422 715q-22 0 -36 14t-14 37t14 36.5t36 13.5t36.5 -13.5t14.5 -36.5t-14.5 -37t-36.5 -14z" />
-    <glyph glyph-name="Emacron" unicode="&#x112;" 
-d="M114 0v656h406v-70h-322v-206h272v-71h-272v-238h332v-71h-416zM197 735v57h268v-57h-268z" />
-    <glyph glyph-name="Ebreve" unicode="&#x114;" 
-d="M114 0v656h406v-70h-322v-206h272v-71h-272v-238h332v-71h-416zM331 705q-35 0 -61 10.5t-44 28t-28 41t-13 49.5l50 8q6 -35 29.5 -59.5t66.5 -24.5t66.5 24.5t29.5 59.5l50 -8q-3 -26 -13 -49.5t-28 -41t-44 -28t-61 -10.5z" />
-    <glyph glyph-name="Edotaccent" unicode="&#x116;" 
-d="M114 0v656h406v-70h-322v-206h272v-71h-272v-238h332v-71h-416zM331 714q-25 0 -42 15.5t-17 41.5q0 25 17 40.5t42 15.5t42 -15.5t17 -40.5q0 -26 -17 -41.5t-42 -15.5z" />
-    <glyph glyph-name="Eogonek" unicode="&#x118;" 
-d="M462 -225q-45 0 -74 22.5t-29 68.5q0 45 26.5 79.5t59.5 54.5h-330v656h405v-70h-321v-206h271v-71h-271v-238h331v-71h-4q-19 -3 -37.5 -14t-33 -27t-23.5 -35.5t-9 -39.5q0 -26 17 -38.5t38 -12.5q16 0 28 6.5t22 14.5l25 -43q-17 -15 -39.5 -25.5t-51.5 -10.5z" />
-    <glyph glyph-name="uni1EB8" unicode="&#x1eb8;" 
-d="M114 0v656h406v-70h-322v-206h272v-71h-272v-238h332v-71h-416zM333 -214q-28 0 -47 17.5t-19 46.5t19 46.5t47 17.5t47 -17.5t19 -46.5t-19 -46.5t-47 -17.5z" />
-    <glyph glyph-name="uni1EBA" unicode="&#x1eba;" 
-d="M114 0v656h406v-70h-322v-206h272v-71h-272v-238h332v-71h-416zM299 698l-9 38q24 7 40 17t16 29q0 39 -83 42l9 48q66 -2 102 -22.5t36 -58.5q0 -22 -9 -37.5t-24.5 -27t-35.5 -18t-42 -10.5z" />
-    <glyph glyph-name="uni1EBC" unicode="&#x1ebc;" 
-d="M114 0v656h406v-70h-322v-206h272v-71h-272v-238h332v-71h-416zM406 709q-28 0 -48 11t-36.5 24.5t-31 24.5t-32.5 11q-19 0 -32 -17t-16 -49l-56 4q3 57 30 90t72 33q28 0 48 -11t36.5 -24.5t31 -24.5t32.5 -11q40 0 48 66l56 -4q-3 -58 -30 -90.5t-72 -32.5z" />
-    <glyph glyph-name="uni1EBE" unicode="&#x1ebe;" 
-d="M114 0v656h406v-70h-322v-206h272v-71h-272v-238h332v-71h-416zM236 699l-34 26l93 90h72l93 -90l-34 -26l-93 69h-4zM452 763l-30 32l97 93l35 -39z" />
-    <glyph glyph-name="uni1EC0" unicode="&#x1ec0;" 
-d="M114 0v656h406v-70h-322v-206h272v-71h-272v-238h332v-71h-416zM236 699l-34 26l93 90h72l93 -90l-34 -26l-93 69h-4zM210 763l-90 88l35 37l85 -95z" />
-    <glyph glyph-name="uni1EC2" unicode="&#x1ec2;" 
-d="M114 0v656h406v-70h-322v-206h272v-71h-272v-238h332v-71h-416zM236 699l-34 26l93 90h72l93 -90l-34 -26l-93 69h-4zM446 754l-11 35q19 5 32 12.5t13 23.5q0 20 -16.5 28.5t-54.5 10.5l9 42q59 -2 89.5 -20t30.5 -53q0 -38 -28 -55.5t-64 -23.5z" />
-    <glyph glyph-name="uni1EC4" unicode="&#x1ec4;" 
-d="M114 0v656h406v-70h-322v-206h272v-71h-272v-238h332v-71h-416zM236 699l-34 26l93 87h72l93 -87l-34 -26l-93 66h-4zM397 839q-24 0 -41 8t-31.5 17t-27.5 17t-28 8q-18 0 -26.5 -12t-11.5 -34l-45 5q2 38 20 64.5t59 26.5q24 0 41 -7.5t31.5 -17t27.5 -17t28 -7.5
-q18 0 26.5 12t11.5 34l45 -5q-2 -39 -20 -65.5t-59 -26.5z" />
-    <glyph glyph-name="uni1EC6" unicode="&#x1ec6;" 
-d="M114 0v656h406v-70h-322v-206h272v-71h-272v-238h332v-71h-416zM219 699l-36 26l105 113h86l105 -113l-36 -26l-110 93h-4zM333 -214q-28 0 -47 17.5t-19 46.5t19 46.5t47 17.5t47 -17.5t19 -46.5t-19 -46.5t-47 -17.5z" />
-    <glyph glyph-name="uni1E16" unicode="&#x1e16;" 
-d="M114 0v656h406v-70h-322v-206h272v-71h-272v-238h332v-71h-416zM197 735v57h268v-57h-268zM313 827l-31 38l121 103l39 -48z" />
-    <glyph glyph-name="uni01F4" unicode="&#x1f4;" 
-d="M337 -12q-62 0 -114 23t-90 66.5t-59 107t-21 143.5q0 79 21.5 142.5t60 107t92 67t117.5 23.5q33 0 60 -7t49.5 -18.5t40 -25.5t31.5 -29l-47 -53q-24 26 -55 43t-79 17q-46 0 -83.5 -18.5t-64.5 -53t-41.5 -83.5t-14.5 -110q0 -62 13.5 -111.5t39 -84.5t63.5 -54
-t86 -19q35 0 65 10.5t49 28.5v171h-131v69h208v-276q-31 -32 -81.5 -54t-114.5 -22zM301 697l-36 42l141 128l47 -55z" />
-    <glyph glyph-name="Gcircumflex" unicode="&#x11c;" 
-d="M337 -12q-62 0 -114 23t-90 66.5t-59 107t-21 143.5q0 79 21.5 142.5t60 107t92 67t117.5 23.5q33 0 60 -7t49.5 -18.5t40 -25.5t31.5 -29l-47 -53q-24 26 -55 43t-79 17q-46 0 -83.5 -18.5t-64.5 -53t-41.5 -83.5t-14.5 -110q0 -62 13.5 -111.5t39 -84.5t63.5 -54
-t86 -19q35 0 65 10.5t49 28.5v171h-131v69h208v-276q-31 -32 -81.5 -54t-114.5 -22zM218 699l-36 26l105 113h86l105 -113l-36 -26l-110 93h-4z" />
-    <glyph glyph-name="Gbreve" unicode="&#x11e;" 
-d="M337 -12q-62 0 -114 23t-90 66.5t-59 107t-21 143.5q0 79 21.5 142.5t60 107t92 67t117.5 23.5q33 0 60 -7t49.5 -18.5t40 -25.5t31.5 -29l-47 -53q-24 26 -55 43t-79 17q-46 0 -83.5 -18.5t-64.5 -53t-41.5 -83.5t-14.5 -110q0 -62 13.5 -111.5t39 -84.5t63.5 -54
-t86 -19q35 0 65 10.5t49 28.5v171h-131v69h208v-276q-31 -32 -81.5 -54t-114.5 -22zM330 705q-35 0 -61 10.5t-44 28t-28 41t-13 49.5l50 8q6 -35 29.5 -59.5t66.5 -24.5t66.5 24.5t29.5 59.5l50 -8q-3 -26 -13 -49.5t-28 -41t-44 -28t-61 -10.5z" />
-    <glyph glyph-name="Gdotaccent" unicode="&#x120;" 
-d="M337 -12q-62 0 -114 23t-90 66.5t-59 107t-21 143.5q0 79 21.5 142.5t60 107t92 67t117.5 23.5q33 0 60 -7t49.5 -18.5t40 -25.5t31.5 -29l-47 -53q-24 26 -55 43t-79 17q-46 0 -83.5 -18.5t-64.5 -53t-41.5 -83.5t-14.5 -110q0 -62 13.5 -111.5t39 -84.5t63.5 -54
-t86 -19q35 0 65 10.5t49 28.5v171h-131v69h208v-276q-31 -32 -81.5 -54t-114.5 -22zM330 714q-25 0 -42 15.5t-17 41.5q0 25 17 40.5t42 15.5t42 -15.5t17 -40.5q0 -26 -17 -41.5t-42 -15.5z" />
-    <glyph glyph-name="uni0122" unicode="&#x122;" 
-d="M337 -12q-62 0 -114 23t-90 66.5t-59 107t-21 143.5q0 79 21.5 142.5t60 107t92 67t117.5 23.5q33 0 60 -7t49.5 -18.5t40 -25.5t31.5 -29l-47 -53q-24 26 -55 43t-79 17q-46 0 -83.5 -18.5t-64.5 -53t-41.5 -83.5t-14.5 -110q0 -62 13.5 -111.5t39 -84.5t63.5 -54
-t86 -19q35 0 65 10.5t49 28.5v171h-131v69h208v-276q-31 -32 -81.5 -54t-114.5 -22zM243 -226l-8 40q63 5 86 16.5t23 31.5t-18 29.5t-53 12.5l18 38q65 -8 91 -25.5t26 -51.5q0 -44 -42.5 -65.5t-122.5 -25.5z" />
-    <glyph glyph-name="Gcaron" unicode="&#x1e6;" 
-d="M337 -12q-62 0 -114 23t-90 66.5t-59 107t-21 143.5q0 79 21.5 142.5t60 107t92 67t117.5 23.5q33 0 60 -7t49.5 -18.5t40 -25.5t31.5 -29l-47 -53q-24 26 -55 43t-79 17q-46 0 -83.5 -18.5t-64.5 -53t-41.5 -83.5t-14.5 -110q0 -62 13.5 -111.5t39 -84.5t63.5 -54
-t86 -19q35 0 65 10.5t49 28.5v171h-131v69h208v-276q-31 -32 -81.5 -54t-114.5 -22zM287 706l-105 113l36 26l110 -92h4l110 92l36 -26l-105 -113h-86z" />
-    <glyph glyph-name="uni1E20" unicode="&#x1e20;" 
-d="M337 -12q-62 0 -114 23t-90 66.5t-59 107t-21 143.5q0 79 21.5 142.5t60 107t92 67t117.5 23.5q33 0 60 -7t49.5 -18.5t40 -25.5t31.5 -29l-47 -53q-24 26 -55 43t-79 17q-46 0 -83.5 -18.5t-64.5 -53t-41.5 -83.5t-14.5 -110q0 -62 13.5 -111.5t39 -84.5t63.5 -54
-t86 -19q35 0 65 10.5t49 28.5v171h-131v69h208v-276q-31 -32 -81.5 -54t-114.5 -22zM196 735v57h268v-57h-268z" />
-    <glyph glyph-name="uni00470303" 
-d="M337 -12q-62 0 -114 23t-90 66.5t-59 107t-21 143.5q0 79 21.5 142.5t60 107t92 67t117.5 23.5q33 0 60 -7t49.5 -18.5t40 -25.5t31.5 -29l-47 -53q-24 26 -55 43t-79 17q-46 0 -83.5 -18.5t-64.5 -53t-41.5 -83.5t-14.5 -110q0 -62 13.5 -111.5t39 -84.5t63.5 -54
-t86 -19q35 0 65 10.5t49 28.5v171h-131v69h208v-276q-31 -32 -81.5 -54t-114.5 -22zM405 709q-28 0 -48 11t-36.5 24.5t-31 24.5t-32.5 11q-19 0 -32 -17t-16 -49l-56 4q3 57 30 90t72 33q28 0 48 -11t36.5 -24.5t31 -24.5t32.5 -11q40 0 48 66l56 -4q-3 -58 -30 -90.5
-t-72 -32.5z" />
-    <glyph glyph-name="uni0193" unicode="&#x193;" 
-d="M525 588l-47 -53q-24 26 -55 43t-79 17q-46 0 -83.5 -18.5t-64.5 -53t-41.5 -83.5t-14.5 -110q0 -62 13.5 -111.5t39 -84.5t63.5 -54t86 -19q35 0 65 10.5t49 28.5v171h-131v69h208v-276q-31 -32 -81.5 -54t-114.5 -22q-62 0 -114 23t-90 66.5t-59 107t-21 143.5
-q0 79 21.5 142.5t60 107t92 67t117.5 23.5q22 0 41.5 -3.5t36.5 -8.5q-7 20 -7 43q0 47 30.5 76t80.5 29q20 0 35.5 -4t27.5 -9l-16 -63q-8 3 -15.5 6t-18.5 3q-26 0 -40 -15.5t-14 -38.5q0 -27 10 -46.5t30 -48.5z" />
-    <glyph glyph-name="Hcircumflex" unicode="&#x124;" 
-d="M79 0v656h84v-275h274v275h84v-656h-84v309h-274v-309h-84zM188 699l-36 26l105 113h86l105 -113l-36 -26l-110 93h-4z" />
-    <glyph glyph-name="uni1E26" unicode="&#x1e26;" 
-d="M79 0v656h84v-275h274v275h84v-656h-84v309h-274v-309h-84zM209 715q-22 0 -36.5 14t-14.5 37t14.5 36.5t36.5 13.5t36 -13.5t14 -36.5t-14 -37t-36 -14zM391 715q-22 0 -36 14t-14 37t14 36.5t36 13.5t36.5 -13.5t14.5 -36.5t-14.5 -37t-36.5 -14z" />
-    <glyph glyph-name="uni1E24" unicode="&#x1e24;" 
-d="M79 0v656h84v-275h274v275h84v-656h-84v309h-274v-309h-84zM300 -214q-28 0 -47 17.5t-19 46.5t19 46.5t47 17.5t47 -17.5t19 -46.5t-19 -46.5t-47 -17.5z" />
-    <glyph glyph-name="uni1E28" unicode="&#x1e28;" 
-d="M79 0v656h84v-275h274v275h84v-656h-84v309h-274v-309h-84zM36 -226l-8 40q63 5 86 16.5t23 33.5q0 20 -17 31t-60 17l40 96h54l-26 -72q35 -8 54 -24t19 -47q0 -44 -42.5 -65.5t-122.5 -25.5z" />
-    <glyph glyph-name="uni1E2A" unicode="&#x1e2a;" 
-d="M79 0v656h84v-275h274v275h84v-656h-84v309h-274v-309h-84zM300 -230q-40 0 -69 13t-47.5 34.5t-28 48.5t-11.5 55l51 8q3 -19 10.5 -37.5t20.5 -33.5t31.5 -24t42.5 -9t42.5 9t31.5 24t20.5 33.5t10.5 37.5l51 -8q-2 -28 -11.5 -55t-28.5 -48.5t-47.5 -34.5t-68.5 -13z
-" />
-    <glyph glyph-name="Hbar" unicode="&#x126;" 
-d="M10 484v56l69 6v110h84v-110h274v110h84v-110h69v-62h-69v-484h-84v309h-274v-309h-84v484h-69zM163 381h274v103h-274v-103z" />
-    <glyph glyph-name="Igrave" unicode="&#xcc;" 
-d="M95 0v71h163v515h-163v70h410v-70h-163v-515h163v-71h-410zM329 697l-152 115l47 55l141 -128z" />
-    <glyph glyph-name="Iacute" unicode="&#xcd;" 
-d="M95 0v71h163v515h-163v70h410v-70h-163v-515h163v-71h-410zM271 697l-36 42l141 128l47 -55z" />
-    <glyph glyph-name="Icircumflex" unicode="&#xce;" 
-d="M95 0v71h163v515h-163v70h410v-70h-163v-515h163v-71h-410zM188 699l-36 26l105 113h86l105 -113l-36 -26l-110 93h-4z" />
-    <glyph glyph-name="Itilde" unicode="&#x128;" 
-d="M95 0v71h163v515h-163v70h410v-70h-163v-515h163v-71h-410zM375 709q-28 0 -48 11t-36.5 24.5t-31 24.5t-32.5 11q-19 0 -32 -17t-16 -49l-56 4q3 57 30 90t72 33q28 0 48 -11t36.5 -24.5t31 -24.5t32.5 -11q40 0 48 66l56 -4q-3 -58 -30 -90.5t-72 -32.5z" />
-    <glyph glyph-name="Idieresis" unicode="&#xcf;" 
-d="M95 0v71h163v515h-163v70h410v-70h-163v-515h163v-71h-410zM209 715q-22 0 -36.5 14t-14.5 37t14.5 36.5t36.5 13.5t36 -13.5t14 -36.5t-14 -37t-36 -14zM391 715q-22 0 -36 14t-14 37t14 36.5t36 13.5t36.5 -13.5t14.5 -36.5t-14.5 -37t-36.5 -14z" />
-    <glyph glyph-name="Imacron" unicode="&#x12a;" 
-d="M95 0v71h163v515h-163v70h410v-70h-163v-515h163v-71h-410zM166 735v57h268v-57h-268z" />
-    <glyph glyph-name="Idotaccent" unicode="&#x130;" 
-d="M95 0v71h163v515h-163v70h410v-70h-163v-515h163v-71h-410zM300 714q-25 0 -42 15.5t-17 41.5q0 25 17 40.5t42 15.5t42 -15.5t17 -40.5q0 -26 -17 -41.5t-42 -15.5z" />
-    <glyph glyph-name="uni01CF" unicode="&#x1cf;" 
-d="M95 0v71h163v515h-163v70h410v-70h-163v-515h163v-71h-410zM257 706l-105 113l36 26l110 -92h4l110 92l36 -26l-105 -113h-86z" />
-    <glyph glyph-name="Iogonek" unicode="&#x12e;" 
-d="M311 -225q-44 0 -73.5 22.5t-29.5 68.5q0 42 23 76t48 58h-184v71h163v515h-163v70h410v-70h-163v-515h163v-71h-158q-38 -29 -56 -58.5t-18 -57.5q0 -26 17 -38.5t37 -12.5q17 0 29 6.5t21 14.5l25 -43q-17 -15 -39.5 -25.5t-51.5 -10.5z" />
-    <glyph glyph-name="uni1EC8" unicode="&#x1ec8;" 
-d="M95 0v71h163v515h-163v70h410v-70h-163v-515h163v-71h-410zM268 698l-9 38q24 7 40 17t16 29q0 39 -83 42l9 48q66 -2 102 -22.5t36 -58.5q0 -22 -9 -37.5t-24.5 -27t-35.5 -18t-42 -10.5z" />
-    <glyph glyph-name="uni1ECA" unicode="&#x1eca;" 
-d="M95 0v71h163v515h-163v70h410v-70h-163v-515h163v-71h-410zM300 -214q-28 0 -47 17.5t-19 46.5t19 46.5t47 17.5t47 -17.5t19 -46.5t-19 -46.5t-47 -17.5z" />
-    <glyph glyph-name="Ibreve" unicode="&#x12c;" 
-d="M95 0v71h163v515h-163v70h410v-70h-163v-515h163v-71h-410zM300 705q-35 0 -61 10.5t-44 28t-28 41t-13 49.5l50 8q6 -35 29.5 -59.5t66.5 -24.5t66.5 24.5t29.5 59.5l50 -8q-3 -26 -13 -49.5t-28 -41t-44 -28t-61 -10.5z" />
-    <glyph glyph-name="Jcircumflex" unicode="&#x134;" 
-d="M276 -12q-55 0 -108 26t-87 83l52 51q28 -45 65.5 -66t75.5 -21q71 0 103.5 37.5t32.5 118.5v370h-275v70h358v-447q0 -46 -11 -86.5t-36.5 -70.5t-67 -47.5t-102.5 -17.5zM212 699l-36 26l105 113h86l105 -113l-36 -26l-110 93h-4z" />
-    <glyph glyph-name="uni0136" unicode="&#x136;" 
-d="M98 0v656h84v-329h3l276 329h95l-208 -249l232 -407h-94l-191 344l-113 -135v-209h-84zM251 -226l-8 40q63 5 86 16.5t23 31.5t-18 29.5t-53 12.5l18 38q65 -8 91 -25.5t26 -51.5q0 -44 -42.5 -65.5t-122.5 -25.5z" />
-    <glyph glyph-name="uni1E32" unicode="&#x1e32;" 
-d="M98 0v656h84v-329h3l276 329h95l-208 -249l232 -407h-94l-191 344l-113 -135v-209h-84zM338 -214q-28 0 -47 17.5t-19 46.5t19 46.5t47 17.5t47 -17.5t19 -46.5t-19 -46.5t-47 -17.5z" />
-    <glyph glyph-name="uni1E34" unicode="&#x1e34;" 
-d="M98 0v656h84v-329h3l276 329h95l-208 -249l232 -407h-94l-191 344l-113 -135v-209h-84zM205 -169v57h266v-57h-266z" />
-    <glyph glyph-name="Lacute" unicode="&#x139;" 
-d="M134 0v656h82v-585h325v-71h-407zM161 697l-36 42l141 128l47 -55z" />
-    <glyph glyph-name="Lcaron" unicode="&#x13d;" 
-d="M134 0v656h82v-585h325v-71h-407zM382 515l-3 268h74v-81l-14 -187h-57z" />
-    <glyph glyph-name="uni013B" unicode="&#x13b;" 
-d="M134 0v656h82v-585h325v-71h-407zM262 -226l-8 40q63 5 86 16.5t23 31.5t-18 29.5t-53 12.5l18 38q65 -8 91 -25.5t26 -51.5q0 -44 -42.5 -65.5t-122.5 -25.5z" />
-    <glyph glyph-name="uni1E36" unicode="&#x1e36;" 
-d="M134 0v656h82v-585h325v-71h-407zM349 -214q-28 0 -47 17.5t-19 46.5t19 46.5t47 17.5t47 -17.5t19 -46.5t-19 -46.5t-47 -17.5z" />
-    <glyph glyph-name="uni1E38" unicode="&#x1e38;" 
-d="M134 0v656h82v-585h325v-71h-407zM56 735v57h268v-57h-268zM349 -214q-28 0 -47 17.5t-19 46.5t19 46.5t47 17.5t47 -17.5t19 -46.5t-19 -46.5t-47 -17.5z" />
-    <glyph glyph-name="uni1E3A" unicode="&#x1e3a;" 
-d="M134 0v656h82v-585h325v-71h-407zM216 -169v57h266v-57h-266z" />
-    <glyph glyph-name="Lslash" unicode="&#x141;" 
-d="M39 181l-29 53l124 66v356h82v-319l211 113l29 -53l-240 -128v-198h325v-71h-407v233z" />
-    <glyph glyph-name="Ldot" unicode="&#x13f;" 
-d="M134 0v656h82v-585h325v-71h-407zM467 287q-28 0 -47 17.5t-19 46.5t19 46.5t47 17.5t47 -17.5t19 -46.5t-19 -46.5t-47 -17.5z" />
-    <glyph glyph-name="uni1E3E" unicode="&#x1e3e;" 
-d="M72 0v656h102l92 -280l32 -106h4l31 106l93 280h102v-656h-80v328q0 24 1.5 55.5t4 63.5t4.5 62t4 51h-3l-37 -128l-94 -258h-60l-92 258l-38 128h-2q2 -21 4.5 -51t4.5 -62t3.5 -63.5t1.5 -55.5v-328h-78zM271 697l-36 42l141 128l47 -55z" />
-    <glyph glyph-name="uni1E40" unicode="&#x1e40;" 
-d="M72 0v656h102l92 -280l32 -106h4l31 106l93 280h102v-656h-80v328q0 24 1.5 55.5t4 63.5t4.5 62t4 51h-3l-37 -128l-94 -258h-60l-92 258l-38 128h-2q2 -21 4.5 -51t4.5 -62t3.5 -63.5t1.5 -55.5v-328h-78zM300 714q-25 0 -42 15.5t-17 41.5q0 25 17 40.5t42 15.5
-t42 -15.5t17 -40.5q0 -26 -17 -41.5t-42 -15.5z" />
-    <glyph glyph-name="uni1E42" unicode="&#x1e42;" 
-d="M72 0v656h102l92 -280l32 -106h4l31 106l93 280h102v-656h-80v328q0 24 1.5 55.5t4 63.5t4.5 62t4 51h-3l-37 -128l-94 -258h-60l-92 258l-38 128h-2q2 -21 4.5 -51t4.5 -62t3.5 -63.5t1.5 -55.5v-328h-78zM300 -214q-28 0 -47 17.5t-19 46.5t19 46.5t47 17.5t47 -17.5
-t19 -46.5t-19 -46.5t-47 -17.5z" />
-    <glyph glyph-name="Nacute" unicode="&#x143;" 
-d="M82 0v656h92l210 -412l63 -136h2q-2 49 -6.5 102.5t-4.5 105.5v340h80v-656h-92l-210 412l-63 136h-2q2 -51 6.5 -102.5t4.5 -102.5v-343h-80zM281 697l-36 42l141 128l47 -55z" />
-    <glyph glyph-name="uni01F8" unicode="&#x1f8;" 
-d="M82 0v656h92l210 -412l63 -136h2q-2 49 -6.5 102.5t-4.5 105.5v340h80v-656h-92l-210 412l-63 136h-2q2 -51 6.5 -102.5t4.5 -102.5v-343h-80zM339 697l-152 115l47 55l141 -128z" />
-    <glyph glyph-name="Ncaron" unicode="&#x147;" 
-d="M82 0v656h92l210 -412l63 -136h2q-2 49 -6.5 102.5t-4.5 105.5v340h80v-656h-92l-210 412l-63 136h-2q2 -51 6.5 -102.5t4.5 -102.5v-343h-80zM267 706l-105 113l36 26l110 -92h4l110 92l36 -26l-105 -113h-86z" />
-    <glyph glyph-name="Ntilde" unicode="&#xd1;" 
-d="M82 0v656h92l210 -412l63 -136h2q-2 49 -6.5 102.5t-4.5 105.5v340h80v-656h-92l-210 412l-63 136h-2q2 -51 6.5 -102.5t4.5 -102.5v-343h-80zM385 709q-28 0 -48 11t-36.5 24.5t-31 24.5t-32.5 11q-19 0 -32 -17t-16 -49l-56 4q3 57 30 90t72 33q28 0 48 -11t36.5 -24.5
-t31 -24.5t32.5 -11q40 0 48 66l56 -4q-3 -58 -30 -90.5t-72 -32.5z" />
-    <glyph glyph-name="uni0145" unicode="&#x145;" 
-d="M82 0v656h92l210 -412l63 -136h2q-2 49 -6.5 102.5t-4.5 105.5v340h80v-656h-92l-210 412l-63 136h-2q2 -51 6.5 -102.5t4.5 -102.5v-343h-80zM213 -226l-8 40q63 5 86 16.5t23 31.5t-18 29.5t-53 12.5l18 38q65 -8 91 -25.5t26 -51.5q0 -44 -42.5 -65.5t-122.5 -25.5z
-" />
-    <glyph glyph-name="uni1E44" unicode="&#x1e44;" 
-d="M82 0v656h92l210 -412l63 -136h2q-2 49 -6.5 102.5t-4.5 105.5v340h80v-656h-92l-210 412l-63 136h-2q2 -51 6.5 -102.5t4.5 -102.5v-343h-80zM310 714q-25 0 -42 15.5t-17 41.5q0 25 17 40.5t42 15.5t42 -15.5t17 -40.5q0 -26 -17 -41.5t-42 -15.5z" />
-    <glyph glyph-name="uni1E46" unicode="&#x1e46;" 
-d="M82 0v656h92l210 -412l63 -136h2q-2 49 -6.5 102.5t-4.5 105.5v340h80v-656h-92l-210 412l-63 136h-2q2 -51 6.5 -102.5t4.5 -102.5v-343h-80zM300 -214q-28 0 -47 17.5t-19 46.5t19 46.5t47 17.5t47 -17.5t19 -46.5t-19 -46.5t-47 -17.5z" />
-    <glyph glyph-name="uni1E48" unicode="&#x1e48;" 
-d="M82 0v656h92l210 -412l63 -136h2q-2 49 -6.5 102.5t-4.5 105.5v340h80v-656h-92l-210 412l-63 136h-2q2 -51 6.5 -102.5t4.5 -102.5v-343h-80zM167 -169v57h266v-57h-266z" />
-    <glyph glyph-name="Ograve" unicode="&#xd2;" 
-d="M300 -12q-56 0 -102 23.5t-79.5 67.5t-52 107.5t-18.5 144.5q0 79 18.5 142t52 106t79.5 66t102 23q55 0 101.5 -23t80 -66t52 -106t18.5 -142q0 -81 -18.5 -144.5t-52 -107.5t-80 -67.5t-101.5 -23.5zM300 61q37 0 68 18.5t52.5 53.5t33.5 85t12 113q0 62 -12 111
-t-33.5 83t-52.5 52t-68 18q-38 0 -68.5 -18t-52 -52t-33.5 -83t-12 -111q0 -63 12 -113t33.5 -85t52 -53.5t68.5 -18.5zM329 697l-152 115l47 55l141 -128z" />
-    <glyph glyph-name="Oacute" unicode="&#xd3;" 
-d="M300 -12q-56 0 -102 23.5t-79.5 67.5t-52 107.5t-18.5 144.5q0 79 18.5 142t52 106t79.5 66t102 23q55 0 101.5 -23t80 -66t52 -106t18.5 -142q0 -81 -18.5 -144.5t-52 -107.5t-80 -67.5t-101.5 -23.5zM300 61q37 0 68 18.5t52.5 53.5t33.5 85t12 113q0 62 -12 111
-t-33.5 83t-52.5 52t-68 18q-38 0 -68.5 -18t-52 -52t-33.5 -83t-12 -111q0 -63 12 -113t33.5 -85t52 -53.5t68.5 -18.5zM271 697l-36 42l141 128l47 -55z" />
-    <glyph glyph-name="Ocircumflex" unicode="&#xd4;" 
-d="M300 -12q-56 0 -102 23.5t-79.5 67.5t-52 107.5t-18.5 144.5q0 79 18.5 142t52 106t79.5 66t102 23q55 0 101.5 -23t80 -66t52 -106t18.5 -142q0 -81 -18.5 -144.5t-52 -107.5t-80 -67.5t-101.5 -23.5zM300 61q37 0 68 18.5t52.5 53.5t33.5 85t12 113q0 62 -12 111
-t-33.5 83t-52.5 52t-68 18q-38 0 -68.5 -18t-52 -52t-33.5 -83t-12 -111q0 -63 12 -113t33.5 -85t52 -53.5t68.5 -18.5zM188 699l-36 26l105 113h86l105 -113l-36 -26l-110 93h-4z" />
-    <glyph glyph-name="Otilde" unicode="&#xd5;" 
-d="M300 -12q-56 0 -102 23.5t-79.5 67.5t-52 107.5t-18.5 144.5q0 79 18.5 142t52 106t79.5 66t102 23q55 0 101.5 -23t80 -66t52 -106t18.5 -142q0 -81 -18.5 -144.5t-52 -107.5t-80 -67.5t-101.5 -23.5zM300 61q37 0 68 18.5t52.5 53.5t33.5 85t12 113q0 62 -12 111
-t-33.5 83t-52.5 52t-68 18q-38 0 -68.5 -18t-52 -52t-33.5 -83t-12 -111q0 -63 12 -113t33.5 -85t52 -53.5t68.5 -18.5zM375 709q-28 0 -48 11t-36.5 24.5t-31 24.5t-32.5 11q-19 0 -32 -17t-16 -49l-56 4q3 57 30 90t72 33q28 0 48 -11t36.5 -24.5t31 -24.5t32.5 -11
-q40 0 48 66l56 -4q-3 -58 -30 -90.5t-72 -32.5z" />
-    <glyph glyph-name="Odieresis" unicode="&#xd6;" 
-d="M300 -12q-56 0 -102 23.5t-79.5 67.5t-52 107.5t-18.5 144.5q0 79 18.5 142t52 106t79.5 66t102 23q55 0 101.5 -23t80 -66t52 -106t18.5 -142q0 -81 -18.5 -144.5t-52 -107.5t-80 -67.5t-101.5 -23.5zM300 61q37 0 68 18.5t52.5 53.5t33.5 85t12 113q0 62 -12 111
-t-33.5 83t-52.5 52t-68 18q-38 0 -68.5 -18t-52 -52t-33.5 -83t-12 -111q0 -63 12 -113t33.5 -85t52 -53.5t68.5 -18.5zM209 715q-22 0 -36.5 14t-14.5 37t14.5 36.5t36.5 13.5t36 -13.5t14 -36.5t-14 -37t-36 -14zM391 715q-22 0 -36 14t-14 37t14 36.5t36 13.5t36.5 -13.5
-t14.5 -36.5t-14.5 -37t-36.5 -14z" />
-    <glyph glyph-name="Omacron" unicode="&#x14c;" 
-d="M300 -12q-56 0 -102 23.5t-79.5 67.5t-52 107.5t-18.5 144.5q0 79 18.5 142t52 106t79.5 66t102 23q55 0 101.5 -23t80 -66t52 -106t18.5 -142q0 -81 -18.5 -144.5t-52 -107.5t-80 -67.5t-101.5 -23.5zM300 61q37 0 68 18.5t52.5 53.5t33.5 85t12 113q0 62 -12 111
-t-33.5 83t-52.5 52t-68 18q-38 0 -68.5 -18t-52 -52t-33.5 -83t-12 -111q0 -63 12 -113t33.5 -85t52 -53.5t68.5 -18.5zM166 735v57h268v-57h-268z" />
-    <glyph glyph-name="Ohungarumlaut" unicode="&#x150;" 
-d="M300 -12q-56 0 -102 23.5t-79.5 67.5t-52 107.5t-18.5 144.5q0 79 18.5 142t52 106t79.5 66t102 23q55 0 101.5 -23t80 -66t52 -106t18.5 -142q0 -81 -18.5 -144.5t-52 -107.5t-80 -67.5t-101.5 -23.5zM300 61q37 0 68 18.5t52.5 53.5t33.5 85t12 113q0 62 -12 111
-t-33.5 83t-52.5 52t-68 18q-38 0 -68.5 -18t-52 -52t-33.5 -83t-12 -111q0 -63 12 -113t33.5 -85t52 -53.5t68.5 -18.5zM228 703l-43 21l92 152l57 -32zM388 703l-43 21l93 152l56 -32z" />
-    <glyph glyph-name="Obreve" unicode="&#x14e;" 
-d="M300 -12q-56 0 -102 23.5t-79.5 67.5t-52 107.5t-18.5 144.5q0 79 18.5 142t52 106t79.5 66t102 23q55 0 101.5 -23t80 -66t52 -106t18.5 -142q0 -81 -18.5 -144.5t-52 -107.5t-80 -67.5t-101.5 -23.5zM300 61q37 0 68 18.5t52.5 53.5t33.5 85t12 113q0 62 -12 111
-t-33.5 83t-52.5 52t-68 18q-38 0 -68.5 -18t-52 -52t-33.5 -83t-12 -111q0 -63 12 -113t33.5 -85t52 -53.5t68.5 -18.5zM300 705q-35 0 -61 10.5t-44 28t-28 41t-13 49.5l50 8q6 -35 29.5 -59.5t66.5 -24.5t66.5 24.5t29.5 59.5l50 -8q-3 -26 -13 -49.5t-28 -41t-44 -28
-t-61 -10.5z" />
-    <glyph glyph-name="uni01D1" unicode="&#x1d1;" 
-d="M300 -12q-56 0 -102 23.5t-79.5 67.5t-52 107.5t-18.5 144.5q0 79 18.5 142t52 106t79.5 66t102 23q55 0 101.5 -23t80 -66t52 -106t18.5 -142q0 -81 -18.5 -144.5t-52 -107.5t-80 -67.5t-101.5 -23.5zM300 61q37 0 68 18.5t52.5 53.5t33.5 85t12 113q0 62 -12 111
-t-33.5 83t-52.5 52t-68 18q-38 0 -68.5 -18t-52 -52t-33.5 -83t-12 -111q0 -63 12 -113t33.5 -85t52 -53.5t68.5 -18.5zM257 706l-105 113l36 26l110 -92h4l110 92l36 -26l-105 -113h-86z" />
-    <glyph glyph-name="uni01EA" unicode="&#x1ea;" 
-d="M318 -225q-45 0 -74 22.5t-29 68.5q0 40 21.5 70t49.5 53q-58 4 -102.5 32t-74.5 73t-45.5 105.5t-15.5 131.5q0 79 18.5 141.5t52 106t79.5 66.5t102 23q55 0 101.5 -23.5t80 -67t52 -106t18.5 -140.5q0 -132 -46.5 -214t-134.5 -119q-46 -20 -69 -51.5t-23 -62.5
-q0 -26 17 -38.5t38 -12.5q16 0 28 6.5t22 14.5l25 -43q-17 -15 -39.5 -25.5t-51.5 -10.5zM300 60q75 0 120.5 71t45.5 200q0 62 -12 111t-33.5 83t-52.5 52t-68 18q-38 0 -68.5 -18t-52 -52t-33.5 -83t-12 -111q0 -129 45.5 -200t120.5 -71z" />
-    <glyph glyph-name="uni1ECC" unicode="&#x1ecc;" 
-d="M300 -12q-56 0 -102 23.5t-79.5 67.5t-52 107.5t-18.5 144.5q0 79 18.5 142t52 106t79.5 66t102 23q55 0 101.5 -23t80 -66t52 -106t18.5 -142q0 -81 -18.5 -144.5t-52 -107.5t-80 -67.5t-101.5 -23.5zM300 61q37 0 68 18.5t52.5 53.5t33.5 85t12 113q0 62 -12 111
-t-33.5 83t-52.5 52t-68 18q-38 0 -68.5 -18t-52 -52t-33.5 -83t-12 -111q0 -63 12 -113t33.5 -85t52 -53.5t68.5 -18.5zM300 -214q-28 0 -47 17.5t-19 46.5t19 46.5t47 17.5t47 -17.5t19 -46.5t-19 -46.5t-47 -17.5z" />
-    <glyph glyph-name="uni1ECE" unicode="&#x1ece;" 
-d="M300 -12q-56 0 -102 23.5t-79.5 67.5t-52 107.5t-18.5 144.5q0 79 18.5 142t52 106t79.5 66t102 23q55 0 101.5 -23t80 -66t52 -106t18.5 -142q0 -81 -18.5 -144.5t-52 -107.5t-80 -67.5t-101.5 -23.5zM300 61q37 0 68 18.5t52.5 53.5t33.5 85t12 113q0 62 -12 111
-t-33.5 83t-52.5 52t-68 18q-38 0 -68.5 -18t-52 -52t-33.5 -83t-12 -111q0 -63 12 -113t33.5 -85t52 -53.5t68.5 -18.5zM268 698l-9 38q24 7 40 17t16 29q0 39 -83 42l9 48q66 -2 102 -22.5t36 -58.5q0 -22 -9 -37.5t-24.5 -27t-35.5 -18t-42 -10.5z" />
-    <glyph glyph-name="uni1ED0" unicode="&#x1ed0;" 
-d="M300 -12q-56 0 -102 23.5t-79.5 67.5t-52 107.5t-18.5 144.5q0 79 18.5 142t52 106t79.5 66t102 23q55 0 101.5 -23t80 -66t52 -106t18.5 -142q0 -81 -18.5 -144.5t-52 -107.5t-80 -67.5t-101.5 -23.5zM300 61q37 0 68 18.5t52.5 53.5t33.5 85t12 113q0 62 -12 111
-t-33.5 83t-52.5 52t-68 18q-38 0 -68.5 -18t-52 -52t-33.5 -83t-12 -111q0 -63 12 -113t33.5 -85t52 -53.5t68.5 -18.5zM205 699l-34 26l93 90h72l93 -90l-34 -26l-93 69h-4zM421 763l-30 32l97 93l35 -39z" />
-    <glyph glyph-name="uni1ED2" unicode="&#x1ed2;" 
-d="M300 -12q-56 0 -102 23.5t-79.5 67.5t-52 107.5t-18.5 144.5q0 79 18.5 142t52 106t79.5 66t102 23q55 0 101.5 -23t80 -66t52 -106t18.5 -142q0 -81 -18.5 -144.5t-52 -107.5t-80 -67.5t-101.5 -23.5zM300 61q37 0 68 18.5t52.5 53.5t33.5 85t12 113q0 62 -12 111
-t-33.5 83t-52.5 52t-68 18q-38 0 -68.5 -18t-52 -52t-33.5 -83t-12 -111q0 -63 12 -113t33.5 -85t52 -53.5t68.5 -18.5zM205 699l-34 26l93 90h72l93 -90l-34 -26l-93 69h-4zM179 763l-90 88l35 37l85 -95z" />
-    <glyph glyph-name="uni1ED4" unicode="&#x1ed4;" 
-d="M300 -12q-56 0 -102 23.5t-79.5 67.5t-52 107.5t-18.5 144.5q0 79 18.5 142t52 106t79.5 66t102 23q55 0 101.5 -23t80 -66t52 -106t18.5 -142q0 -81 -18.5 -144.5t-52 -107.5t-80 -67.5t-101.5 -23.5zM300 61q37 0 68 18.5t52.5 53.5t33.5 85t12 113q0 62 -12 111
-t-33.5 83t-52.5 52t-68 18q-38 0 -68.5 -18t-52 -52t-33.5 -83t-12 -111q0 -63 12 -113t33.5 -85t52 -53.5t68.5 -18.5zM205 699l-34 26l93 90h72l93 -90l-34 -26l-93 69h-4zM415 754l-11 35q19 5 32 12.5t13 23.5q0 20 -16.5 28.5t-54.5 10.5l9 42q59 -2 89.5 -20t30.5 -53
-q0 -38 -28 -55.5t-64 -23.5z" />
-    <glyph glyph-name="uni1ED6" unicode="&#x1ed6;" 
-d="M300 -12q-56 0 -102 23.5t-79.5 67.5t-52 107.5t-18.5 144.5q0 79 18.5 142t52 106t79.5 66t102 23q55 0 101.5 -23t80 -66t52 -106t18.5 -142q0 -81 -18.5 -144.5t-52 -107.5t-80 -67.5t-101.5 -23.5zM300 61q37 0 68 18.5t52.5 53.5t33.5 85t12 113q0 62 -12 111
-t-33.5 83t-52.5 52t-68 18q-38 0 -68.5 -18t-52 -52t-33.5 -83t-12 -111q0 -63 12 -113t33.5 -85t52 -53.5t68.5 -18.5zM205 699l-34 26l93 87h72l93 -87l-34 -26l-93 66h-4zM366 839q-24 0 -41 8t-31.5 17t-27.5 17t-28 8q-18 0 -26.5 -12t-11.5 -34l-45 5q2 38 20 64.5
-t59 26.5q24 0 41 -7.5t31.5 -17t27.5 -17t28 -7.5q18 0 26.5 12t11.5 34l45 -5q-2 -39 -20 -65.5t-59 -26.5z" />
-    <glyph glyph-name="uni1ED8" unicode="&#x1ed8;" 
-d="M300 -12q-56 0 -102 23.5t-79.5 67.5t-52 107.5t-18.5 144.5q0 79 18.5 142t52 106t79.5 66t102 23q55 0 101.5 -23t80 -66t52 -106t18.5 -142q0 -81 -18.5 -144.5t-52 -107.5t-80 -67.5t-101.5 -23.5zM300 61q37 0 68 18.5t52.5 53.5t33.5 85t12 113q0 62 -12 111
-t-33.5 83t-52.5 52t-68 18q-38 0 -68.5 -18t-52 -52t-33.5 -83t-12 -111q0 -63 12 -113t33.5 -85t52 -53.5t68.5 -18.5zM188 699l-36 26l105 113h86l105 -113l-36 -26l-110 93h-4zM300 -214q-28 0 -47 17.5t-19 46.5t19 46.5t47 17.5t47 -17.5t19 -46.5t-19 -46.5t-47 -17.5
-z" />
-    <glyph glyph-name="Ohorn" unicode="&#x1a0;" 
-d="M300 -12q-56 0 -102 23.5t-79.5 67.5t-52 107.5t-18.5 144.5q0 79 18.5 142t52 106t79.5 66t102 23q62 0 111 -28q78 16 78 86q0 15 -4 30.5t-11 27.5l65 29q11 -17 17 -37.5t6 -43.5q0 -51 -28 -82.5t-76 -43.5q45 -43 69.5 -112t24.5 -163q0 -81 -18.5 -144.5
-t-52 -107.5t-80 -67.5t-101.5 -23.5zM300 61q37 0 68 18.5t52.5 53.5t33.5 85t12 113q0 62 -12 111t-33.5 83t-52.5 52t-68 18q-38 0 -68.5 -18t-52 -52t-33.5 -83t-12 -111q0 -63 12 -113t33.5 -85t52 -53.5t68.5 -18.5z" />
-    <glyph glyph-name="uni1EDA" unicode="&#x1eda;" 
-d="M300 -12q-56 0 -102 23.5t-79.5 67.5t-52 107.5t-18.5 144.5q0 79 18.5 142t52 106t79.5 66t102 23q62 0 111 -28q78 16 78 86q0 15 -4 30.5t-11 27.5l65 29q11 -17 17 -37.5t6 -43.5q0 -51 -28 -82.5t-76 -43.5q45 -43 69.5 -112t24.5 -163q0 -81 -18.5 -144.5
-t-52 -107.5t-80 -67.5t-101.5 -23.5zM300 61q37 0 68 18.5t52.5 53.5t33.5 85t12 113q0 62 -12 111t-33.5 83t-52.5 52t-68 18q-38 0 -68.5 -18t-52 -52t-33.5 -83t-12 -111q0 -63 12 -113t33.5 -85t52 -53.5t68.5 -18.5zM271 697l-36 42l141 128l47 -55z" />
-    <glyph glyph-name="uni1EDC" unicode="&#x1edc;" 
-d="M300 -12q-56 0 -102 23.5t-79.5 67.5t-52 107.5t-18.5 144.5q0 79 18.5 142t52 106t79.5 66t102 23q62 0 111 -28q78 16 78 86q0 15 -4 30.5t-11 27.5l65 29q11 -17 17 -37.5t6 -43.5q0 -51 -28 -82.5t-76 -43.5q45 -43 69.5 -112t24.5 -163q0 -81 -18.5 -144.5
-t-52 -107.5t-80 -67.5t-101.5 -23.5zM300 61q37 0 68 18.5t52.5 53.5t33.5 85t12 113q0 62 -12 111t-33.5 83t-52.5 52t-68 18q-38 0 -68.5 -18t-52 -52t-33.5 -83t-12 -111q0 -63 12 -113t33.5 -85t52 -53.5t68.5 -18.5zM329 697l-152 115l47 55l141 -128z" />
-    <glyph glyph-name="uni1EDE" unicode="&#x1ede;" 
-d="M300 -12q-56 0 -102 23.5t-79.5 67.5t-52 107.5t-18.5 144.5q0 79 18.5 142t52 106t79.5 66t102 23q62 0 111 -28q78 16 78 86q0 15 -4 30.5t-11 27.5l65 29q11 -17 17 -37.5t6 -43.5q0 -51 -28 -82.5t-76 -43.5q45 -43 69.5 -112t24.5 -163q0 -81 -18.5 -144.5
-t-52 -107.5t-80 -67.5t-101.5 -23.5zM300 61q37 0 68 18.5t52.5 53.5t33.5 85t12 113q0 62 -12 111t-33.5 83t-52.5 52t-68 18q-38 0 -68.5 -18t-52 -52t-33.5 -83t-12 -111q0 -63 12 -113t33.5 -85t52 -53.5t68.5 -18.5zM268 698l-9 38q24 7 40 17t16 29q0 39 -83 42l9 48
-q66 -2 102 -22.5t36 -58.5q0 -22 -9 -37.5t-24.5 -27t-35.5 -18t-42 -10.5z" />
-    <glyph glyph-name="uni1EE0" unicode="&#x1ee0;" 
-d="M300 -12q-56 0 -102 23.5t-79.5 67.5t-52 107.5t-18.5 144.5q0 79 18.5 142t52 106t79.5 66t102 23q62 0 111 -28q78 16 78 86q0 15 -4 30.5t-11 27.5l65 29q11 -17 17 -37.5t6 -43.5q0 -51 -28 -82.5t-76 -43.5q45 -43 69.5 -112t24.5 -163q0 -81 -18.5 -144.5
-t-52 -107.5t-80 -67.5t-101.5 -23.5zM300 61q37 0 68 18.5t52.5 53.5t33.5 85t12 113q0 62 -12 111t-33.5 83t-52.5 52t-68 18q-38 0 -68.5 -18t-52 -52t-33.5 -83t-12 -111q0 -63 12 -113t33.5 -85t52 -53.5t68.5 -18.5zM356 709q-28 0 -48 11t-36.5 24.5t-31 24.5
-t-32.5 11q-19 0 -32 -17t-16 -49l-56 4q3 57 30 90t72 33q28 0 48 -11t36.5 -24.5t31 -24.5t32.5 -11q40 0 48 66l56 -4q-3 -58 -30 -90.5t-72 -32.5z" />
-    <glyph glyph-name="uni1EE2" unicode="&#x1ee2;" 
-d="M300 -12q-56 0 -102 23.5t-79.5 67.5t-52 107.5t-18.5 144.5q0 79 18.5 142t52 106t79.5 66t102 23q62 0 111 -28q78 16 78 86q0 15 -4 30.5t-11 27.5l65 29q11 -17 17 -37.5t6 -43.5q0 -51 -28 -82.5t-76 -43.5q45 -43 69.5 -112t24.5 -163q0 -81 -18.5 -144.5
-t-52 -107.5t-80 -67.5t-101.5 -23.5zM300 61q37 0 68 18.5t52.5 53.5t33.5 85t12 113q0 62 -12 111t-33.5 83t-52.5 52t-68 18q-38 0 -68.5 -18t-52 -52t-33.5 -83t-12 -111q0 -63 12 -113t33.5 -85t52 -53.5t68.5 -18.5zM300 -214q-28 0 -47 17.5t-19 46.5t19 46.5t47 17.5
-t47 -17.5t19 -46.5t-19 -46.5t-47 -17.5z" />
-    <glyph glyph-name="uni1E52" unicode="&#x1e52;" 
-d="M300 -12q-56 0 -102 23.5t-79.5 67.5t-52 107.5t-18.5 144.5q0 79 18.5 142t52 106t79.5 66t102 23q55 0 101.5 -23t80 -66t52 -106t18.5 -142q0 -81 -18.5 -144.5t-52 -107.5t-80 -67.5t-101.5 -23.5zM300 61q37 0 68 18.5t52.5 53.5t33.5 85t12 113q0 62 -12 111
-t-33.5 83t-52.5 52t-68 18q-38 0 -68.5 -18t-52 -52t-33.5 -83t-12 -111q0 -63 12 -113t33.5 -85t52 -53.5t68.5 -18.5zM166 735v57h268v-57h-268zM282 827l-31 38l121 103l39 -48z" />
-    <glyph glyph-name="Oslash" unicode="&#xd8;" 
-d="M300 -12q-89 0 -154 60l-54 -80l-56 36l67 98q-26 43 -40.5 100.5t-14.5 128.5q0 79 18.5 142t52 106t79.5 66t102 23q87 0 152 -57l52 77l56 -36l-64 -94q27 -42 41.5 -99t14.5 -128q0 -81 -18.5 -144.5t-52 -107.5t-80 -67.5t-101.5 -23.5zM134 331q0 -87 23 -150
-l249 364q-44 50 -106 50q-38 0 -68.5 -18t-52 -52t-33.5 -83t-12 -111zM300 61q37 0 68 18.5t52.5 53.5t33.5 85t12 113q0 89 -24 149l-250 -365q43 -54 108 -54z" />
-    <glyph glyph-name="Oslashacute" unicode="&#x1fe;" 
-d="M300 -12q-89 0 -154 60l-54 -80l-56 36l67 98q-26 43 -40.5 100.5t-14.5 128.5q0 79 18.5 142t52 106t79.5 66t102 23q87 0 152 -57l52 77l56 -36l-64 -94q27 -42 41.5 -99t14.5 -128q0 -81 -18.5 -144.5t-52 -107.5t-80 -67.5t-101.5 -23.5zM134 331q0 -87 23 -150
-l249 364q-44 50 -106 50q-38 0 -68.5 -18t-52 -52t-33.5 -83t-12 -111zM300 61q37 0 68 18.5t52.5 53.5t33.5 85t12 113q0 89 -24 149l-250 -365q43 -54 108 -54zM271 697l-36 42l141 128l47 -55z" />
-    <glyph glyph-name="OE" unicode="&#x152;" 
-d="M296 0q-125 0 -194 86.5t-69 244.5q0 157 70.5 241.5t195.5 84.5h282v-70h-194v-207h148v-71h-148v-238h204v-71h-295zM289 68h22v520h-22q-86 0 -128 -66t-42 -191q0 -126 42 -194.5t128 -68.5z" />
-    <glyph glyph-name="Racute" unicode="&#x154;" 
-d="M100 0v656h204q50 0 92 -9.5t72.5 -31.5t47.5 -57t17 -86q0 -77 -40 -123t-107 -63l167 -286h-95l-158 277h-117v-277h-83zM183 345h109q77 0 117.5 31.5t40.5 95.5q0 65 -40.5 91t-117.5 26h-109v-244zM275 697l-36 42l141 128l47 -55z" />
-    <glyph glyph-name="Rcaron" unicode="&#x158;" 
-d="M100 0v656h204q50 0 92 -9.5t72.5 -31.5t47.5 -57t17 -86q0 -77 -40 -123t-107 -63l167 -286h-95l-158 277h-117v-277h-83zM183 345h109q77 0 117.5 31.5t40.5 95.5q0 65 -40.5 91t-117.5 26h-109v-244zM261 706l-105 113l36 26l110 -92h4l110 92l36 -26l-105 -113h-86z
-" />
-    <glyph glyph-name="uni1E58" unicode="&#x1e58;" 
-d="M100 0v656h204q50 0 92 -9.5t72.5 -31.5t47.5 -57t17 -86q0 -77 -40 -123t-107 -63l167 -286h-95l-158 277h-117v-277h-83zM183 345h109q77 0 117.5 31.5t40.5 95.5q0 65 -40.5 91t-117.5 26h-109v-244zM304 714q-25 0 -42 15.5t-17 41.5q0 25 17 40.5t42 15.5t42 -15.5
-t17 -40.5q0 -26 -17 -41.5t-42 -15.5z" />
-    <glyph glyph-name="uni0156" unicode="&#x156;" 
-d="M100 0v656h204q50 0 92 -9.5t72.5 -31.5t47.5 -57t17 -86q0 -77 -40 -123t-107 -63l167 -286h-95l-158 277h-117v-277h-83zM183 345h109q77 0 117.5 31.5t40.5 95.5q0 65 -40.5 91t-117.5 26h-109v-244zM233 -226l-8 40q63 5 86 16.5t23 31.5t-18 29.5t-53 12.5l18 38
-q65 -8 91 -25.5t26 -51.5q0 -44 -42.5 -65.5t-122.5 -25.5z" />
-    <glyph glyph-name="uni1E5A" unicode="&#x1e5a;" 
-d="M100 0v656h204q50 0 92 -9.5t72.5 -31.5t47.5 -57t17 -86q0 -77 -40 -123t-107 -63l167 -286h-95l-158 277h-117v-277h-83zM183 345h109q77 0 117.5 31.5t40.5 95.5q0 65 -40.5 91t-117.5 26h-109v-244zM320 -214q-28 0 -47 17.5t-19 46.5t19 46.5t47 17.5t47 -17.5
-t19 -46.5t-19 -46.5t-47 -17.5z" />
-    <glyph glyph-name="uni1E5C" unicode="&#x1e5c;" 
-d="M100 0v656h204q50 0 92 -9.5t72.5 -31.5t47.5 -57t17 -86q0 -77 -40 -123t-107 -63l167 -286h-95l-158 277h-117v-277h-83zM183 345h109q77 0 117.5 31.5t40.5 95.5q0 65 -40.5 91t-117.5 26h-109v-244zM170 735v57h268v-57h-268zM320 -214q-28 0 -47 17.5t-19 46.5
-t19 46.5t47 17.5t47 -17.5t19 -46.5t-19 -46.5t-47 -17.5z" />
-    <glyph glyph-name="uni1E5E" unicode="&#x1e5e;" 
-d="M100 0v656h204q50 0 92 -9.5t72.5 -31.5t47.5 -57t17 -86q0 -77 -40 -123t-107 -63l167 -286h-95l-158 277h-117v-277h-83zM183 345h109q77 0 117.5 31.5t40.5 95.5q0 65 -40.5 91t-117.5 26h-109v-244zM187 -169v57h266v-57h-266z" />
-    <glyph glyph-name="Sacute" unicode="&#x15a;" 
-d="M305 -12q-72 0 -132.5 26t-105.5 71l50 58q37 -37 86 -59.5t106 -22.5q68 0 105.5 29t37.5 75q0 26 -9 44t-25 31t-37.5 23t-46.5 21l-94 41q-25 10 -50 24t-45.5 34t-33.5 47.5t-13 63.5q0 37 16 69t44.5 55.5t68 36.5t86.5 13q62 0 114 -22.5t88 -58.5l-44 -54
-q-32 29 -71 45.5t-90 16.5q-57 0 -92 -25.5t-35 -70.5q0 -24 10.5 -40.5t27 -29t37.5 -21.5l42 -18l92 -40q30 -12 56.5 -27.5t46 -36t31 -48t11.5 -63.5q0 -39 -16 -73t-46 -59.5t-73 -40t-97 -14.5zM287 697l-36 42l141 128l47 -55z" />
-    <glyph glyph-name="Scircumflex" unicode="&#x15c;" 
-d="M305 -12q-72 0 -132.5 26t-105.5 71l50 58q37 -37 86 -59.5t106 -22.5q68 0 105.5 29t37.5 75q0 26 -9 44t-25 31t-37.5 23t-46.5 21l-94 41q-25 10 -50 24t-45.5 34t-33.5 47.5t-13 63.5q0 37 16 69t44.5 55.5t68 36.5t86.5 13q62 0 114 -22.5t88 -58.5l-44 -54
-q-32 29 -71 45.5t-90 16.5q-57 0 -92 -25.5t-35 -70.5q0 -24 10.5 -40.5t27 -29t37.5 -21.5l42 -18l92 -40q30 -12 56.5 -27.5t46 -36t31 -48t11.5 -63.5q0 -39 -16 -73t-46 -59.5t-73 -40t-97 -14.5zM204 699l-36 26l105 113h86l105 -113l-36 -26l-110 93h-4z" />
-    <glyph glyph-name="Scaron" unicode="&#x160;" 
-d="M305 -12q-72 0 -132.5 26t-105.5 71l50 58q37 -37 86 -59.5t106 -22.5q68 0 105.5 29t37.5 75q0 26 -9 44t-25 31t-37.5 23t-46.5 21l-94 41q-25 10 -50 24t-45.5 34t-33.5 47.5t-13 63.5q0 37 16 69t44.5 55.5t68 36.5t86.5 13q62 0 114 -22.5t88 -58.5l-44 -54
-q-32 29 -71 45.5t-90 16.5q-57 0 -92 -25.5t-35 -70.5q0 -24 10.5 -40.5t27 -29t37.5 -21.5l42 -18l92 -40q30 -12 56.5 -27.5t46 -36t31 -48t11.5 -63.5q0 -39 -16 -73t-46 -59.5t-73 -40t-97 -14.5zM273 706l-105 113l36 26l110 -92h4l110 92l36 -26l-105 -113h-86z" />
-    <glyph glyph-name="Scarondot" 
-d="M305 -12q-72 0 -132.5 26t-105.5 71l50 58q37 -37 86 -59.5t106 -22.5q68 0 105.5 29t37.5 75q0 26 -9 44t-25 31t-37.5 23t-46.5 21l-94 41q-25 10 -50 24t-45.5 34t-33.5 47.5t-13 63.5q0 37 16 69t44.5 55.5t68 36.5t86.5 13q62 0 114 -22.5t88 -58.5l-44 -54
-q-32 29 -71 45.5t-90 16.5q-57 0 -92 -25.5t-35 -70.5q0 -24 10.5 -40.5t27 -29t37.5 -21.5l42 -18l92 -40q30 -12 56.5 -27.5t46 -36t31 -48t11.5 -63.5q0 -39 -16 -73t-46 -59.5t-73 -40t-97 -14.5zM316 821q-22 0 -37 14.5t-15 37.5t15 37.5t37 14.5t37 -14.5t15 -37.5
-t-15 -37.5t-37 -14.5zM273 706l-108 109l28 30l121 -92h4l121 92l28 -30l-108 -109h-86z" />
-    <glyph glyph-name="uni015E" unicode="&#x15e;" 
-d="M305 -12q-72 0 -132.5 26t-105.5 71l50 58q37 -37 86 -59.5t106 -22.5q68 0 105.5 29t37.5 75q0 26 -9 44t-25 31t-37.5 23t-46.5 21l-94 41q-25 10 -50 24t-45.5 34t-33.5 47.5t-13 63.5q0 37 16 69t44.5 55.5t68 36.5t86.5 13q62 0 114 -22.5t88 -58.5l-44 -54
-q-32 29 -71 45.5t-90 16.5q-57 0 -92 -25.5t-35 -70.5q0 -24 10.5 -40.5t27 -29t37.5 -21.5l42 -18l92 -40q30 -12 56.5 -27.5t46 -36t31 -48t11.5 -63.5q0 -39 -16 -73t-46 -59.5t-73 -40t-97 -14.5zM232 -226l-8 40q63 5 86 16.5t23 33.5q0 20 -17 31t-60 17l40 96h54
-l-26 -72q35 -8 54 -24t19 -47q0 -44 -42.5 -65.5t-122.5 -25.5z" />
-    <glyph glyph-name="uni0218" unicode="&#x218;" 
-d="M305 -12q-72 0 -132.5 26t-105.5 71l50 58q37 -37 86 -59.5t106 -22.5q68 0 105.5 29t37.5 75q0 26 -9 44t-25 31t-37.5 23t-46.5 21l-94 41q-25 10 -50 24t-45.5 34t-33.5 47.5t-13 63.5q0 37 16 69t44.5 55.5t68 36.5t86.5 13q62 0 114 -22.5t88 -58.5l-44 -54
-q-32 29 -71 45.5t-90 16.5q-57 0 -92 -25.5t-35 -70.5q0 -24 10.5 -40.5t27 -29t37.5 -21.5l42 -18l92 -40q30 -12 56.5 -27.5t46 -36t31 -48t11.5 -63.5q0 -39 -16 -73t-46 -59.5t-73 -40t-97 -14.5zM226 -226l-8 40q63 5 86 16.5t23 31.5t-18 29.5t-53 12.5l18 38
-q65 -8 91 -25.5t26 -51.5q0 -44 -42.5 -65.5t-122.5 -25.5z" />
-    <glyph glyph-name="uni1E60" unicode="&#x1e60;" 
-d="M305 -12q-72 0 -132.5 26t-105.5 71l50 58q37 -37 86 -59.5t106 -22.5q68 0 105.5 29t37.5 75q0 26 -9 44t-25 31t-37.5 23t-46.5 21l-94 41q-25 10 -50 24t-45.5 34t-33.5 47.5t-13 63.5q0 37 16 69t44.5 55.5t68 36.5t86.5 13q62 0 114 -22.5t88 -58.5l-44 -54
-q-32 29 -71 45.5t-90 16.5q-57 0 -92 -25.5t-35 -70.5q0 -24 10.5 -40.5t27 -29t37.5 -21.5l42 -18l92 -40q30 -12 56.5 -27.5t46 -36t31 -48t11.5 -63.5q0 -39 -16 -73t-46 -59.5t-73 -40t-97 -14.5zM316 714q-25 0 -42 15.5t-17 41.5q0 25 17 40.5t42 15.5t42 -15.5
-t17 -40.5q0 -26 -17 -41.5t-42 -15.5z" />
-    <glyph glyph-name="uni1E62" unicode="&#x1e62;" 
-d="M305 -12q-72 0 -132.5 26t-105.5 71l50 58q37 -37 86 -59.5t106 -22.5q68 0 105.5 29t37.5 75q0 26 -9 44t-25 31t-37.5 23t-46.5 21l-94 41q-25 10 -50 24t-45.5 34t-33.5 47.5t-13 63.5q0 37 16 69t44.5 55.5t68 36.5t86.5 13q62 0 114 -22.5t88 -58.5l-44 -54
-q-32 29 -71 45.5t-90 16.5q-57 0 -92 -25.5t-35 -70.5q0 -24 10.5 -40.5t27 -29t37.5 -21.5l42 -18l92 -40q30 -12 56.5 -27.5t46 -36t31 -48t11.5 -63.5q0 -39 -16 -73t-46 -59.5t-73 -40t-97 -14.5zM313 -214q-28 0 -47 17.5t-19 46.5t19 46.5t47 17.5t47 -17.5t19 -46.5
-t-19 -46.5t-47 -17.5z" />
-    <glyph glyph-name="uni1E9E" unicode="&#x1e9e;" 
-d="M390 -12q-49 0 -91 19t-70 54l40 53q25 -29 52 -42.5t62 -13.5q46 0 72.5 30.5t26.5 78.5q0 24 -7.5 45.5t-27 40t-53 33t-84.5 24.5l-6 54l124 154q-17 42 -48.5 61.5t-74.5 19.5q-65 0 -104 -45t-39 -141v-413h-84v428q0 55 16 99.5t45 75.5t71 48t95 17q84 0 135 -42
-t75 -112l-121 -151q49 -15 83 -34.5t54 -44t29 -54t9 -63.5q0 -38 -12 -71t-35.5 -57t-56.5 -37.5t-75 -13.5z" />
-    <glyph glyph-name="Tcaron" unicode="&#x164;" 
-d="M258 0v586h-216v70h516v-70h-216v-586h-84zM257 706l-105 113l36 26l110 -92h4l110 92l36 -26l-105 -113h-86z" />
-    <glyph glyph-name="uni0162" unicode="&#x162;" 
-d="M258 0v586h-216v70h516v-70h-216v-586h-84zM213 -226l-8 40q63 5 86 16.5t23 33.5q0 20 -17 31t-60 17l40 96h54l-26 -72q35 -8 54 -24t19 -47q0 -44 -42.5 -65.5t-122.5 -25.5z" />
-    <glyph glyph-name="uni021A" unicode="&#x21a;" 
-d="M258 0v586h-216v70h516v-70h-216v-586h-84zM213 -226l-8 40q63 5 86 16.5t23 31.5t-18 29.5t-53 12.5l18 38q65 -8 91 -25.5t26 -51.5q0 -44 -42.5 -65.5t-122.5 -25.5z" />
-    <glyph glyph-name="uni1E6C" unicode="&#x1e6c;" 
-d="M258 0v586h-216v70h516v-70h-216v-586h-84zM300 -214q-28 0 -47 17.5t-19 46.5t19 46.5t47 17.5t47 -17.5t19 -46.5t-19 -46.5t-47 -17.5z" />
-    <glyph glyph-name="uni1E6E" unicode="&#x1e6e;" 
-d="M258 0v586h-216v70h516v-70h-216v-586h-84zM167 -169v57h266v-57h-266z" />
-    <glyph glyph-name="Tbar" unicode="&#x166;" 
-d="M116 306v58l90 4h52v218h-216v70h516v-70h-216v-218h142v-62h-142v-306h-84v306h-142z" />
-    <glyph glyph-name="Ugrave" unicode="&#xd9;" 
-d="M301 -12q-48 0 -89 14t-70.5 45.5t-46 80.5t-16.5 120v408h84v-410q0 -51 10.5 -86.5t29 -57t43.5 -31.5t55 -10t55 10t44 31.5t29.5 57t10.5 86.5v410h81v-408q0 -71 -16.5 -120t-45.5 -80.5t-69.5 -45.5t-88.5 -14zM329 697l-152 115l47 55l141 -128z" />
-    <glyph glyph-name="Uacute" unicode="&#xda;" 
-d="M301 -12q-48 0 -89 14t-70.5 45.5t-46 80.5t-16.5 120v408h84v-410q0 -51 10.5 -86.5t29 -57t43.5 -31.5t55 -10t55 10t44 31.5t29.5 57t10.5 86.5v410h81v-408q0 -71 -16.5 -120t-45.5 -80.5t-69.5 -45.5t-88.5 -14zM271 697l-36 42l141 128l47 -55z" />
-    <glyph glyph-name="Ucircumflex" unicode="&#xdb;" 
-d="M301 -12q-48 0 -89 14t-70.5 45.5t-46 80.5t-16.5 120v408h84v-410q0 -51 10.5 -86.5t29 -57t43.5 -31.5t55 -10t55 10t44 31.5t29.5 57t10.5 86.5v410h81v-408q0 -71 -16.5 -120t-45.5 -80.5t-69.5 -45.5t-88.5 -14zM188 699l-36 26l105 113h86l105 -113l-36 -26
-l-110 93h-4z" />
-    <glyph glyph-name="Utilde" unicode="&#x168;" 
-d="M301 -12q-48 0 -89 14t-70.5 45.5t-46 80.5t-16.5 120v408h84v-410q0 -51 10.5 -86.5t29 -57t43.5 -31.5t55 -10t55 10t44 31.5t29.5 57t10.5 86.5v410h81v-408q0 -71 -16.5 -120t-45.5 -80.5t-69.5 -45.5t-88.5 -14zM375 709q-28 0 -48 11t-36.5 24.5t-31 24.5t-32.5 11
-q-19 0 -32 -17t-16 -49l-56 4q3 57 30 90t72 33q28 0 48 -11t36.5 -24.5t31 -24.5t32.5 -11q40 0 48 66l56 -4q-3 -58 -30 -90.5t-72 -32.5z" />
-    <glyph glyph-name="Udieresis" unicode="&#xdc;" 
-d="M301 -12q-48 0 -89 14t-70.5 45.5t-46 80.5t-16.5 120v408h84v-410q0 -51 10.5 -86.5t29 -57t43.5 -31.5t55 -10t55 10t44 31.5t29.5 57t10.5 86.5v410h81v-408q0 -71 -16.5 -120t-45.5 -80.5t-69.5 -45.5t-88.5 -14zM209 715q-22 0 -36.5 14t-14.5 37t14.5 36.5
-t36.5 13.5t36 -13.5t14 -36.5t-14 -37t-36 -14zM391 715q-22 0 -36 14t-14 37t14 36.5t36 13.5t36.5 -13.5t14.5 -36.5t-14.5 -37t-36.5 -14z" />
-    <glyph glyph-name="Umacron" unicode="&#x16a;" 
-d="M301 -12q-48 0 -89 14t-70.5 45.5t-46 80.5t-16.5 120v408h84v-410q0 -51 10.5 -86.5t29 -57t43.5 -31.5t55 -10t55 10t44 31.5t29.5 57t10.5 86.5v410h81v-408q0 -71 -16.5 -120t-45.5 -80.5t-69.5 -45.5t-88.5 -14zM166 735v57h268v-57h-268z" />
-    <glyph glyph-name="Ubreve" unicode="&#x16c;" 
-d="M301 -12q-48 0 -89 14t-70.5 45.5t-46 80.5t-16.5 120v408h84v-410q0 -51 10.5 -86.5t29 -57t43.5 -31.5t55 -10t55 10t44 31.5t29.5 57t10.5 86.5v410h81v-408q0 -71 -16.5 -120t-45.5 -80.5t-69.5 -45.5t-88.5 -14zM300 705q-35 0 -61 10.5t-44 28t-28 41t-13 49.5
-l50 8q6 -35 29.5 -59.5t66.5 -24.5t66.5 24.5t29.5 59.5l50 -8q-3 -26 -13 -49.5t-28 -41t-44 -28t-61 -10.5z" />
-    <glyph glyph-name="Uring" unicode="&#x16e;" 
-d="M301 -12q-48 0 -89 14t-70.5 45.5t-46 80.5t-16.5 120v408h84v-410q0 -51 10.5 -86.5t29 -57t43.5 -31.5t55 -10t55 10t44 31.5t29.5 57t10.5 86.5v410h81v-408q0 -71 -16.5 -120t-45.5 -80.5t-69.5 -45.5t-88.5 -14zM300 699q-42 0 -69.5 24.5t-27.5 65.5
-q0 42 27.5 66.5t69.5 24.5t69.5 -24.5t27.5 -66.5q0 -41 -27.5 -65.5t-69.5 -24.5zM300 735q20 0 35.5 14t15.5 40t-15.5 40t-35.5 14q-22 0 -37 -14t-15 -40t15 -40t37 -14z" />
-    <glyph glyph-name="Uhungarumlaut" unicode="&#x170;" 
-d="M301 -12q-48 0 -89 14t-70.5 45.5t-46 80.5t-16.5 120v408h84v-410q0 -51 10.5 -86.5t29 -57t43.5 -31.5t55 -10t55 10t44 31.5t29.5 57t10.5 86.5v410h81v-408q0 -71 -16.5 -120t-45.5 -80.5t-69.5 -45.5t-88.5 -14zM228 703l-43 21l92 152l57 -32zM388 703l-43 21
-l93 152l56 -32z" />
-    <glyph glyph-name="uni01D3" unicode="&#x1d3;" 
-d="M301 -12q-48 0 -89 14t-70.5 45.5t-46 80.5t-16.5 120v408h84v-410q0 -51 10.5 -86.5t29 -57t43.5 -31.5t55 -10t55 10t44 31.5t29.5 57t10.5 86.5v410h81v-408q0 -71 -16.5 -120t-45.5 -80.5t-69.5 -45.5t-88.5 -14zM257 706l-105 113l36 26l110 -92h4l110 92l36 -26
-l-105 -113h-86z" />
-    <glyph glyph-name="Uogonek" unicode="&#x172;" 
-d="M318 -225q-45 0 -74 22.5t-29 68.5q0 21 6.5 39.5t16.5 34t22 28t22 21.5q-93 5 -148 68t-55 191v408h84v-410q0 -51 10.5 -86.5t28.5 -57t43 -31.5t55 -10t55.5 10t44 31.5t29.5 57t11 86.5v410h81v-408q0 -106 -35 -163.5t-103 -84.5q-59 -24 -81.5 -55t-22.5 -61
-q0 -26 17 -38.5t38 -12.5q16 0 28 6.5t22 14.5l25 -43q-17 -15 -39.5 -25.5t-51.5 -10.5z" />
-    <glyph glyph-name="uni01D5" unicode="&#x1d5;" 
-d="M301 -12q-48 0 -89 14t-70.5 45.5t-46 80.5t-16.5 120v408h84v-410q0 -51 10.5 -86.5t29 -57t43.5 -31.5t55 -10t55 10t44 31.5t29.5 57t10.5 86.5v410h81v-408q0 -71 -16.5 -120t-45.5 -80.5t-69.5 -45.5t-88.5 -14zM197 715q-20 0 -32.5 13t-12.5 33t12.5 32.5
-t32.5 12.5t33 -12.5t13 -32.5t-13 -33t-33 -13zM403 715q-20 0 -33 13t-13 33t13 32.5t33 12.5t32.5 -12.5t12.5 -32.5t-12.5 -33t-32.5 -13zM166 861v46h268v-46h-268z" />
-    <glyph glyph-name="uni01D7" unicode="&#x1d7;" 
-d="M301 -12q-48 0 -89 14t-70.5 45.5t-46 80.5t-16.5 120v408h84v-410q0 -51 10.5 -86.5t29 -57t43.5 -31.5t55 -10t55 10t44 31.5t29.5 57t10.5 86.5v410h81v-408q0 -71 -16.5 -120t-45.5 -80.5t-69.5 -45.5t-88.5 -14zM197 715q-20 0 -32.5 13t-12.5 33t12.5 32.5
-t32.5 12.5t33 -12.5t13 -32.5t-13 -33t-33 -13zM403 715q-20 0 -33 13t-13 33t13 32.5t33 12.5t32.5 -12.5t12.5 -32.5t-12.5 -33t-32.5 -13zM299 823l-37 26l95 119l53 -36z" />
-    <glyph glyph-name="uni01D9" unicode="&#x1d9;" 
-d="M301 -12q-48 0 -89 14t-70.5 45.5t-46 80.5t-16.5 120v408h84v-410q0 -51 10.5 -86.5t29 -57t43.5 -31.5t55 -10t55 10t44 31.5t29.5 57t10.5 86.5v410h81v-408q0 -71 -16.5 -120t-45.5 -80.5t-69.5 -45.5t-88.5 -14zM197 715q-20 0 -32.5 13t-12.5 33t12.5 32.5
-t32.5 12.5t33 -12.5t13 -32.5t-13 -33t-33 -13zM403 715q-20 0 -33 13t-13 33t13 32.5t33 12.5t32.5 -12.5t12.5 -32.5t-12.5 -33t-32.5 -13zM264 839l-99 96l33 27l100 -75h4l100 75l33 -27l-99 -96h-72z" />
-    <glyph glyph-name="uni01DB" unicode="&#x1db;" 
-d="M301 -12q-48 0 -89 14t-70.5 45.5t-46 80.5t-16.5 120v408h84v-410q0 -51 10.5 -86.5t29 -57t43.5 -31.5t55 -10t55 10t44 31.5t29.5 57t10.5 86.5v410h81v-408q0 -71 -16.5 -120t-45.5 -80.5t-69.5 -45.5t-88.5 -14zM197 715q-20 0 -32.5 13t-12.5 33t12.5 32.5
-t32.5 12.5t33 -12.5t13 -32.5t-13 -33t-33 -13zM403 715q-20 0 -33 13t-13 33t13 32.5t33 12.5t32.5 -12.5t12.5 -32.5t-12.5 -33t-32.5 -13zM301 823l-111 109l53 36l95 -119z" />
-    <glyph glyph-name="uni1EE4" unicode="&#x1ee4;" 
-d="M301 -12q-48 0 -89 14t-70.5 45.5t-46 80.5t-16.5 120v408h84v-410q0 -51 10.5 -86.5t29 -57t43.5 -31.5t55 -10t55 10t44 31.5t29.5 57t10.5 86.5v410h81v-408q0 -71 -16.5 -120t-45.5 -80.5t-69.5 -45.5t-88.5 -14zM300 -214q-28 0 -47 17.5t-19 46.5t19 46.5t47 17.5
-t47 -17.5t19 -46.5t-19 -46.5t-47 -17.5z" />
-    <glyph glyph-name="uni1EE6" unicode="&#x1ee6;" 
-d="M301 -12q-48 0 -89 14t-70.5 45.5t-46 80.5t-16.5 120v408h84v-410q0 -51 10.5 -86.5t29 -57t43.5 -31.5t55 -10t55 10t44 31.5t29.5 57t10.5 86.5v410h81v-408q0 -71 -16.5 -120t-45.5 -80.5t-69.5 -45.5t-88.5 -14zM268 698l-9 38q24 7 40 17t16 29q0 39 -83 42l9 48
-q66 -2 102 -22.5t36 -58.5q0 -22 -9 -37.5t-24.5 -27t-35.5 -18t-42 -10.5z" />
-    <glyph glyph-name="Uhorn" unicode="&#x1af;" 
-d="M301 -12q-48 0 -89 14t-70.5 45.5t-46 80.5t-16.5 120v408h84v-410q0 -51 10.5 -86.5t29 -57t43.5 -31.5t55 -10t55 10t44 31.5t29.5 57t10.5 86.5v410h33q41 5 62.5 23t21.5 60q0 15 -4 30.5t-11 27.5l65 28q11 -17 17 -37t6 -43q0 -58 -31.5 -86t-77.5 -39v-372
-q0 -71 -16.5 -120t-45.5 -80.5t-69.5 -45.5t-88.5 -14z" />
-    <glyph glyph-name="uni1EE8" unicode="&#x1ee8;" 
-d="M301 -12q-48 0 -89 14t-70.5 45.5t-46 80.5t-16.5 120v408h84v-410q0 -51 10.5 -86.5t29 -57t43.5 -31.5t55 -10t55 10t44 31.5t29.5 57t10.5 86.5v410h33q41 5 62.5 23t21.5 60q0 15 -4 30.5t-11 27.5l65 28q11 -17 17 -37t6 -43q0 -58 -31.5 -86t-77.5 -39v-372
-q0 -71 -16.5 -120t-45.5 -80.5t-69.5 -45.5t-88.5 -14zM271 697l-36 42l141 128l47 -55z" />
-    <glyph glyph-name="uni1EEA" unicode="&#x1eea;" 
-d="M301 -12q-48 0 -89 14t-70.5 45.5t-46 80.5t-16.5 120v408h84v-410q0 -51 10.5 -86.5t29 -57t43.5 -31.5t55 -10t55 10t44 31.5t29.5 57t10.5 86.5v410h33q41 5 62.5 23t21.5 60q0 15 -4 30.5t-11 27.5l65 28q11 -17 17 -37t6 -43q0 -58 -31.5 -86t-77.5 -39v-372
-q0 -71 -16.5 -120t-45.5 -80.5t-69.5 -45.5t-88.5 -14zM329 697l-152 115l47 55l141 -128z" />
-    <glyph glyph-name="uni1EEC" unicode="&#x1eec;" 
-d="M301 -12q-48 0 -89 14t-70.5 45.5t-46 80.5t-16.5 120v408h84v-410q0 -51 10.5 -86.5t29 -57t43.5 -31.5t55 -10t55 10t44 31.5t29.5 57t10.5 86.5v410h33q41 5 62.5 23t21.5 60q0 15 -4 30.5t-11 27.5l65 28q11 -17 17 -37t6 -43q0 -58 -31.5 -86t-77.5 -39v-372
-q0 -71 -16.5 -120t-45.5 -80.5t-69.5 -45.5t-88.5 -14zM268 698l-9 38q24 7 40 17t16 29q0 39 -83 42l9 48q66 -2 102 -22.5t36 -58.5q0 -22 -9 -37.5t-24.5 -27t-35.5 -18t-42 -10.5z" />
-    <glyph glyph-name="uni1EEE" unicode="&#x1eee;" 
-d="M301 -12q-48 0 -89 14t-70.5 45.5t-46 80.5t-16.5 120v408h84v-410q0 -51 10.5 -86.5t29 -57t43.5 -31.5t55 -10t55 10t44 31.5t29.5 57t10.5 86.5v410h33q41 5 62.5 23t21.5 60q0 15 -4 30.5t-11 27.5l65 28q11 -17 17 -37t6 -43q0 -58 -31.5 -86t-77.5 -39v-372
-q0 -71 -16.5 -120t-45.5 -80.5t-69.5 -45.5t-88.5 -14zM375 709q-28 0 -48 11t-36.5 24.5t-31 24.5t-32.5 11q-19 0 -32 -17t-16 -49l-56 4q3 57 30 90t72 33q28 0 48 -11t36.5 -24.5t31 -24.5t32.5 -11q40 0 48 66l56 -4q-3 -58 -30 -90.5t-72 -32.5z" />
-    <glyph glyph-name="uni1EF0" unicode="&#x1ef0;" 
-d="M301 -12q-48 0 -89 14t-70.5 45.5t-46 80.5t-16.5 120v408h84v-410q0 -51 10.5 -86.5t29 -57t43.5 -31.5t55 -10t55 10t44 31.5t29.5 57t10.5 86.5v410h33q41 5 62.5 23t21.5 60q0 15 -4 30.5t-11 27.5l65 28q11 -17 17 -37t6 -43q0 -58 -31.5 -86t-77.5 -39v-372
-q0 -71 -16.5 -120t-45.5 -80.5t-69.5 -45.5t-88.5 -14zM300 -214q-28 0 -47 17.5t-19 46.5t19 46.5t47 17.5t47 -17.5t19 -46.5t-19 -46.5t-47 -17.5z" />
-    <glyph glyph-name="uni1E7E" unicode="&#x1e7e;" 
-d="M252 0l-209 656h88l106 -354q17 -59 31 -109t32 -108h4q9 29 17 55.5t15.5 52.5t15 53t15.5 56l105 354h85l-208 -656h-97zM302 -214q-28 0 -47 17.5t-19 46.5t19 46.5t47 17.5t47 -17.5t19 -46.5t-19 -46.5t-47 -17.5z" />
-    <glyph glyph-name="Wgrave" unicode="&#x1e80;" 
-d="M110 0l-100 657h94l48 -412q2 -21 4 -38t3.5 -34.5t3 -36.5t2.5 -43h3q4 24 8 43t7.5 36.5t7.5 34.5t9 37l64 244h80l62 -244q5 -20 9 -37t7.5 -34.5t7 -36.5t8.5 -43h4q1 24 2.5 43t3 36.5t3 34.5t3.5 37l46 413h90l-96 -657h-104l-64 264q-8 30 -13.5 59t-10.5 59h-3
-q-5 -30 -10 -59t-13 -59l-64 -264h-102zM329 697l-152 115l47 55l141 -128z" />
-    <glyph glyph-name="Wacute" unicode="&#x1e82;" 
-d="M110 0l-100 657h94l48 -412q2 -21 4 -38t3.5 -34.5t3 -36.5t2.5 -43h3q4 24 8 43t7.5 36.5t7.5 34.5t9 37l64 244h80l62 -244q5 -20 9 -37t7.5 -34.5t7 -36.5t8.5 -43h4q1 24 2.5 43t3 36.5t3 34.5t3.5 37l46 413h90l-96 -657h-104l-64 264q-8 30 -13.5 59t-10.5 59h-3
-q-5 -30 -10 -59t-13 -59l-64 -264h-102zM271 697l-36 42l141 128l47 -55z" />
-    <glyph glyph-name="Wcircumflex" unicode="&#x174;" 
-d="M110 0l-100 657h94l48 -412q2 -21 4 -38t3.5 -34.5t3 -36.5t2.5 -43h3q4 24 8 43t7.5 36.5t7.5 34.5t9 37l64 244h80l62 -244q5 -20 9 -37t7.5 -34.5t7 -36.5t8.5 -43h4q1 24 2.5 43t3 36.5t3 34.5t3.5 37l46 413h90l-96 -657h-104l-64 264q-8 30 -13.5 59t-10.5 59h-3
-q-5 -30 -10 -59t-13 -59l-64 -264h-102zM188 699l-36 26l105 113h86l105 -113l-36 -26l-110 93h-4z" />
-    <glyph glyph-name="Wdieresis" unicode="&#x1e84;" 
-d="M110 0l-100 657h94l48 -412q2 -21 4 -38t3.5 -34.5t3 -36.5t2.5 -43h3q4 24 8 43t7.5 36.5t7.5 34.5t9 37l64 244h80l62 -244q5 -20 9 -37t7.5 -34.5t7 -36.5t8.5 -43h4q1 24 2.5 43t3 36.5t3 34.5t3.5 37l46 413h90l-96 -657h-104l-64 264q-8 30 -13.5 59t-10.5 59h-3
-q-5 -30 -10 -59t-13 -59l-64 -264h-102zM209 715q-22 0 -36.5 14t-14.5 37t14.5 36.5t36.5 13.5t36 -13.5t14 -36.5t-14 -37t-36 -14zM391 715q-22 0 -36 14t-14 37t14 36.5t36 13.5t36.5 -13.5t14.5 -36.5t-14.5 -37t-36.5 -14z" />
-    <glyph glyph-name="Ygrave" unicode="&#x1ef2;" 
-d="M258 0v234l-220 422h88l99 -195q19 -38 37 -75.5t38 -77.5h4l39 78l38 76l95 194h86l-220 -422v-234h-84zM329 697l-152 115l47 55l141 -128z" />
-    <glyph glyph-name="Yacute" unicode="&#xdd;" 
-d="M258 0v234l-220 422h88l99 -195q19 -38 37 -75.5t38 -77.5h4l39 78l38 76l95 194h86l-220 -422v-234h-84zM271 697l-36 42l141 128l47 -55z" />
-    <glyph glyph-name="Ycircumflex" unicode="&#x176;" 
-d="M258 0v234l-220 422h88l99 -195q19 -38 37 -75.5t38 -77.5h4l39 78l38 76l95 194h86l-220 -422v-234h-84zM188 699l-36 26l105 113h86l105 -113l-36 -26l-110 93h-4z" />
-    <glyph glyph-name="Ydieresis" unicode="&#x178;" 
-d="M258 0v234l-220 422h88l99 -195q19 -38 37 -75.5t38 -77.5h4l39 78l38 76l95 194h86l-220 -422v-234h-84zM209 715q-22 0 -36.5 14t-14.5 37t14.5 36.5t36.5 13.5t36 -13.5t14 -36.5t-14 -37t-36 -14zM391 715q-22 0 -36 14t-14 37t14 36.5t36 13.5t36.5 -13.5
-t14.5 -36.5t-14.5 -37t-36.5 -14z" />
-    <glyph glyph-name="uni1E8E" unicode="&#x1e8e;" 
-d="M258 0v234l-220 422h88l99 -195q19 -38 37 -75.5t38 -77.5h4l39 78l38 76l95 194h86l-220 -422v-234h-84zM300 714q-25 0 -42 15.5t-17 41.5q0 25 17 40.5t42 15.5t42 -15.5t17 -40.5q0 -26 -17 -41.5t-42 -15.5z" />
-    <glyph glyph-name="uni1EF4" unicode="&#x1ef4;" 
-d="M258 0v234l-220 422h88l99 -195q19 -38 37 -75.5t38 -77.5h4l39 78l38 76l95 194h86l-220 -422v-234h-84zM300 -214q-28 0 -47 17.5t-19 46.5t19 46.5t47 17.5t47 -17.5t19 -46.5t-19 -46.5t-47 -17.5z" />
-    <glyph glyph-name="uni1EF6" unicode="&#x1ef6;" 
-d="M258 0v234l-220 422h88l99 -195q19 -38 37 -75.5t38 -77.5h4l39 78l38 76l95 194h86l-220 -422v-234h-84zM268 698l-9 38q24 7 40 17t16 29q0 39 -83 42l9 48q66 -2 102 -22.5t36 -58.5q0 -22 -9 -37.5t-24.5 -27t-35.5 -18t-42 -10.5z" />
-    <glyph glyph-name="uni1EF8" unicode="&#x1ef8;" 
-d="M258 0v234l-220 422h88l99 -195q19 -38 37 -75.5t38 -77.5h4l39 78l38 76l95 194h86l-220 -422v-234h-84zM375 709q-28 0 -48 11t-36.5 24.5t-31 24.5t-32.5 11q-19 0 -32 -17t-16 -49l-56 4q3 57 30 90t72 33q28 0 48 -11t36.5 -24.5t31 -24.5t32.5 -11q40 0 48 66
-l56 -4q-3 -58 -30 -90.5t-72 -32.5z" />
-    <glyph glyph-name="Zacute" unicode="&#x179;" 
-d="M65 0v50l366 537h-334v70h437v-50l-367 -536h372v-71h-474zM288 697l-36 42l141 128l47 -55z" />
-    <glyph glyph-name="Zcaron" unicode="&#x17d;" 
-d="M65 0v50l366 537h-334v70h437v-50l-367 -536h372v-71h-474zM274 706l-105 113l36 26l110 -92h4l110 92l36 -26l-105 -113h-86z" />
-    <glyph glyph-name="Zdotaccent" unicode="&#x17b;" 
-d="M65 0v50l366 537h-334v70h437v-50l-367 -536h372v-71h-474zM317 714q-25 0 -42 15.5t-17 41.5q0 25 17 40.5t42 15.5t42 -15.5t17 -40.5q0 -26 -17 -41.5t-42 -15.5z" />
-    <glyph glyph-name="uni1E90" unicode="&#x1e90;" 
-d="M65 0v50l366 537h-334v70h437v-50l-367 -536h372v-71h-474zM205 699l-36 26l105 113h86l105 -113l-36 -26l-110 93h-4z" />
-    <glyph glyph-name="uni1E92" unicode="&#x1e92;" 
-d="M65 0v50l366 537h-334v70h437v-50l-367 -536h372v-71h-474zM310 -214q-28 0 -47 17.5t-19 46.5t19 46.5t47 17.5t47 -17.5t19 -46.5t-19 -46.5t-47 -17.5z" />
-    <glyph glyph-name="uni1E94" unicode="&#x1e94;" 
-d="M65 0v50l366 537h-334v70h437v-50l-367 -536h372v-71h-474zM177 -169v57h266v-57h-266z" />
-    <glyph glyph-name="Eth" unicode="&#xd0;" 
-d="M87 0v314h-75v56l75 6v280h162q149 0 226.5 -84t77.5 -241t-77.5 -244t-222.5 -87h-166zM170 68h73q112 0 167.5 69t55.5 194t-55.5 191t-167.5 66h-73v-212h144v-62h-144v-246z" />
-    <glyph glyph-name="Thorn" unicode="&#xde;" 
-d="M101 0v656h84v-110h118q54 0 99 -10t76.5 -33t49 -59.5t17.5 -90.5q0 -52 -17.5 -90.5t-49.5 -63.5t-76.5 -37t-98.5 -12h-118v-150h-84zM185 218h107q87 0 128.5 32t41.5 103t-42.5 98t-127.5 27h-107v-260z" />
-    <glyph glyph-name="uni018F" unicode="&#x18f;" 
-d="M300 -12q-55 0 -99.5 24.5t-76 68.5t-48.5 106.5t-17 139.5v11.5t1 11.5h407q-4 118 -47 182t-123 64q-41 0 -74 -16t-58 -42l-40 57q31 32 74.5 52.5t101.5 20.5t104 -23.5t78.5 -67t49.5 -106t17 -141.5t-18.5 -142t-51.5 -107.5t-79 -68.5t-101 -24zM300 60
-q69 0 113.5 57t52.5 169h-325q8 -114 49 -170t110 -56z" />
-    <glyph glyph-name="Eng" unicode="&#x14a;" 
-d="M378 -12q-19 0 -40 3.5t-35 10.5l21 75q9 -5 20 -7.5t25 -2.5q20 0 37.5 12.5t30 43.5t19.5 82.5t7 129.5q0 74 -10.5 124t-30 80t-47 43t-60.5 13q-37 0 -78 -27t-69 -67v-501h-83v656h81v-77q32 37 75.5 63t91.5 26q46 0 86 -17.5t68.5 -57t45 -103t16.5 -155.5
-q0 -95 -11.5 -161t-33.5 -107t-54 -60t-72 -19z" />
-    <glyph glyph-name="IJ" unicode="&#x132;" 
-d="M112 0v656h83v-656h-83zM351 -165q-23 0 -41.5 4t-32.5 9l16 66q11 -4 23.5 -7t25.5 -3q38 0 50.5 25.5t12.5 70.5v656h83v-659q0 -74 -31.5 -118t-105.5 -44z" />
-    <glyph glyph-name="uni004C00B7004C" 
-d="M68 0v656h76v-585h131v-71h-207zM246 272q-33 0 -55.5 22.5t-22.5 61.5t22.5 60.5t55.5 21.5t56.5 -21.5t23.5 -60.5t-23.5 -61.5t-56.5 -22.5zM348 0v656h76v-585h130v-71h-206z" />
-    <glyph glyph-name="uni01320301" 
-d="M112 0v656h83v-656h-83zM351 -165q-23 0 -41.5 4t-32.5 9l16 66q11 -4 23.5 -7t25.5 -3q38 0 50.5 25.5t12.5 70.5v656h83v-659q0 -74 -31.5 -118t-105.5 -44zM126 697l-36 42l141 128l47 -55zM417 697l-36 42l141 128l47 -55z" />
-    <glyph glyph-name="agrave" unicode="&#xe0;" 
-d="M246 -12q-34 0 -64 9.5t-52.5 27t-35.5 43t-13 58.5q0 41 19.5 71.5t62 52.5t109.5 36t161 22q-1 25 -8 47t-22 38.5t-39.5 26.5t-59.5 10q-48 0 -92 -18.5t-78 -39.5l-32 56q18 12 42.5 24.5t52 22.5t58.5 16.5t63 6.5q100 0 148.5 -54.5t48.5 -145.5v-298h-67l-7 66h-3
-q-41 -32 -90.5 -55t-101.5 -23zM268 54q42 0 82.5 18.5t82.5 53.5v128q-78 -6 -130.5 -17t-84 -26.5t-44.5 -35t-13 -43.5q0 -21 9 -35.5t23.5 -24t34 -14t40.5 -4.5zM341 568l-157 153l58 56l142 -168z" />
-    <glyph glyph-name="aacute" unicode="&#xe1;" 
-d="M246 -12q-34 0 -64 9.5t-52.5 27t-35.5 43t-13 58.5q0 41 19.5 71.5t62 52.5t109.5 36t161 22q-1 25 -8 47t-22 38.5t-39.5 26.5t-59.5 10q-48 0 -92 -18.5t-78 -39.5l-32 56q18 12 42.5 24.5t52 22.5t58.5 16.5t63 6.5q100 0 148.5 -54.5t48.5 -145.5v-298h-67l-7 66h-3
-q-41 -32 -90.5 -55t-101.5 -23zM268 54q42 0 82.5 18.5t82.5 53.5v128q-78 -6 -130.5 -17t-84 -26.5t-44.5 -35t-13 -43.5q0 -21 9 -35.5t23.5 -24t34 -14t40.5 -4.5zM299 568l-43 41l142 168l58 -56z" />
-    <glyph glyph-name="acircumflex" unicode="&#xe2;" 
-d="M246 -12q-34 0 -64 9.5t-52.5 27t-35.5 43t-13 58.5q0 41 19.5 71.5t62 52.5t109.5 36t161 22q-1 25 -8 47t-22 38.5t-39.5 26.5t-59.5 10q-48 0 -92 -18.5t-78 -39.5l-32 56q18 12 42.5 24.5t52 22.5t58.5 16.5t63 6.5q100 0 148.5 -54.5t48.5 -145.5v-298h-67l-7 66h-3
-q-41 -32 -90.5 -55t-101.5 -23zM268 54q42 0 82.5 18.5t82.5 53.5v128q-78 -6 -130.5 -17t-84 -26.5t-44.5 -35t-13 -43.5q0 -21 9 -35.5t23.5 -24t34 -14t40.5 -4.5zM200 568l-35 32l114 140h82l114 -140l-35 -32l-118 113h-4z" />
-    <glyph glyph-name="atilde" unicode="&#xe3;" 
-d="M246 -12q-34 0 -64 9.5t-52.5 27t-35.5 43t-13 58.5q0 41 19.5 71.5t62 52.5t109.5 36t161 22q-1 25 -8 47t-22 38.5t-39.5 26.5t-59.5 10q-48 0 -92 -18.5t-78 -39.5l-32 56q18 12 42.5 24.5t52 22.5t58.5 16.5t63 6.5q100 0 148.5 -54.5t48.5 -145.5v-298h-67l-7 66h-3
-q-41 -32 -90.5 -55t-101.5 -23zM268 54q42 0 82.5 18.5t82.5 53.5v128q-78 -6 -130.5 -17t-84 -26.5t-44.5 -35t-13 -43.5q0 -21 9 -35.5t23.5 -24t34 -14t40.5 -4.5zM392 577q-27 0 -46 13t-35 29t-30.5 29t-31.5 13q-23 0 -34 -22t-13 -57l-55 3q1 29 7.5 54t18.5 43
-t30.5 28.5t44.5 10.5q27 0 46 -13t35 -29t30.5 -29t32.5 -13q22 0 33 22t13 57l55 -4q-1 -29 -7.5 -53.5t-18.5 -42.5t-30.5 -28.5t-44.5 -10.5z" />
-    <glyph glyph-name="adieresis" unicode="&#xe4;" 
-d="M246 -12q-34 0 -64 9.5t-52.5 27t-35.5 43t-13 58.5q0 41 19.5 71.5t62 52.5t109.5 36t161 22q-1 25 -8 47t-22 38.5t-39.5 26.5t-59.5 10q-48 0 -92 -18.5t-78 -39.5l-32 56q18 12 42.5 24.5t52 22.5t58.5 16.5t63 6.5q100 0 148.5 -54.5t48.5 -145.5v-298h-67l-7 66h-3
-q-41 -32 -90.5 -55t-101.5 -23zM268 54q42 0 82.5 18.5t82.5 53.5v128q-78 -6 -130.5 -17t-84 -26.5t-44.5 -35t-13 -43.5q0 -21 9 -35.5t23.5 -24t34 -14t40.5 -4.5zM223 588q-24 0 -39.5 16t-15.5 40q0 23 15.5 39.5t39.5 16.5t39.5 -16.5t15.5 -39.5q0 -24 -15.5 -40
-t-39.5 -16zM417 588q-24 0 -39.5 16t-15.5 40q0 23 15.5 39.5t39.5 16.5t39.5 -16.5t15.5 -39.5q0 -24 -15.5 -40t-39.5 -16z" />
-    <glyph glyph-name="amacron" unicode="&#x101;" 
-d="M246 -12q-34 0 -64 9.5t-52.5 27t-35.5 43t-13 58.5q0 41 19.5 71.5t62 52.5t109.5 36t161 22q-1 25 -8 47t-22 38.5t-39.5 26.5t-59.5 10q-48 0 -92 -18.5t-78 -39.5l-32 56q18 12 42.5 24.5t52 22.5t58.5 16.5t63 6.5q100 0 148.5 -54.5t48.5 -145.5v-298h-67l-7 66h-3
-q-41 -32 -90.5 -55t-101.5 -23zM268 54q42 0 82.5 18.5t82.5 53.5v128q-78 -6 -130.5 -17t-84 -26.5t-44.5 -35t-13 -43.5q0 -21 9 -35.5t23.5 -24t34 -14t40.5 -4.5zM187 601v57h266v-57h-266z" />
-    <glyph glyph-name="abreve" unicode="&#x103;" 
-d="M246 -12q-34 0 -64 9.5t-52.5 27t-35.5 43t-13 58.5q0 41 19.5 71.5t62 52.5t109.5 36t161 22q-1 25 -8 47t-22 38.5t-39.5 26.5t-59.5 10q-48 0 -92 -18.5t-78 -39.5l-32 56q18 12 42.5 24.5t52 22.5t58.5 16.5t63 6.5q100 0 148.5 -54.5t48.5 -145.5v-298h-67l-7 66h-3
-q-41 -32 -90.5 -55t-101.5 -23zM268 54q42 0 82.5 18.5t82.5 53.5v128q-78 -6 -130.5 -17t-84 -26.5t-44.5 -35t-13 -43.5q0 -21 9 -35.5t23.5 -24t34 -14t40.5 -4.5zM320 571q-40 0 -69 13t-47.5 34.5t-28 48.5t-11.5 55l51 8q3 -19 10.5 -37.5t20.5 -33.5t31.5 -24
-t42.5 -9t42.5 9t31.5 24t20.5 33.5t10.5 37.5l51 -8q-2 -28 -11.5 -55t-28.5 -48.5t-47.5 -34.5t-68.5 -13z" />
-    <glyph glyph-name="aring" unicode="&#xe5;" 
-d="M246 -12q-34 0 -64 9.5t-52.5 27t-35.5 43t-13 58.5q0 41 19.5 71.5t62 52.5t109.5 36t161 22q-1 25 -8 47t-22 38.5t-39.5 26.5t-59.5 10q-48 0 -92 -18.5t-78 -39.5l-32 56q18 12 42.5 24.5t52 22.5t58.5 16.5t63 6.5q100 0 148.5 -54.5t48.5 -145.5v-298h-67l-7 66h-3
-q-41 -32 -90.5 -55t-101.5 -23zM268 54q42 0 82.5 18.5t82.5 53.5v128q-78 -6 -130.5 -17t-84 -26.5t-44.5 -35t-13 -43.5q0 -21 9 -35.5t23.5 -24t34 -14t40.5 -4.5zM320 569q-52 0 -81 27.5t-29 68.5t29 68.5t81 27.5t81 -27.5t29 -68.5t-29 -68.5t-81 -27.5zM320 606
-q24 0 40.5 17t16.5 42q0 26 -16.5 42.5t-40.5 16.5t-40.5 -16.5t-16.5 -42.5q0 -25 16.5 -42t40.5 -17z" />
-    <glyph glyph-name="aringacute" unicode="&#x1fb;" 
-d="M246 -12q-34 0 -64 9.5t-52.5 27t-35.5 43t-13 58.5q0 41 19.5 71.5t62 52.5t109.5 36t161 22q-1 25 -8 47t-22 38.5t-39.5 26.5t-59.5 10q-48 0 -92 -18.5t-78 -39.5l-32 56q18 12 42.5 24.5t52 22.5t58.5 16.5t63 6.5q100 0 148.5 -54.5t48.5 -145.5v-298h-67l-7 66h-3
-q-41 -32 -90.5 -55t-101.5 -23zM268 54q42 0 82.5 18.5t82.5 53.5v128q-78 -6 -130.5 -17t-84 -26.5t-44.5 -35t-13 -43.5q0 -21 9 -35.5t23.5 -24t34 -14t40.5 -4.5zM320 569q-52 0 -81 27.5t-29 68.5q0 26 12 47t35 34l133 97l35 -50l-73 -35q37 -8 57.5 -33.5t20.5 -59.5
-q0 -41 -29 -68.5t-81 -27.5zM320 606q24 0 40.5 17t16.5 42q0 26 -16.5 42.5t-40.5 16.5t-40.5 -16.5t-16.5 -42.5q0 -25 16.5 -42t40.5 -17z" />
-    <glyph glyph-name="uni01CE" unicode="&#x1ce;" 
-d="M246 -12q-34 0 -64 9.5t-52.5 27t-35.5 43t-13 58.5q0 41 19.5 71.5t62 52.5t109.5 36t161 22q-1 25 -8 47t-22 38.5t-39.5 26.5t-59.5 10q-48 0 -92 -18.5t-78 -39.5l-32 56q18 12 42.5 24.5t52 22.5t58.5 16.5t63 6.5q100 0 148.5 -54.5t48.5 -145.5v-298h-67l-7 66h-3
-q-41 -32 -90.5 -55t-101.5 -23zM268 54q42 0 82.5 18.5t82.5 53.5v128q-78 -6 -130.5 -17t-84 -26.5t-44.5 -35t-13 -43.5q0 -21 9 -35.5t23.5 -24t34 -14t40.5 -4.5zM279 574l-114 140l35 32l118 -113h4l118 113l35 -32l-114 -140h-82z" />
-    <glyph glyph-name="aogonek" unicode="&#x105;" 
-d="M456 -225q-44 0 -73.5 22.5t-29.5 70.5q0 45 28 79t67 58l-7 61h-3q-41 -32 -90.5 -55t-101.5 -23q-34 0 -64 9.5t-52.5 27t-35.5 43t-13 58.5q0 41 19.5 71.5t62 52.5t109.5 36t161 22q-1 25 -8 47t-22 38.5t-39.5 26.5t-59.5 10q-48 0 -92 -18.5t-78 -39.5l-32 56
-q18 12 42.5 24.5t52 22.5t58.5 16.5t63 6.5q100 0 148.5 -54.5t48.5 -145.5v-298q-54 -24 -77.5 -54.5t-23.5 -61.5q0 -29 18 -42t41 -13q17 0 30 6t22 15l24 -39q-17 -17 -40.5 -26.5t-52.5 -9.5zM268 54q42 0 82.5 18.5t82.5 53.5v128q-78 -6 -130.5 -17t-84 -26.5
-t-44.5 -35t-13 -43.5q0 -21 9 -35.5t23.5 -24t34 -14t40.5 -4.5z" />
-    <glyph glyph-name="uni1EA1" unicode="&#x1ea1;" 
-d="M246 -12q-34 0 -64 9.5t-52.5 27t-35.5 43t-13 58.5q0 41 19.5 71.5t62 52.5t109.5 36t161 22q-1 25 -8 47t-22 38.5t-39.5 26.5t-59.5 10q-48 0 -92 -18.5t-78 -39.5l-32 56q18 12 42.5 24.5t52 22.5t58.5 16.5t63 6.5q100 0 148.5 -54.5t48.5 -145.5v-298h-67l-7 66h-3
-q-41 -32 -90.5 -55t-101.5 -23zM268 54q42 0 82.5 18.5t82.5 53.5v128q-78 -6 -130.5 -17t-84 -26.5t-44.5 -35t-13 -43.5q0 -21 9 -35.5t23.5 -24t34 -14t40.5 -4.5zM300 -214q-28 0 -47 17.5t-19 46.5t19 46.5t47 17.5t47 -17.5t19 -46.5t-19 -46.5t-47 -17.5z" />
-    <glyph glyph-name="uni1EA3" unicode="&#x1ea3;" 
-d="M246 -12q-34 0 -64 9.5t-52.5 27t-35.5 43t-13 58.5q0 41 19.5 71.5t62 52.5t109.5 36t161 22q-1 25 -8 47t-22 38.5t-39.5 26.5t-59.5 10q-48 0 -92 -18.5t-78 -39.5l-32 56q18 12 42.5 24.5t52 22.5t58.5 16.5t63 6.5q100 0 148.5 -54.5t48.5 -145.5v-298h-67l-7 66h-3
-q-41 -32 -90.5 -55t-101.5 -23zM268 54q42 0 82.5 18.5t82.5 53.5v128q-78 -6 -130.5 -17t-84 -26.5t-44.5 -35t-13 -43.5q0 -21 9 -35.5t23.5 -24t34 -14t40.5 -4.5zM288 572l-9 40q24 6 40 16.5t16 30.5q0 43 -83 47l5 54q69 -2 106 -25.5t37 -68.5q0 -22 -9.5 -37.5
-t-25 -27t-35.5 -18.5t-42 -11z" />
-    <glyph glyph-name="uni1EA5" unicode="&#x1ea5;" 
-d="M246 -12q-34 0 -64 9.5t-52.5 27t-35.5 43t-13 58.5q0 41 19.5 71.5t62 52.5t109.5 36t161 22q-1 25 -8 47t-22 38.5t-39.5 26.5t-59.5 10q-48 0 -92 -18.5t-78 -39.5l-32 56q18 12 42.5 24.5t52 22.5t58.5 16.5t63 6.5q100 0 148.5 -54.5t48.5 -145.5v-298h-67l-7 66h-3
-q-41 -32 -90.5 -55t-101.5 -23zM268 54q42 0 82.5 18.5t82.5 53.5v128q-78 -6 -130.5 -17t-84 -26.5t-44.5 -35t-13 -43.5q0 -21 9 -35.5t23.5 -24t34 -14t40.5 -4.5zM215 570l-29 34l100 92h68l100 -92l-29 -34l-103 72h-4zM454 637l-35 28l87 120l49 -34z" />
-    <glyph glyph-name="uni1EA7" unicode="&#x1ea7;" 
-d="M246 -12q-34 0 -64 9.5t-52.5 27t-35.5 43t-13 58.5q0 41 19.5 71.5t62 52.5t109.5 36t161 22q-1 25 -8 47t-22 38.5t-39.5 26.5t-59.5 10q-48 0 -92 -18.5t-78 -39.5l-32 56q18 12 42.5 24.5t52 22.5t58.5 16.5t63 6.5q100 0 148.5 -54.5t48.5 -145.5v-298h-67l-7 66h-3
-q-41 -32 -90.5 -55t-101.5 -23zM268 54q42 0 82.5 18.5t82.5 53.5v128q-78 -6 -130.5 -17t-84 -26.5t-44.5 -35t-13 -43.5q0 -21 9 -35.5t23.5 -24t34 -14t40.5 -4.5zM215 570l-29 34l100 92h68l100 -92l-29 -34l-103 72h-4zM186 637l-113 112l48 36l100 -117z" />
-    <glyph glyph-name="uni1EA9" unicode="&#x1ea9;" 
-d="M246 -12q-34 0 -64 9.5t-52.5 27t-35.5 43t-13 58.5q0 41 19.5 71.5t62 52.5t109.5 36t161 22q-1 25 -8 47t-22 38.5t-39.5 26.5t-59.5 10q-48 0 -92 -18.5t-78 -39.5l-32 56q18 12 42.5 24.5t52 22.5t58.5 16.5t63 6.5q100 0 148.5 -54.5t48.5 -145.5v-298h-67l-7 66h-3
-q-41 -32 -90.5 -55t-101.5 -23zM268 54q42 0 82.5 18.5t82.5 53.5v128q-78 -6 -130.5 -17t-84 -26.5t-44.5 -35t-13 -43.5q0 -21 9 -35.5t23.5 -24t34 -14t40.5 -4.5zM215 570l-29 34l100 92h68l100 -92l-29 -34l-103 72h-4zM436 635l-9 35q19 5 30.5 14t11.5 25
-q0 20 -16 29.5t-53 11.5l7 41q59 -2 90.5 -20t31.5 -53q0 -20 -8 -34t-21 -23.5t-29.5 -15.5t-34.5 -10z" />
-    <glyph glyph-name="uni1EAB" unicode="&#x1eab;" 
-d="M246 -12q-34 0 -64 9.5t-52.5 27t-35.5 43t-13 58.5q0 41 19.5 71.5t62 52.5t109.5 36t161 22q-1 25 -8 47t-22 38.5t-39.5 26.5t-59.5 10q-48 0 -92 -18.5t-78 -39.5l-32 56q18 12 42.5 24.5t52 22.5t58.5 16.5t63 6.5q100 0 148.5 -54.5t48.5 -145.5v-298h-67l-7 66h-3
-q-41 -32 -90.5 -55t-101.5 -23zM268 54q42 0 82.5 18.5t82.5 53.5v128q-78 -6 -130.5 -17t-84 -26.5t-44.5 -35t-13 -43.5q0 -21 9 -35.5t23.5 -24t34 -14t40.5 -4.5zM215 570l-29 34l100 88h68l100 -88l-29 -34l-103 69h-4zM385 710q-22 0 -39 6.5t-31.5 14.5t-28 14.5
-t-27.5 6.5q-15 0 -22 -10t-11 -32l-43 4q4 39 20.5 64t51.5 25q22 0 39 -6.5t31.5 -14.5t28 -14.5t27.5 -6.5q15 0 22 10t11 32l43 -4q-4 -38 -20.5 -63.5t-51.5 -25.5z" />
-    <glyph glyph-name="uni1EAD" unicode="&#x1ead;" 
-d="M246 -12q-34 0 -64 9.5t-52.5 27t-35.5 43t-13 58.5q0 41 19.5 71.5t62 52.5t109.5 36t161 22q-1 25 -8 47t-22 38.5t-39.5 26.5t-59.5 10q-48 0 -92 -18.5t-78 -39.5l-32 56q18 12 42.5 24.5t52 22.5t58.5 16.5t63 6.5q100 0 148.5 -54.5t48.5 -145.5v-298h-67l-7 66h-3
-q-41 -32 -90.5 -55t-101.5 -23zM268 54q42 0 82.5 18.5t82.5 53.5v128q-78 -6 -130.5 -17t-84 -26.5t-44.5 -35t-13 -43.5q0 -21 9 -35.5t23.5 -24t34 -14t40.5 -4.5zM200 568l-35 32l114 140h82l114 -140l-35 -32l-118 113h-4zM300 -214q-28 0 -47 17.5t-19 46.5t19 46.5
-t47 17.5t47 -17.5t19 -46.5t-19 -46.5t-47 -17.5z" />
-    <glyph glyph-name="uni1EAF" unicode="&#x1eaf;" 
-d="M246 -12q-34 0 -64 9.5t-52.5 27t-35.5 43t-13 58.5q0 41 19.5 71.5t62 52.5t109.5 36t161 22q-1 25 -8 47t-22 38.5t-39.5 26.5t-59.5 10q-48 0 -92 -18.5t-78 -39.5l-32 56q18 12 42.5 24.5t52 22.5t58.5 16.5t63 6.5q100 0 148.5 -54.5t48.5 -145.5v-298h-67l-7 66h-3
-q-41 -32 -90.5 -55t-101.5 -23zM268 54q42 0 82.5 18.5t82.5 53.5v128q-78 -6 -130.5 -17t-84 -26.5t-44.5 -35t-13 -43.5q0 -21 9 -35.5t23.5 -24t34 -14t40.5 -4.5zM320 571q-40 0 -69 13t-47.5 34.5t-28 48.5t-11.5 55l48 8q3 -20 10.5 -39.5t21 -34.5t32.5 -24.5
-t44 -9.5t44 9.5t32.5 24.5t21 34.5t10.5 39.5l48 -8q-2 -28 -11.5 -55t-28.5 -48.5t-47.5 -34.5t-68.5 -13zM315 679l-39 29l88 124l52 -40z" />
-    <glyph glyph-name="uni1EB1" unicode="&#x1eb1;" 
-d="M246 -12q-34 0 -64 9.5t-52.5 27t-35.5 43t-13 58.5q0 41 19.5 71.5t62 52.5t109.5 36t161 22q-1 25 -8 47t-22 38.5t-39.5 26.5t-59.5 10q-48 0 -92 -18.5t-78 -39.5l-32 56q18 12 42.5 24.5t52 22.5t58.5 16.5t63 6.5q100 0 148.5 -54.5t48.5 -145.5v-298h-67l-7 66h-3
-q-41 -32 -90.5 -55t-101.5 -23zM268 54q42 0 82.5 18.5t82.5 53.5v128q-78 -6 -130.5 -17t-84 -26.5t-44.5 -35t-13 -43.5q0 -21 9 -35.5t23.5 -24t34 -14t40.5 -4.5zM320 571q-40 0 -69 13t-47.5 34.5t-28 48.5t-11.5 55l48 8q3 -20 10.5 -39.5t21 -34.5t32.5 -24.5
-t44 -9.5t44 9.5t32.5 24.5t21 34.5t10.5 39.5l48 -8q-2 -28 -11.5 -55t-28.5 -48.5t-47.5 -34.5t-68.5 -13zM325 679l-101 113l52 40l88 -124z" />
-    <glyph glyph-name="uni1EB3" unicode="&#x1eb3;" 
-d="M246 -12q-34 0 -64 9.5t-52.5 27t-35.5 43t-13 58.5q0 41 19.5 71.5t62 52.5t109.5 36t161 22q-1 25 -8 47t-22 38.5t-39.5 26.5t-59.5 10q-48 0 -92 -18.5t-78 -39.5l-32 56q18 12 42.5 24.5t52 22.5t58.5 16.5t63 6.5q100 0 148.5 -54.5t48.5 -145.5v-298h-67l-7 66h-3
-q-41 -32 -90.5 -55t-101.5 -23zM268 54q42 0 82.5 18.5t82.5 53.5v128q-78 -6 -130.5 -17t-84 -26.5t-44.5 -35t-13 -43.5q0 -21 9 -35.5t23.5 -24t34 -14t40.5 -4.5zM320 571q-40 0 -69 13t-47.5 34.5t-28 48.5t-11.5 55l48 8q3 -20 10.5 -39.5t21 -34.5t32.5 -24.5
-t44 -9.5t44 9.5t32.5 24.5t21 34.5t10.5 39.5l48 -8q-2 -28 -11.5 -55t-28.5 -48.5t-47.5 -34.5t-68.5 -13zM293 682l-8 36q21 5 34.5 14t13.5 25q0 20 -17.5 29.5t-58.5 11.5l7 50q61 -2 95 -22t34 -60q0 -20 -8.5 -34.5t-22.5 -24.5t-32 -16t-37 -9z" />
-    <glyph glyph-name="uni1EB5" unicode="&#x1eb5;" 
-d="M246 -12q-34 0 -64 9.5t-52.5 27t-35.5 43t-13 58.5q0 41 19.5 71.5t62 52.5t109.5 36t161 22q-1 25 -8 47t-22 38.5t-39.5 26.5t-59.5 10q-48 0 -92 -18.5t-78 -39.5l-32 56q18 12 42.5 24.5t52 22.5t58.5 16.5t63 6.5q100 0 148.5 -54.5t48.5 -145.5v-298h-67l-7 66h-3
-q-41 -32 -90.5 -55t-101.5 -23zM268 54q42 0 82.5 18.5t82.5 53.5v128q-78 -6 -130.5 -17t-84 -26.5t-44.5 -35t-13 -43.5q0 -21 9 -35.5t23.5 -24t34 -14t40.5 -4.5zM320 571q-37 0 -63 9.5t-43.5 25t-26.5 34.5t-11 38l47 8q4 -25 27 -46.5t70 -21.5t70 21.5t27 46.5
-l47 -8q-2 -19 -11 -38t-26.5 -34.5t-43.5 -25t-63 -9.5zM385 710q-22 0 -39 6.5t-31.5 14.5t-28 14.5t-27.5 6.5q-15 0 -22 -10.5t-11 -32.5l-47 5q4 38 21.5 63t54.5 25q22 0 39 -6.5t31.5 -14.5t28 -14.5t27.5 -6.5q15 0 22 10.5t11 31.5l47 -4q-4 -38 -21.5 -63
-t-54.5 -25z" />
-    <glyph glyph-name="uni1EB7" unicode="&#x1eb7;" 
-d="M246 -12q-34 0 -64 9.5t-52.5 27t-35.5 43t-13 58.5q0 41 19.5 71.5t62 52.5t109.5 36t161 22q-1 25 -8 47t-22 38.5t-39.5 26.5t-59.5 10q-48 0 -92 -18.5t-78 -39.5l-32 56q18 12 42.5 24.5t52 22.5t58.5 16.5t63 6.5q100 0 148.5 -54.5t48.5 -145.5v-298h-67l-7 66h-3
-q-41 -32 -90.5 -55t-101.5 -23zM268 54q42 0 82.5 18.5t82.5 53.5v128q-78 -6 -130.5 -17t-84 -26.5t-44.5 -35t-13 -43.5q0 -21 9 -35.5t23.5 -24t34 -14t40.5 -4.5zM320 571q-40 0 -69 13t-47.5 34.5t-28 48.5t-11.5 55l51 8q3 -19 10.5 -37.5t20.5 -33.5t31.5 -24
-t42.5 -9t42.5 9t31.5 24t20.5 33.5t10.5 37.5l51 -8q-2 -28 -11.5 -55t-28.5 -48.5t-47.5 -34.5t-68.5 -13zM300 -214q-28 0 -47 17.5t-19 46.5t19 46.5t47 17.5t47 -17.5t19 -46.5t-19 -46.5t-47 -17.5z" />
-    <glyph glyph-name="ae" unicode="&#xe6;" 
-d="M145 -12q-56 0 -92 35t-36 97q0 74 58.5 119.5t190.5 62.5q-2 71 -26 99.5t-62 28.5q-30 0 -60.5 -12t-53.5 -28l-31 56q30 20 69.5 36t82.5 16q44 0 75 -23t48 -77q25 54 62 77t78 23q38 0 66 -18t46.5 -48.5t27.5 -70.5t9 -85q0 -14 -1 -28.5t-3 -27.5h-261
-q4 -77 36 -121t89 -44q28 0 51.5 9t43.5 23l30 -56q-25 -18 -57.5 -30.5t-70.5 -12.5q-51 0 -88.5 22.5t-61.5 64.5q-35 -42 -74.5 -64.5t-84.5 -22.5zM167 54q28 0 59 17.5t57 51.5q-17 54 -17 119v7q-51 -8 -84 -19.5t-53 -26.5t-28 -34t-8 -41q0 -35 20.5 -54.5
-t53.5 -19.5zM443 433q-38 0 -70 -34t-40 -115h197q-4 149 -87 149z" />
-    <glyph glyph-name="aeacute" unicode="&#x1fd;" 
-d="M145 -12q-56 0 -92 35t-36 97q0 74 58.5 119.5t190.5 62.5q-2 71 -26 99.5t-62 28.5q-30 0 -60.5 -12t-53.5 -28l-31 56q30 20 69.5 36t82.5 16q44 0 75 -23t48 -77q25 54 62 77t78 23q38 0 66 -18t46.5 -48.5t27.5 -70.5t9 -85q0 -14 -1 -28.5t-3 -27.5h-261
-q4 -77 36 -121t89 -44q28 0 51.5 9t43.5 23l30 -56q-25 -18 -57.5 -30.5t-70.5 -12.5q-51 0 -88.5 22.5t-61.5 64.5q-35 -42 -74.5 -64.5t-84.5 -22.5zM167 54q28 0 59 17.5t57 51.5q-17 54 -17 119v7q-51 -8 -84 -19.5t-53 -26.5t-28 -34t-8 -41q0 -35 20.5 -54.5
-t53.5 -19.5zM443 433q-38 0 -70 -34t-40 -115h197q-4 149 -87 149zM295 568l-43 41l142 168l58 -56z" />
-    <glyph glyph-name="uni01E3" unicode="&#x1e3;" 
-d="M145 -12q-56 0 -92 35t-36 97q0 74 58.5 119.5t190.5 62.5q-2 71 -26 99.5t-62 28.5q-30 0 -60.5 -12t-53.5 -28l-31 56q30 20 69.5 36t82.5 16q44 0 75 -23t48 -77q25 54 62 77t78 23q38 0 66 -18t46.5 -48.5t27.5 -70.5t9 -85q0 -14 -1 -28.5t-3 -27.5h-261
-q4 -77 36 -121t89 -44q28 0 51.5 9t43.5 23l30 -56q-25 -18 -57.5 -30.5t-70.5 -12.5q-51 0 -88.5 22.5t-61.5 64.5q-35 -42 -74.5 -64.5t-84.5 -22.5zM167 54q28 0 59 17.5t57 51.5q-17 54 -17 119v7q-51 -8 -84 -19.5t-53 -26.5t-28 -34t-8 -41q0 -35 20.5 -54.5
-t53.5 -19.5zM443 433q-38 0 -70 -34t-40 -115h197q-4 149 -87 149zM183 601v57h266v-57h-266z" />
-    <glyph glyph-name="uni0180" unicode="&#x180;" 
-d="M320 -12q-35 0 -75.5 17.5t-75.5 48.5h-3l-7 -54h-66v562h-73v59l73 5v86h82v-86h213v-64h-213v-67l-3 -91h3q33 34 76.5 54t86.5 20q49 0 87 -17t63.5 -47.5t38.5 -74.5t13 -98q0 -60 -18 -107t-48.5 -79.5t-70.5 -49.5t-83 -17zM307 57q64 0 106 48.5t42 134.5
-q0 76 -32 122.5t-105 46.5q-32 0 -68.5 -17.5t-74.5 -55.5v-222q35 -31 70.5 -44t61.5 -13z" />
-    <glyph glyph-name="uni1E07" unicode="&#x1e07;" 
-d="M320 -12q-35 0 -75.5 17.5t-75.5 48.5h-3l-7 -54h-66v712h82v-194l-3 -94h3q33 34 76.5 54t86.5 20q49 0 87 -17.5t63.5 -50t38.5 -78t13 -101.5q0 -62 -18 -111t-48.5 -83t-70.5 -51.5t-83 -17.5zM307 57q32 0 59 13.5t47 38t31 60.5t11 81q0 40 -8 73t-24.5 56.5
-t-42.5 36.5t-62 13q-32 0 -68.5 -17.5t-74.5 -55.5v-242q35 -31 70.5 -44t61.5 -13zM177 -169v57h266v-57h-266z" />
-    <glyph glyph-name="ccedilla" unicode="&#xe7;" 
-d="M346 -12q-57 0 -105.5 17t-84.5 49.5t-56 80t-20 107.5q0 61 21.5 108.5t58.5 80.5t86.5 50t104.5 17q60 0 103.5 -21t73.5 -50l-41 -53q-30 26 -62.5 41t-70.5 15q-42 0 -77 -13.5t-59.5 -38.5t-38.5 -59.5t-14 -76.5t13.5 -76t38 -58.5t59 -38t76.5 -13.5
-q45 0 82.5 17.5t67.5 43.5l37 -53q-41 -36 -90 -56t-103 -20zM259 -226l-8 40q63 5 86 16.5t23 33.5q0 20 -17 31t-60 17l40 96h54l-26 -72q35 -8 54 -24t19 -47q0 -44 -42.5 -65.5t-122.5 -25.5z" />
-    <glyph glyph-name="cacute" unicode="&#x107;" 
-d="M346 -12q-57 0 -105.5 17t-84.5 49.5t-56 80t-20 107.5q0 61 21.5 108.5t58.5 80.5t86.5 50t104.5 17q60 0 103.5 -21t73.5 -50l-41 -53q-30 26 -62.5 41t-70.5 15q-42 0 -77 -13.5t-59.5 -38.5t-38.5 -59.5t-14 -76.5t13.5 -76t38 -58.5t59 -38t76.5 -13.5
-q45 0 82.5 17.5t67.5 43.5l37 -53q-41 -36 -90 -56t-103 -20zM325 568l-43 41l142 168l58 -56z" />
-    <glyph glyph-name="ccircumflex" unicode="&#x109;" 
-d="M346 -12q-57 0 -105.5 17t-84.5 49.5t-56 80t-20 107.5q0 61 21.5 108.5t58.5 80.5t86.5 50t104.5 17q60 0 103.5 -21t73.5 -50l-41 -53q-30 26 -62.5 41t-70.5 15q-42 0 -77 -13.5t-59.5 -38.5t-38.5 -59.5t-14 -76.5t13.5 -76t38 -58.5t59 -38t76.5 -13.5
-q45 0 82.5 17.5t67.5 43.5l37 -53q-41 -36 -90 -56t-103 -20zM226 568l-35 32l114 140h82l114 -140l-35 -32l-118 113h-4z" />
-    <glyph glyph-name="ccaron" unicode="&#x10d;" 
-d="M346 -12q-57 0 -105.5 17t-84.5 49.5t-56 80t-20 107.5q0 61 21.5 108.5t58.5 80.5t86.5 50t104.5 17q60 0 103.5 -21t73.5 -50l-41 -53q-30 26 -62.5 41t-70.5 15q-42 0 -77 -13.5t-59.5 -38.5t-38.5 -59.5t-14 -76.5t13.5 -76t38 -58.5t59 -38t76.5 -13.5
-q45 0 82.5 17.5t67.5 43.5l37 -53q-41 -36 -90 -56t-103 -20zM305 574l-114 140l35 32l118 -113h4l118 113l35 -32l-114 -140h-82z" />
-    <glyph glyph-name="cdotaccent" unicode="&#x10b;" 
-d="M346 -12q-57 0 -105.5 17t-84.5 49.5t-56 80t-20 107.5q0 61 21.5 108.5t58.5 80.5t86.5 50t104.5 17q60 0 103.5 -21t73.5 -50l-41 -53q-30 26 -62.5 41t-70.5 15q-42 0 -77 -13.5t-59.5 -38.5t-38.5 -59.5t-14 -76.5t13.5 -76t38 -58.5t59 -38t76.5 -13.5
-q45 0 82.5 17.5t67.5 43.5l37 -53q-41 -36 -90 -56t-103 -20zM346 588q-28 0 -47 17.5t-19 46.5t19 46.5t47 17.5t47 -17.5t19 -46.5t-19 -46.5t-47 -17.5z" />
-    <glyph glyph-name="dcaron" unicode="&#x10f;" 
-d="M254 -12q-45 0 -82 17t-63 49.5t-40.5 79.5t-14.5 108q0 59 17.5 106.5t46.5 80.5t67 51t79 18q42 0 74 -17t64 -46h3l-5 90v187h79v-712h-64l-7 64h-3q-29 -30 -68 -53t-83 -23zM271 57q65 0 129 73v242q-32 30 -61 43.5t-59 13.5t-56.5 -13.5t-46 -38t-31 -58.5
-t-11.5 -76q0 -88 36 -137t100 -49zM548 548l-3 268h74v-81l-14 -187h-57z" />
-    <glyph glyph-name="uni1E0D" unicode="&#x1e0d;" 
-d="M271 -12q-48 0 -86.5 17t-66.5 49.5t-43 79.5t-15 108q0 59 18.5 106.5t49 80.5t70.5 51t83 18q44 0 78.5 -16.5t66.5 -46.5h3l-4 90v187h82v-712h-68l-7 64h-3q-30 -31 -71.5 -53.5t-86.5 -22.5zM288 57q72 0 137 73v242q-33 31 -64.5 44t-63.5 13t-59.5 -13.5t-48 -38
-t-32.5 -58.5t-12 -76q0 -88 37.5 -137t105.5 -49zM304 -214q-28 0 -47 17.5t-19 46.5t19 46.5t47 17.5t47 -17.5t19 -46.5t-19 -46.5t-47 -17.5z" />
-    <glyph glyph-name="uni1E0F" unicode="&#x1e0f;" 
-d="M271 -12q-48 0 -86.5 17t-66.5 49.5t-43 79.5t-15 108q0 59 18.5 106.5t49 80.5t70.5 51t83 18q44 0 78.5 -16.5t66.5 -46.5h3l-4 90v187h82v-712h-68l-7 64h-3q-30 -31 -71.5 -53.5t-86.5 -22.5zM288 57q72 0 137 73v242q-33 31 -64.5 44t-63.5 13t-59.5 -13.5t-48 -38
-t-32.5 -58.5t-12 -76q0 -88 37.5 -137t105.5 -49zM171 -169v57h266v-57h-266z" />
-    <glyph glyph-name="uni1E11" unicode="&#x1e11;" 
-d="M271 -12q-48 0 -86.5 17t-66.5 49.5t-43 79.5t-15 108q0 59 18.5 106.5t49 80.5t70.5 51t83 18q44 0 78.5 -16.5t66.5 -46.5h3l-4 90v187h82v-712h-68l-7 64h-3q-30 -31 -71.5 -53.5t-86.5 -22.5zM288 57q72 0 137 73v242q-33 31 -64.5 44t-63.5 13t-59.5 -13.5t-48 -38
-t-32.5 -58.5t-12 -76q0 -88 37.5 -137t105.5 -49zM209 -226l-8 40q63 5 86 16.5t23 33.5q0 20 -17 31t-60 17l40 96h54l-26 -72q35 -8 54 -24t19 -47q0 -44 -42.5 -65.5t-122.5 -25.5z" />
-    <glyph glyph-name="dcroat" unicode="&#x111;" 
-d="M271 -12q-48 0 -86.5 16t-66.5 47.5t-43 76.5t-15 104q0 57 18.5 102.5t49 77.5t70.5 49t83 17q45 0 79 -17t66 -46h3l-4 90v57h-175v64h175v86h82v-86h73v-58l-73 -6v-562h-68l-7 64h-3q-30 -31 -71.5 -53.5t-86.5 -22.5zM288 57q72 0 137 73v222q-33 31 -64.5 44
-t-62.5 13q-32 0 -60 -13t-48.5 -36t-32.5 -55.5t-12 -71.5q0 -83 37.5 -129.5t105.5 -46.5z" />
-    <glyph glyph-name="egrave" unicode="&#xe8;" 
-d="M330 -12q-55 0 -102.5 17t-83 50t-56 80.5t-20.5 108.5q0 59 20.5 106t55 80t79 50.5t93.5 17.5q52 0 93.5 -16.5t70 -46.5t43.5 -72t15 -93q0 -14 -1 -27t-3 -23h-383q8 -83 60.5 -124.5t128.5 -41.5q44 0 79.5 12.5t68.5 33.5l30 -54q-36 -24 -82.5 -41t-105.5 -17z
-M318 433q-30 0 -57.5 -10t-49.5 -28.5t-37 -46.5t-21 -64h310q-5 75 -43.5 112t-101.5 37zM337 568l-157 153l58 56l142 -168z" />
-    <glyph glyph-name="eacute" unicode="&#xe9;" 
-d="M330 -12q-55 0 -102.5 17t-83 50t-56 80.5t-20.5 108.5q0 59 20.5 106t55 80t79 50.5t93.5 17.5q52 0 93.5 -16.5t70 -46.5t43.5 -72t15 -93q0 -14 -1 -27t-3 -23h-383q8 -83 60.5 -124.5t128.5 -41.5q44 0 79.5 12.5t68.5 33.5l30 -54q-36 -24 -82.5 -41t-105.5 -17z
-M318 433q-30 0 -57.5 -10t-49.5 -28.5t-37 -46.5t-21 -64h310q-5 75 -43.5 112t-101.5 37zM295 568l-43 41l142 168l58 -56z" />
-    <glyph glyph-name="ecircumflex" unicode="&#xea;" 
-d="M330 -12q-55 0 -102.5 17t-83 50t-56 80.5t-20.5 108.5q0 59 20.5 106t55 80t79 50.5t93.5 17.5q52 0 93.5 -16.5t70 -46.5t43.5 -72t15 -93q0 -14 -1 -27t-3 -23h-383q8 -83 60.5 -124.5t128.5 -41.5q44 0 79.5 12.5t68.5 33.5l30 -54q-36 -24 -82.5 -41t-105.5 -17z
-M318 433q-30 0 -57.5 -10t-49.5 -28.5t-37 -46.5t-21 -64h310q-5 75 -43.5 112t-101.5 37zM196 568l-35 32l114 140h82l114 -140l-35 -32l-118 113h-4z" />
-    <glyph glyph-name="ecaron" unicode="&#x11b;" 
-d="M330 -12q-55 0 -102.5 17t-83 50t-56 80.5t-20.5 108.5q0 59 20.5 106t55 80t79 50.5t93.5 17.5q52 0 93.5 -16.5t70 -46.5t43.5 -72t15 -93q0 -14 -1 -27t-3 -23h-383q8 -83 60.5 -124.5t128.5 -41.5q44 0 79.5 12.5t68.5 33.5l30 -54q-36 -24 -82.5 -41t-105.5 -17z
-M318 433q-30 0 -57.5 -10t-49.5 -28.5t-37 -46.5t-21 -64h310q-5 75 -43.5 112t-101.5 37zM275 574l-114 140l35 32l118 -113h4l118 113l35 -32l-114 -140h-82z" />
-    <glyph glyph-name="edieresis" unicode="&#xeb;" 
-d="M330 -12q-55 0 -102.5 17t-83 50t-56 80.5t-20.5 108.5q0 59 20.5 106t55 80t79 50.5t93.5 17.5q52 0 93.5 -16.5t70 -46.5t43.5 -72t15 -93q0 -14 -1 -27t-3 -23h-383q8 -83 60.5 -124.5t128.5 -41.5q44 0 79.5 12.5t68.5 33.5l30 -54q-36 -24 -82.5 -41t-105.5 -17z
-M318 433q-30 0 -57.5 -10t-49.5 -28.5t-37 -46.5t-21 -64h310q-5 75 -43.5 112t-101.5 37zM219 588q-24 0 -39.5 16t-15.5 40q0 23 15.5 39.5t39.5 16.5t39.5 -16.5t15.5 -39.5q0 -24 -15.5 -40t-39.5 -16zM413 588q-24 0 -39.5 16t-15.5 40q0 23 15.5 39.5t39.5 16.5
-t39.5 -16.5t15.5 -39.5q0 -24 -15.5 -40t-39.5 -16z" />
-    <glyph glyph-name="emacron" unicode="&#x113;" 
-d="M330 -12q-55 0 -102.5 17t-83 50t-56 80.5t-20.5 108.5q0 59 20.5 106t55 80t79 50.5t93.5 17.5q52 0 93.5 -16.5t70 -46.5t43.5 -72t15 -93q0 -14 -1 -27t-3 -23h-383q8 -83 60.5 -124.5t128.5 -41.5q44 0 79.5 12.5t68.5 33.5l30 -54q-36 -24 -82.5 -41t-105.5 -17z
-M318 433q-30 0 -57.5 -10t-49.5 -28.5t-37 -46.5t-21 -64h310q-5 75 -43.5 112t-101.5 37zM183 601v57h266v-57h-266z" />
-    <glyph glyph-name="ebreve" unicode="&#x115;" 
-d="M330 -12q-55 0 -102.5 17t-83 50t-56 80.5t-20.5 108.5q0 59 20.5 106t55 80t79 50.5t93.5 17.5q52 0 93.5 -16.5t70 -46.5t43.5 -72t15 -93q0 -14 -1 -27t-3 -23h-383q8 -83 60.5 -124.5t128.5 -41.5q44 0 79.5 12.5t68.5 33.5l30 -54q-36 -24 -82.5 -41t-105.5 -17z
-M318 433q-30 0 -57.5 -10t-49.5 -28.5t-37 -46.5t-21 -64h310q-5 75 -43.5 112t-101.5 37zM316 571q-40 0 -69 13t-47.5 34.5t-28 48.5t-11.5 55l51 8q3 -19 10.5 -37.5t20.5 -33.5t31.5 -24t42.5 -9t42.5 9t31.5 24t20.5 33.5t10.5 37.5l51 -8q-2 -28 -11.5 -55
-t-28.5 -48.5t-47.5 -34.5t-68.5 -13z" />
-    <glyph glyph-name="eogonek" unicode="&#x119;" 
-d="M422 -225q-45 0 -74 22.5t-29 70.5q0 40 21.5 71t54.5 60q-26 -9 -41.5 -10t-23.5 -1q-55 0 -102.5 17t-83 50t-56 80t-20.5 107t20.5 107.5t55 80.5t79 50.5t93.5 17.5q52 0 93.5 -16.5t70 -46.5t43.5 -72t15 -93q0 -14 -1 -27t-3 -23h-383q8 -83 60.5 -124.5
-t128.5 -41.5q44 0 79.5 12.5t68.5 33.5l30 -54q-38 -27 -64.5 -48.5t-43 -40t-23.5 -36.5t-7 -37q0 -28 18 -41.5t41 -13.5q17 0 30 6t23 15l24 -39q-18 -17 -41.5 -26.5t-52.5 -9.5zM318 433q-30 0 -57.5 -10t-49.5 -28.5t-37 -46.5t-21 -64h310q-5 75 -43.5 112t-101.5 37
-z" />
-    <glyph glyph-name="edotaccent" unicode="&#x117;" 
-d="M330 -12q-55 0 -102.5 17t-83 50t-56 80.5t-20.5 108.5q0 59 20.5 106t55 80t79 50.5t93.5 17.5q52 0 93.5 -16.5t70 -46.5t43.5 -72t15 -93q0 -14 -1 -27t-3 -23h-383q8 -83 60.5 -124.5t128.5 -41.5q44 0 79.5 12.5t68.5 33.5l30 -54q-36 -24 -82.5 -41t-105.5 -17z
-M318 433q-30 0 -57.5 -10t-49.5 -28.5t-37 -46.5t-21 -64h310q-5 75 -43.5 112t-101.5 37zM316 588q-28 0 -47 17.5t-19 46.5t19 46.5t47 17.5t47 -17.5t19 -46.5t-19 -46.5t-47 -17.5z" />
-    <glyph glyph-name="uni1EB9" unicode="&#x1eb9;" 
-d="M330 -12q-55 0 -102.5 17t-83 50t-56 80.5t-20.5 108.5q0 59 20.5 106t55 80t79 50.5t93.5 17.5q52 0 93.5 -16.5t70 -46.5t43.5 -72t15 -93q0 -14 -1 -27t-3 -23h-383q8 -83 60.5 -124.5t128.5 -41.5q44 0 79.5 12.5t68.5 33.5l30 -54q-36 -24 -82.5 -41t-105.5 -17z
-M318 433q-30 0 -57.5 -10t-49.5 -28.5t-37 -46.5t-21 -64h310q-5 75 -43.5 112t-101.5 37zM316 -214q-28 0 -47 17.5t-19 46.5t19 46.5t47 17.5t47 -17.5t19 -46.5t-19 -46.5t-47 -17.5z" />
-    <glyph glyph-name="uni1EBB" unicode="&#x1ebb;" 
-d="M330 -12q-55 0 -102.5 17t-83 50t-56 80.5t-20.5 108.5q0 59 20.5 106t55 80t79 50.5t93.5 17.5q52 0 93.5 -16.5t70 -46.5t43.5 -72t15 -93q0 -14 -1 -27t-3 -23h-383q8 -83 60.5 -124.5t128.5 -41.5q44 0 79.5 12.5t68.5 33.5l30 -54q-36 -24 -82.5 -41t-105.5 -17z
-M318 433q-30 0 -57.5 -10t-49.5 -28.5t-37 -46.5t-21 -64h310q-5 75 -43.5 112t-101.5 37zM284 572l-9 40q24 6 40 16.5t16 30.5q0 43 -83 47l5 54q69 -2 106 -25.5t37 -68.5q0 -22 -9.5 -37.5t-25 -27t-35.5 -18.5t-42 -11z" />
-    <glyph glyph-name="uni1EBD" unicode="&#x1ebd;" 
-d="M330 -12q-55 0 -102.5 17t-83 50t-56 80.5t-20.5 108.5q0 59 20.5 106t55 80t79 50.5t93.5 17.5q52 0 93.5 -16.5t70 -46.5t43.5 -72t15 -93q0 -14 -1 -27t-3 -23h-383q8 -83 60.5 -124.5t128.5 -41.5q44 0 79.5 12.5t68.5 33.5l30 -54q-36 -24 -82.5 -41t-105.5 -17z
-M318 433q-30 0 -57.5 -10t-49.5 -28.5t-37 -46.5t-21 -64h310q-5 75 -43.5 112t-101.5 37zM388 577q-27 0 -46 13t-35 29t-30.5 29t-31.5 13q-23 0 -34 -22t-13 -57l-55 3q1 29 7.5 54t18.5 43t30.5 28.5t44.5 10.5q27 0 46 -13t35 -29t30.5 -29t32.5 -13q22 0 33 22t13 57
-l55 -4q-1 -29 -7.5 -53.5t-18.5 -42.5t-30.5 -28.5t-44.5 -10.5z" />
-    <glyph glyph-name="uni1EBF" unicode="&#x1ebf;" 
-d="M330 -12q-55 0 -102.5 17t-83 50t-56 80.5t-20.5 108.5q0 59 20.5 106t55 80t79 50.5t93.5 17.5q52 0 93.5 -16.5t70 -46.5t43.5 -72t15 -93q0 -14 -1 -27t-3 -23h-383q8 -83 60.5 -124.5t128.5 -41.5q44 0 79.5 12.5t68.5 33.5l30 -54q-36 -24 -82.5 -41t-105.5 -17z
-M318 433q-30 0 -57.5 -10t-49.5 -28.5t-37 -46.5t-21 -64h310q-5 75 -43.5 112t-101.5 37zM211 570l-29 34l100 92h68l100 -92l-29 -34l-103 72h-4zM450 637l-35 28l87 120l49 -34z" />
-    <glyph glyph-name="uni1EC1" unicode="&#x1ec1;" 
-d="M330 -12q-55 0 -102.5 17t-83 50t-56 80.5t-20.5 108.5q0 59 20.5 106t55 80t79 50.5t93.5 17.5q52 0 93.5 -16.5t70 -46.5t43.5 -72t15 -93q0 -14 -1 -27t-3 -23h-383q8 -83 60.5 -124.5t128.5 -41.5q44 0 79.5 12.5t68.5 33.5l30 -54q-36 -24 -82.5 -41t-105.5 -17z
-M318 433q-30 0 -57.5 -10t-49.5 -28.5t-37 -46.5t-21 -64h310q-5 75 -43.5 112t-101.5 37zM211 570l-29 34l100 92h68l100 -92l-29 -34l-103 72h-4zM182 637l-113 112l48 36l100 -117z" />
-    <glyph glyph-name="uni1EC3" unicode="&#x1ec3;" 
-d="M330 -12q-55 0 -102.5 17t-83 50t-56 80.5t-20.5 108.5q0 59 20.5 106t55 80t79 50.5t93.5 17.5q52 0 93.5 -16.5t70 -46.5t43.5 -72t15 -93q0 -14 -1 -27t-3 -23h-383q8 -83 60.5 -124.5t128.5 -41.5q44 0 79.5 12.5t68.5 33.5l30 -54q-36 -24 -82.5 -41t-105.5 -17z
-M318 433q-30 0 -57.5 -10t-49.5 -28.5t-37 -46.5t-21 -64h310q-5 75 -43.5 112t-101.5 37zM211 570l-29 34l100 92h68l100 -92l-29 -34l-103 72h-4zM432 635l-9 35q19 5 30.5 14t11.5 25q0 20 -16 29.5t-53 11.5l7 41q59 -2 90.5 -20t31.5 -53q0 -20 -8 -34t-21 -23.5
-t-29.5 -15.5t-34.5 -10z" />
-    <glyph glyph-name="uni1EC5" unicode="&#x1ec5;" 
-d="M330 -12q-55 0 -102.5 17t-83 50t-56 80.5t-20.5 108.5q0 59 20.5 106t55 80t79 50.5t93.5 17.5q52 0 93.5 -16.5t70 -46.5t43.5 -72t15 -93q0 -14 -1 -27t-3 -23h-383q8 -83 60.5 -124.5t128.5 -41.5q44 0 79.5 12.5t68.5 33.5l30 -54q-36 -24 -82.5 -41t-105.5 -17z
-M318 433q-30 0 -57.5 -10t-49.5 -28.5t-37 -46.5t-21 -64h310q-5 75 -43.5 112t-101.5 37zM211 570l-29 34l100 88h68l100 -88l-29 -34l-103 69h-4zM381 710q-22 0 -39 6.5t-31.5 14.5t-28 14.5t-27.5 6.5q-15 0 -22 -10t-11 -32l-43 4q4 39 20.5 64t51.5 25q22 0 39 -6.5
-t31.5 -14.5t28 -14.5t27.5 -6.5q15 0 22 10t11 32l43 -4q-4 -38 -20.5 -63.5t-51.5 -25.5z" />
-    <glyph glyph-name="uni1EC7" unicode="&#x1ec7;" 
-d="M330 -12q-55 0 -102.5 17t-83 50t-56 80.5t-20.5 108.5q0 59 20.5 106t55 80t79 50.5t93.5 17.5q52 0 93.5 -16.5t70 -46.5t43.5 -72t15 -93q0 -14 -1 -27t-3 -23h-383q8 -83 60.5 -124.5t128.5 -41.5q44 0 79.5 12.5t68.5 33.5l30 -54q-36 -24 -82.5 -41t-105.5 -17z
-M318 433q-30 0 -57.5 -10t-49.5 -28.5t-37 -46.5t-21 -64h310q-5 75 -43.5 112t-101.5 37zM196 568l-35 32l114 140h82l114 -140l-35 -32l-118 113h-4zM316 -214q-28 0 -47 17.5t-19 46.5t19 46.5t47 17.5t47 -17.5t19 -46.5t-19 -46.5t-47 -17.5z" />
-    <glyph glyph-name="uni1E17" unicode="&#x1e17;" 
-d="M330 -12q-55 0 -102.5 17t-83 50t-56 80.5t-20.5 108.5q0 59 20.5 106t55 80t79 50.5t93.5 17.5q52 0 93.5 -16.5t70 -46.5t43.5 -72t15 -93q0 -14 -1 -27t-3 -23h-383q8 -83 60.5 -124.5t128.5 -41.5q44 0 79.5 12.5t68.5 33.5l30 -54q-36 -24 -82.5 -41t-105.5 -17z
-M318 433q-30 0 -57.5 -10t-49.5 -28.5t-37 -46.5t-21 -64h310q-5 75 -43.5 112t-101.5 37zM183 601v57h266v-57h-266zM282 705l-32 39l135 99l38 -49z" />
-    <glyph glyph-name="uni01F5" unicode="&#x1f5;" 
-d="M296 -224q-107 0 -165.5 35t-58.5 100q0 29 20.5 57t59.5 51v4q-20 11 -35 30t-15 50q0 23 15 47.5t43 43.5v4q-25 19 -42.5 50.5t-17.5 75.5q0 40 15.5 72t41.5 54.5t60.5 35t73.5 12.5q40 0 72 -12h201v-67h-126q17 -17 29 -43t12 -55q0 -39 -14.5 -70t-40 -52.5
-t-60 -33t-73.5 -11.5q-19 0 -40.5 4.5t-41.5 13.5q-38 -24 -38 -56q0 -29 26.5 -42.5t74.5 -13.5h109q94 0 139.5 -26t45.5 -88q0 -34 -19 -65t-54 -54t-85 -37t-112 -14zM291 209q47 0 79.5 31t32.5 84q0 25 -9 46t-24 36t-35.5 23.5t-43.5 8.5t-43.5 -8.5t-35.5 -23.5
-t-24 -36t-9 -46q0 -53 33 -84t79 -31zM302 -164q42 0 76 8t58 21.5t36.5 31t12.5 36.5q0 35 -27.5 47t-83.5 12h-95q-21 0 -39.5 1.5t-34.5 6.5q-35 -19 -48.5 -39.5t-13.5 -41.5q0 -38 40.5 -60.5t118.5 -22.5zM286 568l-43 41l142 168l58 -56z" />
-    <glyph glyph-name="gcircumflex" unicode="&#x11d;" 
-d="M296 -224q-107 0 -165.5 35t-58.5 100q0 29 20.5 57t59.5 51v4q-20 11 -35 30t-15 50q0 23 15 47.5t43 43.5v4q-25 19 -42.5 50.5t-17.5 75.5q0 40 15.5 72t41.5 54.5t60.5 35t73.5 12.5q40 0 72 -12h201v-67h-126q17 -17 29 -43t12 -55q0 -39 -14.5 -70t-40 -52.5
-t-60 -33t-73.5 -11.5q-19 0 -40.5 4.5t-41.5 13.5q-38 -24 -38 -56q0 -29 26.5 -42.5t74.5 -13.5h109q94 0 139.5 -26t45.5 -88q0 -34 -19 -65t-54 -54t-85 -37t-112 -14zM291 209q47 0 79.5 31t32.5 84q0 25 -9 46t-24 36t-35.5 23.5t-43.5 8.5t-43.5 -8.5t-35.5 -23.5
-t-24 -36t-9 -46q0 -53 33 -84t79 -31zM302 -164q42 0 76 8t58 21.5t36.5 31t12.5 36.5q0 35 -27.5 47t-83.5 12h-95q-21 0 -39.5 1.5t-34.5 6.5q-35 -19 -48.5 -39.5t-13.5 -41.5q0 -38 40.5 -60.5t118.5 -22.5zM187 568l-35 32l114 140h82l114 -140l-35 -32l-118 113h-4z
-" />
-    <glyph glyph-name="gbreve" unicode="&#x11f;" 
-d="M296 -224q-107 0 -165.5 35t-58.5 100q0 29 20.5 57t59.5 51v4q-20 11 -35 30t-15 50q0 23 15 47.5t43 43.5v4q-25 19 -42.5 50.5t-17.5 75.5q0 40 15.5 72t41.5 54.5t60.5 35t73.5 12.5q40 0 72 -12h201v-67h-126q17 -17 29 -43t12 -55q0 -39 -14.5 -70t-40 -52.5
-t-60 -33t-73.5 -11.5q-19 0 -40.5 4.5t-41.5 13.5q-38 -24 -38 -56q0 -29 26.5 -42.5t74.5 -13.5h109q94 0 139.5 -26t45.5 -88q0 -34 -19 -65t-54 -54t-85 -37t-112 -14zM291 209q47 0 79.5 31t32.5 84q0 25 -9 46t-24 36t-35.5 23.5t-43.5 8.5t-43.5 -8.5t-35.5 -23.5
-t-24 -36t-9 -46q0 -53 33 -84t79 -31zM302 -164q42 0 76 8t58 21.5t36.5 31t12.5 36.5q0 35 -27.5 47t-83.5 12h-95q-21 0 -39.5 1.5t-34.5 6.5q-35 -19 -48.5 -39.5t-13.5 -41.5q0 -38 40.5 -60.5t118.5 -22.5zM307 571q-40 0 -69 13t-47.5 34.5t-28 48.5t-11.5 55l51 8
-q3 -19 10.5 -37.5t20.5 -33.5t31.5 -24t42.5 -9t42.5 9t31.5 24t20.5 33.5t10.5 37.5l51 -8q-2 -28 -11.5 -55t-28.5 -48.5t-47.5 -34.5t-68.5 -13z" />
-    <glyph glyph-name="gdotaccent" unicode="&#x121;" 
-d="M296 -224q-107 0 -165.5 35t-58.5 100q0 29 20.5 57t59.5 51v4q-20 11 -35 30t-15 50q0 23 15 47.5t43 43.5v4q-25 19 -42.5 50.5t-17.5 75.5q0 40 15.5 72t41.5 54.5t60.5 35t73.5 12.5q40 0 72 -12h201v-67h-126q17 -17 29 -43t12 -55q0 -39 -14.5 -70t-40 -52.5
-t-60 -33t-73.5 -11.5q-19 0 -40.5 4.5t-41.5 13.5q-38 -24 -38 -56q0 -29 26.5 -42.5t74.5 -13.5h109q94 0 139.5 -26t45.5 -88q0 -34 -19 -65t-54 -54t-85 -37t-112 -14zM291 209q47 0 79.5 31t32.5 84q0 25 -9 46t-24 36t-35.5 23.5t-43.5 8.5t-43.5 -8.5t-35.5 -23.5
-t-24 -36t-9 -46q0 -53 33 -84t79 -31zM302 -164q42 0 76 8t58 21.5t36.5 31t12.5 36.5q0 35 -27.5 47t-83.5 12h-95q-21 0 -39.5 1.5t-34.5 6.5q-35 -19 -48.5 -39.5t-13.5 -41.5q0 -38 40.5 -60.5t118.5 -22.5zM307 588q-28 0 -47 17.5t-19 46.5t19 46.5t47 17.5t47 -17.5
-t19 -46.5t-19 -46.5t-47 -17.5z" />
-    <glyph glyph-name="uni0123" unicode="&#x123;" 
-d="M296 -224q-107 0 -165.5 35t-58.5 100q0 29 20.5 57t59.5 51v4q-20 11 -35 30t-15 50q0 23 15 47.5t43 43.5v4q-25 19 -42.5 50.5t-17.5 75.5q0 40 15.5 72t41.5 54.5t60.5 35t73.5 12.5q40 0 72 -12h201v-67h-126q17 -17 29 -43t12 -55q0 -39 -14.5 -70t-40 -52.5
-t-60 -33t-73.5 -11.5q-19 0 -40.5 4.5t-41.5 13.5q-38 -24 -38 -56q0 -29 26.5 -42.5t74.5 -13.5h109q94 0 139.5 -26t45.5 -88q0 -34 -19 -65t-54 -54t-85 -37t-112 -14zM291 209q47 0 79.5 31t32.5 84q0 25 -9 46t-24 36t-35.5 23.5t-43.5 8.5t-43.5 -8.5t-35.5 -23.5
-t-24 -36t-9 -46q0 -53 33 -84t79 -31zM302 -164q42 0 76 8t58 21.5t36.5 31t12.5 36.5q0 35 -27.5 47t-83.5 12h-95q-21 0 -39.5 1.5t-34.5 6.5q-35 -19 -48.5 -39.5t-13.5 -41.5q0 -38 40.5 -60.5t118.5 -22.5zM346 575q-65 7 -91 25t-26 52q0 44 42.5 65.5t122.5 26.5
-l8 -41q-63 -4 -86 -15.5t-23 -32.5q0 -20 18 -29.5t53 -12.5z" />
-    <glyph glyph-name="gcaron" unicode="&#x1e7;" 
-d="M296 -224q-107 0 -165.5 35t-58.5 100q0 29 20.5 57t59.5 51v4q-20 11 -35 30t-15 50q0 23 15 47.5t43 43.5v4q-25 19 -42.5 50.5t-17.5 75.5q0 40 15.5 72t41.5 54.5t60.5 35t73.5 12.5q40 0 72 -12h201v-67h-126q17 -17 29 -43t12 -55q0 -39 -14.5 -70t-40 -52.5
-t-60 -33t-73.5 -11.5q-19 0 -40.5 4.5t-41.5 13.5q-38 -24 -38 -56q0 -29 26.5 -42.5t74.5 -13.5h109q94 0 139.5 -26t45.5 -88q0 -34 -19 -65t-54 -54t-85 -37t-112 -14zM291 209q47 0 79.5 31t32.5 84q0 25 -9 46t-24 36t-35.5 23.5t-43.5 8.5t-43.5 -8.5t-35.5 -23.5
-t-24 -36t-9 -46q0 -53 33 -84t79 -31zM302 -164q42 0 76 8t58 21.5t36.5 31t12.5 36.5q0 35 -27.5 47t-83.5 12h-95q-21 0 -39.5 1.5t-34.5 6.5q-35 -19 -48.5 -39.5t-13.5 -41.5q0 -38 40.5 -60.5t118.5 -22.5zM266 574l-114 140l35 32l118 -113h4l118 113l35 -32
-l-114 -140h-82z" />
-    <glyph glyph-name="uni1E21" unicode="&#x1e21;" 
-d="M296 -224q-107 0 -165.5 35t-58.5 100q0 29 20.5 57t59.5 51v4q-20 11 -35 30t-15 50q0 23 15 47.5t43 43.5v4q-25 19 -42.5 50.5t-17.5 75.5q0 40 15.5 72t41.5 54.5t60.5 35t73.5 12.5q40 0 72 -12h201v-67h-126q17 -17 29 -43t12 -55q0 -39 -14.5 -70t-40 -52.5
-t-60 -33t-73.5 -11.5q-19 0 -40.5 4.5t-41.5 13.5q-38 -24 -38 -56q0 -29 26.5 -42.5t74.5 -13.5h109q94 0 139.5 -26t45.5 -88q0 -34 -19 -65t-54 -54t-85 -37t-112 -14zM291 209q47 0 79.5 31t32.5 84q0 25 -9 46t-24 36t-35.5 23.5t-43.5 8.5t-43.5 -8.5t-35.5 -23.5
-t-24 -36t-9 -46q0 -53 33 -84t79 -31zM302 -164q42 0 76 8t58 21.5t36.5 31t12.5 36.5q0 35 -27.5 47t-83.5 12h-95q-21 0 -39.5 1.5t-34.5 6.5q-35 -19 -48.5 -39.5t-13.5 -41.5q0 -38 40.5 -60.5t118.5 -22.5zM174 601v57h266v-57h-266z" />
-    <glyph glyph-name="uni00670303" 
-d="M296 -224q-107 0 -165.5 35t-58.5 100q0 29 20.5 57t59.5 51v4q-20 11 -35 30t-15 50q0 23 15 47.5t43 43.5v4q-25 19 -42.5 50.5t-17.5 75.5q0 40 15.5 72t41.5 54.5t60.5 35t73.5 12.5q40 0 72 -12h201v-67h-126q17 -17 29 -43t12 -55q0 -39 -14.5 -70t-40 -52.5
-t-60 -33t-73.5 -11.5q-19 0 -40.5 4.5t-41.5 13.5q-38 -24 -38 -56q0 -29 26.5 -42.5t74.5 -13.5h109q94 0 139.5 -26t45.5 -88q0 -34 -19 -65t-54 -54t-85 -37t-112 -14zM291 209q47 0 79.5 31t32.5 84q0 25 -9 46t-24 36t-35.5 23.5t-43.5 8.5t-43.5 -8.5t-35.5 -23.5
-t-24 -36t-9 -46q0 -53 33 -84t79 -31zM302 -164q42 0 76 8t58 21.5t36.5 31t12.5 36.5q0 35 -27.5 47t-83.5 12h-95q-21 0 -39.5 1.5t-34.5 6.5q-35 -19 -48.5 -39.5t-13.5 -41.5q0 -38 40.5 -60.5t118.5 -22.5zM379 577q-27 0 -46 13t-35 29t-30.5 29t-31.5 13
-q-23 0 -34 -22t-13 -57l-55 3q1 29 7.5 54t18.5 43t30.5 28.5t44.5 10.5q27 0 46 -13t35 -29t30.5 -29t32.5 -13q22 0 33 22t13 57l55 -4q-1 -29 -7.5 -53.5t-18.5 -42.5t-30.5 -28.5t-44.5 -10.5z" />
-    <glyph glyph-name="hcircumflex" unicode="&#x125;" 
-d="M93 0v712h82v-194l-5 -115h3q38 41 81.5 68t100.5 27q87 0 127.5 -49.5t40.5 -146.5v-302h-82v291q0 69 -26 102.5t-86 33.5q-22 0 -40.5 -5.5t-36.5 -16.5t-37 -27.5t-40 -38.5v-339h-82zM20 759l-36 26l105 113h86l105 -113l-36 -26l-110 93h-4z" />
-    <glyph glyph-name="uni1E27" unicode="&#x1e27;" 
-d="M93 0v712h82v-194l-5 -115h3q38 41 81.5 68t100.5 27q87 0 127.5 -49.5t40.5 -146.5v-302h-82v291q0 69 -26 102.5t-86 33.5q-22 0 -40.5 -5.5t-36.5 -16.5t-37 -27.5t-40 -38.5v-339h-82zM41 775q-22 0 -36.5 14t-14.5 37t14.5 36.5t36.5 13.5t36 -13.5t14 -36.5
-t-14 -37t-36 -14zM223 775q-22 0 -36 14t-14 37t14 36.5t36 13.5t36.5 -13.5t14.5 -36.5t-14.5 -37t-36.5 -14z" />
-    <glyph glyph-name="uni1E25" unicode="&#x1e25;" 
-d="M93 0v712h82v-194l-5 -115h3q38 41 81.5 68t100.5 27q87 0 127.5 -49.5t40.5 -146.5v-302h-82v291q0 69 -26 102.5t-86 33.5q-22 0 -40.5 -5.5t-36.5 -16.5t-37 -27.5t-40 -38.5v-339h-82zM314 -214q-28 0 -47 17.5t-19 46.5t19 46.5t47 17.5t47 -17.5t19 -46.5
-t-19 -46.5t-47 -17.5z" />
-    <glyph glyph-name="uni1E96" unicode="&#x1e96;" 
-d="M93 0v712h82v-194l-5 -115h3q38 41 81.5 68t100.5 27q87 0 127.5 -49.5t40.5 -146.5v-302h-82v291q0 69 -26 102.5t-86 33.5q-22 0 -40.5 -5.5t-36.5 -16.5t-37 -27.5t-40 -38.5v-339h-82zM181 -169v57h266v-57h-266z" />
-    <glyph glyph-name="uni1E29" unicode="&#x1e29;" 
-d="M93 0v712h82v-194l-5 -115h3q38 41 81.5 68t100.5 27q87 0 127.5 -49.5t40.5 -146.5v-302h-82v291q0 69 -26 102.5t-86 33.5q-22 0 -40.5 -5.5t-36.5 -16.5t-37 -27.5t-40 -38.5v-339h-82zM48 -226l-8 40q63 5 86 16.5t23 33.5q0 20 -17 31t-60 17l40 96h54l-26 -72
-q35 -8 54 -24t19 -47q0 -44 -42.5 -65.5t-122.5 -25.5z" />
-    <glyph glyph-name="uni1E2B" unicode="&#x1e2b;" 
-d="M93 0v712h82v-194l-5 -115h3q38 41 81.5 68t100.5 27q87 0 127.5 -49.5t40.5 -146.5v-302h-82v291q0 69 -26 102.5t-86 33.5q-22 0 -40.5 -5.5t-36.5 -16.5t-37 -27.5t-40 -38.5v-339h-82zM314 -230q-40 0 -69 13t-47.5 34.5t-28 48.5t-11.5 55l51 8q3 -19 10.5 -37.5
-t20.5 -33.5t31.5 -24t42.5 -9t42.5 9t31.5 24t20.5 33.5t10.5 37.5l51 -8q-2 -28 -11.5 -55t-28.5 -48.5t-47.5 -34.5t-68.5 -13z" />
-    <glyph glyph-name="hbar" unicode="&#x127;" 
-d="M93 0v562h-73v58l73 6v86h82v-86h213v-64h-213v-64l-5 -115h3q38 41 81.5 68t100.5 27q87 0 127.5 -49.5t40.5 -146.5v-282h-82v271q0 69 -26 102.5t-86 33.5q-22 0 -40.5 -5.5t-36.5 -16.5t-37 -27.5t-40 -38.5v-319h-82z" />
-    <glyph glyph-name="igrave" unicode="&#xec;" 
-d="M316 0v419h-226v67h308v-486h-82zM369 568l-157 153l58 56l142 -168z" />
-    <glyph glyph-name="iacute" unicode="&#xed;" 
-d="M316 0v419h-226v67h308v-486h-82zM327 568l-43 41l142 168l58 -56z" />
-    <glyph glyph-name="icircumflex" unicode="&#xee;" 
-d="M316 0v419h-226v67h308v-486h-82zM228 568l-35 32l114 140h82l114 -140l-35 -32l-118 113h-4z" />
-    <glyph glyph-name="itilde" unicode="&#x129;" 
-d="M316 0v419h-226v67h308v-486h-82zM420 577q-27 0 -46 13t-35 29t-30.5 29t-31.5 13q-23 0 -34 -22t-13 -57l-55 3q1 29 7.5 54t18.5 43t30.5 28.5t44.5 10.5q27 0 46 -13t35 -29t30.5 -29t32.5 -13q22 0 33 22t13 57l55 -4q-1 -29 -7.5 -53.5t-18.5 -42.5t-30.5 -28.5
-t-44.5 -10.5z" />
-    <glyph glyph-name="idieresis" unicode="&#xef;" 
-d="M316 0v419h-226v67h308v-486h-82zM251 588q-24 0 -39.5 16t-15.5 40q0 23 15.5 39.5t39.5 16.5t39.5 -16.5t15.5 -39.5q0 -24 -15.5 -40t-39.5 -16zM445 588q-24 0 -39.5 16t-15.5 40q0 23 15.5 39.5t39.5 16.5t39.5 -16.5t15.5 -39.5q0 -24 -15.5 -40t-39.5 -16z" />
-    <glyph glyph-name="imacron" unicode="&#x12b;" 
-d="M316 0v419h-226v67h308v-486h-82zM215 601v57h266v-57h-266z" />
-    <glyph glyph-name="uni01D0" unicode="&#x1d0;" 
-d="M316 0v419h-226v67h308v-486h-82zM307 574l-114 140l35 32l118 -113h4l118 113l35 -32l-114 -140h-82z" />
-    <glyph glyph-name="iogonek" unicode="&#x12f;" 
-d="M353 -225q-45 0 -74.5 22.5t-29.5 70.5q0 42 25.5 75t60.5 57h-19v419h-226v67h308v-491q-45 -22 -66.5 -51.5t-21.5 -59.5q0 -28 18 -41.5t42 -13.5q16 0 28.5 6t23.5 15l24 -39q-18 -17 -41.5 -26.5t-51.5 -9.5zM348 588q-28 0 -47 17.5t-19 46.5t19 46.5t47 17.5
-t47 -17.5t19 -46.5t-19 -46.5t-47 -17.5z" />
-    <glyph glyph-name="uni1EC9" unicode="&#x1ec9;" 
-d="M316 0v419h-226v67h308v-486h-82zM316 572l-9 40q24 6 40 16.5t16 30.5q0 43 -83 47l5 54q69 -2 106 -25.5t37 -68.5q0 -22 -9.5 -37.5t-25 -27t-35.5 -18.5t-42 -11z" />
-    <glyph glyph-name="uni1ECB" unicode="&#x1ecb;" 
-d="M316 0v419h-226v67h308v-486h-82zM348 588q-28 0 -47 17.5t-19 46.5t19 46.5t47 17.5t47 -17.5t19 -46.5t-19 -46.5t-47 -17.5zM348 -214q-28 0 -47 17.5t-19 46.5t19 46.5t47 17.5t47 -17.5t19 -46.5t-19 -46.5t-47 -17.5z" />
-    <glyph glyph-name="ibreve" unicode="&#x12d;" 
-d="M316 0v419h-226v67h308v-486h-82zM348 571q-40 0 -69 13t-47.5 34.5t-28 48.5t-11.5 55l51 8q3 -19 10.5 -37.5t20.5 -33.5t31.5 -24t42.5 -9t42.5 9t31.5 24t20.5 33.5t10.5 37.5l51 -8q-2 -28 -11.5 -55t-28.5 -48.5t-47.5 -34.5t-68.5 -13z" />
-    <glyph glyph-name="dotlessi" unicode="&#x131;" 
-d="M316 0v419h-226v67h308v-486h-82z" />
-    <glyph glyph-name="jcircumflex" unicode="&#x135;" 
-d="M194 -217q-38 0 -74 9.5t-65 23.5l27 61q26 -13 54.5 -20t56.5 -7q36 0 60 9t38 26t19.5 41.5t5.5 55.5v437h-226v67h308v-498q0 -45 -10 -82.5t-33.5 -65t-62.5 -42.5t-98 -15zM228 568l-35 32l114 140h82l114 -140l-35 -32l-118 113h-4z" />
-    <glyph glyph-name="uni0137" unicode="&#x137;" 
-d="M106 0v712h82v-482h4l262 256h94l-194 -191l220 -295h-92l-179 245l-115 -113v-132h-82zM248 -226l-8 40q63 5 86 16.5t23 31.5t-18 29.5t-53 12.5l18 38q65 -8 91 -25.5t26 -51.5q0 -44 -42.5 -65.5t-122.5 -25.5z" />
-    <glyph glyph-name="uni1E33" unicode="&#x1e33;" 
-d="M106 0v712h82v-482h4l262 256h94l-194 -191l220 -295h-92l-179 245l-115 -113v-132h-82zM335 -214q-28 0 -47 17.5t-19 46.5t19 46.5t47 17.5t47 -17.5t19 -46.5t-19 -46.5t-47 -17.5z" />
-    <glyph glyph-name="uni1E35" unicode="&#x1e35;" 
-d="M106 0v712h82v-482h4l262 256h94l-194 -191l220 -295h-92l-179 245l-115 -113v-132h-82zM202 -169v57h266v-57h-266z" />
-    <glyph glyph-name="kgreenlandic" unicode="&#x138;" 
-d="M106 0v486h82v-256l3 1l263 255h94l-194 -193l220 -293h-92l-179 240l-115 -110v-130h-82z" />
-    <glyph glyph-name="lacute" unicode="&#x13a;" 
-d="M407 -12q-78 0 -119 44t-41 131v482h-173v67h255v-555q0 -54 26 -77.5t70 -23.5q43 0 91 22l21 -61q-34 -14 -62 -21.5t-68 -7.5zM257 757l-36 42l141 128l47 -55z" />
-    <glyph glyph-name="lcaron" unicode="&#x13e;" 
-d="M407 -12q-78 0 -119 44t-41 131v482h-173v67h255v-555q0 -54 26 -77.5t70 -23.5q43 0 91 22l21 -61q-34 -14 -62 -21.5t-68 -7.5zM404 548l-3 268h74v-81l-14 -187h-57z" />
-    <glyph glyph-name="uni013C" unicode="&#x13c;" 
-d="M407 -12q-78 0 -119 44t-41 131v482h-173v67h255v-555q0 -54 26 -77.5t70 -23.5q43 0 91 22l21 -61q-34 -14 -62 -21.5t-68 -7.5zM298 -226l-8 40q63 5 86 16.5t23 31.5t-18 29.5t-53 12.5l18 38q65 -8 91 -25.5t26 -51.5q0 -44 -42.5 -65.5t-122.5 -25.5z" />
-    <glyph glyph-name="uni1E37" unicode="&#x1e37;" 
-d="M407 -12q-78 0 -119 44t-41 131v482h-173v67h255v-555q0 -54 26 -77.5t70 -23.5q43 0 91 22l21 -61q-34 -14 -62 -21.5t-68 -7.5zM385 -214q-28 0 -47 17.5t-19 46.5t19 46.5t47 17.5t47 -17.5t19 -46.5t-19 -46.5t-47 -17.5z" />
-    <glyph glyph-name="uni1E39" unicode="&#x1e39;" 
-d="M407 -12q-78 0 -119 44t-41 131v482h-173v67h255v-555q0 -54 26 -77.5t70 -23.5q43 0 91 22l21 -61q-34 -14 -62 -21.5t-68 -7.5zM152 795v57h268v-57h-268zM385 -214q-28 0 -47 17.5t-19 46.5t19 46.5t47 17.5t47 -17.5t19 -46.5t-19 -46.5t-47 -17.5z" />
-    <glyph glyph-name="uni1E3B" unicode="&#x1e3b;" 
-d="M407 -12q-78 0 -119 44t-41 131v482h-173v67h255v-555q0 -54 26 -77.5t70 -23.5q43 0 91 22l21 -61q-34 -14 -62 -21.5t-68 -7.5zM252 -169v57h266v-57h-266z" />
-    <glyph glyph-name="lslash" unicode="&#x142;" 
-d="M407 -12q-78 0 -119 44t-41 131v172l-108 -64l-29 54l137 80v240h-173v67h255v-269l148 84l28 -54l-176 -100v-216q0 -54 26 -77.5t70 -23.5q43 0 91 22l21 -61q-34 -14 -62 -21.5t-68 -7.5z" />
-    <glyph glyph-name="ldot" unicode="&#x140;" 
-d="M369 -12q-78 0 -119 44t-41 131v482h-173v67h255v-555q0 -54 26 -77.5t70 -23.5q43 0 91 22l21 -61q-34 -14 -62 -21.5t-68 -7.5zM569 286q-28 0 -47 17.5t-19 46.5t19 46.5t47 17.5t47 -17.5t19 -46.5t-19 -46.5t-47 -17.5z" />
-    <glyph glyph-name="uni1E3F" unicode="&#x1e3f;" 
-d="M58 0v486h66l7 -64h2q19 34 44 55t67 21q71 0 92 -84q21 39 46.5 61.5t67.5 22.5q51 0 79.5 -38.5t28.5 -111.5v-348h-82v342q0 85 -52 85q-26 0 -42 -18.5t-36 -56.5v-352h-76v342q0 42 -11.5 63.5t-38.5 21.5q-26 0 -44 -18.5t-36 -56.5v-352h-82zM294 568l-43 41
-l142 168l58 -56z" />
-    <glyph glyph-name="uni1E41" unicode="&#x1e41;" 
-d="M58 0v486h66l7 -64h2q19 34 44 55t67 21q71 0 92 -84q21 39 46.5 61.5t67.5 22.5q51 0 79.5 -38.5t28.5 -111.5v-348h-82v342q0 85 -52 85q-26 0 -42 -18.5t-36 -56.5v-352h-76v342q0 42 -11.5 63.5t-38.5 21.5q-26 0 -44 -18.5t-36 -56.5v-352h-82zM315 588
-q-28 0 -47 17.5t-19 46.5t19 46.5t47 17.5t47 -17.5t19 -46.5t-19 -46.5t-47 -17.5z" />
-    <glyph glyph-name="uni1E43" unicode="&#x1e43;" 
-d="M58 0v486h66l7 -64h2q19 34 44 55t67 21q71 0 92 -84q21 39 46.5 61.5t67.5 22.5q51 0 79.5 -38.5t28.5 -111.5v-348h-82v342q0 85 -52 85q-26 0 -42 -18.5t-36 -56.5v-352h-76v342q0 42 -11.5 63.5t-38.5 21.5q-26 0 -44 -18.5t-36 -56.5v-352h-82zM308 -214
-q-28 0 -47 17.5t-19 46.5t19 46.5t47 17.5t47 -17.5t19 -46.5t-19 -46.5t-47 -17.5z" />
-    <glyph glyph-name="nacute" unicode="&#x144;" 
-d="M93 0v486h68l7 -83h4q38 41 82 68t101 27q87 0 127.5 -49.5t40.5 -146.5v-302h-82v291q0 69 -26 102.5t-86 33.5q-22 0 -40.5 -5.5t-36.5 -16.5t-37 -27.5t-40 -38.5v-339h-82zM297 568l-43 41l142 168l58 -56z" />
-    <glyph glyph-name="uni01F9" unicode="&#x1f9;" 
-d="M93 0v486h68l7 -83h4q38 41 82 68t101 27q87 0 127.5 -49.5t40.5 -146.5v-302h-82v291q0 69 -26 102.5t-86 33.5q-22 0 -40.5 -5.5t-36.5 -16.5t-37 -27.5t-40 -38.5v-339h-82zM339 568l-157 153l58 56l142 -168z" />
-    <glyph glyph-name="ncaron" unicode="&#x148;" 
-d="M93 0v486h68l7 -83h4q38 41 82 68t101 27q87 0 127.5 -49.5t40.5 -146.5v-302h-82v291q0 69 -26 102.5t-86 33.5q-22 0 -40.5 -5.5t-36.5 -16.5t-37 -27.5t-40 -38.5v-339h-82zM277 574l-114 140l35 32l118 -113h4l118 113l35 -32l-114 -140h-82z" />
-    <glyph glyph-name="ntilde" unicode="&#xf1;" 
-d="M93 0v486h68l7 -83h4q38 41 82 68t101 27q87 0 127.5 -49.5t40.5 -146.5v-302h-82v291q0 69 -26 102.5t-86 33.5q-22 0 -40.5 -5.5t-36.5 -16.5t-37 -27.5t-40 -38.5v-339h-82zM390 577q-27 0 -46 13t-35 29t-30.5 29t-31.5 13q-23 0 -34 -22t-13 -57l-55 3q1 29 7.5 54
-t18.5 43t30.5 28.5t44.5 10.5q27 0 46 -13t35 -29t30.5 -29t32.5 -13q22 0 33 22t13 57l55 -4q-1 -29 -7.5 -53.5t-18.5 -42.5t-30.5 -28.5t-44.5 -10.5z" />
-    <glyph glyph-name="uni0146" unicode="&#x146;" 
-d="M93 0v486h68l7 -83h4q38 41 82 68t101 27q87 0 127.5 -49.5t40.5 -146.5v-302h-82v291q0 69 -26 102.5t-86 33.5q-22 0 -40.5 -5.5t-36.5 -16.5t-37 -27.5t-40 -38.5v-339h-82zM226 -226l-8 40q63 5 86 16.5t23 31.5t-18 29.5t-53 12.5l18 38q65 -8 91 -25.5t26 -51.5
-q0 -44 -42.5 -65.5t-122.5 -25.5z" />
-    <glyph glyph-name="uni1E45" unicode="&#x1e45;" 
-d="M93 0v486h68l7 -83h4q38 41 82 68t101 27q87 0 127.5 -49.5t40.5 -146.5v-302h-82v291q0 69 -26 102.5t-86 33.5q-22 0 -40.5 -5.5t-36.5 -16.5t-37 -27.5t-40 -38.5v-339h-82zM318 588q-28 0 -47 17.5t-19 46.5t19 46.5t47 17.5t47 -17.5t19 -46.5t-19 -46.5t-47 -17.5z
-" />
-    <glyph glyph-name="uni1E47" unicode="&#x1e47;" 
-d="M93 0v486h68l7 -83h4q38 41 82 68t101 27q87 0 127.5 -49.5t40.5 -146.5v-302h-82v291q0 69 -26 102.5t-86 33.5q-22 0 -40.5 -5.5t-36.5 -16.5t-37 -27.5t-40 -38.5v-339h-82zM313 -214q-28 0 -47 17.5t-19 46.5t19 46.5t47 17.5t47 -17.5t19 -46.5t-19 -46.5t-47 -17.5
-z" />
-    <glyph glyph-name="uni1E49" unicode="&#x1e49;" 
-d="M93 0v486h68l7 -83h4q38 41 82 68t101 27q87 0 127.5 -49.5t40.5 -146.5v-302h-82v291q0 69 -26 102.5t-86 33.5q-22 0 -40.5 -5.5t-36.5 -16.5t-37 -27.5t-40 -38.5v-339h-82zM180 -169v57h266v-57h-266z" />
-    <glyph glyph-name="napostrophe" unicode="&#x149;" 
-d="M196 0v486h68l7 -76h4q35 37 75 62.5t93 25.5q79 0 117 -48t38 -142v-308h-83v297q0 66 -23 98t-75 32q-39 0 -69.5 -20.5t-69.5 -60.5v-346h-82zM6 350l-28 48q47 26 74 65.5t30 92.5q-12 -6 -26 -6q-32 0 -51.5 19.5t-19.5 51.5q0 35 21 56.5t53 21.5q40 0 65 -32
-t25 -89q0 -75 -38 -134t-105 -94z" />
-    <glyph glyph-name="ograve" unicode="&#xf2;" 
-d="M300 -12q-48 0 -91.5 17t-76.5 49.5t-52.5 80t-19.5 107.5q0 61 19.5 108.5t52.5 80.5t76.5 50t91.5 17t91.5 -17t76.5 -50t52.5 -80.5t19.5 -108.5q0 -60 -19.5 -107.5t-52.5 -80t-76.5 -49.5t-91.5 -17zM300 56q35 0 63.5 13.5t49 38t31.5 58.5t11 76t-11 76.5
-t-31.5 59.5t-49 38.5t-63.5 13.5t-63.5 -13.5t-49 -38.5t-31.5 -59.5t-11 -76.5t11 -76t31.5 -58.5t49 -38t63.5 -13.5zM321 568l-157 153l58 56l142 -168z" />
-    <glyph glyph-name="oacute" unicode="&#xf3;" 
-d="M300 -12q-48 0 -91.5 17t-76.5 49.5t-52.5 80t-19.5 107.5q0 61 19.5 108.5t52.5 80.5t76.5 50t91.5 17t91.5 -17t76.5 -50t52.5 -80.5t19.5 -108.5q0 -60 -19.5 -107.5t-52.5 -80t-76.5 -49.5t-91.5 -17zM300 56q35 0 63.5 13.5t49 38t31.5 58.5t11 76t-11 76.5
-t-31.5 59.5t-49 38.5t-63.5 13.5t-63.5 -13.5t-49 -38.5t-31.5 -59.5t-11 -76.5t11 -76t31.5 -58.5t49 -38t63.5 -13.5zM279 568l-43 41l142 168l58 -56z" />
-    <glyph glyph-name="ocircumflex" unicode="&#xf4;" 
-d="M300 -12q-48 0 -91.5 17t-76.5 49.5t-52.5 80t-19.5 107.5q0 61 19.5 108.5t52.5 80.5t76.5 50t91.5 17t91.5 -17t76.5 -50t52.5 -80.5t19.5 -108.5q0 -60 -19.5 -107.5t-52.5 -80t-76.5 -49.5t-91.5 -17zM300 56q35 0 63.5 13.5t49 38t31.5 58.5t11 76t-11 76.5
-t-31.5 59.5t-49 38.5t-63.5 13.5t-63.5 -13.5t-49 -38.5t-31.5 -59.5t-11 -76.5t11 -76t31.5 -58.5t49 -38t63.5 -13.5zM180 568l-35 32l114 140h82l114 -140l-35 -32l-118 113h-4z" />
-    <glyph glyph-name="otilde" unicode="&#xf5;" 
-d="M300 -12q-48 0 -91.5 17t-76.5 49.5t-52.5 80t-19.5 107.5q0 61 19.5 108.5t52.5 80.5t76.5 50t91.5 17t91.5 -17t76.5 -50t52.5 -80.5t19.5 -108.5q0 -60 -19.5 -107.5t-52.5 -80t-76.5 -49.5t-91.5 -17zM300 56q35 0 63.5 13.5t49 38t31.5 58.5t11 76t-11 76.5
-t-31.5 59.5t-49 38.5t-63.5 13.5t-63.5 -13.5t-49 -38.5t-31.5 -59.5t-11 -76.5t11 -76t31.5 -58.5t49 -38t63.5 -13.5zM372 577q-27 0 -46 13t-35 29t-30.5 29t-31.5 13q-23 0 -34 -22t-13 -57l-55 3q1 29 7.5 54t18.5 43t30.5 28.5t44.5 10.5q27 0 46 -13t35 -29t30.5 -29
-t32.5 -13q22 0 33 22t13 57l55 -4q-1 -29 -7.5 -53.5t-18.5 -42.5t-30.5 -28.5t-44.5 -10.5z" />
-    <glyph glyph-name="odieresis" unicode="&#xf6;" 
-d="M300 -12q-48 0 -91.5 17t-76.5 49.5t-52.5 80t-19.5 107.5q0 61 19.5 108.5t52.5 80.5t76.5 50t91.5 17t91.5 -17t76.5 -50t52.5 -80.5t19.5 -108.5q0 -60 -19.5 -107.5t-52.5 -80t-76.5 -49.5t-91.5 -17zM300 56q35 0 63.5 13.5t49 38t31.5 58.5t11 76t-11 76.5
-t-31.5 59.5t-49 38.5t-63.5 13.5t-63.5 -13.5t-49 -38.5t-31.5 -59.5t-11 -76.5t11 -76t31.5 -58.5t49 -38t63.5 -13.5zM203 588q-24 0 -39.5 16t-15.5 40q0 23 15.5 39.5t39.5 16.5t39.5 -16.5t15.5 -39.5q0 -24 -15.5 -40t-39.5 -16zM397 588q-24 0 -39.5 16t-15.5 40
-q0 23 15.5 39.5t39.5 16.5t39.5 -16.5t15.5 -39.5q0 -24 -15.5 -40t-39.5 -16z" />
-    <glyph glyph-name="omacron" unicode="&#x14d;" 
-d="M300 -12q-48 0 -91.5 17t-76.5 49.5t-52.5 80t-19.5 107.5q0 61 19.5 108.5t52.5 80.5t76.5 50t91.5 17t91.5 -17t76.5 -50t52.5 -80.5t19.5 -108.5q0 -60 -19.5 -107.5t-52.5 -80t-76.5 -49.5t-91.5 -17zM300 56q35 0 63.5 13.5t49 38t31.5 58.5t11 76t-11 76.5
-t-31.5 59.5t-49 38.5t-63.5 13.5t-63.5 -13.5t-49 -38.5t-31.5 -59.5t-11 -76.5t11 -76t31.5 -58.5t49 -38t63.5 -13.5zM167 601v57h266v-57h-266z" />
-    <glyph glyph-name="ohungarumlaut" unicode="&#x151;" 
-d="M300 -12q-48 0 -91.5 17t-76.5 49.5t-52.5 80t-19.5 107.5q0 61 19.5 108.5t52.5 80.5t76.5 50t91.5 17t91.5 -17t76.5 -50t52.5 -80.5t19.5 -108.5q0 -60 -19.5 -107.5t-52.5 -80t-76.5 -49.5t-91.5 -17zM300 56q35 0 63.5 13.5t49 38t31.5 58.5t11 76t-11 76.5
-t-31.5 59.5t-49 38.5t-63.5 13.5t-63.5 -13.5t-49 -38.5t-31.5 -59.5t-11 -76.5t11 -76t31.5 -58.5t49 -38t63.5 -13.5zM243 568l-46 21l87 172l58 -28zM394 568l-46 21l87 172l58 -28z" />
-    <glyph glyph-name="uni01D2" unicode="&#x1d2;" 
-d="M300 -12q-48 0 -91.5 17t-76.5 49.5t-52.5 80t-19.5 107.5q0 61 19.5 108.5t52.5 80.5t76.5 50t91.5 17t91.5 -17t76.5 -50t52.5 -80.5t19.5 -108.5q0 -60 -19.5 -107.5t-52.5 -80t-76.5 -49.5t-91.5 -17zM300 56q35 0 63.5 13.5t49 38t31.5 58.5t11 76t-11 76.5
-t-31.5 59.5t-49 38.5t-63.5 13.5t-63.5 -13.5t-49 -38.5t-31.5 -59.5t-11 -76.5t11 -76t31.5 -58.5t49 -38t63.5 -13.5zM259 574l-114 140l35 32l118 -113h4l118 113l35 -32l-114 -140h-82z" />
-    <glyph glyph-name="uni01EB" unicode="&#x1eb;" 
-d="M324 -225q-43 0 -72 22.5t-29 70.5q0 39 21 69.5t47 51.5q-50 2 -92.5 21t-73 51.5t-48 78.5t-17.5 102q0 61 19.5 108.5t52.5 80.5t76.5 50t91.5 17t91.5 -17t76.5 -50t52.5 -80.5t19.5 -108.5q0 -51 -12 -89t-34.5 -67t-54 -50.5t-70.5 -38.5q-41 -18 -63 -50t-22 -63
-q0 -29 18 -42t39 -13q19 0 32 6.5t22 14.5l24 -39q-17 -16 -40.5 -26t-54.5 -10zM300 55q35 0 63.5 13.5t49 38t31.5 59t11 76.5t-11 76.5t-31.5 59.5t-49 38.5t-63.5 13.5t-63.5 -13.5t-49 -38.5t-31.5 -59.5t-11 -76.5t11 -76.5t31.5 -59t49 -38t63.5 -13.5z" />
-    <glyph glyph-name="uni1ECD" unicode="&#x1ecd;" 
-d="M300 -12q-48 0 -91.5 17t-76.5 49.5t-52.5 80t-19.5 107.5q0 61 19.5 108.5t52.5 80.5t76.5 50t91.5 17t91.5 -17t76.5 -50t52.5 -80.5t19.5 -108.5q0 -60 -19.5 -107.5t-52.5 -80t-76.5 -49.5t-91.5 -17zM300 56q35 0 63.5 13.5t49 38t31.5 58.5t11 76t-11 76.5
-t-31.5 59.5t-49 38.5t-63.5 13.5t-63.5 -13.5t-49 -38.5t-31.5 -59.5t-11 -76.5t11 -76t31.5 -58.5t49 -38t63.5 -13.5zM300 -214q-28 0 -47 17.5t-19 46.5t19 46.5t47 17.5t47 -17.5t19 -46.5t-19 -46.5t-47 -17.5z" />
-    <glyph glyph-name="uni1ECF" unicode="&#x1ecf;" 
-d="M300 -12q-48 0 -91.5 17t-76.5 49.5t-52.5 80t-19.5 107.5q0 61 19.5 108.5t52.5 80.5t76.5 50t91.5 17t91.5 -17t76.5 -50t52.5 -80.5t19.5 -108.5q0 -60 -19.5 -107.5t-52.5 -80t-76.5 -49.5t-91.5 -17zM300 56q35 0 63.5 13.5t49 38t31.5 58.5t11 76t-11 76.5
-t-31.5 59.5t-49 38.5t-63.5 13.5t-63.5 -13.5t-49 -38.5t-31.5 -59.5t-11 -76.5t11 -76t31.5 -58.5t49 -38t63.5 -13.5zM268 572l-9 40q24 6 40 16.5t16 30.5q0 43 -83 47l5 54q69 -2 106 -25.5t37 -68.5q0 -22 -9.5 -37.5t-25 -27t-35.5 -18.5t-42 -11z" />
-    <glyph glyph-name="uni1ED1" unicode="&#x1ed1;" 
-d="M300 -12q-48 0 -91.5 17t-76.5 49.5t-52.5 80t-19.5 107.5q0 61 19.5 108.5t52.5 80.5t76.5 50t91.5 17t91.5 -17t76.5 -50t52.5 -80.5t19.5 -108.5q0 -60 -19.5 -107.5t-52.5 -80t-76.5 -49.5t-91.5 -17zM300 56q35 0 63.5 13.5t49 38t31.5 58.5t11 76t-11 76.5
-t-31.5 59.5t-49 38.5t-63.5 13.5t-63.5 -13.5t-49 -38.5t-31.5 -59.5t-11 -76.5t11 -76t31.5 -58.5t49 -38t63.5 -13.5zM195 570l-29 34l100 92h68l100 -92l-29 -34l-103 72h-4zM434 637l-35 28l87 120l49 -34z" />
-    <glyph glyph-name="uni1ED3" unicode="&#x1ed3;" 
-d="M300 -12q-48 0 -91.5 17t-76.5 49.5t-52.5 80t-19.5 107.5q0 61 19.5 108.5t52.5 80.5t76.5 50t91.5 17t91.5 -17t76.5 -50t52.5 -80.5t19.5 -108.5q0 -60 -19.5 -107.5t-52.5 -80t-76.5 -49.5t-91.5 -17zM300 56q35 0 63.5 13.5t49 38t31.5 58.5t11 76t-11 76.5
-t-31.5 59.5t-49 38.5t-63.5 13.5t-63.5 -13.5t-49 -38.5t-31.5 -59.5t-11 -76.5t11 -76t31.5 -58.5t49 -38t63.5 -13.5zM195 570l-29 34l100 92h68l100 -92l-29 -34l-103 72h-4zM166 637l-113 112l48 36l100 -117z" />
-    <glyph glyph-name="uni1ED5" unicode="&#x1ed5;" 
-d="M300 -12q-48 0 -91.5 17t-76.5 49.5t-52.5 80t-19.5 107.5q0 61 19.5 108.5t52.5 80.5t76.5 50t91.5 17t91.5 -17t76.5 -50t52.5 -80.5t19.5 -108.5q0 -60 -19.5 -107.5t-52.5 -80t-76.5 -49.5t-91.5 -17zM300 56q35 0 63.5 13.5t49 38t31.5 58.5t11 76t-11 76.5
-t-31.5 59.5t-49 38.5t-63.5 13.5t-63.5 -13.5t-49 -38.5t-31.5 -59.5t-11 -76.5t11 -76t31.5 -58.5t49 -38t63.5 -13.5zM195 570l-29 34l100 92h68l100 -92l-29 -34l-103 72h-4zM416 635l-9 35q19 5 30.5 14t11.5 25q0 20 -16 29.5t-53 11.5l7 41q59 -2 90.5 -20t31.5 -53
-q0 -20 -8 -34t-21 -23.5t-29.5 -15.5t-34.5 -10z" />
-    <glyph glyph-name="uni1ED7" unicode="&#x1ed7;" 
-d="M300 -12q-48 0 -91.5 17t-76.5 49.5t-52.5 80t-19.5 107.5q0 61 19.5 108.5t52.5 80.5t76.5 50t91.5 17t91.5 -17t76.5 -50t52.5 -80.5t19.5 -108.5q0 -60 -19.5 -107.5t-52.5 -80t-76.5 -49.5t-91.5 -17zM300 56q35 0 63.5 13.5t49 38t31.5 58.5t11 76t-11 76.5
-t-31.5 59.5t-49 38.5t-63.5 13.5t-63.5 -13.5t-49 -38.5t-31.5 -59.5t-11 -76.5t11 -76t31.5 -58.5t49 -38t63.5 -13.5zM195 570l-29 34l100 88h68l100 -88l-29 -34l-103 69h-4zM365 710q-22 0 -39 6.5t-31.5 14.5t-28 14.5t-27.5 6.5q-15 0 -22 -10t-11 -32l-43 4
-q4 39 20.5 64t51.5 25q22 0 39 -6.5t31.5 -14.5t28 -14.5t27.5 -6.5q15 0 22 10t11 32l43 -4q-4 -38 -20.5 -63.5t-51.5 -25.5z" />
-    <glyph glyph-name="uni1ED9" unicode="&#x1ed9;" 
-d="M300 -12q-48 0 -91.5 17t-76.5 49.5t-52.5 80t-19.5 107.5q0 61 19.5 108.5t52.5 80.5t76.5 50t91.5 17t91.5 -17t76.5 -50t52.5 -80.5t19.5 -108.5q0 -60 -19.5 -107.5t-52.5 -80t-76.5 -49.5t-91.5 -17zM300 56q35 0 63.5 13.5t49 38t31.5 58.5t11 76t-11 76.5
-t-31.5 59.5t-49 38.5t-63.5 13.5t-63.5 -13.5t-49 -38.5t-31.5 -59.5t-11 -76.5t11 -76t31.5 -58.5t49 -38t63.5 -13.5zM180 568l-35 32l114 140h82l114 -140l-35 -32l-118 113h-4zM300 -214q-28 0 -47 17.5t-19 46.5t19 46.5t47 17.5t47 -17.5t19 -46.5t-19 -46.5
-t-47 -17.5z" />
-    <glyph glyph-name="obreve" unicode="&#x14f;" 
-d="M300 -12q-48 0 -91.5 17t-76.5 49.5t-52.5 80t-19.5 107.5q0 61 19.5 108.5t52.5 80.5t76.5 50t91.5 17t91.5 -17t76.5 -50t52.5 -80.5t19.5 -108.5q0 -60 -19.5 -107.5t-52.5 -80t-76.5 -49.5t-91.5 -17zM300 56q35 0 63.5 13.5t49 38t31.5 58.5t11 76t-11 76.5
-t-31.5 59.5t-49 38.5t-63.5 13.5t-63.5 -13.5t-49 -38.5t-31.5 -59.5t-11 -76.5t11 -76t31.5 -58.5t49 -38t63.5 -13.5zM300 571q-40 0 -69 13t-47.5 34.5t-28 48.5t-11.5 55l51 8q3 -19 10.5 -37.5t20.5 -33.5t31.5 -24t42.5 -9t42.5 9t31.5 24t20.5 33.5t10.5 37.5l51 -8
-q-2 -28 -11.5 -55t-28.5 -48.5t-47.5 -34.5t-68.5 -13z" />
-    <glyph glyph-name="uni1E53" unicode="&#x1e53;" 
-d="M300 -12q-48 0 -91.5 17t-76.5 49.5t-52.5 80t-19.5 107.5q0 61 19.5 108.5t52.5 80.5t76.5 50t91.5 17t91.5 -17t76.5 -50t52.5 -80.5t19.5 -108.5q0 -60 -19.5 -107.5t-52.5 -80t-76.5 -49.5t-91.5 -17zM300 56q35 0 63.5 13.5t49 38t31.5 58.5t11 76t-11 76.5
-t-31.5 59.5t-49 38.5t-63.5 13.5t-63.5 -13.5t-49 -38.5t-31.5 -59.5t-11 -76.5t11 -76t31.5 -58.5t49 -38t63.5 -13.5zM167 601v57h266v-57h-266zM266 705l-32 39l135 99l38 -49z" />
-    <glyph glyph-name="ohorn" unicode="&#x1a1;" 
-d="M300 -12q-48 0 -91.5 17t-76.5 49.5t-52.5 80t-19.5 107.5q0 61 19.5 108.5t52.5 80.5t76.5 50t91.5 17q54 0 101 -21q42 9 64 32.5t22 66.5q0 15 -3.5 30.5t-11.5 27.5l64 30q11 -17 17 -38t6 -44q0 -29 -8.5 -51.5t-23 -39t-34 -28t-41.5 -18.5q40 -32 64 -83t24 -120
-q0 -60 -19.5 -107.5t-52.5 -80t-76.5 -49.5t-91.5 -17zM300 56q35 0 63.5 13.5t49 38t31.5 58.5t11 76t-11 76.5t-31.5 59.5t-49 38.5t-63.5 13.5t-63.5 -13.5t-49 -38.5t-31.5 -59.5t-11 -76.5t11 -76t31.5 -58.5t49 -38t63.5 -13.5z" />
-    <glyph glyph-name="uni1EDB" unicode="&#x1edb;" 
-d="M300 -12q-48 0 -91.5 17t-76.5 49.5t-52.5 80t-19.5 107.5q0 61 19.5 108.5t52.5 80.5t76.5 50t91.5 17q54 0 101 -21q42 9 64 32.5t22 66.5q0 15 -3.5 30.5t-11.5 27.5l64 30q11 -17 17 -38t6 -44q0 -29 -8.5 -51.5t-23 -39t-34 -28t-41.5 -18.5q40 -32 64 -83t24 -120
-q0 -60 -19.5 -107.5t-52.5 -80t-76.5 -49.5t-91.5 -17zM300 56q35 0 63.5 13.5t49 38t31.5 58.5t11 76t-11 76.5t-31.5 59.5t-49 38.5t-63.5 13.5t-63.5 -13.5t-49 -38.5t-31.5 -59.5t-11 -76.5t11 -76t31.5 -58.5t49 -38t63.5 -13.5zM279 568l-43 41l142 168l58 -56z" />
-    <glyph glyph-name="uni1EDD" unicode="&#x1edd;" 
-d="M300 -12q-48 0 -91.5 17t-76.5 49.5t-52.5 80t-19.5 107.5q0 61 19.5 108.5t52.5 80.5t76.5 50t91.5 17q54 0 101 -21q42 9 64 32.5t22 66.5q0 15 -3.5 30.5t-11.5 27.5l64 30q11 -17 17 -38t6 -44q0 -29 -8.5 -51.5t-23 -39t-34 -28t-41.5 -18.5q40 -32 64 -83t24 -120
-q0 -60 -19.5 -107.5t-52.5 -80t-76.5 -49.5t-91.5 -17zM300 56q35 0 63.5 13.5t49 38t31.5 58.5t11 76t-11 76.5t-31.5 59.5t-49 38.5t-63.5 13.5t-63.5 -13.5t-49 -38.5t-31.5 -59.5t-11 -76.5t11 -76t31.5 -58.5t49 -38t63.5 -13.5zM321 568l-157 153l58 56l142 -168z" />
-    <glyph glyph-name="uni1EDF" unicode="&#x1edf;" 
-d="M300 -12q-48 0 -91.5 17t-76.5 49.5t-52.5 80t-19.5 107.5q0 61 19.5 108.5t52.5 80.5t76.5 50t91.5 17q54 0 101 -21q42 9 64 32.5t22 66.5q0 15 -3.5 30.5t-11.5 27.5l64 30q11 -17 17 -38t6 -44q0 -29 -8.5 -51.5t-23 -39t-34 -28t-41.5 -18.5q40 -32 64 -83t24 -120
-q0 -60 -19.5 -107.5t-52.5 -80t-76.5 -49.5t-91.5 -17zM300 56q35 0 63.5 13.5t49 38t31.5 58.5t11 76t-11 76.5t-31.5 59.5t-49 38.5t-63.5 13.5t-63.5 -13.5t-49 -38.5t-31.5 -59.5t-11 -76.5t11 -76t31.5 -58.5t49 -38t63.5 -13.5zM268 572l-9 40q24 6 40 16.5t16 30.5
-q0 43 -83 47l5 54q69 -2 106 -25.5t37 -68.5q0 -22 -9.5 -37.5t-25 -27t-35.5 -18.5t-42 -11z" />
-    <glyph glyph-name="uni1EE1" unicode="&#x1ee1;" 
-d="M300 -12q-48 0 -91.5 17t-76.5 49.5t-52.5 80t-19.5 107.5q0 61 19.5 108.5t52.5 80.5t76.5 50t91.5 17q54 0 101 -21q42 9 64 32.5t22 66.5q0 15 -3.5 30.5t-11.5 27.5l64 30q11 -17 17 -38t6 -44q0 -29 -8.5 -51.5t-23 -39t-34 -28t-41.5 -18.5q40 -32 64 -83t24 -120
-q0 -60 -19.5 -107.5t-52.5 -80t-76.5 -49.5t-91.5 -17zM300 56q35 0 63.5 13.5t49 38t31.5 58.5t11 76t-11 76.5t-31.5 59.5t-49 38.5t-63.5 13.5t-63.5 -13.5t-49 -38.5t-31.5 -59.5t-11 -76.5t11 -76t31.5 -58.5t49 -38t63.5 -13.5zM353 577q-27 0 -46 13t-35 29t-30.5 29
-t-31.5 13q-23 0 -34 -22t-13 -57l-55 3q1 29 7.5 54t18.5 43t30.5 28.5t44.5 10.5q27 0 46 -13t35 -29t30.5 -29t32.5 -13q22 0 33 22t13 57l55 -4q-1 -29 -7.5 -53.5t-18.5 -42.5t-30.5 -28.5t-44.5 -10.5z" />
-    <glyph glyph-name="uni1EE3" unicode="&#x1ee3;" 
-d="M300 -12q-48 0 -91.5 17t-76.5 49.5t-52.5 80t-19.5 107.5q0 61 19.5 108.5t52.5 80.5t76.5 50t91.5 17q54 0 101 -21q42 9 64 32.5t22 66.5q0 15 -3.5 30.5t-11.5 27.5l64 30q11 -17 17 -38t6 -44q0 -29 -8.5 -51.5t-23 -39t-34 -28t-41.5 -18.5q40 -32 64 -83t24 -120
-q0 -60 -19.5 -107.5t-52.5 -80t-76.5 -49.5t-91.5 -17zM300 56q35 0 63.5 13.5t49 38t31.5 58.5t11 76t-11 76.5t-31.5 59.5t-49 38.5t-63.5 13.5t-63.5 -13.5t-49 -38.5t-31.5 -59.5t-11 -76.5t11 -76t31.5 -58.5t49 -38t63.5 -13.5zM300 -214q-28 0 -47 17.5t-19 46.5
-t19 46.5t47 17.5t47 -17.5t19 -46.5t-19 -46.5t-47 -17.5z" />
-    <glyph glyph-name="oslash" unicode="&#xf8;" 
-d="M300 -12q-79 0 -140 43l-52 -61l-46 42l53 62q-26 32 -40.5 74t-14.5 94q0 61 19.5 108.5t52.5 80.5t76.5 50t91.5 17q79 0 140 -43l52 61l46 -42l-53 -62q26 -32 40.5 -74.5t14.5 -95.5q0 -60 -19.5 -107.5t-52.5 -80t-76.5 -49.5t-91.5 -17zM145 242q0 -60 23 -106
-l224 263q-38 33 -92 33q-35 0 -63.5 -14t-49 -39t-31.5 -60t-11 -77zM300 54q35 0 63.5 14t49 38.5t31.5 59t11 76.5q0 63 -23 107l-225 -263q19 -15 42.5 -23.5t50.5 -8.5z" />
-    <glyph glyph-name="oslashacute" unicode="&#x1ff;" 
-d="M300 -12q-79 0 -140 43l-52 -61l-46 42l53 62q-26 32 -40.5 74t-14.5 94q0 61 19.5 108.5t52.5 80.5t76.5 50t91.5 17q79 0 140 -43l52 61l46 -42l-53 -62q26 -32 40.5 -74.5t14.5 -95.5q0 -60 -19.5 -107.5t-52.5 -80t-76.5 -49.5t-91.5 -17zM145 242q0 -60 23 -106
-l224 263q-38 33 -92 33q-35 0 -63.5 -14t-49 -39t-31.5 -60t-11 -77zM300 54q35 0 63.5 14t49 38.5t31.5 59t11 76.5q0 63 -23 107l-225 -263q19 -15 42.5 -23.5t50.5 -8.5zM279 568l-43 41l142 168l58 -56z" />
-    <glyph glyph-name="oe" unicode="&#x153;" 
-d="M188 56q22 0 39.5 13.5t30 38.5t19.5 59t7 76t-7 76t-19.5 59t-30 38.5t-39.5 13.5q-49 0 -74.5 -51.5t-25.5 -136.5q0 -84 25.5 -135t74.5 -51zM183 -12q-37 0 -68.5 17t-54.5 49.5t-36 80t-13 107.5q0 61 13 108.5t36.5 80.5t55 50t68.5 17q46 0 78.5 -29t52.5 -91
-q20 62 55.5 91t82.5 29q36 0 63 -18t45 -48t27 -70.5t9 -85.5q0 -14 -1 -28.5t-3 -27.5h-246q5 -84 37.5 -124.5t81.5 -40.5q26 0 46 9t40 23l30 -56q-23 -18 -53.5 -30.5t-65.5 -12.5q-49 0 -88 28t-59 89q-21 -61 -54 -89t-79 -28zM446 433q-39 0 -66 -37t-32 -112h182
-q-4 149 -84 149z" />
-    <glyph glyph-name="racute" unicode="&#x155;" 
-d="M146 0v486h68l7 -115h3q38 59 93.5 93t123.5 34q27 0 50 -4.5t46 -15.5l-19 -71q-26 9 -43.5 13t-46.5 4q-55 0 -105.5 -31.5t-94.5 -107.5v-285h-82zM325 568l-43 41l142 168l58 -56z" />
-    <glyph glyph-name="uni0157" unicode="&#x157;" 
-d="M146 0v486h68l7 -115h3q38 59 93.5 93t123.5 34q27 0 50 -4.5t46 -15.5l-19 -71q-26 9 -43.5 13t-46.5 4q-55 0 -105.5 -31.5t-94.5 -107.5v-285h-82zM111 -226l-8 40q63 5 86 16.5t23 31.5t-18 29.5t-53 12.5l18 38q65 -8 91 -25.5t26 -51.5q0 -44 -42.5 -65.5
-t-122.5 -25.5z" />
-    <glyph glyph-name="rcaron" unicode="&#x159;" 
-d="M146 0v486h68l7 -115h3q38 59 93.5 93t123.5 34q27 0 50 -4.5t46 -15.5l-19 -71q-26 9 -43.5 13t-46.5 4q-55 0 -105.5 -31.5t-94.5 -107.5v-285h-82zM305 574l-114 140l35 32l118 -113h4l118 113l35 -32l-114 -140h-82z" />
-    <glyph glyph-name="uni1E59" unicode="&#x1e59;" 
-d="M146 0v486h68l7 -115h3q38 59 93.5 93t123.5 34q27 0 50 -4.5t46 -15.5l-19 -71q-26 9 -43.5 13t-46.5 4q-55 0 -105.5 -31.5t-94.5 -107.5v-285h-82zM346 588q-28 0 -47 17.5t-19 46.5t19 46.5t47 17.5t47 -17.5t19 -46.5t-19 -46.5t-47 -17.5z" />
-    <glyph glyph-name="uni1E5B" unicode="&#x1e5b;" 
-d="M146 0v486h68l7 -115h3q38 59 93.5 93t123.5 34q27 0 50 -4.5t46 -15.5l-19 -71q-26 9 -43.5 13t-46.5 4q-55 0 -105.5 -31.5t-94.5 -107.5v-285h-82zM198 -214q-28 0 -47 17.5t-19 46.5t19 46.5t47 17.5t47 -17.5t19 -46.5t-19 -46.5t-47 -17.5z" />
-    <glyph glyph-name="uni1E5D" unicode="&#x1e5d;" 
-d="M146 0v486h68l7 -115h3q38 59 93.5 93t123.5 34q27 0 50 -4.5t46 -15.5l-19 -71q-26 9 -43.5 13t-46.5 4q-55 0 -105.5 -31.5t-94.5 -107.5v-285h-82zM213 601v57h266v-57h-266zM198 -214q-28 0 -47 17.5t-19 46.5t19 46.5t47 17.5t47 -17.5t19 -46.5t-19 -46.5
-t-47 -17.5z" />
-    <glyph glyph-name="uni1E5F" unicode="&#x1e5f;" 
-d="M146 0v486h68l7 -115h3q38 59 93.5 93t123.5 34q27 0 50 -4.5t46 -15.5l-19 -71q-26 9 -43.5 13t-46.5 4q-55 0 -105.5 -31.5t-94.5 -107.5v-285h-82zM65 -169v57h266v-57h-266z" />
-    <glyph glyph-name="sacute" unicode="&#x15b;" 
-d="M310 -12q-72 0 -133 22.5t-106 53.5l38 54q42 -30 92.5 -48t118.5 -18q62 0 92.5 22.5t30.5 53.5q0 14 -5 26t-21.5 23t-46.5 21t-79 20q-95 20 -142.5 53.5t-47.5 88.5q0 29 13 54.5t38.5 44t63 29t87.5 10.5q56 0 108 -18.5t88 -43.5l-40 -53q-34 23 -75 37t-88 14
-q-62 0 -87 -21t-25 -49q0 -32 33 -48.5t108 -32.5q61 -13 100 -27.5t61.5 -32.5t31 -40t8.5 -50q0 -30 -14 -56t-41.5 -46t-68 -31.5t-92.5 -11.5zM282 568l-43 41l142 168l58 -56z" />
-    <glyph glyph-name="scircumflex" unicode="&#x15d;" 
-d="M310 -12q-72 0 -133 22.5t-106 53.5l38 54q42 -30 92.5 -48t118.5 -18q62 0 92.5 22.5t30.5 53.5q0 14 -5 26t-21.5 23t-46.5 21t-79 20q-95 20 -142.5 53.5t-47.5 88.5q0 29 13 54.5t38.5 44t63 29t87.5 10.5q56 0 108 -18.5t88 -43.5l-40 -53q-34 23 -75 37t-88 14
-q-62 0 -87 -21t-25 -49q0 -32 33 -48.5t108 -32.5q61 -13 100 -27.5t61.5 -32.5t31 -40t8.5 -50q0 -30 -14 -56t-41.5 -46t-68 -31.5t-92.5 -11.5zM183 568l-35 32l114 140h82l114 -140l-35 -32l-118 113h-4z" />
-    <glyph glyph-name="scaron" unicode="&#x161;" 
-d="M310 -12q-72 0 -133 22.5t-106 53.5l38 54q42 -30 92.5 -48t118.5 -18q62 0 92.5 22.5t30.5 53.5q0 14 -5 26t-21.5 23t-46.5 21t-79 20q-95 20 -142.5 53.5t-47.5 88.5q0 29 13 54.5t38.5 44t63 29t87.5 10.5q56 0 108 -18.5t88 -43.5l-40 -53q-34 23 -75 37t-88 14
-q-62 0 -87 -21t-25 -49q0 -32 33 -48.5t108 -32.5q61 -13 100 -27.5t61.5 -32.5t31 -40t8.5 -50q0 -30 -14 -56t-41.5 -46t-68 -31.5t-92.5 -11.5zM262 574l-114 140l35 32l118 -113h4l118 113l35 -32l-114 -140h-82z" />
-    <glyph glyph-name="scarondot" 
-d="M310 -12q-72 0 -133 22.5t-106 53.5l38 54q42 -30 92.5 -48t118.5 -18q62 0 92.5 22.5t30.5 53.5q0 14 -5 26t-21.5 23t-46.5 21t-79 20q-95 20 -142.5 53.5t-47.5 88.5q0 29 13 54.5t38.5 44t63 29t87.5 10.5q56 0 108 -18.5t88 -43.5l-40 -53q-34 23 -75 37t-88 14
-q-62 0 -87 -21t-25 -49q0 -32 33 -48.5t108 -32.5q61 -13 100 -27.5t61.5 -32.5t31 -40t8.5 -50q0 -30 -14 -56t-41.5 -46t-68 -31.5t-92.5 -11.5zM303 701q-24 0 -40 15t-16 41t16 41t40 15t40 -15t16 -41t-16 -41t-40 -15zM262 574l-114 140l31 28l122 -115h4l122 115
-l31 -28l-114 -140h-82z" />
-    <glyph glyph-name="uni015F" unicode="&#x15f;" 
-d="M310 -12q-72 0 -133 22.5t-106 53.5l38 54q42 -30 92.5 -48t118.5 -18q62 0 92.5 22.5t30.5 53.5q0 14 -5 26t-21.5 23t-46.5 21t-79 20q-95 20 -142.5 53.5t-47.5 88.5q0 29 13 54.5t38.5 44t63 29t87.5 10.5q56 0 108 -18.5t88 -43.5l-40 -53q-34 23 -75 37t-88 14
-q-62 0 -87 -21t-25 -49q0 -32 33 -48.5t108 -32.5q61 -13 100 -27.5t61.5 -32.5t31 -40t8.5 -50q0 -30 -14 -56t-41.5 -46t-68 -31.5t-92.5 -11.5zM227 -226l-8 40q63 5 86 16.5t23 33.5q0 20 -17 31t-60 17l40 96h54l-26 -72q35 -8 54 -24t19 -47q0 -44 -42.5 -65.5
-t-122.5 -25.5z" />
-    <glyph glyph-name="uni0219" unicode="&#x219;" 
-d="M310 -12q-72 0 -133 22.5t-106 53.5l38 54q42 -30 92.5 -48t118.5 -18q62 0 92.5 22.5t30.5 53.5q0 14 -5 26t-21.5 23t-46.5 21t-79 20q-95 20 -142.5 53.5t-47.5 88.5q0 29 13 54.5t38.5 44t63 29t87.5 10.5q56 0 108 -18.5t88 -43.5l-40 -53q-34 23 -75 37t-88 14
-q-62 0 -87 -21t-25 -49q0 -32 33 -48.5t108 -32.5q61 -13 100 -27.5t61.5 -32.5t31 -40t8.5 -50q0 -30 -14 -56t-41.5 -46t-68 -31.5t-92.5 -11.5zM222 -226l-8 40q63 5 86 16.5t23 31.5t-18 29.5t-53 12.5l18 38q65 -8 91 -25.5t26 -51.5q0 -44 -42.5 -65.5t-122.5 -25.5z
-" />
-    <glyph glyph-name="uni1E61" unicode="&#x1e61;" 
-d="M310 -12q-72 0 -133 22.5t-106 53.5l38 54q42 -30 92.5 -48t118.5 -18q62 0 92.5 22.5t30.5 53.5q0 14 -5 26t-21.5 23t-46.5 21t-79 20q-95 20 -142.5 53.5t-47.5 88.5q0 29 13 54.5t38.5 44t63 29t87.5 10.5q56 0 108 -18.5t88 -43.5l-40 -53q-34 23 -75 37t-88 14
-q-62 0 -87 -21t-25 -49q0 -32 33 -48.5t108 -32.5q61 -13 100 -27.5t61.5 -32.5t31 -40t8.5 -50q0 -30 -14 -56t-41.5 -46t-68 -31.5t-92.5 -11.5zM303 588q-28 0 -47 17.5t-19 46.5t19 46.5t47 17.5t47 -17.5t19 -46.5t-19 -46.5t-47 -17.5z" />
-    <glyph glyph-name="uni1E63" unicode="&#x1e63;" 
-d="M310 -12q-72 0 -133 22.5t-106 53.5l38 54q42 -30 92.5 -48t118.5 -18q62 0 92.5 22.5t30.5 53.5q0 14 -5 26t-21.5 23t-46.5 21t-79 20q-95 20 -142.5 53.5t-47.5 88.5q0 29 13 54.5t38.5 44t63 29t87.5 10.5q56 0 108 -18.5t88 -43.5l-40 -53q-34 23 -75 37t-88 14
-q-62 0 -87 -21t-25 -49q0 -32 33 -48.5t108 -32.5q61 -13 100 -27.5t61.5 -32.5t31 -40t8.5 -50q0 -30 -14 -56t-41.5 -46t-68 -31.5t-92.5 -11.5zM309 -214q-28 0 -47 17.5t-19 46.5t19 46.5t47 17.5t47 -17.5t19 -46.5t-19 -46.5t-47 -17.5z" />
-    <glyph glyph-name="germandbls" unicode="&#xdf;" 
-d="M401 -12q-42 0 -77 12t-67 33l33 58q28 -20 54 -29.5t55 -9.5q42 0 64.5 23.5t22.5 54.5q0 29 -15 48t-37.5 33.5t-48.5 27t-48.5 29t-37.5 39t-15 57.5q0 34 14 58.5t31 47t31 46t14 55.5q0 37 -22 61.5t-64 24.5q-55 0 -86.5 -37.5t-31.5 -112.5v-507h-82v519
-q0 46 14 84t40 65t63 41.5t84 14.5q40 0 70.5 -12t51.5 -32.5t31.5 -47t10.5 -56.5q0 -38 -14 -64.5t-31 -48.5t-31 -42.5t-14 -46.5q0 -24 15 -40t37 -29.5t48.5 -26.5t48.5 -31t37 -44.5t15 -65.5q0 -32 -11.5 -59t-33 -47t-51.5 -31.5t-67 -11.5z" />
-    <glyph glyph-name="longs" unicode="&#x17f;" 
-d="M242 0v419h-139v62l139 5v41q0 89 47.5 143t148.5 54q72 0 140 -28l-19 -62q-30 14 -55.5 18.5t-57.5 4.5q-66 0 -94.5 -33.5t-28.5 -93.5v-530h-81z" />
-    <glyph glyph-name="tcaron" unicode="&#x165;" 
-d="M394 -12q-53 0 -89 14.5t-58 41t-31.5 63.5t-9.5 82v230h-137v62l140 5l11 156h68v-156h239v-67h-239v-231q0 -33 6 -57.5t20 -41.5t38 -25.5t59 -8.5t63 6t54 16l18 -60q-33 -12 -69.5 -20.5t-82.5 -8.5zM399 548l-3 268h74v-81l-14 -187h-57z" />
-    <glyph glyph-name="uni0163" unicode="&#x163;" 
-d="M394 -12q-53 0 -89 14.5t-58 41t-31.5 63.5t-9.5 82v230h-137v62l140 5l11 156h68v-156h239v-67h-239v-231q0 -33 6 -57.5t20 -41.5t38 -25.5t59 -8.5t63 6t54 16l18 -60q-33 -12 -69.5 -20.5t-82.5 -8.5zM302 -226l-8 40q63 5 86 16.5t23 33.5q0 20 -17 31t-60 17l40 96
-h54l-26 -72q35 -8 54 -24t19 -47q0 -44 -42.5 -65.5t-122.5 -25.5z" />
-    <glyph glyph-name="uni021B" unicode="&#x21b;" 
-d="M394 -12q-53 0 -89 14.5t-58 41t-31.5 63.5t-9.5 82v230h-137v62l140 5l11 156h68v-156h239v-67h-239v-231q0 -33 6 -57.5t20 -41.5t38 -25.5t59 -8.5t63 6t54 16l18 -60q-33 -12 -69.5 -20.5t-82.5 -8.5zM292 -226l-8 40q63 5 86 16.5t23 31.5t-18 29.5t-53 12.5l18 38
-q65 -8 91 -25.5t26 -51.5q0 -44 -42.5 -65.5t-122.5 -25.5z" />
-    <glyph glyph-name="uni1E6D" unicode="&#x1e6d;" 
-d="M394 -12q-53 0 -89 14.5t-58 41t-31.5 63.5t-9.5 82v230h-137v62l140 5l11 156h68v-156h239v-67h-239v-231q0 -33 6 -57.5t20 -41.5t38 -25.5t59 -8.5t63 6t54 16l18 -60q-33 -12 -69.5 -20.5t-82.5 -8.5zM379 -214q-28 0 -47 17.5t-19 46.5t19 46.5t47 17.5t47 -17.5
-t19 -46.5t-19 -46.5t-47 -17.5z" />
-    <glyph glyph-name="uni1E6F" unicode="&#x1e6f;" 
-d="M394 -12q-53 0 -89 14.5t-58 41t-31.5 63.5t-9.5 82v230h-137v62l140 5l11 156h68v-156h239v-67h-239v-231q0 -33 6 -57.5t20 -41.5t38 -25.5t59 -8.5t63 6t54 16l18 -60q-33 -12 -69.5 -20.5t-82.5 -8.5zM246 -169v57h266v-57h-266z" />
-    <glyph glyph-name="uni1E97" unicode="&#x1e97;" 
-d="M394 -12q-53 0 -89 14.5t-58 41t-31.5 63.5t-9.5 82v230h-137v62l140 5l11 156h68v-156h239v-67h-239v-231q0 -33 6 -57.5t20 -41.5t38 -25.5t59 -8.5t63 6t54 16l18 -60q-33 -12 -69.5 -20.5t-82.5 -8.5zM166 723q-24 0 -39.5 16t-15.5 40q0 23 15.5 39.5t39.5 16.5
-t39.5 -16.5t15.5 -39.5q0 -24 -15.5 -40t-39.5 -16zM360 723q-24 0 -39.5 16t-15.5 40q0 23 15.5 39.5t39.5 16.5t39.5 -16.5t15.5 -39.5q0 -24 -15.5 -40t-39.5 -16z" />
-    <glyph glyph-name="tbar" unicode="&#x167;" 
-d="M70 220v58l136 6v135h-137v62l140 5l11 156h68v-156h239v-67h-239v-135h220v-64h-220v-32q0 -33 6 -57.5t20 -41.5t38 -25.5t59 -8.5t63 6t54 16l18 -60q-33 -12 -69.5 -20.5t-82.5 -8.5q-53 0 -89 14.5t-58 41t-31.5 63.5t-9.5 82v31h-136z" />
-    <glyph glyph-name="ugrave" unicode="&#xf9;" 
-d="M246 -12q-88 0 -128.5 49.5t-40.5 146.5v302h83v-291q0 -69 25.5 -102.5t86.5 -33.5q42 0 76 21.5t75 68.5v337h82v-486h-67l-7 85h-4q-37 -43 -80.5 -70t-100.5 -27zM317 568l-157 153l58 56l142 -168z" />
-    <glyph glyph-name="uacute" unicode="&#xfa;" 
-d="M246 -12q-88 0 -128.5 49.5t-40.5 146.5v302h83v-291q0 -69 25.5 -102.5t86.5 -33.5q42 0 76 21.5t75 68.5v337h82v-486h-67l-7 85h-4q-37 -43 -80.5 -70t-100.5 -27zM275 568l-43 41l142 168l58 -56z" />
-    <glyph glyph-name="ucircumflex" unicode="&#xfb;" 
-d="M246 -12q-88 0 -128.5 49.5t-40.5 146.5v302h83v-291q0 -69 25.5 -102.5t86.5 -33.5q42 0 76 21.5t75 68.5v337h82v-486h-67l-7 85h-4q-37 -43 -80.5 -70t-100.5 -27zM176 568l-35 32l114 140h82l114 -140l-35 -32l-118 113h-4z" />
-    <glyph glyph-name="utilde" unicode="&#x169;" 
-d="M246 -12q-88 0 -128.5 49.5t-40.5 146.5v302h83v-291q0 -69 25.5 -102.5t86.5 -33.5q42 0 76 21.5t75 68.5v337h82v-486h-67l-7 85h-4q-37 -43 -80.5 -70t-100.5 -27zM368 577q-27 0 -46 13t-35 29t-30.5 29t-31.5 13q-23 0 -34 -22t-13 -57l-55 3q1 29 7.5 54t18.5 43
-t30.5 28.5t44.5 10.5q27 0 46 -13t35 -29t30.5 -29t32.5 -13q22 0 33 22t13 57l55 -4q-1 -29 -7.5 -53.5t-18.5 -42.5t-30.5 -28.5t-44.5 -10.5z" />
-    <glyph glyph-name="udieresis" unicode="&#xfc;" 
-d="M246 -12q-88 0 -128.5 49.5t-40.5 146.5v302h83v-291q0 -69 25.5 -102.5t86.5 -33.5q42 0 76 21.5t75 68.5v337h82v-486h-67l-7 85h-4q-37 -43 -80.5 -70t-100.5 -27zM199 588q-24 0 -39.5 16t-15.5 40q0 23 15.5 39.5t39.5 16.5t39.5 -16.5t15.5 -39.5q0 -24 -15.5 -40
-t-39.5 -16zM393 588q-24 0 -39.5 16t-15.5 40q0 23 15.5 39.5t39.5 16.5t39.5 -16.5t15.5 -39.5q0 -24 -15.5 -40t-39.5 -16z" />
-    <glyph glyph-name="umacron" unicode="&#x16b;" 
-d="M246 -12q-88 0 -128.5 49.5t-40.5 146.5v302h83v-291q0 -69 25.5 -102.5t86.5 -33.5q42 0 76 21.5t75 68.5v337h82v-486h-67l-7 85h-4q-37 -43 -80.5 -70t-100.5 -27zM163 601v57h266v-57h-266z" />
-    <glyph glyph-name="ubreve" unicode="&#x16d;" 
-d="M246 -12q-88 0 -128.5 49.5t-40.5 146.5v302h83v-291q0 -69 25.5 -102.5t86.5 -33.5q42 0 76 21.5t75 68.5v337h82v-486h-67l-7 85h-4q-37 -43 -80.5 -70t-100.5 -27zM296 571q-40 0 -69 13t-47.5 34.5t-28 48.5t-11.5 55l51 8q3 -19 10.5 -37.5t20.5 -33.5t31.5 -24
-t42.5 -9t42.5 9t31.5 24t20.5 33.5t10.5 37.5l51 -8q-2 -28 -11.5 -55t-28.5 -48.5t-47.5 -34.5t-68.5 -13z" />
-    <glyph glyph-name="uring" unicode="&#x16f;" 
-d="M246 -12q-88 0 -128.5 49.5t-40.5 146.5v302h83v-291q0 -69 25.5 -102.5t86.5 -33.5q42 0 76 21.5t75 68.5v337h82v-486h-67l-7 85h-4q-37 -43 -80.5 -70t-100.5 -27zM296 569q-52 0 -81 27.5t-29 68.5t29 68.5t81 27.5t81 -27.5t29 -68.5t-29 -68.5t-81 -27.5zM296 606
-q24 0 40.5 17t16.5 42q0 26 -16.5 42.5t-40.5 16.5t-40.5 -16.5t-16.5 -42.5q0 -25 16.5 -42t40.5 -17z" />
-    <glyph glyph-name="uhungarumlaut" unicode="&#x171;" 
-d="M246 -12q-88 0 -128.5 49.5t-40.5 146.5v302h83v-291q0 -69 25.5 -102.5t86.5 -33.5q42 0 76 21.5t75 68.5v337h82v-486h-67l-7 85h-4q-37 -43 -80.5 -70t-100.5 -27zM239 568l-46 21l87 172l58 -28zM390 568l-46 21l87 172l58 -28z" />
-    <glyph glyph-name="uni01D4" unicode="&#x1d4;" 
-d="M246 -12q-88 0 -128.5 49.5t-40.5 146.5v302h83v-291q0 -69 25.5 -102.5t86.5 -33.5q42 0 76 21.5t75 68.5v337h82v-486h-67l-7 85h-4q-37 -43 -80.5 -70t-100.5 -27zM255 574l-114 140l35 32l118 -113h4l118 113l35 -32l-114 -140h-82z" />
-    <glyph glyph-name="uogonek" unicode="&#x173;" 
-d="M446 -225q-44 0 -73.5 22.5t-29.5 70.5q0 43 28 75.5t67 56.5l-7 85h-4q-37 -43 -80.5 -70t-100.5 -27q-88 0 -128.5 49.5t-40.5 146.5v302h83v-291q0 -69 25.5 -102.5t86.5 -33.5q42 0 76 21.5t75 68.5v337h82v-491q-54 -24 -77.5 -53t-23.5 -58q0 -28 18 -41.5
-t41 -13.5q17 0 30 6t22 15l24 -39q-17 -17 -40.5 -26.5t-52.5 -9.5z" />
-    <glyph glyph-name="uni01D6" unicode="&#x1d6;" 
-d="M246 -12q-88 0 -128.5 49.5t-40.5 146.5v302h83v-291q0 -69 25.5 -102.5t86.5 -33.5q42 0 76 21.5t75 68.5v337h82v-486h-67l-7 85h-4q-37 -43 -80.5 -70t-100.5 -27zM200 588q-20 0 -33 13t-13 32q0 20 13 33t33 13t32.5 -13t12.5 -33q0 -19 -12.5 -32t-32.5 -13z
-M392 588q-20 0 -32.5 13t-12.5 32q0 20 12.5 33t32.5 13t33 -13t13 -33q0 -19 -13 -32t-33 -13zM162 750v47h267v-47h-267z" />
-    <glyph glyph-name="uni01D8" unicode="&#x1d8;" 
-d="M246 -12q-88 0 -128.5 49.5t-40.5 146.5v302h83v-291q0 -69 25.5 -102.5t86.5 -33.5q42 0 76 21.5t75 68.5v337h82v-486h-67l-7 85h-4q-37 -43 -80.5 -70t-100.5 -27zM200 588q-20 0 -33 13t-13 32q0 20 13 33t33 13t32.5 -13t12.5 -33q0 -19 -12.5 -32t-32.5 -13z
-M392 588q-20 0 -32.5 13t-12.5 32q0 20 12.5 33t32.5 13t33 -13t13 -33q0 -19 -13 -32t-33 -13zM289 705l-35 24l82 115l49 -34z" />
-    <glyph glyph-name="uni01DA" unicode="&#x1da;" 
-d="M246 -12q-88 0 -128.5 49.5t-40.5 146.5v302h83v-291q0 -69 25.5 -102.5t86.5 -33.5q42 0 76 21.5t75 68.5v337h82v-486h-67l-7 85h-4q-37 -43 -80.5 -70t-100.5 -27zM200 588q-20 0 -33 13t-13 32q0 20 13 33t33 13t32.5 -13t12.5 -33q0 -19 -12.5 -32t-32.5 -13z
-M392 588q-20 0 -32.5 13t-12.5 32q0 20 12.5 33t32.5 13t33 -13t13 -33q0 -19 -13 -32t-33 -13zM262 720l-94 92l30 28l96 -73h4l96 73l30 -28l-94 -92h-68z" />
-    <glyph glyph-name="uni01DC" unicode="&#x1dc;" 
-d="M246 -12q-88 0 -128.5 49.5t-40.5 146.5v302h83v-291q0 -69 25.5 -102.5t86.5 -33.5q42 0 76 21.5t75 68.5v337h82v-486h-67l-7 85h-4q-37 -43 -80.5 -70t-100.5 -27zM200 588q-20 0 -33 13t-13 32q0 20 13 33t33 13t32.5 -13t12.5 -33q0 -19 -12.5 -32t-32.5 -13z
-M392 588q-20 0 -32.5 13t-12.5 32q0 20 12.5 33t32.5 13t33 -13t13 -33q0 -19 -13 -32t-33 -13zM303 705l-96 105l49 34l82 -115z" />
-    <glyph glyph-name="uni1EE5" unicode="&#x1ee5;" 
-d="M246 -12q-88 0 -128.5 49.5t-40.5 146.5v302h83v-291q0 -69 25.5 -102.5t86.5 -33.5q42 0 76 21.5t75 68.5v337h82v-486h-67l-7 85h-4q-37 -43 -80.5 -70t-100.5 -27zM307 -214q-28 0 -47 17.5t-19 46.5t19 46.5t47 17.5t47 -17.5t19 -46.5t-19 -46.5t-47 -17.5z" />
-    <glyph glyph-name="uni1EE7" unicode="&#x1ee7;" 
-d="M246 -12q-88 0 -128.5 49.5t-40.5 146.5v302h83v-291q0 -69 25.5 -102.5t86.5 -33.5q42 0 76 21.5t75 68.5v337h82v-486h-67l-7 85h-4q-37 -43 -80.5 -70t-100.5 -27zM264 572l-9 40q24 6 40 16.5t16 30.5q0 43 -83 47l5 54q69 -2 106 -25.5t37 -68.5q0 -22 -9.5 -37.5
-t-25 -27t-35.5 -18.5t-42 -11z" />
-    <glyph glyph-name="uhorn" unicode="&#x1b0;" 
-d="M246 -12q-88 0 -128.5 49.5t-40.5 146.5v302h83v-291q0 -69 25.5 -102.5t86.5 -33.5q42 0 76 21.5t75 68.5v337h16q18 3 33.5 9t27.5 17t18.5 28t6.5 42q0 15 -3 30.5t-11 27.5l64 30q11 -17 17 -38t6 -44q0 -29 -8 -50.5t-21 -37t-29.5 -26t-34.5 -17.5v-457h-67l-7 85
-h-4q-37 -43 -80.5 -70t-100.5 -27z" />
-    <glyph glyph-name="uni1EE9" unicode="&#x1ee9;" 
-d="M246 -12q-88 0 -128.5 49.5t-40.5 146.5v302h83v-291q0 -69 25.5 -102.5t86.5 -33.5q42 0 76 21.5t75 68.5v337h16q18 3 33.5 9t27.5 17t18.5 28t6.5 42q0 15 -3 30.5t-11 27.5l64 30q11 -17 17 -38t6 -44q0 -29 -8 -50.5t-21 -37t-29.5 -26t-34.5 -17.5v-457h-67l-7 85
-h-4q-37 -43 -80.5 -70t-100.5 -27zM275 568l-43 41l142 168l58 -56z" />
-    <glyph glyph-name="uni1EEB" unicode="&#x1eeb;" 
-d="M246 -12q-88 0 -128.5 49.5t-40.5 146.5v302h83v-291q0 -69 25.5 -102.5t86.5 -33.5q42 0 76 21.5t75 68.5v337h16q18 3 33.5 9t27.5 17t18.5 28t6.5 42q0 15 -3 30.5t-11 27.5l64 30q11 -17 17 -38t6 -44q0 -29 -8 -50.5t-21 -37t-29.5 -26t-34.5 -17.5v-457h-67l-7 85
-h-4q-37 -43 -80.5 -70t-100.5 -27zM317 568l-157 153l58 56l142 -168z" />
-    <glyph glyph-name="uni1EED" unicode="&#x1eed;" 
-d="M246 -12q-88 0 -128.5 49.5t-40.5 146.5v302h83v-291q0 -69 25.5 -102.5t86.5 -33.5q42 0 76 21.5t75 68.5v337h16q18 3 33.5 9t27.5 17t18.5 28t6.5 42q0 15 -3 30.5t-11 27.5l64 30q11 -17 17 -38t6 -44q0 -29 -8 -50.5t-21 -37t-29.5 -26t-34.5 -17.5v-457h-67l-7 85
-h-4q-37 -43 -80.5 -70t-100.5 -27zM264 572l-9 40q24 6 40 16.5t16 30.5q0 43 -83 47l5 54q69 -2 106 -25.5t37 -68.5q0 -22 -9.5 -37.5t-25 -27t-35.5 -18.5t-42 -11z" />
-    <glyph glyph-name="uni1EEF" unicode="&#x1eef;" 
-d="M246 -12q-88 0 -128.5 49.5t-40.5 146.5v302h83v-291q0 -69 25.5 -102.5t86.5 -33.5q42 0 76 21.5t75 68.5v337h16q18 3 33.5 9t27.5 17t18.5 28t6.5 42q0 15 -3 30.5t-11 27.5l64 30q11 -17 17 -38t6 -44q0 -29 -8 -50.5t-21 -37t-29.5 -26t-34.5 -17.5v-457h-67l-7 85
-h-4q-37 -43 -80.5 -70t-100.5 -27zM360 577q-27 0 -46 13t-35 29t-30.5 29t-31.5 13q-23 0 -34 -22t-13 -57l-55 3q1 29 7.5 54t18.5 43t30.5 28.5t44.5 10.5q27 0 46 -13t35 -29t30.5 -29t32.5 -13q22 0 33 22t13 57l55 -4q-1 -29 -7.5 -53.5t-18.5 -42.5t-30.5 -28.5
-t-44.5 -10.5z" />
-    <glyph glyph-name="uni1EF1" unicode="&#x1ef1;" 
-d="M246 -12q-88 0 -128.5 49.5t-40.5 146.5v302h83v-291q0 -69 25.5 -102.5t86.5 -33.5q42 0 76 21.5t75 68.5v337h16q18 3 33.5 9t27.5 17t18.5 28t6.5 42q0 15 -3 30.5t-11 27.5l64 30q11 -17 17 -38t6 -44q0 -29 -8 -50.5t-21 -37t-29.5 -26t-34.5 -17.5v-457h-67l-7 85
-h-4q-37 -43 -80.5 -70t-100.5 -27zM307 -214q-28 0 -47 17.5t-19 46.5t19 46.5t47 17.5t47 -17.5t19 -46.5t-19 -46.5t-47 -17.5z" />
-    <glyph glyph-name="uni1E7F" unicode="&#x1e7f;" 
-d="M256 0l-205 486h83l112 -276q15 -37 28.5 -72.5t26.5 -70.5h4q13 35 25.5 70.5t27.5 72.5l112 276h79l-201 -486h-92zM300 -214q-28 0 -47 17.5t-19 46.5t19 46.5t47 17.5t47 -17.5t19 -46.5t-19 -46.5t-47 -17.5z" />
-    <glyph glyph-name="wgrave" unicode="&#x1e81;" 
-d="M114 0l-106 486h82l58 -282q7 -35 12 -67t10 -67h4q5 35 12.5 67.5t15.5 66.5l60 252h82l58 -252q8 -35 16.5 -67t13.5 -67h4q6 35 10.5 67t11.5 67l58 282h76l-104 -486h-106l-56 232q-12 51 -24 144h-4q-12 -93 -24 -144l-54 -232h-106zM321 568l-157 153l58 56
-l142 -168z" />
-    <glyph glyph-name="wacute" unicode="&#x1e83;" 
-d="M114 0l-106 486h82l58 -282q7 -35 12 -67t10 -67h4q5 35 12.5 67.5t15.5 66.5l60 252h82l58 -252q8 -35 16.5 -67t13.5 -67h4q6 35 10.5 67t11.5 67l58 282h76l-104 -486h-106l-56 232q-12 51 -24 144h-4q-12 -93 -24 -144l-54 -232h-106zM279 568l-43 41l142 168l58 -56
-z" />
-    <glyph glyph-name="wcircumflex" unicode="&#x175;" 
-d="M114 0l-106 486h82l58 -282q7 -35 12 -67t10 -67h4q5 35 12.5 67.5t15.5 66.5l60 252h82l58 -252q8 -35 16.5 -67t13.5 -67h4q6 35 10.5 67t11.5 67l58 282h76l-104 -486h-106l-56 232q-12 51 -24 144h-4q-12 -93 -24 -144l-54 -232h-106zM180 568l-35 32l114 140h82
-l114 -140l-35 -32l-118 113h-4z" />
-    <glyph glyph-name="wdieresis" unicode="&#x1e85;" 
-d="M114 0l-106 486h82l58 -282q7 -35 12 -67t10 -67h4q5 35 12.5 67.5t15.5 66.5l60 252h82l58 -252q8 -35 16.5 -67t13.5 -67h4q6 35 10.5 67t11.5 67l58 282h76l-104 -486h-106l-56 232q-12 51 -24 144h-4q-12 -93 -24 -144l-54 -232h-106zM203 588q-24 0 -39.5 16
-t-15.5 40q0 23 15.5 39.5t39.5 16.5t39.5 -16.5t15.5 -39.5q0 -24 -15.5 -40t-39.5 -16zM397 588q-24 0 -39.5 16t-15.5 40q0 23 15.5 39.5t39.5 16.5t39.5 -16.5t15.5 -39.5q0 -24 -15.5 -40t-39.5 -16z" />
-    <glyph glyph-name="ygrave" unicode="&#x1ef3;" 
-d="M131 -209q-36 0 -64 10l17 65q10 -3 21.5 -5t22.5 -2q51 0 83 29.5t50 74.5l15 36l-227 487h83l119 -269q14 -32 29.5 -69t30.5 -72h4q13 35 26.5 71.5t25.5 69.5l106 269h78l-214 -526q-14 -36 -32 -67t-43 -53.5t-57.5 -35.5t-73.5 -13zM325 568l-157 153l58 56
-l142 -168z" />
-    <glyph glyph-name="yacute" unicode="&#xfd;" 
-d="M131 -209q-36 0 -64 10l17 65q10 -3 21.5 -5t22.5 -2q51 0 83 29.5t50 74.5l15 36l-227 487h83l119 -269q14 -32 29.5 -69t30.5 -72h4q13 35 26.5 71.5t25.5 69.5l106 269h78l-214 -526q-14 -36 -32 -67t-43 -53.5t-57.5 -35.5t-73.5 -13zM283 568l-43 41l142 168l58 -56
-z" />
-    <glyph glyph-name="ycircumflex" unicode="&#x177;" 
-d="M131 -209q-36 0 -64 10l17 65q10 -3 21.5 -5t22.5 -2q51 0 83 29.5t50 74.5l15 36l-227 487h83l119 -269q14 -32 29.5 -69t30.5 -72h4q13 35 26.5 71.5t25.5 69.5l106 269h78l-214 -526q-14 -36 -32 -67t-43 -53.5t-57.5 -35.5t-73.5 -13zM184 568l-35 32l114 140h82
-l114 -140l-35 -32l-118 113h-4z" />
-    <glyph glyph-name="ydieresis" unicode="&#xff;" 
-d="M131 -209q-36 0 -64 10l17 65q10 -3 21.5 -5t22.5 -2q51 0 83 29.5t50 74.5l15 36l-227 487h83l119 -269q14 -32 29.5 -69t30.5 -72h4q13 35 26.5 71.5t25.5 69.5l106 269h78l-214 -526q-14 -36 -32 -67t-43 -53.5t-57.5 -35.5t-73.5 -13zM207 588q-24 0 -39.5 16
-t-15.5 40q0 23 15.5 39.5t39.5 16.5t39.5 -16.5t15.5 -39.5q0 -24 -15.5 -40t-39.5 -16zM401 588q-24 0 -39.5 16t-15.5 40q0 23 15.5 39.5t39.5 16.5t39.5 -16.5t15.5 -39.5q0 -24 -15.5 -40t-39.5 -16z" />
-    <glyph glyph-name="uni1E8F" unicode="&#x1e8f;" 
-d="M131 -209q-36 0 -64 10l17 65q10 -3 21.5 -5t22.5 -2q51 0 83 29.5t50 74.5l15 36l-227 487h83l119 -269q14 -32 29.5 -69t30.5 -72h4q13 35 26.5 71.5t25.5 69.5l106 269h78l-214 -526q-14 -36 -32 -67t-43 -53.5t-57.5 -35.5t-73.5 -13zM304 588q-28 0 -47 17.5
-t-19 46.5t19 46.5t47 17.5t47 -17.5t19 -46.5t-19 -46.5t-47 -17.5z" />
-    <glyph glyph-name="uni1EF5" unicode="&#x1ef5;" 
-d="M131 -209q-36 0 -64 10l17 65q10 -3 21.5 -5t22.5 -2q51 0 83 29.5t50 74.5l15 36l-227 487h83l119 -269q14 -32 29.5 -69t30.5 -72h4q13 35 26.5 71.5t25.5 69.5l106 269h78l-214 -526q-14 -36 -32 -67t-43 -53.5t-57.5 -35.5t-73.5 -13zM458 -210q-28 0 -47 17.5
-t-19 46.5t19 46.5t47 17.5t47 -17.5t19 -46.5t-19 -46.5t-47 -17.5z" />
-    <glyph glyph-name="uni1EF7" unicode="&#x1ef7;" 
-d="M131 -209q-36 0 -64 10l17 65q10 -3 21.5 -5t22.5 -2q51 0 83 29.5t50 74.5l15 36l-227 487h83l119 -269q14 -32 29.5 -69t30.5 -72h4q13 35 26.5 71.5t25.5 69.5l106 269h78l-214 -526q-14 -36 -32 -67t-43 -53.5t-57.5 -35.5t-73.5 -13zM272 572l-9 40q24 6 40 16.5
-t16 30.5q0 43 -83 47l5 54q69 -2 106 -25.5t37 -68.5q0 -22 -9.5 -37.5t-25 -27t-35.5 -18.5t-42 -11z" />
-    <glyph glyph-name="uni1EF9" unicode="&#x1ef9;" 
-d="M131 -209q-36 0 -64 10l17 65q10 -3 21.5 -5t22.5 -2q51 0 83 29.5t50 74.5l15 36l-227 487h83l119 -269q14 -32 29.5 -69t30.5 -72h4q13 35 26.5 71.5t25.5 69.5l106 269h78l-214 -526q-14 -36 -32 -67t-43 -53.5t-57.5 -35.5t-73.5 -13zM376 577q-27 0 -46 13t-35 29
-t-30.5 29t-31.5 13q-23 0 -34 -22t-13 -57l-55 3q1 29 7.5 54t18.5 43t30.5 28.5t44.5 10.5q27 0 46 -13t35 -29t30.5 -29t32.5 -13q22 0 33 22t13 57l55 -4q-1 -29 -7.5 -53.5t-18.5 -42.5t-30.5 -28.5t-44.5 -10.5z" />
-    <glyph glyph-name="zacute" unicode="&#x17a;" 
-d="M71 0v44l333 375h-296v67h414v-44l-334 -375h343v-67h-460zM301 568l-43 41l142 168l58 -56z" />
-    <glyph glyph-name="zcaron" unicode="&#x17e;" 
-d="M71 0v44l333 375h-296v67h414v-44l-334 -375h343v-67h-460zM281 574l-114 140l35 32l118 -113h4l118 113l35 -32l-114 -140h-82z" />
-    <glyph glyph-name="zdotaccent" unicode="&#x17c;" 
-d="M71 0v44l333 375h-296v67h414v-44l-334 -375h343v-67h-460zM322 588q-28 0 -47 17.5t-19 46.5t19 46.5t47 17.5t47 -17.5t19 -46.5t-19 -46.5t-47 -17.5z" />
-    <glyph glyph-name="uni1E91" unicode="&#x1e91;" 
-d="M71 0v44l333 375h-296v67h414v-44l-334 -375h343v-67h-460zM202 568l-35 32l114 140h82l114 -140l-35 -32l-118 113h-4z" />
-    <glyph glyph-name="uni1E93" unicode="&#x1e93;" 
-d="M71 0v44l333 375h-296v67h414v-44l-334 -375h343v-67h-460zM314 -214q-28 0 -47 17.5t-19 46.5t19 46.5t47 17.5t47 -17.5t19 -46.5t-19 -46.5t-47 -17.5z" />
-    <glyph glyph-name="uni1E95" unicode="&#x1e95;" 
-d="M71 0v44l333 375h-296v67h414v-44l-334 -375h343v-67h-460zM181 -169v57h266v-57h-266z" />
-    <glyph glyph-name="eth" unicode="&#xf0;" 
-d="M298 -12q-47 0 -90 16t-76 46.5t-52.5 74t-19.5 97.5q0 51 17 92.5t47.5 71t72 45.5t91.5 16q47 0 89 -21t70 -59q-14 66 -42.5 116t-72.5 89l-152 -78l-30 52l130 66q-26 18 -54.5 34t-60.5 32l38 52q38 -18 74.5 -38.5t69.5 -45.5l137 70l30 -50l-118 -61
-q63 -61 101.5 -145t38.5 -203q0 -60 -16.5 -109.5t-47.5 -85t-75 -55t-99 -19.5zM300 56q40 0 69.5 14.5t49 41t29 62.5t9.5 80v22t-1 22q-35 47 -76 66t-80 19q-40 0 -70.5 -12t-51 -34t-31 -51.5t-10.5 -63.5q0 -38 13 -68.5t35 -52t52 -33.5t63 -12z" />
-    <glyph glyph-name="thorn" unicode="&#xfe;" 
-d="M93 -205v917h82v-201l-3 -87h3q34 34 76.5 54t85.5 20q49 0 87 -17.5t63.5 -50t39 -78t13.5 -102.5q0 -62 -18.5 -110.5t-49 -82.5t-70.5 -51.5t-83 -17.5q-36 0 -74 17t-70 46h-3l3 -92v-164h-82zM305 57q32 0 59.5 13.5t47.5 38t31.5 60.5t11.5 81q0 80 -32.5 129.5
-t-105.5 49.5q-32 0 -68 -17.5t-74 -55.5v-242q35 -31 69.5 -44t60.5 -13z" />
-    <glyph glyph-name="eng" unicode="&#x14b;" 
-d="M387 -183q-23 0 -42.5 4.5t-33.5 9.5l16 63q11 -4 24 -7t27 -3q38 0 50.5 27t12.5 75v305q0 69 -26 102.5t-86 33.5q-22 0 -40.5 -5.5t-36.5 -16.5t-37 -27.5t-40 -38.5v-339h-82v486h68l7 -83h4q38 41 82 68t101 27q87 0 127.5 -49.5t40.5 -146.5v-316
-q0 -78 -31.5 -123.5t-104.5 -45.5z" />
-    <glyph glyph-name="uni0237" unicode="&#x237;" 
-d="M194 -217q-38 0 -74 9.5t-65 23.5l27 61q26 -13 54.5 -20t56.5 -7q36 0 60 9t38 26t19.5 41.5t5.5 55.5v437h-226v67h308v-498q0 -45 -10 -82.5t-33.5 -65t-62.5 -42.5t-98 -15z" />
-    <glyph glyph-name="ij" unicode="&#x133;" 
-d="M112 0v486h82v-486h-82zM154 586q-26 0 -43.5 16t-17.5 42t17.5 42t43.5 16t43 -16t17 -42t-17 -42t-43 -16zM371 -217q-23 0 -40.5 4t-30.5 9l16 62q10 -3 21.5 -5.5t24.5 -2.5q37 0 48.5 25t11.5 70v541h82v-541q0 -74 -30 -118t-103 -44zM464 586q-26 0 -43.5 16
-t-17.5 42t17.5 42t43.5 16t43 -16t17 -42t-17 -42t-43 -16z" />
-    <glyph glyph-name="uni006C00B7006C" 
-d="M230 -12q-64 0 -97.5 44t-33.5 131v482h-107v67h182v-555q0 -54 18 -77.5t48 -23.5q11 0 22 4t26 11l21 -62q-20 -8 -37.5 -14.5t-41.5 -6.5zM294 272q-33 0 -55.5 22.5t-22.5 61.5t22.5 60.5t55.5 21.5t56.5 -21.5t23.5 -60.5t-23.5 -61.5t-56.5 -22.5zM540 -12
-q-63 0 -96.5 44t-33.5 131v482h-108v67h183v-555q0 -54 18 -77.5t48 -23.5q11 0 22 4t26 11l21 -62q-20 -8 -37.5 -14.5t-42.5 -6.5z" />
-    <glyph glyph-name="uni01330301" 
-d="M112 0v486h82v-486h-82zM371 -217q-23 0 -40.5 4t-30.5 9l16 62q10 -3 21.5 -5.5t24.5 -2.5q37 0 48.5 25t11.5 70v541h82v-541q0 -74 -30 -118t-103 -44zM123 568l-43 41l142 168l58 -56zM433 568l-43 41l142 168l58 -56z" />
-    <glyph glyph-name="uni0250" unicode="&#x250;" 
-d="M292 -12q-100 0 -149 54.5t-49 145.5v298h68l7 -66h3q40 32 90 55t101 23q34 0 64.5 -9t53 -27t35.5 -43.5t13 -58.5q0 -41 -20 -71.5t-62.5 -52.5t-109 -36t-160.5 -21q1 -25 8 -47.5t22 -39t39 -26.5t59 -10q48 0 92.5 18.5t78.5 39.5l32 -56q-18 -12 -42.5 -24.5
-t-52 -22.5t-58.5 -16.5t-63 -6.5zM177 232q78 6 130 17t83.5 26.5t45 35t13.5 43.5q0 21 -9 35.5t-23.5 24t-34 14t-40.5 4.5q-42 0 -82.5 -18.5t-82.5 -53.5v-128z" />
-    <glyph glyph-name="uni0252" unicode="&#x252;" 
-d="M320 -12q-36 0 -76 17.5t-75 48.5h-3l-7 -54h-66v486h68l7 -64h3q29 31 74 53.5t94 22.5t86.5 -17.5t63 -50t38.5 -78t13 -101.5q0 -62 -18 -111t-48.5 -83t-70.5 -51.5t-83 -17.5zM306 57q32 0 59 13t47 38t31.5 60t11.5 79q0 83 -32.5 132.5t-105.5 49.5
-q-36 0 -73 -18.5t-69 -54.5v-242q35 -32 69.5 -44.5t61.5 -12.5z" />
-    <glyph glyph-name="uni0253" unicode="&#x253;" 
-d="M321 -12q-36 0 -76.5 17t-75.5 49h-3l-7 -54h-66v537q0 42 11 76t33.5 59t56.5 38.5t79 13.5q26 0 50 -5.5t43 -13.5l-19 -63q-17 8 -34 11.5t-32 3.5q-54 0 -79 -31t-27 -87l-4 -122h4q33 34 76.5 54t86.5 20q49 0 87 -17.5t63.5 -49t38.5 -77t13 -100.5q0 -62 -18 -110
-t-48.5 -81t-70 -50.5t-82.5 -17.5zM307 57q31 0 58.5 13t47 37.5t31 59.5t11.5 79q0 79 -32.5 127.5t-104.5 48.5q-32 0 -69 -17.5t-74 -55.5v-235q35 -32 70.5 -44.5t61.5 -12.5z" />
-    <glyph glyph-name="uni0254" unicode="&#x254;" 
-d="M257 -12q-57 0 -107 20t-89 56l37 53q29 -26 67.5 -43.5t83.5 -17.5q42 0 76 13.5t58.5 38t38 58.5t13.5 76t-13 76.5t-36.5 59.5t-56 38.5t-71.5 13.5q-44 0 -79 -15t-66 -41l-42 53q31 29 78.5 50t113.5 21q52 0 98.5 -17t82 -50t56 -80.5t20.5 -108.5
-q0 -60 -20.5 -107.5t-55.5 -80t-83.5 -49.5t-103.5 -17z" />
-    <glyph glyph-name="uni0255" unicode="&#x255;" 
-d="M361 54q55 0 83 16t28 41q0 18 -14 29.5t-46 11.5q-29 0 -65 -22t-70 -61q37 -15 84 -15zM185 -102l-67 28q12 32 26.5 61.5t31.5 55.5q-45 32 -70.5 82.5t-25.5 116.5q0 61 21.5 108.5t58 80.5t84.5 50t101 17q63 0 107 -20t76 -51l-40 -51q-29 27 -63.5 42t-76.5 15
-q-40 0 -74 -14t-59 -39t-39.5 -60t-14.5 -78q0 -45 15.5 -80t43.5 -59q47 52 98 80t99 28q58 0 89 -27t31 -72q0 -52 -44.5 -88t-133.5 -36q-67 0 -125 23q-15 -26 -27.5 -54t-21.5 -59z" />
-    <glyph glyph-name="uni0256" unicode="&#x256;" 
-d="M546 -176q-63 0 -92 36.5t-29 100.5l2 100h-3q-29 -30 -69.5 -51.5t-85.5 -21.5q-47 0 -85.5 17t-66 49.5t-42.5 79.5t-15 108q0 59 18.5 106.5t49 80.5t70 51t82.5 18q44 0 78 -17t66 -46h3l-5 90v187h83v-733q0 -42 10.5 -65t39.5 -23q10 0 19 3t17 6l16 -63
-q-11 -5 -26.5 -9t-34.5 -4zM288 57q70 0 134 73v242q-33 31 -65 44t-63 13t-58 -13.5t-47.5 -38t-32 -58.5t-11.5 -76q0 -88 38 -137t105 -49z" />
-    <glyph glyph-name="uni0257" unicode="&#x257;" 
-d="M269 -12q-95 0 -152 66t-57 188q0 59 18 106.5t48.5 80.5t70 51t82.5 18t77.5 -16.5t66.5 -46.5h3l-2 90v56q0 68 32 106.5t98 38.5q17 0 31 -2.5t25 -7.5l-16 -63q-7 2 -14.5 4t-16.5 2q-33 0 -46 -25t-13 -67v-567h-68l-7 64h-3q-29 -31 -70.5 -53.5t-86.5 -22.5z
-M287 57q70 0 135 73v242q-33 31 -65 44t-64 13q-30 0 -57 -13.5t-47.5 -38t-32 -58.5t-11.5 -76q0 -88 37.5 -137t104.5 -49z" />
-    <glyph glyph-name="uni0258" unicode="&#x258;" 
-d="M290 433q-63 0 -105 -37t-48 -112h310q-11 72 -54 110.5t-103 38.5zM270 -12q-59 0 -105 17t-82 40l29 54q34 -21 69.5 -33t79.5 -12q37 0 70 10.5t58 31.5t40.5 52t19.5 72h-383q-2 9 -2.5 23t-0.5 27q0 51 16.5 93t47 72t73.5 46.5t95 16.5q48 0 91 -17.5t75 -50.5
-t51 -80.5t19 -107.5t-20.5 -107t-56 -79.5t-83 -50t-101.5 -17.5z" />
-    <glyph glyph-name="uni0251" unicode="&#x251;" 
-d="M270 -12q-47 0 -85.5 17t-66.5 49.5t-43 79.5t-15 108q0 59 18 106.5t49 80.5t71 51t84 18q43 0 79 -17t70 -49h3l7 54h66v-486h-68l-7 64h-3q-29 -31 -71 -53.5t-88 -22.5zM288 57q72 0 137 73v242q-33 31 -64.5 44t-63.5 13t-59.5 -13.5t-48 -38t-32.5 -58.5t-12 -76
-q0 -88 37.5 -137t105.5 -49z" />
-    <glyph glyph-name="uni0299" unicode="&#x299;" 
-d="M115 0v486h225q42 0 77 -7t59.5 -21.5t38.5 -38t14 -56.5q0 -41 -23 -66.5t-62 -37.5v-3q21 -5 40.5 -14t34 -23.5t23 -34t8.5 -45.5q0 -36 -15 -62t-42 -43.5t-64 -25.5t-81 -8h-233zM196 284h130q66 0 94.5 18.5t28.5 52.5t-27.5 49.5t-89.5 15.5h-136v-136zM196 66
-h143q66 0 97.5 18.5t31.5 59.5q0 76 -134 76h-138v-154z" />
-    <glyph glyph-name="uni0259" unicode="&#x259;" 
-d="M297 -12q-55 0 -97.5 17.5t-71.5 48.5t-44 74.5t-15 95.5q0 13 1 27t3 23h381q-8 79 -54 119t-121 40q-44 0 -80 -12.5t-69 -33.5l-30 54q37 23 83 40t105 17q55 0 101 -17.5t79 -50t51 -79.5t18 -107q0 -61 -18.5 -108.5t-51 -80.5t-76.5 -50t-94 -17zM295 54
-q66 0 108.5 39t50.5 117h-311q5 -78 44.5 -117t107.5 -39z" />
-    <glyph glyph-name="uni025A" unicode="&#x25a;" 
-d="M217 -12q-46 0 -81 16.5t-59 44.5t-37.5 66t-17.5 82l305 131q-17 56 -50.5 80.5t-76.5 24.5q-38 0 -66 -11.5t-54 -29.5l-29 56q32 23 69.5 36.5t86.5 13.5q68 0 118 -35t75 -104l73 32l43 -17q2 -29 6 -46.5t10 -27.5t14 -13.5t19 -3.5q10 0 19 5t15 10l22 -43
-q-11 -9 -26.5 -17t-35.5 -8q-29 0 -55.5 20t-36.5 74l-53 -22q2 -16 3.5 -32.5t1.5 -33.5q0 -54 -14.5 -99.5t-41 -78.5t-63.5 -51.5t-83 -18.5zM216 53q28 0 51.5 12t39.5 34t25 53t9 68q0 14 -0.5 26t-1.5 24l-245 -104q14 -60 45.5 -86.5t76.5 -26.5z" />
-    <glyph glyph-name="uni025B" unicode="&#x25b;" 
-d="M318 -12q-51 0 -92.5 9.5t-71.5 28.5t-46.5 46.5t-16.5 62.5q0 52 33 80t81 41v4q-42 16 -65.5 44t-23.5 64q0 33 15.5 57.5t43.5 40.5t66.5 24t84.5 8q61 0 109.5 -17t87.5 -45l-33 -54q-35 24 -72.5 37.5t-87.5 13.5q-64 0 -98 -18.5t-34 -56.5q0 -74 147 -74h53v-64
-h-67q-77 0 -117.5 -18t-40.5 -60q0 -43 41 -65.5t117 -22.5q49 0 90.5 13.5t77.5 45.5l36 -54q-46 -40 -98.5 -55.5t-118.5 -15.5z" />
-    <glyph glyph-name="uni025C" unicode="&#x25c;" 
-d="M280 -12q-60 0 -113 15.5t-105 57.5l36 54q42 -35 86 -48t89 -13q76 0 117 22.5t41 64.5t-38.5 60.5t-111.5 18.5h-84v64h72q70 0 104.5 19.5t34.5 55.5q0 74 -134 74q-53 0 -90.5 -13.5t-75.5 -41.5l-34 55q42 31 91.5 48t113.5 17q46 0 84.5 -8t66.5 -24t43.5 -41
-t15.5 -58q0 -36 -21.5 -63.5t-65.5 -44.5v-4q50 -13 80.5 -40.5t30.5 -80.5q0 -35 -17 -62t-47.5 -46t-73.5 -28.5t-95 -9.5z" />
-    <glyph glyph-name="uni025E" unicode="&#x25e;" 
-d="M327 -12q-57 0 -105.5 16t-84.5 48t-56 79.5t-20 109.5q0 63 21.5 111.5t57.5 80.5t83 48.5t98 16.5q40 0 75 -8t61 -24t40.5 -41t14.5 -58q0 -36 -21 -65t-63 -43v-4q22 -5 42 -15t35 -25t23.5 -35t8.5 -46q0 -70 -56.5 -108t-153.5 -38zM328 54q61 0 94 22.5t33 64.5
-q0 40 -35.5 59.5t-89.5 19.5h-35v64h27q52 0 81 20t29 54q0 38 -29.5 56.5t-78.5 18.5q-38 0 -71 -13t-57 -37.5t-38 -60.5t-14 -81q0 -93 49.5 -140t134.5 -47z" />
-    <glyph glyph-name="uni025F" unicode="&#x25f;" 
-d="M194 -217q-38 0 -74 9.5t-65 23.5l27 61q26 -13 54.5 -20t56.5 -7q36 0 60 9t38 26t19.5 41.5t5.5 55.5v224h-194v60l194 6v147h-226v67h308v-214h166v-66h-166v-218q0 -45 -10 -82.5t-33.5 -65t-62.5 -42.5t-98 -15z" />
-    <glyph glyph-name="uni0260" unicode="&#x260;" 
-d="M279 -216q-48 0 -95.5 13.5t-88.5 39.5l31 58q37 -24 76.5 -34.5t76.5 -10.5q70 0 106 34.5t37 93.5l4 97h-3q-28 -29 -68.5 -49.5t-85.5 -20.5q-47 0 -85.5 17t-66 48.5t-42.5 77t-15 102.5t18.5 103t49 78t70.5 49.5t83 17.5t78 -17t64 -46h3l-2 48q0 66 31.5 106
-t99.5 40q17 0 31 -2.5t25 -7.5l-16 -63q-14 6 -31 6q-33 0 -46 -25t-13 -67v-494q0 -91 -60 -141.5t-166 -50.5zM288 73q69 0 134 73v226q-33 32 -65 44.5t-63 12.5t-58 -13t-47.5 -37t-32 -56.5t-11.5 -71.5q0 -82 38 -130t105 -48z" />
-    <glyph glyph-name="uni0261" unicode="&#x261;" 
-d="M280 -217q-48 0 -96.5 13t-88.5 39l30 59q38 -24 78 -34.5t77 -10.5q70 0 107.5 35t39.5 94l2 97h-3q-29 -29 -70 -49.5t-86 -20.5q-47 0 -85.5 17t-66.5 48.5t-43 77t-15 102.5t18 103t48.5 78t71 49.5t84.5 17.5q43 0 80 -17.5t69 -48.5h3l7 54h66v-505q0 -92 -59 -145
-t-168 -53zM288 73q70 0 137 73v226q-33 31 -65 44t-64 13q-31 0 -58.5 -13t-48.5 -37t-33 -56.5t-12 -71.5q0 -82 38.5 -130t105.5 -48z" />
-    <glyph glyph-name="uni0262" unicode="&#x262;" 
-d="M339 -12q-54 0 -101.5 16.5t-83 49t-56 80t-20.5 109.5q0 60 21.5 107t58 80t84.5 50.5t102 17.5q65 0 107.5 -21t72.5 -49l-41 -52q-26 23 -56.5 40t-78.5 17q-38 0 -71.5 -12.5t-59 -37t-40.5 -60t-15 -80.5q0 -44 13.5 -79t38 -59.5t57.5 -37.5t72 -13q33 0 61.5 10
-t49.5 27v112h-134v59h206v-205q-31 -29 -79 -49t-108 -20z" />
-    <glyph glyph-name="uni0263" unicode="&#x263;" 
-d="M302 -224q-56 0 -86 32.5t-30 85.5q0 18 4.5 35t13 35.5t19.5 40t25 47.5l-197 434h84l113 -266q14 -35 25.5 -62t26.5 -61h4q15 34 27 61t26 62l112 266h80l-193 -434q13 -26 24.5 -47.5t20 -40t13 -35.5t4.5 -35q0 -53 -30 -85.5t-86 -32.5zM302 -167q23 0 34 17t11 42
-q0 26 -12 55.5t-31 63.5h-5q-18 -34 -30 -64.5t-12 -54.5q0 -25 11 -42t34 -17z" />
-    <glyph glyph-name="uni0264" unicode="&#x264;" 
-d="M300 -12q-86 0 -136 45t-50 124q0 56 36 107t93 99q-31 34 -56 50.5t-53 16.5t-48 -14l-26 60q16 11 38.5 16.5t45.5 5.5q41 0 78.5 -22.5t77.5 -64.5q39 42 77 64.5t79 22.5q23 0 45.5 -5.5t38.5 -16.5l-26 -60q-20 14 -48 14q-29 0 -53.5 -16.5t-55.5 -50.5
-q57 -48 93 -99t36 -107q0 -79 -50 -124t-136 -45zM300 56q50 0 78.5 29t28.5 74q0 44 -30 84.5t-77 80.5q-47 -40 -77 -80.5t-30 -84.5q0 -45 28.5 -74t78.5 -29z" />
-    <glyph glyph-name="uni0265" unicode="&#x265;" 
-d="M425 -205v174l4 114q-39 -40 -83 -67.5t-101 -27.5q-87 0 -127.5 49.5t-40.5 146.5v302h82v-291q0 -69 26 -102.5t86 -33.5q22 0 40.5 5.5t36.5 16.5t37 27.5t40 38.5v339h82v-691h-82z" />
-    <glyph glyph-name="uni0266" unicode="&#x266;" 
-d="M93 0v537q0 42 11 76t33.5 59t56.5 38.5t79 13.5q26 0 50 -5.5t43 -13.5l-19 -63q-17 8 -34 11.5t-32 3.5q-54 0 -79 -31t-27 -87l-6 -143h4q38 40 81.5 67.5t100.5 27.5q87 0 127.5 -50t40.5 -147v-294h-82v284q0 69 -26 102t-86 33q-22 0 -40.5 -5.5t-36.5 -16.5
-t-37 -27t-40 -38v-332h-82z" />
-    <glyph glyph-name="uni0267" unicode="&#x267;" 
-d="M384 -183q-24 0 -44 4.5t-34 9.5l16 63q11 -4 24.5 -7t28.5 -3q40 0 53 27t13 75v298q0 69 -26 102t-86 33q-22 0 -40.5 -5.5t-36.5 -16.5t-37 -27t-40 -38v-332h-82v537q0 42 11 76t33.5 59t56.5 38.5t79 13.5q26 0 49.5 -5.5t43.5 -13.5l-19 -63q-35 15 -66 15
-q-54 0 -79 -31t-27 -87l-6 -143h4q38 40 81.5 67.5t100.5 27.5q87 0 127.5 -50t40.5 -147v-308q0 -78 -31.5 -123.5t-107.5 -45.5z" />
-    <glyph glyph-name="uni029C" unicode="&#x29c;" 
-d="M93 0v486h82v-197h250v197h82v-486h-82v216h-250v-216h-82z" />
-    <glyph glyph-name="uni0268" unicode="&#x268;" 
-d="M132 210v56l184 6v147h-226v67h308v-214h166v-62h-166v-210h-82v210h-184zM348 588q-28 0 -47 17.5t-19 46.5t19 46.5t47 17.5t47 -17.5t19 -46.5t-19 -46.5t-47 -17.5z" />
-    <glyph glyph-name="uni026A" unicode="&#x26a;" 
-d="M86 0v67h172v352h-172v67h428v-67h-174v-352h174v-67h-428z" />
-    <glyph glyph-name="uni029D" unicode="&#x29d;" 
-d="M418 -250q-15 29 -30.5 52t-32.5 43q-24 -29 -62 -45.5t-92 -16.5q-70 0 -107.5 33t-37.5 78t33 72.5t96 27.5q32 0 65 -8t66 -25v2v456h-226v67h308v-506q0 -41 -10 -72q26 -24 49.5 -55.5t44.5 -72.5zM200 -152q40 0 64 13.5t36 34.5q-29 21 -58 30t-58 9
-q-32 0 -47 -11.5t-15 -28.5q0 -20 20 -33.5t58 -13.5zM348 588q-28 0 -47 17.5t-19 46.5t19 46.5t47 17.5t47 -17.5t19 -46.5t-19 -46.5t-47 -17.5z" />
-    <glyph glyph-name="uni029E" unicode="&#x29e;" 
-d="M412 -205v461h-4l-281 -256h-99l218 201l-192 285h85l159 -237l114 105v132h82v-691h-82z" />
-    <glyph glyph-name="uni026B" unicode="&#x26b;" 
-d="M407 -12q-78 0 -119 44t-41 131v482h-173v67h255v-555q0 -54 26 -77.5t70 -23.5q43 0 91 22l21 -61q-34 -14 -62 -21.5t-68 -7.5zM383 315q-33 0 -57 13t-44.5 29t-39.5 29t-41 13t-33 -21.5t-13 -56.5l-55 10q1 27 7 50.5t17.5 40.5t29 27t41.5 10q33 0 57.5 -13t45 -29
-t39 -29t40.5 -13t33 21.5t13 55.5l55 -9q-2 -27 -7.5 -50.5t-17 -40.5t-29 -27t-41.5 -10z" />
-    <glyph glyph-name="uni026C" unicode="&#x26c;" 
-d="M232 302q-84 0 -120 29.5t-36 76.5q0 38 25.5 62t64.5 24q28 0 47.5 -9.5t33.5 -24.5v185h-173v67h255v-346h140v-64h-140v-145q0 -54 26 -77.5t70 -23.5q43 0 91 22l21 -61q-34 -14 -62 -21.5t-68 -7.5q-78 0 -119 44t-41 131v139h-15zM214 366h33v6q0 23 -17.5 43.5
-t-55.5 20.5q-14 0 -23 -8.5t-9 -23.5q0 -38 72 -38z" />
-    <glyph glyph-name="uni026D" unicode="&#x26d;" 
-d="M406 -183q-78 0 -118.5 44t-40.5 131v653h-173v67h255v-726q0 -54 25.5 -77t69.5 -23q21 0 43 5t49 17l21 -62q-33 -12 -62 -20.5t-69 -8.5z" />
-    <glyph glyph-name="uni026E" unicode="&#x26e;" 
-d="M358 -217q-75 0 -123.5 24t-79.5 54l41 52q26 -25 62.5 -43.5t92.5 -18.5q28 0 53 10.5t43.5 30t29 47t10.5 61.5q0 62 -35 97t-97 35q-26 0 -39.5 -3.5t-30.5 -11.5l-34 44l195 258h-285v-419h-82v712h82v-226h388v-44l-191 -252q52 4 91.5 -9.5t66.5 -39.5t41 -62
-t14 -77q0 -53 -18 -93.5t-47.5 -68.5t-68 -42.5t-79.5 -14.5z" />
-    <glyph glyph-name="uni029F" unicode="&#x29f;" 
-d="M148 0v486h82v-419h302v-67h-384z" />
-    <glyph glyph-name="uni026F" unicode="&#x26f;" 
-d="M542 486v-486h-66l-7 64h-2q-19 -34 -44 -55t-67 -21q-71 0 -92 84q-21 -39 -46.5 -61.5t-67.5 -22.5q-51 0 -79.5 38.5t-28.5 111.5v348h82v-342q0 -85 52 -85q26 0 42 18.5t36 56.5v352h76v-342q0 -42 11.5 -63.5t38.5 -21.5q26 0 44 18.5t36 56.5v352h82z" />
-    <glyph glyph-name="uni0270" unicode="&#x270;" 
-d="M464 -205v172l6 100h-4q-20 -37 -44 -58t-66 -21q-71 0 -92 84q-21 -39 -46.5 -61.5t-67.5 -22.5q-51 0 -79.5 38.5t-28.5 111.5v348h82v-342q0 -85 52 -85q26 0 42 18.5t36 56.5v352h76v-342q0 -42 11.5 -63.5t38.5 -21.5q26 0 44 18.5t36 56.5v352h82v-691h-78z" />
-    <glyph glyph-name="uni0271" unicode="&#x271;" 
-d="M435 -183q-20 0 -37 3.5t-29 8.5l16 63q8 -3 19 -5.5t22 -2.5q32 0 41 24t9 64v370q0 85 -52 85q-26 0 -42 -18.5t-36 -56.5v-352h-76v342q0 42 -11.5 63.5t-38.5 21.5q-26 0 -44 -18.5t-36 -56.5v-352h-82v486h66l7 -64h2q19 34 44 55t67 21q71 0 92 -84
-q21 39 46.5 61.5t67.5 22.5q51 0 79.5 -38.5t28.5 -111.5v-380q0 -71 -28.5 -111t-94.5 -40z" />
-    <glyph glyph-name="uni0272" unicode="&#x272;" 
-d="M56 -183q-19 0 -34.5 4t-26.5 9l16 63q8 -3 17 -6t19 -3q29 0 39.5 23t10.5 65v514h68l7 -83h4q38 41 81 68t99 27q86 0 126.5 -49.5t40.5 -146.5v-302h-82v291q0 72 -26 104t-83 32q-22 0 -40.5 -5.5t-36.5 -16.5t-36 -27.5t-39 -38.5v-367q0 -72 -28 -113.5t-96 -41.5z
-" />
-    <glyph glyph-name="uni0273" unicode="&#x273;" 
-d="M560 -183q-68 0 -95.5 41.5t-27.5 113.5v319q0 72 -26 104t-84 32q-43 0 -76 -22t-76 -66v-339h-82v486h68l7 -83h4q38 41 80.5 68t98.5 27q87 0 127.5 -49.5t40.5 -146.5v-330q0 -42 10.5 -65t39.5 -23q10 0 19 3t17 6l16 -63q-11 -5 -26.5 -9t-34.5 -4z" />
-    <glyph glyph-name="uni0274" unicode="&#x274;" 
-d="M96 0v486h79l188 -275q15 -23 33 -52t34 -52h4q-3 48 -5.5 93t-2.5 84v202h78v-486h-79l-188 275q-15 23 -33.5 52t-33.5 52h-4q3 -48 5.5 -93t2.5 -84v-202h-78z" />
-    <glyph glyph-name="uni0275" unicode="&#x275;" 
-d="M300 -12q-48 0 -91.5 16t-76.5 48t-52.5 79.5t-19.5 110.5t19.5 111t52.5 80.5t76.5 48.5t91.5 16t91.5 -16t76.5 -48.5t52.5 -80.5t19.5 -111t-19.5 -110.5t-52.5 -79.5t-76.5 -48t-91.5 -16zM300 434q-63 0 -105.5 -39t-53.5 -111h318q-11 72 -53.5 111t-105.5 39z
-M300 53q68 0 111.5 43.5t49.5 123.5h-322q6 -80 49.5 -123.5t111.5 -43.5z" />
-    <glyph glyph-name="uni0276" unicode="&#x276;" 
-d="M238 -12q-42 0 -79.5 16.5t-65 48.5t-44 79.5t-16.5 110.5t16.5 110.5t44 79.5t65 48.5t79.5 16.5q24 0 46.5 -2t51.5 -10h241v-68h-190v-134h153v-64h-153v-152h200v-68h-251q-28 -7 -51 -9.5t-47 -2.5zM245 55q15 0 32.5 3.5t33.5 8.5v351q-15 5 -32.5 8.5t-33.5 3.5
-q-27 0 -50 -11.5t-40 -35t-27 -58.5t-10 -82q0 -48 10 -83.5t27 -59t40 -34.5t50 -11z" />
-    <glyph glyph-name="uni0278" unicode="&#x278;" 
-d="M128 244q0 -85 37.5 -133.5t94.5 -53.5v372q-57 -5 -94.5 -52.5t-37.5 -132.5zM472 244q0 85 -37.5 132.5t-94.5 52.5v-372q57 5 94.5 53.5t37.5 133.5zM260 -205v196q-44 3 -83 20.5t-68.5 49.5t-47 78t-17.5 105q0 58 17.5 104t47 77.5t68.5 49t83 20.5v217h80v-217
-q43 -3 82.5 -20.5t69 -49t47 -77.5t17.5 -104q0 -59 -17.5 -105t-47 -78t-69 -49.5t-82.5 -20.5v-196h-80z" />
-    <glyph glyph-name="uni0279" unicode="&#x279;" 
-d="M454 486v-486h-68l-7 115h-3q-38 -59 -93.5 -93t-123.5 -34q-27 0 -50 4.5t-46 15.5l19 71q26 -9 43.5 -13t46.5 -4q55 0 105.5 31.5t94.5 107.5v285h82z" />
-    <glyph glyph-name="uni027A" unicode="&#x27a;" 
-d="M159 -12q-27 0 -50 4.5t-46 15.5l19 71q26 -9 43.5 -13t46.5 -4q55 0 105.5 31.5t94.5 107.5v511h82v-712h-68l-7 115h-3q-38 -59 -93.5 -93t-123.5 -34z" />
-    <glyph glyph-name="uni027B" unicode="&#x27b;" 
-d="M436 -183q-74 0 -104 41.5t-30 116.5v117h-3q-25 -48 -62.5 -76t-86.5 -28q-21 0 -42.5 4.5t-44.5 15.5l19 71q22 -9 37.5 -13t39.5 -4q37 0 73.5 26.5t62.5 92.5v305h82v-501q0 -54 15 -77.5t53 -23.5q14 0 29.5 4.5t27.5 9.5l18 -62q-15 -8 -38 -13.5t-46 -5.5z" />
-    <glyph glyph-name="uni027D" unicode="&#x27d;" 
-d="M333 -183q-53 0 -89 14.5t-57.5 41t-31 63.5t-9.5 82v468h68l7 -115h3q38 59 93.5 93t123.5 34q27 0 50 -4.5t46 -15.5l-19 -71q-26 9 -43.5 13t-46.5 4q-55 0 -105.5 -31.5t-94.5 -107.5v-268q0 -33 6 -57.5t20 -41.5t38 -25.5t59 -8.5t63 6t54 16l17 -60
-q-33 -12 -68.5 -20.5t-83.5 -8.5z" />
-    <glyph glyph-name="uni027E" unicode="&#x27e;" 
-d="M146 0v249q0 60 18 106.5t51 78t80 48t106 16.5q81 0 136 -20l-19 -71q-31 11 -55 14.5t-53 3.5q-36 0 -69 -11t-58 -34.5t-40 -60t-15 -87.5v-232h-82z" />
-    <glyph glyph-name="uni0280" unicode="&#x280;" 
-d="M99 0v486h240q39 0 73 -7.5t58.5 -24.5t38.5 -44.5t14 -67.5q0 -63 -36 -98.5t-87 -47.5l145 -196h-93l-137 190h-133v-190h-83zM182 254h143q55 0 85.5 21.5t30.5 64.5q0 44 -30.5 62t-85.5 18h-143v-166z" />
-    <glyph glyph-name="uni0281" unicode="&#x281;" 
-d="M501 486v-486h-240q-39 0 -73 7.5t-58.5 24.5t-38.5 44.5t-14 67.5q0 63 36 98.5t87 47.5l-145 196h93l137 -190h133v190h83zM418 232h-143q-55 0 -85.5 -21.5t-30.5 -64.5q0 -44 30.5 -62t85.5 -18h143v166z" />
-    <glyph glyph-name="uni0282" unicode="&#x282;" 
-d="M197 -183q-67 0 -96.5 41t-29.5 121v85l38 54q42 -30 92.5 -48t118.5 -18q62 0 92.5 22.5t30.5 53.5q0 14 -5 26t-21.5 23t-46.5 21t-79 20q-95 20 -142.5 53.5t-47.5 88.5q0 29 13 54.5t38.5 44t63 29t87.5 10.5q56 0 108 -18.5t88 -43.5l-40 -53q-34 23 -75 37t-88 14
-q-62 0 -87 -21t-25 -49q0 -32 33 -48.5t108 -32.5q61 -13 100 -27.5t61.5 -32.5t31 -40t8.5 -50q0 -30 -14 -56t-41.5 -46t-68 -31.5t-92.5 -11.5q-45 0 -87 9.5t-78 25.5v-53q0 -39 12.5 -63t48.5 -24q13 0 25 2.5t21 5.5l16 -61q-12 -5 -30 -9t-41 -4z" />
-    <glyph glyph-name="uni0283" unicode="&#x283;" 
-d="M187 -217q-40 0 -71 9t-60 23l26 61q23 -11 46 -18.5t49 -7.5q25 0 41.5 8.5t25.5 24.5t12.5 38.5t3.5 49.5v567q0 88 38 138t128 50q36 0 62 -8.5t53 -22.5l-23 -61q-22 11 -41 18t-42 7q-28 0 -46 -8.5t-28.5 -24.5t-14.5 -38.5t-4 -49.5v-568q0 -88 -35 -137.5
-t-120 -49.5z" />
-    <glyph glyph-name="uni0284" unicode="&#x284;" 
-d="M187 -217q-40 0 -71 9t-60 23l26 61q23 -11 46 -18.5t49 -7.5q25 0 41.5 8.5t25.5 24.5t12.5 38.5t3.5 49.5v251h-176v58l176 6v252q0 88 38 138t128 50q36 0 62 -8.5t53 -22.5l-23 -61q-22 11 -41 18t-42 7q-28 0 -46 -8.5t-28.5 -24.5t-14.5 -38.5t-4 -49.5v-252h174
-v-64h-174v-252q0 -88 -35 -137.5t-120 -49.5z" />
-    <glyph glyph-name="uni0287" unicode="&#x287;" 
-d="M206 498q53 0 89 -14.5t58 -41t31.5 -63.5t9.5 -82v-230h137v-62l-140 -5l-11 -156h-68v156h-239v67h239v231q0 65 -26.5 99t-96.5 34q-35 0 -63 -6t-54 -16l-18 60q33 12 69.5 20.5t82.5 8.5z" />
-    <glyph glyph-name="uni0288" unicode="&#x288;" 
-d="M393 -183q-53 0 -89 14.5t-57.5 41t-31 63.5t-9.5 82v401h-137v62l140 5l11 156h68v-156h239v-67h-239v-402q0 -33 6 -57.5t20 -41.5t38 -25.5t59 -8.5t63 6t54 16l18 -60q-33 -12 -73 -20.5t-80 -8.5z" />
-    <glyph glyph-name="uni0289" unicode="&#x289;" 
-d="M272 60q38 0 66.5 19t63.5 63v112h-222v-66q0 -68 22 -98t70 -30zM246 -12q-77 0 -112.5 48t-35.5 142v76h-96v58l96 6v168h82v-168h222v168h82v-168h102v-64h-102v-254h-68l-6 76h-2q-35 -41 -73 -64.5t-89 -23.5z" />
-    <glyph glyph-name="uni028A" unicode="&#x28a;" 
-d="M300 -12q-57 0 -101 18.5t-74.5 49.5t-46.5 71t-16 82q0 37 8.5 68.5t22 57t30 46t33.5 36.5v2h-106v67h195v-53q-43 -36 -71 -85t-28 -122q0 -34 9.5 -65t29 -54t48.5 -37t67 -14t67 14t48.5 37t29 54t9.5 65q0 73 -28 122t-71 85v53h195v-67h-106v-2q16 -16 33 -36.5
-t30.5 -46t22 -57t8.5 -68.5q0 -42 -16 -82t-46.5 -71t-74.5 -49.5t-101 -18.5z" />
-    <glyph glyph-name="uni028B" unicode="&#x28b;" 
-d="M297 -12q-47 0 -87.5 13t-70 40.5t-46 70t-16.5 100.5v274h83v-267q0 -44 11 -75t30 -50.5t44.5 -28.5t54.5 -9q37 0 66 17t49 47.5t30 71.5t10 89q0 74 -21.5 112.5t-66.5 38.5q-14 0 -19.5 -1.5t-15.5 -4.5l-13 64q14 4 27.5 6t37.5 2q71 0 113.5 -50t42.5 -155
-q0 -66 -15.5 -122t-46 -96.5t-76 -63.5t-105.5 -23z" />
-    <glyph glyph-name="uni028C" unicode="&#x28c;" 
-d="M344 486l205 -486h-83l-112 276q-15 37 -28.5 72.5t-26.5 70.5h-4q-13 -35 -25.5 -70.5t-27.5 -72.5l-112 -276h-79l201 486h92z" />
-    <glyph glyph-name="uni028D" unicode="&#x28d;" 
-d="M486 486l106 -486h-82l-58 282q-7 35 -12 67t-10 67h-4q-5 -35 -12.5 -67.5t-15.5 -66.5l-60 -252h-82l-58 252q-8 35 -16.5 67t-13.5 67h-4q-6 -35 -10.5 -67t-11.5 -67l-58 -282h-76l104 486h106l56 -232q12 -51 24 -144h4q12 93 24 144l54 232h106z" />
-    <glyph glyph-name="uni028E" unicode="&#x28e;" 
-d="M49 0l226 554q13 36 31 67t42 54t55 36t70 13q17 0 33.5 -2.5t30.5 -7.5l-18 -65q-9 3 -19.5 5t-22.5 2q-48 0 -78.5 -30t-47.5 -76l-27 -63l227 -487h-83l-119 269q-14 32 -29.5 69t-30.5 72h-4q-13 -35 -26.5 -71.5t-25.5 -69.5l-106 -269h-78z" />
-    <glyph glyph-name="uni028F" unicode="&#x28f;" 
-d="M260 0v164l-203 322h89l85 -138q17 -32 34.5 -60.5t34.5 -61.5h4q17 33 33 61.5t36 60.5l84 138h88l-203 -322v-164h-82z" />
-    <glyph glyph-name="uni0290" unicode="&#x290;" 
-d="M559 -183q-68 0 -96 40.5t-28 106.5v36h-364v44l326 375h-289v67h407v-44l-327 -375h329v-95q0 -42 11 -65t40 -23q10 0 19 3t17 6l16 -63q-11 -5 -26.5 -9t-34.5 -4z" />
-    <glyph glyph-name="uni0291" unicode="&#x291;" 
-d="M358 -116l-62 10q5 29 10.5 55.5t12.5 50.5h-248v44l324 375h-287v67h395v-44l-323 -375q45 -1 83.5 -1.5t75.5 -0.5q57 151 153 151q39 0 64.5 -24.5t25.5 -65.5q0 -54 -39 -90t-117 -36h-45q-6 -25 -12 -53.5t-11 -62.5zM445 64q37 0 56 17.5t19 40.5q0 17 -9.5 25.5
-t-24.5 8.5q-21 0 -42.5 -21t-41.5 -71h43z" />
-    <glyph glyph-name="uni0292" unicode="&#x292;" 
-d="M288 -217q-42 0 -76 8t-62 21.5t-50 30t-41 34.5l40 53q16 -15 34.5 -29.5t40.5 -25.5t48.5 -17.5t58.5 -6.5q33 0 63 11t52 31t35 48t13 63q0 65 -43 101.5t-124 36.5q-16 0 -28 -1.5t-22.5 -4.5t-21 -8t-24.5 -11l-33 46l251 256h-300v67h407v-44l-238 -248q24 6 43 6
-q51 0 91 -14t67.5 -39.5t42.5 -61.5t15 -79q0 -54 -20 -95.5t-53 -70t-76.5 -43t-89.5 -14.5z" />
-    <glyph glyph-name="uni02A4" unicode="&#x2a4;" 
-d="M172 57q26 0 45.5 21t34.5 54v240q-17 27 -33.5 42t-40.5 15q-21 0 -39 -13.5t-30.5 -38t-19.5 -59t-7 -75.5q0 -87 22.5 -136.5t67.5 -49.5zM450 -217q-50 0 -83 16.5t-59 42.5l39 52q20 -20 42.5 -31.5t54.5 -11.5q41 0 66.5 37t25.5 112q0 63 -22.5 97.5t-66.5 34.5
-q-16 0 -26 -3.5t-24 -11.5l-33 52l146 250h-182v-419h-59l-7 58h-3q-16 -27 -42.5 -48.5t-61.5 -21.5q-34 0 -62.5 17t-49 50t-32 80t-11.5 107q0 58 13.5 105.5t36 81t52 51.5t62.5 18q30 0 52.5 -15t37.5 -41h2l-4 93v177h76v-226h269v-44l-141 -247q4 1 12 1
-q36 0 63.5 -15.5t47 -42t29.5 -62.5t10 -76q0 -52 -13 -92.5t-35.5 -68t-53.5 -42t-66 -14.5z" />
-    <glyph glyph-name="uni02A6" unicode="&#x2a6;" 
-d="M328 -12q-65 0 -109 12.5t-71 36.5t-38.5 59t-11.5 80v243h-73v62l76 5l10 156h69v-156h188q30 12 68 12q37 0 69.5 -12.5t58.5 -35.5l-32 -48q-22 17 -43 26t-47 9q-29 0 -46.5 -15t-17.5 -43q0 -23 14 -38.5t35.5 -28.5t46.5 -27t46.5 -34t35.5 -48t14 -70
-q0 -34 -13 -61t-41.5 -45.5t-74.5 -28.5t-113 -10zM332 52q92 0 127.5 22t35.5 60q0 31 -14.5 52t-36 36.5t-47 29.5t-47 31t-36 40t-14.5 58q0 20 5 38h-125v-244q0 -33 7.5 -56t25.5 -38t47 -22t72 -7z" />
-    <glyph glyph-name="uni02A7" unicode="&#x2a7;" 
-d="M353 -217q-22 0 -39.5 4t-30.5 9l17 62q9 -3 21 -5.5t25 -2.5q34 0 45 25t11 70v474h-199v-270q0 -45 15 -69.5t54 -24.5q14 0 29 4t29 9l15 -62q-20 -7 -42.5 -12.5t-45.5 -5.5q-38 0 -64.5 12t-42.5 33t-23 51t-7 66v269h-72v62l75 5l11 156h69v-156h199v80
-q0 73 32.5 116.5t108.5 43.5q19 0 34 -4t26 -9l-16 -63q-8 3 -17 6t-19 3q-41 0 -54 -25.5t-13 -70.5v-618q0 -74 -30.5 -118t-100.5 -44z" />
-    <glyph glyph-name="uni0294" unicode="&#x294;" 
-d="M239 0v311q49 28 84.5 52t58 49t33.5 51.5t11 59.5q0 61 -38.5 97t-110.5 36q-57 0 -96.5 -24.5t-65.5 -56.5l-44 53q16 18 37 35.5t47 31t58 21.5t70 8q47 0 88.5 -12.5t72 -38t48.5 -63t18 -86.5q0 -44 -14 -78t-39 -63.5t-60 -55t-76 -52.5v-275h-82z" />
-    <glyph glyph-name="uni0295" unicode="&#x295;" 
-d="M278 0v275q-42 27 -76.5 52.5t-59.5 55t-39 63.5t-14 78q0 49 17.5 86.5t48.5 63t72 38t88 12.5q39 0 70.5 -8t58 -21.5t47 -31t36.5 -35.5l-43 -53q-27 32 -66.5 56.5t-96.5 24.5q-71 0 -110 -36t-39 -97q0 -33 11 -59.5t34 -51.5t58.5 -49t84.5 -52v-311h-82z" />
-    <glyph glyph-name="uni02A1" unicode="&#x2a1;" 
-d="M239 0v251h-165v58l76 5h102q83 48 128.5 98.5t45.5 110.5q0 61 -37.5 97t-107.5 36q-58 0 -98 -25t-68 -56l-44 53q16 18 37.5 35t48 30.5t59 22t71.5 8.5q46 0 87 -12.5t71 -38t47.5 -63t17.5 -86.5q0 -36 -12 -66t-31.5 -55.5t-46 -47.5t-54.5 -41h152v-63h-197v-251
-h-82z" />
-    <glyph glyph-name="uni02A2" unicode="&#x2a2;" 
-d="M279 0v251h-197v58l76 5h76q-29 19 -55 41t-45.5 47.5t-31.5 55.5t-12 66q0 49 17.5 86.5t47.5 63t70.5 38t87.5 12.5q39 0 71.5 -8.5t59 -22t47.5 -30.5t38 -35l-44 -53q-28 31 -68 56t-98 25q-70 0 -108 -36t-38 -97q0 -60 46 -110.5t128 -98.5h179v-63h-165v-251h-82z
-" />
-    <glyph glyph-name="uni01C2" unicode="&#x1c2;" 
-d="M260 -205v359h-176v58l176 4v108h-176v58l176 4v326h80v-326h176v-62h-176v-108h176v-62h-176v-359h-80z" />
-    <glyph glyph-name="uni0298" unicode="&#x298;" 
-d="M300 -12q-55 0 -99 22t-75.5 67.5t-48.5 115.5t-17 166q0 89 17 157.5t48.5 114.5t75.5 69.5t99 23.5t99.5 -23.5t76 -69.5t48.5 -114.5t17 -157.5q0 -96 -17 -166t-48.5 -115.5t-76 -67.5t-99.5 -22zM300 56q34 0 64 16t51.5 52t34 93.5t12.5 141.5q0 76 -12.5 132
-t-34 93t-51.5 54.5t-64 17.5q-35 0 -64.5 -17.5t-51 -54.5t-34 -93t-12.5 -132q0 -84 12.5 -141.5t34 -93.5t51 -52t64.5 -16zM300 296q-25 0 -43.5 18t-18.5 45q0 29 18.5 46.5t43.5 17.5t43.5 -17.5t18.5 -46.5q0 -27 -18.5 -45t-43.5 -18z" />
-    <glyph glyph-name="uni014A.a" 
-d="M397 -165q-22 0 -39.5 3.5t-29.5 8.5l16 66q9 -3 20 -6t22 -3q32 0 42 26t10 70h-12l-210 412l-63 136h-2q2 -51 6.5 -102.5t4.5 -102.5v-343h-80v656h92l210 -412l63 -136h2q-2 49 -6.5 102.5t-4.5 105.5v340h80v-659q0 -75 -28.5 -118.5t-92.5 -43.5z" />
-    <glyph glyph-name="a.a" 
-d="M270 -12q-47 0 -85.5 17t-66.5 49.5t-43 79.5t-15 108q0 59 18 106.5t49 80.5t71 51t84 18q43 0 79 -17t70 -49h3l7 54h66v-486h-68l-7 64h-3q-29 -31 -71 -53.5t-88 -22.5zM288 57q72 0 137 73v242q-33 31 -64.5 44t-63.5 13t-59.5 -13.5t-48 -38t-32.5 -58.5t-12 -76
-q0 -88 37.5 -137t105.5 -49z" />
-    <glyph glyph-name="agrave.a" 
-d="M270 -12q-47 0 -85.5 17t-66.5 49.5t-43 79.5t-15 108q0 59 18 106.5t49 80.5t71 51t84 18q43 0 79 -17t70 -49h3l7 54h66v-486h-68l-7 64h-3q-29 -31 -71 -53.5t-88 -22.5zM288 57q72 0 137 73v242q-33 31 -64.5 44t-63.5 13t-59.5 -13.5t-48 -38t-32.5 -58.5t-12 -76
-q0 -88 37.5 -137t105.5 -49zM325 568l-157 153l58 56l142 -168z" />
-    <glyph glyph-name="aacute.a" 
-d="M270 -12q-47 0 -85.5 17t-66.5 49.5t-43 79.5t-15 108q0 59 18 106.5t49 80.5t71 51t84 18q43 0 79 -17t70 -49h3l7 54h66v-486h-68l-7 64h-3q-29 -31 -71 -53.5t-88 -22.5zM288 57q72 0 137 73v242q-33 31 -64.5 44t-63.5 13t-59.5 -13.5t-48 -38t-32.5 -58.5t-12 -76
-q0 -88 37.5 -137t105.5 -49zM283 568l-43 41l142 168l58 -56z" />
-    <glyph glyph-name="acircumflex.a" 
-d="M270 -12q-47 0 -85.5 17t-66.5 49.5t-43 79.5t-15 108q0 59 18 106.5t49 80.5t71 51t84 18q43 0 79 -17t70 -49h3l7 54h66v-486h-68l-7 64h-3q-29 -31 -71 -53.5t-88 -22.5zM288 57q72 0 137 73v242q-33 31 -64.5 44t-63.5 13t-59.5 -13.5t-48 -38t-32.5 -58.5t-12 -76
-q0 -88 37.5 -137t105.5 -49zM184 568l-35 32l114 140h82l114 -140l-35 -32l-118 113h-4z" />
-    <glyph glyph-name="atilde.a" 
-d="M270 -12q-47 0 -85.5 17t-66.5 49.5t-43 79.5t-15 108q0 59 18 106.5t49 80.5t71 51t84 18q43 0 79 -17t70 -49h3l7 54h66v-486h-68l-7 64h-3q-29 -31 -71 -53.5t-88 -22.5zM288 57q72 0 137 73v242q-33 31 -64.5 44t-63.5 13t-59.5 -13.5t-48 -38t-32.5 -58.5t-12 -76
-q0 -88 37.5 -137t105.5 -49zM376 577q-27 0 -46 13t-35 29t-30.5 29t-31.5 13q-23 0 -34 -22t-13 -57l-55 3q1 29 7.5 54t18.5 43t30.5 28.5t44.5 10.5q27 0 46 -13t35 -29t30.5 -29t32.5 -13q22 0 33 22t13 57l55 -4q-1 -29 -7.5 -53.5t-18.5 -42.5t-30.5 -28.5
-t-44.5 -10.5z" />
-    <glyph glyph-name="adieresis.a" 
-d="M270 -12q-47 0 -85.5 17t-66.5 49.5t-43 79.5t-15 108q0 59 18 106.5t49 80.5t71 51t84 18q43 0 79 -17t70 -49h3l7 54h66v-486h-68l-7 64h-3q-29 -31 -71 -53.5t-88 -22.5zM288 57q72 0 137 73v242q-33 31 -64.5 44t-63.5 13t-59.5 -13.5t-48 -38t-32.5 -58.5t-12 -76
-q0 -88 37.5 -137t105.5 -49zM207 588q-24 0 -39.5 16t-15.5 40q0 23 15.5 39.5t39.5 16.5t39.5 -16.5t15.5 -39.5q0 -24 -15.5 -40t-39.5 -16zM401 588q-24 0 -39.5 16t-15.5 40q0 23 15.5 39.5t39.5 16.5t39.5 -16.5t15.5 -39.5q0 -24 -15.5 -40t-39.5 -16z" />
-    <glyph glyph-name="amacron.a" 
-d="M270 -12q-47 0 -85.5 17t-66.5 49.5t-43 79.5t-15 108q0 59 18 106.5t49 80.5t71 51t84 18q43 0 79 -17t70 -49h3l7 54h66v-486h-68l-7 64h-3q-29 -31 -71 -53.5t-88 -22.5zM288 57q72 0 137 73v242q-33 31 -64.5 44t-63.5 13t-59.5 -13.5t-48 -38t-32.5 -58.5t-12 -76
-q0 -88 37.5 -137t105.5 -49zM171 601v57h266v-57h-266z" />
-    <glyph glyph-name="abreve.a" 
-d="M270 -12q-47 0 -85.5 17t-66.5 49.5t-43 79.5t-15 108q0 59 18 106.5t49 80.5t71 51t84 18q43 0 79 -17t70 -49h3l7 54h66v-486h-68l-7 64h-3q-29 -31 -71 -53.5t-88 -22.5zM288 57q72 0 137 73v242q-33 31 -64.5 44t-63.5 13t-59.5 -13.5t-48 -38t-32.5 -58.5t-12 -76
-q0 -88 37.5 -137t105.5 -49zM304 571q-40 0 -69 13t-47.5 34.5t-28 48.5t-11.5 55l51 8q3 -19 10.5 -37.5t20.5 -33.5t31.5 -24t42.5 -9t42.5 9t31.5 24t20.5 33.5t10.5 37.5l51 -8q-2 -28 -11.5 -55t-28.5 -48.5t-47.5 -34.5t-68.5 -13z" />
-    <glyph glyph-name="aring.a" 
-d="M270 -12q-47 0 -85.5 17t-66.5 49.5t-43 79.5t-15 108q0 59 18 106.5t49 80.5t71 51t84 18q43 0 79 -17t70 -49h3l7 54h66v-486h-68l-7 64h-3q-29 -31 -71 -53.5t-88 -22.5zM288 57q72 0 137 73v242q-33 31 -64.5 44t-63.5 13t-59.5 -13.5t-48 -38t-32.5 -58.5t-12 -76
-q0 -88 37.5 -137t105.5 -49zM304 569q-52 0 -81 27.5t-29 68.5t29 68.5t81 27.5t81 -27.5t29 -68.5t-29 -68.5t-81 -27.5zM304 606q24 0 40.5 17t16.5 42q0 26 -16.5 42.5t-40.5 16.5t-40.5 -16.5t-16.5 -42.5q0 -25 16.5 -42t40.5 -17z" />
-    <glyph glyph-name="aringacute.a" 
-d="M270 -12q-47 0 -85.5 17t-66.5 49.5t-43 79.5t-15 108q0 59 18 106.5t49 80.5t71 51t84 18q43 0 79 -17t70 -49h3l7 54h66v-486h-68l-7 64h-3q-29 -31 -71 -53.5t-88 -22.5zM288 57q72 0 137 73v242q-33 31 -64.5 44t-63.5 13t-59.5 -13.5t-48 -38t-32.5 -58.5t-12 -76
-q0 -88 37.5 -137t105.5 -49zM304 569q-52 0 -81 27.5t-29 68.5q0 24 10 44t30 33l139 101l36 -50l-74 -35q38 -8 58.5 -33.5t20.5 -59.5q0 -41 -29 -68.5t-81 -27.5zM304 606q24 0 40.5 17t16.5 42q0 26 -16.5 42.5t-40.5 16.5t-40.5 -16.5t-16.5 -42.5q0 -25 16.5 -42
-t40.5 -17z" />
-    <glyph glyph-name="uni01CE.a" 
-d="M270 -12q-47 0 -85.5 17t-66.5 49.5t-43 79.5t-15 108q0 59 18 106.5t49 80.5t71 51t84 18q43 0 79 -17t70 -49h3l7 54h66v-486h-68l-7 64h-3q-29 -31 -71 -53.5t-88 -22.5zM288 57q72 0 137 73v242q-33 31 -64.5 44t-63.5 13t-59.5 -13.5t-48 -38t-32.5 -58.5t-12 -76
-q0 -88 37.5 -137t105.5 -49zM263 574l-114 140l35 32l118 -113h4l118 113l35 -32l-114 -140h-82z" />
-    <glyph glyph-name="uni1EA1.a" 
-d="M270 -12q-47 0 -85.5 17t-66.5 49.5t-43 79.5t-15 108q0 59 18 106.5t49 80.5t71 51t84 18q43 0 79 -17t70 -49h3l7 54h66v-486h-68l-7 64h-3q-29 -31 -71 -53.5t-88 -22.5zM288 57q72 0 137 73v242q-33 31 -64.5 44t-63.5 13t-59.5 -13.5t-48 -38t-32.5 -58.5t-12 -76
-q0 -88 37.5 -137t105.5 -49zM304 -214q-28 0 -47 17.5t-19 46.5t19 46.5t47 17.5t47 -17.5t19 -46.5t-19 -46.5t-47 -17.5z" />
-    <glyph glyph-name="uni1EA3.a" 
-d="M270 -12q-47 0 -85.5 17t-66.5 49.5t-43 79.5t-15 108q0 59 18 106.5t49 80.5t71 51t84 18q43 0 79 -17t70 -49h3l7 54h66v-486h-68l-7 64h-3q-29 -31 -71 -53.5t-88 -22.5zM288 57q72 0 137 73v242q-33 31 -64.5 44t-63.5 13t-59.5 -13.5t-48 -38t-32.5 -58.5t-12 -76
-q0 -88 37.5 -137t105.5 -49zM272 572l-9 40q24 6 40 16.5t16 30.5q0 43 -83 47l5 54q69 -2 106 -25.5t37 -68.5q0 -22 -9.5 -37.5t-25 -27t-35.5 -18.5t-42 -11z" />
-    <glyph glyph-name="uni1EA5.a" 
-d="M270 -12q-47 0 -85.5 17t-66.5 49.5t-43 79.5t-15 108q0 59 18 106.5t49 80.5t71 51t84 18q43 0 79 -17t70 -49h3l7 54h66v-486h-68l-7 64h-3q-29 -31 -71 -53.5t-88 -22.5zM288 57q72 0 137 73v242q-33 31 -64.5 44t-63.5 13t-59.5 -13.5t-48 -38t-32.5 -58.5t-12 -76
-q0 -88 37.5 -137t105.5 -49zM199 570l-29 34l100 92h68l100 -92l-29 -34l-103 72h-4zM438 637l-35 28l87 120l49 -34z" />
-    <glyph glyph-name="uni1EA7.a" 
-d="M270 -12q-47 0 -85.5 17t-66.5 49.5t-43 79.5t-15 108q0 59 18 106.5t49 80.5t71 51t84 18q43 0 79 -17t70 -49h3l7 54h66v-486h-68l-7 64h-3q-29 -31 -71 -53.5t-88 -22.5zM288 57q72 0 137 73v242q-33 31 -64.5 44t-63.5 13t-59.5 -13.5t-48 -38t-32.5 -58.5t-12 -76
-q0 -88 37.5 -137t105.5 -49zM199 570l-29 34l100 92h68l100 -92l-29 -34l-103 72h-4zM170 637l-113 112l48 36l100 -117z" />
-    <glyph glyph-name="uni1EA9.a" 
-d="M270 -12q-47 0 -85.5 17t-66.5 49.5t-43 79.5t-15 108q0 59 18 106.5t49 80.5t71 51t84 18q43 0 79 -17t70 -49h3l7 54h66v-486h-68l-7 64h-3q-29 -31 -71 -53.5t-88 -22.5zM288 57q72 0 137 73v242q-33 31 -64.5 44t-63.5 13t-59.5 -13.5t-48 -38t-32.5 -58.5t-12 -76
-q0 -88 37.5 -137t105.5 -49zM199 570l-29 34l100 92h68l100 -92l-29 -34l-103 72h-4zM420 635l-9 35q19 5 30.5 14t11.5 25q0 20 -16 29.5t-53 11.5l7 41q59 -2 90.5 -20t31.5 -53q0 -20 -8 -34t-21 -23.5t-29.5 -15.5t-34.5 -10z" />
-    <glyph glyph-name="uni1EAB.a" 
-d="M270 -12q-47 0 -85.5 17t-66.5 49.5t-43 79.5t-15 108q0 59 18 106.5t49 80.5t71 51t84 18q43 0 79 -17t70 -49h3l7 54h66v-486h-68l-7 64h-3q-29 -31 -71 -53.5t-88 -22.5zM288 57q72 0 137 73v242q-33 31 -64.5 44t-63.5 13t-59.5 -13.5t-48 -38t-32.5 -58.5t-12 -76
-q0 -88 37.5 -137t105.5 -49zM199 570l-29 34l100 88h68l100 -88l-29 -34l-103 69h-4zM369 710q-22 0 -39 6.5t-31.5 14.5t-28 14.5t-27.5 6.5q-15 0 -22 -10t-11 -32l-43 4q4 39 20.5 64t51.5 25q22 0 39 -6.5t31.5 -14.5t28 -14.5t27.5 -6.5q15 0 22 10t11 32l43 -4
-q-4 -38 -20.5 -63.5t-51.5 -25.5z" />
-    <glyph glyph-name="uni1EAD.a" 
-d="M270 -12q-47 0 -85.5 17t-66.5 49.5t-43 79.5t-15 108q0 59 18 106.5t49 80.5t71 51t84 18q43 0 79 -17t70 -49h3l7 54h66v-486h-68l-7 64h-3q-29 -31 -71 -53.5t-88 -22.5zM288 57q72 0 137 73v242q-33 31 -64.5 44t-63.5 13t-59.5 -13.5t-48 -38t-32.5 -58.5t-12 -76
-q0 -88 37.5 -137t105.5 -49zM184 568l-35 32l114 140h82l114 -140l-35 -32l-118 113h-4zM304 -214q-28 0 -47 17.5t-19 46.5t19 46.5t47 17.5t47 -17.5t19 -46.5t-19 -46.5t-47 -17.5z" />
-    <glyph glyph-name="uni1EAF.a" 
-d="M270 -12q-47 0 -85.5 17t-66.5 49.5t-43 79.5t-15 108q0 59 18 106.5t49 80.5t71 51t84 18q43 0 79 -17t70 -49h3l7 54h66v-486h-68l-7 64h-3q-29 -31 -71 -53.5t-88 -22.5zM288 57q72 0 137 73v242q-33 31 -64.5 44t-63.5 13t-59.5 -13.5t-48 -38t-32.5 -58.5t-12 -76
-q0 -88 37.5 -137t105.5 -49zM304 571q-40 0 -69 13t-47.5 34.5t-28 48.5t-11.5 55l48 8q3 -20 10.5 -39.5t21 -34.5t32.5 -24.5t44 -9.5t44 9.5t32.5 24.5t21 34.5t10.5 39.5l48 -8q-2 -28 -11.5 -55t-28.5 -48.5t-47.5 -34.5t-68.5 -13zM299 679l-39 29l88 124l52 -40z" />
-    <glyph glyph-name="uni1EB1.a" 
-d="M270 -12q-47 0 -85.5 17t-66.5 49.5t-43 79.5t-15 108q0 59 18 106.5t49 80.5t71 51t84 18q43 0 79 -17t70 -49h3l7 54h66v-486h-68l-7 64h-3q-29 -31 -71 -53.5t-88 -22.5zM288 57q72 0 137 73v242q-33 31 -64.5 44t-63.5 13t-59.5 -13.5t-48 -38t-32.5 -58.5t-12 -76
-q0 -88 37.5 -137t105.5 -49zM304 571q-40 0 -69 13t-47.5 34.5t-28 48.5t-11.5 55l48 8q3 -20 10.5 -39.5t21 -34.5t32.5 -24.5t44 -9.5t44 9.5t32.5 24.5t21 34.5t10.5 39.5l48 -8q-2 -28 -11.5 -55t-28.5 -48.5t-47.5 -34.5t-68.5 -13zM309 679l-101 113l52 40l88 -124z
-" />
-    <glyph glyph-name="uni1EB3.a" 
-d="M270 -12q-47 0 -85.5 17t-66.5 49.5t-43 79.5t-15 108q0 59 18 106.5t49 80.5t71 51t84 18q43 0 79 -17t70 -49h3l7 54h66v-486h-68l-7 64h-3q-29 -31 -71 -53.5t-88 -22.5zM288 57q72 0 137 73v242q-33 31 -64.5 44t-63.5 13t-59.5 -13.5t-48 -38t-32.5 -58.5t-12 -76
-q0 -88 37.5 -137t105.5 -49zM304 571q-40 0 -69 13t-47.5 34.5t-28 48.5t-11.5 55l48 8q3 -20 10.5 -39.5t21 -34.5t32.5 -24.5t44 -9.5t44 9.5t32.5 24.5t21 34.5t10.5 39.5l48 -8q-2 -28 -11.5 -55t-28.5 -48.5t-47.5 -34.5t-68.5 -13zM277 682l-8 36q21 5 34.5 14
-t13.5 25q0 20 -17.5 29.5t-58.5 11.5l7 50q61 -2 95 -22t34 -60q0 -20 -8.5 -34.5t-22.5 -24.5t-32 -16t-37 -9z" />
-    <glyph glyph-name="uni1EB5.a" 
-d="M270 -12q-47 0 -85.5 17t-66.5 49.5t-43 79.5t-15 108q0 59 18 106.5t49 80.5t71 51t84 18q43 0 79 -17t70 -49h3l7 54h66v-486h-68l-7 64h-3q-29 -31 -71 -53.5t-88 -22.5zM288 57q72 0 137 73v242q-33 31 -64.5 44t-63.5 13t-59.5 -13.5t-48 -38t-32.5 -58.5t-12 -76
-q0 -88 37.5 -137t105.5 -49zM304 571q-37 0 -63 9.5t-43.5 25t-26.5 34.5t-11 38l47 8q4 -25 27 -46.5t70 -21.5t70 21.5t27 46.5l47 -8q-2 -19 -11 -38t-26.5 -34.5t-43.5 -25t-63 -9.5zM369 710q-22 0 -39 6.5t-31.5 14.5t-28 14.5t-27.5 6.5q-15 0 -22 -10.5t-11 -32.5
-l-47 5q4 38 21.5 63t54.5 25q22 0 39 -6.5t31.5 -14.5t28 -14.5t27.5 -6.5q15 0 22 10.5t11 31.5l47 -4q-4 -38 -21.5 -63t-54.5 -25z" />
-    <glyph glyph-name="uni1EB7.a" 
-d="M270 -12q-47 0 -85.5 17t-66.5 49.5t-43 79.5t-15 108q0 59 18 106.5t49 80.5t71 51t84 18q43 0 79 -17t70 -49h3l7 54h66v-486h-68l-7 64h-3q-29 -31 -71 -53.5t-88 -22.5zM288 57q72 0 137 73v242q-33 31 -64.5 44t-63.5 13t-59.5 -13.5t-48 -38t-32.5 -58.5t-12 -76
-q0 -88 37.5 -137t105.5 -49zM304 571q-40 0 -69 13t-47.5 34.5t-28 48.5t-11.5 55l51 8q3 -19 10.5 -37.5t20.5 -33.5t31.5 -24t42.5 -9t42.5 9t31.5 24t20.5 33.5t10.5 37.5l51 -8q-2 -28 -11.5 -55t-28.5 -48.5t-47.5 -34.5t-68.5 -13zM304 -214q-28 0 -47 17.5t-19 46.5
-t19 46.5t47 17.5t47 -17.5t19 -46.5t-19 -46.5t-47 -17.5z" />
-    <glyph glyph-name="aogonek.a" 
-d="M451 -225q-42 0 -70.5 22.5t-28.5 70.5q0 43 26 76t62 56l-8 64h-3q-29 -31 -71 -53.5t-88 -22.5q-47 0 -85.5 17t-66.5 49.5t-43 79.5t-15 108q0 59 18 106.5t49 80.5t71 51t84 18q43 0 79 -17t70 -49h3l7 54h66v-491q-52 -23 -73 -52.5t-21 -58.5q0 -28 16.5 -41.5
-t38.5 -13.5q16 0 28 6.5t21 14.5l24 -39q-17 -16 -39.5 -26t-50.5 -10zM288 57q72 0 137 73v242q-33 31 -64.5 44t-63.5 13t-59.5 -13.5t-48 -38t-32.5 -58.5t-12 -76q0 -88 37.5 -137t105.5 -49z" />
-    <glyph glyph-name="g.a" 
-d="M280 -217q-48 0 -96.5 13t-88.5 39l30 59q38 -24 78 -34.5t77 -10.5q70 0 107.5 35t39.5 94l2 97h-3q-29 -29 -70 -49.5t-86 -20.5q-47 0 -85.5 17t-66.5 48.5t-43 77t-15 102.5t18 103t48.5 78t71 49.5t84.5 17.5q43 0 80 -17.5t69 -48.5h3l7 54h66v-505q0 -92 -59 -145
-t-168 -53zM288 73q70 0 137 73v226q-33 31 -65 44t-64 13q-31 0 -58.5 -13t-48.5 -37t-33 -56.5t-12 -71.5q0 -82 38.5 -130t105.5 -48z" />
-    <glyph glyph-name="uni01F5.a" 
-d="M280 -217q-48 0 -96.5 13t-88.5 39l30 59q38 -24 78 -34.5t77 -10.5q70 0 107.5 35t39.5 94l2 97h-3q-29 -29 -70 -49.5t-86 -20.5q-47 0 -85.5 17t-66.5 48.5t-43 77t-15 102.5t18 103t48.5 78t71 49.5t84.5 17.5q43 0 80 -17.5t69 -48.5h3l7 54h66v-505q0 -92 -59 -145
-t-168 -53zM288 73q70 0 137 73v226q-33 31 -65 44t-64 13q-31 0 -58.5 -13t-48.5 -37t-33 -56.5t-12 -71.5q0 -82 38.5 -130t105.5 -48zM289 568l-43 41l142 168l58 -56z" />
-    <glyph glyph-name="gcircumflex.a" 
-d="M280 -217q-48 0 -96.5 13t-88.5 39l30 59q38 -24 78 -34.5t77 -10.5q70 0 107.5 35t39.5 94l2 97h-3q-29 -29 -70 -49.5t-86 -20.5q-47 0 -85.5 17t-66.5 48.5t-43 77t-15 102.5t18 103t48.5 78t71 49.5t84.5 17.5q43 0 80 -17.5t69 -48.5h3l7 54h66v-505q0 -92 -59 -145
-t-168 -53zM288 73q70 0 137 73v226q-33 31 -65 44t-64 13q-31 0 -58.5 -13t-48.5 -37t-33 -56.5t-12 -71.5q0 -82 38.5 -130t105.5 -48zM190 568l-35 32l114 140h82l114 -140l-35 -32l-118 113h-4z" />
-    <glyph glyph-name="gbreve.a" 
-d="M280 -217q-48 0 -96.5 13t-88.5 39l30 59q38 -24 78 -34.5t77 -10.5q70 0 107.5 35t39.5 94l2 97h-3q-29 -29 -70 -49.5t-86 -20.5q-47 0 -85.5 17t-66.5 48.5t-43 77t-15 102.5t18 103t48.5 78t71 49.5t84.5 17.5q43 0 80 -17.5t69 -48.5h3l7 54h66v-505q0 -92 -59 -145
-t-168 -53zM288 73q70 0 137 73v226q-33 31 -65 44t-64 13q-31 0 -58.5 -13t-48.5 -37t-33 -56.5t-12 -71.5q0 -82 38.5 -130t105.5 -48zM310 571q-40 0 -69 13t-47.5 34.5t-28 48.5t-11.5 55l51 8q3 -19 10.5 -37.5t20.5 -33.5t31.5 -24t42.5 -9t42.5 9t31.5 24t20.5 33.5
-t10.5 37.5l51 -8q-2 -28 -11.5 -55t-28.5 -48.5t-47.5 -34.5t-68.5 -13z" />
-    <glyph glyph-name="gdotaccent.a" 
-d="M280 -217q-48 0 -96.5 13t-88.5 39l30 59q38 -24 78 -34.5t77 -10.5q70 0 107.5 35t39.5 94l2 97h-3q-29 -29 -70 -49.5t-86 -20.5q-47 0 -85.5 17t-66.5 48.5t-43 77t-15 102.5t18 103t48.5 78t71 49.5t84.5 17.5q43 0 80 -17.5t69 -48.5h3l7 54h66v-505q0 -92 -59 -145
-t-168 -53zM288 73q70 0 137 73v226q-33 31 -65 44t-64 13q-31 0 -58.5 -13t-48.5 -37t-33 -56.5t-12 -71.5q0 -82 38.5 -130t105.5 -48zM310 588q-28 0 -47 17.5t-19 46.5t19 46.5t47 17.5t47 -17.5t19 -46.5t-19 -46.5t-47 -17.5z" />
-    <glyph glyph-name="uni0123.a" 
-d="M280 -217q-48 0 -96.5 13t-88.5 39l30 59q38 -24 78 -34.5t77 -10.5q70 0 107.5 35t39.5 94l2 97h-3q-29 -29 -70 -49.5t-86 -20.5q-47 0 -85.5 17t-66.5 48.5t-43 77t-15 102.5t18 103t48.5 78t71 49.5t84.5 17.5q43 0 80 -17.5t69 -48.5h3l7 54h66v-505q0 -92 -59 -145
-t-168 -53zM288 73q70 0 137 73v226q-33 31 -65 44t-64 13q-31 0 -58.5 -13t-48.5 -37t-33 -56.5t-12 -71.5q0 -82 38.5 -130t105.5 -48zM349 575q-65 7 -91 25t-26 52q0 44 42.5 65.5t122.5 26.5l8 -41q-63 -4 -86 -15.5t-23 -32.5q0 -20 18 -29.5t53 -12.5z" />
-    <glyph glyph-name="gcaron.a" 
-d="M280 -217q-48 0 -96.5 13t-88.5 39l30 59q38 -24 78 -34.5t77 -10.5q70 0 107.5 35t39.5 94l2 97h-3q-29 -29 -70 -49.5t-86 -20.5q-47 0 -85.5 17t-66.5 48.5t-43 77t-15 102.5t18 103t48.5 78t71 49.5t84.5 17.5q43 0 80 -17.5t69 -48.5h3l7 54h66v-505q0 -92 -59 -145
-t-168 -53zM288 73q70 0 137 73v226q-33 31 -65 44t-64 13q-31 0 -58.5 -13t-48.5 -37t-33 -56.5t-12 -71.5q0 -82 38.5 -130t105.5 -48zM269 574l-114 140l35 32l118 -113h4l118 113l35 -32l-114 -140h-82z" />
-    <glyph glyph-name="uni1E21.a" 
-d="M280 -217q-48 0 -96.5 13t-88.5 39l30 59q38 -24 78 -34.5t77 -10.5q70 0 107.5 35t39.5 94l2 97h-3q-29 -29 -70 -49.5t-86 -20.5q-47 0 -85.5 17t-66.5 48.5t-43 77t-15 102.5t18 103t48.5 78t71 49.5t84.5 17.5q43 0 80 -17.5t69 -48.5h3l7 54h66v-505q0 -92 -59 -145
-t-168 -53zM288 73q70 0 137 73v226q-33 31 -65 44t-64 13q-31 0 -58.5 -13t-48.5 -37t-33 -56.5t-12 -71.5q0 -82 38.5 -130t105.5 -48zM177 601v57h266v-57h-266z" />
-    <glyph glyph-name="uni00670303.a" 
-d="M280 -217q-48 0 -96.5 13t-88.5 39l30 59q38 -24 78 -34.5t77 -10.5q70 0 107.5 35t39.5 94l2 97h-3q-29 -29 -70 -49.5t-86 -20.5q-47 0 -85.5 17t-66.5 48.5t-43 77t-15 102.5t18 103t48.5 78t71 49.5t84.5 17.5q43 0 80 -17.5t69 -48.5h3l7 54h66v-505q0 -92 -59 -145
-t-168 -53zM288 73q70 0 137 73v226q-33 31 -65 44t-64 13q-31 0 -58.5 -13t-48.5 -37t-33 -56.5t-12 -71.5q0 -82 38.5 -130t105.5 -48zM382 577q-27 0 -46 13t-35 29t-30.5 29t-31.5 13q-23 0 -34 -22t-13 -57l-55 3q1 29 7.5 54t18.5 43t30.5 28.5t44.5 10.5q27 0 46 -13
-t35 -29t30.5 -29t32.5 -13q22 0 33 22t13 57l55 -4q-1 -29 -7.5 -53.5t-18.5 -42.5t-30.5 -28.5t-44.5 -10.5z" />
-    <glyph glyph-name="i.a" 
-d="M99 0v67h197v352h-173v67h255v-419h186v-67h-465zM328 588q-28 0 -47 17.5t-19 46.5t19 46.5t47 17.5t47 -17.5t19 -46.5t-19 -46.5t-47 -17.5z" />
-    <glyph glyph-name="dotlessi.a" 
-d="M99 0v67h197v352h-173v67h255v-419h186v-67h-465z" />
-    <glyph glyph-name="igrave.a" 
-d="M99 0v67h197v352h-173v67h255v-419h186v-67h-465zM345 568l-157 153l58 56l142 -168z" />
-    <glyph glyph-name="iacute.a" 
-d="M99 0v67h197v352h-173v67h255v-419h186v-67h-465zM303 568l-43 41l142 168l58 -56z" />
-    <glyph glyph-name="icircumflex.a" 
-d="M99 0v67h197v352h-173v67h255v-419h186v-67h-465zM204 568l-35 32l114 140h82l114 -140l-35 -32l-118 113h-4z" />
-    <glyph glyph-name="itilde.a" 
-d="M99 0v67h197v352h-173v67h255v-419h186v-67h-465zM396 577q-27 0 -46 13t-35 29t-30.5 29t-31.5 13q-23 0 -34 -22t-13 -57l-55 3q1 29 7.5 54t18.5 43t30.5 28.5t44.5 10.5q27 0 46 -13t35 -29t30.5 -29t32.5 -13q22 0 33 22t13 57l55 -4q-1 -29 -7.5 -53.5t-18.5 -42.5
-t-30.5 -28.5t-44.5 -10.5z" />
-    <glyph glyph-name="idieresis.a" 
-d="M99 0v67h197v352h-173v67h255v-419h186v-67h-465zM227 588q-24 0 -39.5 16t-15.5 40q0 23 15.5 39.5t39.5 16.5t39.5 -16.5t15.5 -39.5q0 -24 -15.5 -40t-39.5 -16zM421 588q-24 0 -39.5 16t-15.5 40q0 23 15.5 39.5t39.5 16.5t39.5 -16.5t15.5 -39.5q0 -24 -15.5 -40
-t-39.5 -16z" />
-    <glyph glyph-name="imacron.a" 
-d="M99 0v67h197v352h-173v67h255v-419h186v-67h-465zM191 601v57h266v-57h-266z" />
-    <glyph glyph-name="uni01D0.a" 
-d="M99 0v67h197v352h-173v67h255v-419h186v-67h-465zM283 574l-114 140l35 32l118 -113h4l118 113l35 -32l-114 -140h-82z" />
-    <glyph glyph-name="iogonek.a" 
-d="M345 -225q-44 0 -73.5 22.5t-29.5 70.5q0 41 23 74t52 58h-218v67h197v352h-173v67h255v-419h186v-67h-181q-42 -29 -61 -59t-19 -57q0 -28 18 -41.5t41 -13.5q17 0 29.5 6t23.5 15l24 -39q-18 -17 -41.5 -26.5t-52.5 -9.5zM324 588q-28 0 -47 17.5t-19 46.5t19 46.5
-t47 17.5t47 -17.5t19 -46.5t-19 -46.5t-47 -17.5z" />
-    <glyph glyph-name="uni1EC9.a" 
-d="M99 0v67h197v352h-173v67h255v-419h186v-67h-465zM292 572l-9 40q24 6 40 16.5t16 30.5q0 43 -83 47l5 54q69 -2 106 -25.5t37 -68.5q0 -22 -9.5 -37.5t-25 -27t-35.5 -18.5t-42 -11z" />
-    <glyph glyph-name="uni1ECB.a" 
-d="M99 0v67h197v352h-173v67h255v-419h186v-67h-465zM328 588q-28 0 -47 17.5t-19 46.5t19 46.5t47 17.5t47 -17.5t19 -46.5t-19 -46.5t-47 -17.5zM324 -214q-28 0 -47 17.5t-19 46.5t19 46.5t47 17.5t47 -17.5t19 -46.5t-19 -46.5t-47 -17.5z" />
-    <glyph glyph-name="uni012D.a" 
-d="M99 0v67h197v352h-173v67h255v-419h186v-67h-465zM324 571q-40 0 -69 13t-47.5 34.5t-28 48.5t-11.5 55l51 8q3 -19 10.5 -37.5t20.5 -33.5t31.5 -24t42.5 -9t42.5 9t31.5 24t20.5 33.5t10.5 37.5l51 -8q-2 -28 -11.5 -55t-28.5 -48.5t-47.5 -34.5t-68.5 -13z" />
-    <glyph glyph-name="uni0268.a" 
-d="M116 220v58l180 6v135h-173v67h255v-202h170v-64h-170v-153h186v-67h-465v67h197v153h-180zM328 588q-28 0 -47 17.5t-19 46.5t19 46.5t47 17.5t47 -17.5t19 -46.5t-19 -46.5t-47 -17.5z" />
-    <glyph glyph-name="iogonek.d" 
-d="M353 -225q-45 0 -74.5 22.5t-29.5 70.5q0 42 25.5 75t60.5 57h-19v419h-226v67h308v-491q-45 -22 -66.5 -51.5t-21.5 -59.5q0 -28 18 -41.5t42 -13.5q16 0 28.5 6t23.5 15l24 -39q-18 -17 -41.5 -26.5t-51.5 -9.5z" />
-    <glyph glyph-name="iogonek.da" 
-d="M345 -225q-44 0 -73.5 22.5t-29.5 70.5q0 41 23 74t52 58h-218v67h197v352h-173v67h255v-419h186v-67h-181q-42 -29 -61 -59t-19 -57q0 -28 18 -41.5t41 -13.5q17 0 29.5 6t23.5 15l24 -39q-18 -17 -41.5 -26.5t-52.5 -9.5z" />
-    <glyph glyph-name="uni0268.d" 
-d="M132 210v56l184 6v147h-226v67h308v-214h166v-62h-166v-210h-82v210h-184z" />
-    <glyph glyph-name="uni0268.da" 
-d="M116 220v58l180 6v135h-173v67h255v-202h170v-64h-170v-153h186v-67h-465v67h197v153h-180z" />
-    <glyph glyph-name="uni029D.d" 
-d="M418 -250q-15 29 -30.5 52t-32.5 43q-24 -29 -62 -45.5t-92 -16.5q-70 0 -107.5 33t-37.5 78t33 72.5t96 27.5q32 0 65 -8t66 -25v2v456h-226v67h308v-506q0 -41 -10 -72q26 -24 49.5 -55.5t44.5 -72.5zM200 -152q40 0 64 13.5t36 34.5q-29 21 -58 30t-58 9
-q-32 0 -47 -11.5t-15 -28.5q0 -20 20 -33.5t58 -13.5z" />
-    <glyph glyph-name="l.a" 
-d="M99 0v67h197v578h-173v67h255v-645h186v-67h-465z" />
-    <glyph glyph-name="lacute.a" 
-d="M99 0v67h197v578h-173v67h255v-645h186v-67h-465zM305 757l-36 42l141 128l47 -55z" />
-    <glyph glyph-name="lcaron.a" 
-d="M99 0v67h197v578h-173v67h255v-645h186v-67h-465zM453 548l-3 268h74v-81l-14 -187h-57z" />
-    <glyph glyph-name="uni013C.a" 
-d="M99 0v67h197v578h-173v67h255v-645h186v-67h-465zM241 -226l-8 40q63 5 86 16.5t23 31.5t-18 29.5t-53 12.5l18 38q65 -8 91 -25.5t26 -51.5q0 -44 -42.5 -65.5t-122.5 -25.5z" />
-    <glyph glyph-name="uni1E37.a" 
-d="M99 0v67h197v578h-173v67h255v-645h186v-67h-465zM328 -214q-28 0 -47 17.5t-19 46.5t19 46.5t47 17.5t47 -17.5t19 -46.5t-19 -46.5t-47 -17.5z" />
-    <glyph glyph-name="uni1E39.a" 
-d="M99 0v67h197v578h-173v67h255v-645h186v-67h-465zM200 795v57h268v-57h-268zM328 -214q-28 0 -47 17.5t-19 46.5t19 46.5t47 17.5t47 -17.5t19 -46.5t-19 -46.5t-47 -17.5z" />
-    <glyph glyph-name="uni1E3B.a" 
-d="M99 0v67h197v578h-173v67h255v-645h186v-67h-465zM195 -169v57h266v-57h-266z" />
-    <glyph glyph-name="lslash.a" 
-d="M99 0v67h197v268l-108 -64l-29 54l137 80v240h-173v67h255v-269l147 84l29 -54l-176 -100v-306h186v-67h-465z" />
-    <glyph glyph-name="ldot.a" 
-d="M46 0v67h197v578h-173v67h255v-645h186v-67h-465zM569 286q-28 0 -47 17.5t-19 46.5t19 46.5t47 17.5t47 -17.5t19 -46.5t-19 -46.5t-47 -17.5z" />
-    <glyph glyph-name="uni006C00B7006C.a" 
-d="M-4 0v67h113v578h-107v67h182v-645h102v-67h-290zM315 0v67h105v578h-108v67h183v-645h109v-67h-289zM305 292q-24 0 -41.5 17t-17.5 46t17.5 45.5t41.5 16.5q23 0 40.5 -16.5t17.5 -45.5t-17.5 -46t-40.5 -17z" />
-    <glyph glyph-name="uni026B.a" 
-d="M99 0v67h197v578h-173v67h255v-645h186v-67h-465zM431 315q-33 0 -57 13t-44.5 29t-39.5 29t-41 13t-33 -21.5t-13 -56.5l-55 10q1 27 7 50.5t17.5 40.5t29 27t41.5 10q33 0 57.5 -13t45 -29t39 -29t40.5 -13t33 21.5t13 55.5l55 -9q-2 -27 -7.5 -50.5t-17 -40.5t-29 -27
-t-41.5 -10z" />
-    <glyph glyph-name="uni026C.a" 
-d="M273 311q-74 0 -106.5 25.5t-32.5 63.5q0 33 24.5 55.5t63.5 22.5q26 0 44 -8t30 -21v196h-173v67h255v-354h140v-47h-140v-244h186v-67h-465v67h197v244h-23zM263 358h33v10q0 22 -17 43t-52 21q-21 0 -31 -9.5t-10 -23.5q0 -17 16.5 -29t60.5 -12z" />
-    <glyph glyph-name="Alpha" unicode="&#x391;" 
-d="M232 367l-31 -100h196l-31 100q-17 55 -33.5 109.5t-31.5 111.5h-4q-16 -57 -32 -111.5t-33 -109.5zM32 0l221 656h94l221 -656h-88l-62 200h-238l-63 -200h-85z" />
-    <glyph glyph-name="Beta" unicode="&#x392;" 
-d="M99 0v656h186q50 0 91.5 -9t71 -28t46 -49.5t16.5 -73.5q0 -49 -28 -88.5t-87 -54.5v-4q72 -11 112 -50t40 -107q0 -48 -18 -84t-50.5 -60t-78 -36t-100.5 -12h-201zM182 380h89q84 0 120.5 27t36.5 82q0 54 -38.5 75.5t-114.5 21.5h-93v-206zM182 70h106q85 0 131 29.5
-t46 96.5q0 61 -45 87.5t-132 26.5h-106v-240z" />
-    <glyph glyph-name="Gamma" unicode="&#x393;" 
-d="M135 0v656h400v-70h-317v-586h-83z" />
-    <glyph glyph-name="uni0394" unicode="&#x394;" 
-d="M43 0v50l209 606h96l209 -606v-50h-514zM134 71h331l-97 293q-17 54 -33.5 109t-33.5 112h-4q-17 -57 -33.5 -112t-33.5 -109z" />
-    <glyph glyph-name="Epsilon" unicode="&#x395;" 
-d="M114 0v656h406v-70h-322v-206h272v-71h-272v-238h332v-71h-416z" />
-    <glyph glyph-name="Zeta" unicode="&#x396;" 
-d="M65 0v50l366 537h-334v70h437v-50l-367 -536h372v-71h-474z" />
-    <glyph glyph-name="Eta" unicode="&#x397;" 
-d="M79 0v656h84v-275h274v275h84v-656h-84v309h-274v-309h-84z" />
-    <glyph glyph-name="Theta" unicode="&#x398;" 
-d="M300 -12q-56 0 -102 24t-79.5 68.5t-52 108t-18.5 142.5t18.5 141.5t52 106t79.5 66.5t102 23q55 0 101.5 -23.5t80 -67t52 -106t18.5 -140.5q0 -79 -18.5 -142.5t-52 -108t-80 -68.5t-101.5 -24zM300 61q37 0 68 19t52.5 54.5t33.5 85t12 111.5q0 61 -12 110t-33.5 83
-t-52.5 52.5t-68 18.5q-38 0 -68.5 -18.5t-52 -52.5t-33.5 -83t-12 -110q0 -62 12 -111.5t33.5 -85t52 -54.5t68.5 -19zM201 309v72h198v-72h-198z" />
-    <glyph glyph-name="Iota" unicode="&#x399;" 
-d="M95 0v71h163v515h-163v70h410v-70h-163v-515h163v-71h-410z" />
-    <glyph glyph-name="Kappa" unicode="&#x39a;" 
-d="M98 0v656h84v-329h3l276 329h95l-208 -249l232 -407h-94l-191 344l-113 -135v-209h-84z" />
-    <glyph glyph-name="Lambda" unicode="&#x39b;" 
-d="M43 0l208 656h97l209 -656h-88l-106 355q-17 58 -31 108.5t-32 108.5h-4q-18 -58 -32 -108.5t-31 -108.5l-105 -355h-85z" />
-    <glyph glyph-name="Mu" unicode="&#x39c;" 
-d="M72 0v656h102l92 -280l32 -106h4l31 106l93 280h102v-656h-80v328q0 24 1.5 55.5t4 63.5t4.5 62t4 51h-3l-37 -128l-94 -258h-60l-92 258l-38 128h-2q2 -21 4.5 -51t4.5 -62t3.5 -63.5t1.5 -55.5v-328h-78z" />
-    <glyph glyph-name="Nu" unicode="&#x39d;" 
-d="M82 0v656h92l210 -412l63 -136h2q-2 49 -6.5 102.5t-4.5 105.5v340h80v-656h-92l-210 412l-63 136h-2q2 -51 6.5 -102.5t4.5 -102.5v-343h-80z" />
-    <glyph glyph-name="Xi" unicode="&#x39e;" 
-d="M70 0v71h460v-71h-460zM145 309v71h310v-71h-310zM80 586v70h440v-70h-440z" />
-    <glyph glyph-name="Omicron" unicode="&#x39f;" 
-d="M300 -12q-56 0 -102 23.5t-79.5 67.5t-52 107.5t-18.5 144.5q0 79 18.5 142t52 106t79.5 66t102 23q55 0 101.5 -23t80 -66t52 -106t18.5 -142q0 -81 -18.5 -144.5t-52 -107.5t-80 -67.5t-101.5 -23.5zM300 61q37 0 68 18.5t52.5 53.5t33.5 85t12 113q0 62 -12 111
-t-33.5 83t-52.5 52t-68 18q-38 0 -68.5 -18t-52 -52t-33.5 -83t-12 -111q0 -63 12 -113t33.5 -85t52 -53.5t68.5 -18.5z" />
-    <glyph glyph-name="Pi" unicode="&#x3a0;" 
-d="M79 0v656h442v-656h-84v586h-274v-586h-84z" />
-    <glyph glyph-name="Rho" unicode="&#x3a1;" 
-d="M102 0v656h198q54 0 99 -10t77 -32.5t49.5 -59.5t17.5 -91q0 -52 -17.5 -90t-50 -63t-77 -37.5t-98.5 -12.5h-115v-260h-83zM185 328h105q87 0 128 32.5t41 102.5q0 71 -42 98.5t-127 27.5h-105v-261z" />
-    <glyph glyph-name="Sigma" unicode="&#x3a3;" 
-d="M75 0v50l226 283l-222 274v49h423v-70h-317l201 -251l-205 -264h351v-71h-457z" />
-    <glyph glyph-name="Tau" unicode="&#x3a4;" 
-d="M258 0v586h-216v70h516v-70h-216v-586h-84z" />
-    <glyph glyph-name="Upsilon" unicode="&#x3a5;" 
-d="M258 0v234l-220 422h88l99 -195q19 -38 37 -75.5t38 -77.5h4l39 78l38 76l95 194h86l-220 -422v-234h-84z" />
-    <glyph glyph-name="Phi" unicode="&#x3a6;" 
-d="M106 332q0 -87 41.5 -141t114.5 -60v395q-73 -6 -114.5 -57.5t-41.5 -136.5zM494 332q0 85 -42 136.5t-114 57.5v-395q36 3 65 18.5t49 42t31 62t11 78.5zM262 -22v88q-54 3 -97.5 23t-74 54t-47.5 81.5t-17 107.5q0 58 17 105t47.5 80t74 52t97.5 22v87h76v-87
-q54 -3 97.5 -22t74 -52t47.5 -80t17 -105q0 -60 -17 -107.5t-47.5 -81.5t-74 -54t-97.5 -23v-88h-76z" />
-    <glyph glyph-name="Chi" unicode="&#x3a7;" 
-d="M54 0l196 339l-183 317h92l92 -168q13 -23 25 -44.5t28 -50.5h4q14 29 24.5 50.5t22.5 44.5l90 168h88l-183 -321l196 -335h-92l-99 177q-14 24 -27.5 49.5t-30.5 55.5h-4q-14 -30 -27 -55.5t-26 -49.5l-98 -177h-88z" />
-    <glyph glyph-name="Psi" unicode="&#x3a8;" 
-d="M258 0v243q-100 5 -157 63t-57 174v176h80v-172q0 -164 134 -174v346h84v-346q134 10 134 174v172h80v-176q0 -116 -57 -174t-157 -63v-243h-84z" />
-    <glyph glyph-name="uni03A9" unicode="&#x3a9;" 
-d="M38 0v68h121v4q-21 20 -40.5 47.5t-35.5 62.5t-25.5 77t-9.5 92q0 69 17.5 127t50.5 100.5t79.5 66t104.5 23.5t104.5 -23.5t79.5 -66t50.5 -100.5t17.5 -127q0 -50 -9.5 -92t-25.5 -77t-35.5 -62.5t-40.5 -47.5v-4h121v-68h-210v61q24 24 45 52t36.5 62.5t24 76.5
-t8.5 94q0 53 -11 98.5t-32 79t-52 52.5t-71 19t-71 -19t-52 -52.5t-32 -79t-11 -98.5q0 -52 8.5 -94t24 -76.5t36.5 -62.5t45 -52v-61h-210z" />
-    <glyph glyph-name="Alphatonos" unicode="&#x386;" 
-d="M248 367l-30 -100h183l-29 100q-16 55 -30.5 104.5t-29.5 108.5h-4q-16 -59 -30 -108.5t-30 -104.5zM54 0l210 656h94l210 -656h-88l-59 200h-223l-59 -200h-85zM93 389l-57 10l36 291l79 -10z" />
-    <glyph glyph-name="Epsilontonos" unicode="&#x388;" 
-d="M200 0v656h320v-70h-244v-206h194v-71h-194v-238h254v-71h-330zM81 389l-57 10l36 291l79 -10z" />
-    <glyph glyph-name="Etatonos" unicode="&#x389;" 
-d="M194 0v656h76v-275h182v275h76v-656h-76v309h-182v-309h-76zM81 389l-57 10l36 291l79 -10z" />
-    <glyph glyph-name="Iotatonos" unicode="&#x38a;" 
-d="M185 0v71h118v515h-118v70h320v-70h-119v-515h119v-71h-320zM81 389l-57 10l36 291l79 -10z" />
-    <glyph glyph-name="Iotadieresis" unicode="&#x3aa;" 
-d="M95 0v71h163v515h-163v70h410v-70h-163v-515h163v-71h-410zM209 715q-22 0 -36.5 14t-14.5 37t14.5 36.5t36.5 13.5t36 -13.5t14 -36.5t-14 -37t-36 -14zM391 715q-22 0 -36 14t-14 37t14 36.5t36 13.5t36.5 -13.5t14.5 -36.5t-14.5 -37t-36.5 -14z" />
-    <glyph glyph-name="Omicrontonos" unicode="&#x38c;" 
-d="M348 -12q-45 0 -82 23t-64 67t-42 108t-15 145q0 82 15 145t42 106t64 64.5t82 21.5t82.5 -21.5t64.5 -64.5t42 -106t15 -145q0 -83 -15 -147t-42 -107.5t-64.5 -66t-82.5 -22.5zM348 61q56 0 89.5 66.5t33.5 203.5q0 135 -34 199.5t-89 64.5t-88.5 -64t-33.5 -200
-q0 -137 33.5 -203.5t88.5 -66.5zM81 389l-57 10l36 291l79 -10z" />
-    <glyph glyph-name="Upsilontonos" unicode="&#x38e;" 
-d="M357 0v234l-169 422h77l73 -195q15 -42 28.5 -78.5t27.5 -74.5h4q14 38 27.5 76t27.5 77l75 195h74l-169 -422v-234h-76zM97 389l-57 10l36 291l79 -10z" />
-    <glyph glyph-name="Upsilondieresis" unicode="&#x3ab;" 
-d="M258 0v234l-220 422h88l99 -195q19 -38 37 -75.5t38 -77.5h4l39 78l38 76l95 194h86l-220 -422v-234h-84zM209 715q-22 0 -36.5 14t-14.5 37t14.5 36.5t36.5 13.5t36 -13.5t14 -36.5t-14 -37t-36 -14zM391 715q-22 0 -36 14t-14 37t14 36.5t36 13.5t36.5 -13.5
-t14.5 -36.5t-14.5 -37t-36.5 -14z" />
-    <glyph glyph-name="Omegatonos" unicode="&#x38f;" 
-d="M134 0v68h99v4q-42 60 -65 129.5t-23 163.5q0 66 14.5 121.5t40.5 96t63.5 63t83.5 22.5t83.5 -22.5t64 -63t40.5 -96t14 -121.5q0 -94 -23 -163.5t-65 -129.5v-4h99v-68h-172v61q39 59 59.5 127.5t20.5 163.5q0 55 -8 99.5t-23.5 76.5t-38 49.5t-51.5 17.5t-51.5 -17.5
-t-38 -49.5t-23.5 -76.5t-8 -99.5q0 -95 20.5 -163.5t59.5 -127.5v-61h-172zM81 389l-57 10l36 291l79 -10z" />
-    <glyph glyph-name="alpha" unicode="&#x3b1;" 
-d="M253 -12q-44 0 -80 16t-61.5 47.5t-40 77t-14.5 105.5q0 63 18 112t48 82.5t69.5 51.5t82.5 18q25 0 49.5 -6.5t46 -21.5t38.5 -39.5t28 -59.5h3l20 115h82q-10 -48 -20.5 -100.5t-19.5 -103.5t-15 -96.5t-6 -78.5q0 -25 14 -38t34 -13q8 0 17 2.5t17 5.5l12 -63
-q-11 -5 -26.5 -9t-37.5 -4q-43 0 -69 24t-26 75h-3q-32 -51 -71 -75t-89 -24zM270 57q25 0 49.5 12t44 32.5t32 48t15.5 58.5l7 91q-10 40 -25 65.5t-33 39.5t-37 19.5t-35 5.5q-28 0 -54 -12.5t-46.5 -36.5t-33 -60.5t-12.5 -84.5q0 -85 34 -131.5t94 -46.5z" />
-    <glyph glyph-name="beta" unicode="&#x3b2;" 
-d="M93 -179v674q0 49 12.5 91t37.5 72.5t63 48t89 17.5q37 0 71 -10.5t60.5 -32t42.5 -54t16 -76.5q0 -54 -27 -95t-79 -71v-4q75 -11 120 -61t45 -127q0 -49 -16.5 -87t-44 -64.5t-63 -40t-73.5 -13.5q-47 0 -93 16t-84 58q2 -62 3.5 -120.5t2.5 -120.5h-83zM327 57
-q28 0 52.5 9.5t43 27.5t29 44.5t10.5 59.5q0 58 -35 97t-106 39q-26 0 -50 -6l-13 63q40 8 67.5 24t45 37t25.5 45t8 48q0 28 -8.5 49t-23.5 35t-34.5 21t-41.5 7q-57 0 -89.5 -44t-33.5 -133q-1 -88 -1.5 -173.5t-0.5 -173.5q35 -46 76.5 -61t79.5 -15z" />
-    <glyph glyph-name="gamma" unicode="&#x3b3;" 
-d="M255 -179q1 16 2 29.5t1.5 27t0.5 29v35.5q0 58 -18 130t-47 145.5t-67.5 141.5t-78.5 118l82 21q26 -33 52 -78t49.5 -97.5t43 -110.5t32.5 -115h4q54 95 92.5 191t52.5 198h82q-12 -62 -28 -117t-40 -111t-58.5 -117t-82.5 -136q6 -44 8 -93t2 -91h-84z" />
-    <glyph glyph-name="delta" unicode="&#x3b4;" 
-d="M300 -12q-45 0 -87.5 15t-75.5 43.5t-52.5 69.5t-19.5 93q0 44 15.5 80.5t42 65.5t62 50t76.5 35q-30 19 -56.5 38t-46 40t-30.5 45t-11 52q0 22 10 41.5t30.5 34.5t51.5 24t74 9q53 0 111.5 -10t129.5 -34l-20 -65q-74 26 -127 35.5t-95 9.5q-45 0 -64.5 -15t-19.5 -35
-t12 -37.5t33.5 -34.5t51.5 -36t67 -42q36 -23 68 -47t55 -52.5t36.5 -63t13.5 -78.5q0 -52 -16 -94.5t-46 -73t-74 -47t-99 -16.5zM302 56q75 0 113.5 44.5t38.5 117.5q0 31 -10 57t-27.5 47.5t-41 40.5t-50.5 36q-85 -19 -132.5 -67.5t-47.5 -120.5q0 -36 13 -64.5
-t34.5 -48.5t50 -31t59.5 -11z" />
-    <glyph glyph-name="epsilon" unicode="&#x3b5;" 
-d="M320 -12q-107 0 -168 38.5t-61 107.5q0 52 32.5 80t78.5 41v4q-43 16 -65 45t-22 63q0 33 15.5 58t43.5 41t66.5 24t84.5 8q54 0 102.5 -16t90.5 -46l-33 -55q-73 52 -158 52q-61 0 -95.5 -19t-34.5 -57q0 -33 33.5 -53t107.5 -20q14 0 28.5 0.5t32.5 2.5v-68
-q-21 2 -39.5 2h-36.5q-150 0 -150 -80q0 -41 38.5 -64t117.5 -23q45 0 85.5 11.5t84.5 46.5l35 -55q-27 -20 -52 -33.5t-51 -21.5t-53 -11t-58 -3z" />
-    <glyph glyph-name="zeta" unicode="&#x3b6;" 
-d="M467 -184l-66 27q26 32 37.5 50t11.5 38q0 11 -6 19t-21 15t-40.5 13t-64.5 14q-40 8 -76.5 22.5t-64.5 40.5t-44.5 66.5t-16.5 100.5t27 120.5t71.5 116.5t100 105t112.5 86h-61.5t-75.5 -1t-77.5 -2t-66.5 -2v67h377v-67h-5q-59 -35 -116 -84.5t-101.5 -105.5
-t-72 -115.5t-27.5 -113.5q0 -43 11.5 -72t33 -48t52 -30t69.5 -18q40 -8 69.5 -16.5t49 -20.5t29 -29t9.5 -42q0 -23 -13.5 -57.5t-43.5 -76.5z" />
-    <glyph glyph-name="eta" unicode="&#x3b7;" 
-d="M431 -179q1 60 2 122t2 123t1.5 119.5t0.5 111.5q0 69 -21.5 99.5t-72.5 30.5q-23 0 -42.5 -4.5t-38 -16.5t-38.5 -32t-42 -50v-324h-82v353q0 29 -1 62t-6 71h75l7 -95h3q41 56 85.5 81.5t103.5 25.5q78 0 112.5 -48t34.5 -142v-487h-83z" />
-    <glyph glyph-name="theta" unicode="&#x3b8;" 
-d="M300 -12q-53 0 -95 22t-71.5 67.5t-45.5 115.5t-16 166q0 180 61 272.5t167 92.5t167 -92.5t61 -272.5q0 -96 -16 -166t-45.5 -115.5t-71.5 -67.5t-95 -22zM300 656q-30 0 -56 -15t-45.5 -47t-31.5 -82.5t-14 -121.5h294q-2 71 -14 121.5t-31.5 82.5t-45.5 47t-56 15z
-M300 56q30 0 56 14t45.5 46.5t31.5 85t14 129.5h-294q2 -77 13.5 -129.5t31 -85t46 -46.5t56.5 -14z" />
-    <glyph glyph-name="iota" unicode="&#x3b9;" 
-d="M400 -12q-81 0 -117 44t-36 131v256h-166v67h249q-1 -41 -2 -84t-2 -85.5t-1.5 -83t-0.5 -76.5q0 -53 23.5 -77t70.5 -24q19 0 41 4.5t45 15.5l21 -61q-26 -12 -55.5 -19.5t-69.5 -7.5z" />
-    <glyph glyph-name="kappa" unicode="&#x3ba;" 
-d="M484 -8q-22 25 -47.5 56t-51 65t-50 70t-43.5 72q-35 -38 -68 -83q-37 -54 -37 -147v-25h-77v353q0 29 -1.5 65t-8.5 68h82q5 -20 7 -50.5t2 -62.5v-152h4q30 52 69 97.5t83.5 81.5t91.5 61t94 37l9 -78q-48 -14 -97 -41.5t-98 -69.5q20 -38 47.5 -79t58 -81t62.5 -78
-t62 -71z" />
-    <glyph glyph-name="lambda" unicode="&#x3bb;" 
-d="M145 -8l-89 8l224 497l-8 23q-24 71 -52.5 102.5t-73.5 31.5q-20 0 -34.5 -5t-27.5 -11l-21 68q17 8 38.5 13t53.5 5q38 0 67 -12t52.5 -37.5t42.5 -64t38 -91.5l198 -519h-89l-145 403h-4z" />
-    <glyph glyph-name="uni03BC" unicode="&#x3bc;" 
-d="M84 -187v673h82v-291q0 -67 24.5 -101.5t78.5 -34.5q19 0 37 4t36.5 15t37 32t37.5 54v322h83q-2 -99 -4 -202.5t-2 -191.5q0 -20 8 -28t20 -8h7.5t10.5 2l11 -62q-18 -8 -47 -8q-38 0 -57.5 22.5t-22.5 81.5h-2q-30 -52 -69.5 -77t-84.5 -25q-33 0 -60.5 10.5
-t-47.5 42.5q0 -38 0.5 -67.5t1 -55.5t2 -51.5t3.5 -55.5h-83z" />
-    <glyph glyph-name="nu" unicode="&#x3bd;" 
-d="M257 0q-14 72 -35.5 138t-49.5 126t-60 113t-65 100l82 21q28 -39 56 -88.5t52 -103.5t43 -110.5t29 -110.5h4q25 47 49 97t44 101t33.5 102.5t17.5 100.5h83q-10 -63 -28 -122.5t-43.5 -119t-58 -119.5t-72.5 -125h-81z" />
-    <glyph glyph-name="xi" unicode="&#x3be;" 
-d="M470 -184l-66 27q26 32 37 50t11 38q0 11 -5.5 19t-20.5 15t-40.5 13t-64.5 14q-42 9 -80 22t-66.5 35t-45.5 55t-17 81q0 36 13 67.5t34.5 56.5t50.5 43t61 27v4q-48 20 -79.5 55.5t-31.5 88.5q0 42 20.5 73t57.5 50h-37.5t-33 -1t-34.5 -2t-41 -2v67h431v-67h-144
-q-27 0 -52 -8t-43.5 -23t-29.5 -37.5t-11 -51.5q0 -26 12 -48t31.5 -38t44.5 -25t50 -9q23 0 39 0.5t39 4.5v-72q-23 4 -41.5 4.5t-41.5 0.5q-34 0 -66.5 -10t-57.5 -28.5t-40 -46t-15 -62.5q0 -36 13.5 -59.5t37 -38.5t55.5 -24t70 -16q41 -8 70.5 -16.5t48 -20.5t27 -29
-t8.5 -42q0 -23 -13 -57.5t-44 -76.5z" />
-    <glyph glyph-name="omicron" unicode="&#x3bf;" 
-d="M300 -12q-48 0 -91 17t-75 49.5t-51 80t-19 107.5q0 61 19 108.5t51 80.5t75 50t91 17t91 -17t75 -50t51 -80.5t19 -108.5q0 -60 -19 -107.5t-51 -80t-75 -49.5t-91 -17zM300 56q35 0 63 13.5t47.5 38t30 58.5t10.5 76t-10.5 76.5t-30 59.5t-47.5 38.5t-63 13.5
-t-63 -13.5t-47.5 -38.5t-30 -59.5t-10.5 -76.5t10.5 -76t30 -58.5t47.5 -38t63 -13.5z" />
-    <glyph glyph-name="pi" unicode="&#x3c0;" 
-d="M503 -12q-58 0 -82 31t-24 91q0 19 0.5 54.5t1.5 78.5t2 89t1 86h-197q0 -103 -3.5 -209.5t-11.5 -213.5l-82 5q12 108 16 213.5t4 204.5h-101v63l69 5h477v-68h-92q-2 -41 -3.5 -88.5t-2.5 -92t-1 -80v-53.5q0 -26 11 -37t34 -11q5 0 11 1.5t16 4.5l12 -63
-q-11 -5 -24 -8t-31 -3z" />
-    <glyph glyph-name="rho" unicode="&#x3c1;" 
-d="M93 -179v427q0 63 18 110t48.5 78t71.5 46.5t88 15.5q108 0 164.5 -66t56.5 -182q0 -62 -18 -110.5t-47.5 -82.5t-68 -51.5t-78.5 -17.5q-42 0 -82.5 14t-75.5 55q1 -33 2 -61.5t1.5 -56.5t1.5 -57t1 -61h-83zM314 57q29 0 55 13.5t45 38t30 60.5t11 81q0 40 -8 73
-t-25 56.5t-43 36.5t-63 13q-29 0 -55 -11.5t-46 -34t-31.5 -56.5t-11.5 -80v-124q18 -21 35.5 -34t35.5 -20t36 -9.5t35 -2.5z" />
-    <glyph glyph-name="sigma" unicode="&#x3c3;" 
-d="M290 -12q-47 0 -88.5 16.5t-73 48t-50 78.5t-18.5 107q0 64 19.5 110.5t52 77t74.5 45.5t88 15h278v-70q-43 3 -79.5 5t-78.5 3v-4q48 -26 74 -75t26 -118q0 -57 -17.5 -101t-47.5 -75t-71 -47t-88 -16zM290 56q31 0 57.5 12.5t45.5 35.5t29.5 56t10.5 74q0 36 -9 69.5
-t-27 59t-44.5 40.5t-60.5 15q-63 0 -105 -44.5t-42 -135.5q0 -42 11 -75.5t30.5 -57.5t46 -36.5t57.5 -12.5z" />
-    <glyph glyph-name="tau" unicode="&#x3c4;" 
-d="M376 -12q-65 0 -91 35.5t-26 103.5v292h-193v62l70 5h398v-67h-194q-2 -78 -3 -153.5t-1 -144.5q0 -35 14.5 -50t43.5 -15q15 0 29.5 3t31.5 8l11 -64q-17 -6 -40.5 -10.5t-49.5 -4.5z" />
-    <glyph glyph-name="upsilon" unicode="&#x3c5;" 
-d="M294 -12q-99 0 -155 51.5t-56 157.5q0 39 2 78t2 78q0 29 -1.5 62t-6.5 71h80q5 -26 6 -53.5t1 -59.5q0 -19 -1 -42t-2 -47t-2 -47.5t-1 -44.5q0 -37 11 -63t29.5 -42t43 -23.5t51.5 -7.5q32 0 59 12t47 36.5t31 62.5t11 90q0 51 -9 105t-31 117l80 19q20 -60 32 -119
-t12 -120q0 -66 -17 -116.5t-48 -85t-74 -52t-94 -17.5z" />
-    <glyph glyph-name="phi" unicode="&#x3c6;" 
-d="M128 244q0 -85 37.5 -133.5t94.5 -53.5v372q-57 -5 -94.5 -52.5t-37.5 -132.5zM472 244q0 85 -37.5 132.5t-94.5 52.5v-372q57 5 94.5 53.5t37.5 133.5zM260 -179v170q-44 3 -83 20.5t-68.5 49.5t-47 78t-17.5 105q0 58 17.5 104t47 77.5t68.5 49t83 20.5v127h80v-127
-q43 -3 82.5 -20.5t69 -49t47 -77.5t17.5 -104q0 -59 -17.5 -105t-47 -78t-69 -49.5t-82.5 -20.5v-170h-80z" />
-    <glyph glyph-name="chi" unicode="&#x3c7;" 
-d="M139 -191l-83 12l206 342l-203 314l82 21l160 -262h4l137 250h87l-185 -322l216 -334l-80 -21l-175 287h-4z" />
-    <glyph glyph-name="psi" unicode="&#x3c8;" 
-d="M262 -179v167q-52 1 -90 18t-63 47t-37 71t-12 91v138q0 29 -1 62t-6 71h80q4 -26 5 -53.5t1 -59.5q0 -21 -0.5 -44.5t-0.5 -45.5t-0.5 -41t-0.5 -31q0 -72 30 -114t95 -42v567h80v-566q63 5 97.5 54t34.5 146q0 28 -2 54t-6.5 52.5t-12 55t-19.5 61.5l76 19
-q23 -63 33 -118.5t10 -121.5q0 -125 -55.5 -194.5t-155.5 -74.5v-168h-80z" />
-    <glyph glyph-name="omega" unicode="&#x3c9;" 
-d="M190 -12q-33 0 -61.5 15t-49.5 45t-33 75.5t-12 105.5q0 78 26.5 145t64.5 124l72 -33q-21 -30 -36.5 -59t-26 -59t-15.5 -62.5t-5 -70.5q0 -76 23 -117t58 -41q28 0 48.5 27t20.5 95q0 30 -2 60.5t-6 69.5h85q-4 -39 -5.5 -69.5t-1.5 -60.5q0 -35 5.5 -58.5t14.5 -37.5
-t21.5 -20t26.5 -6q36 0 58 41.5t22 129.5q0 37 -4.5 67.5t-13.5 58.5t-23.5 55.5t-34.5 58.5l73 31q19 -29 35 -58t27.5 -61.5t18 -68.5t6.5 -78q0 -123 -42.5 -183.5t-111.5 -60.5q-35 0 -64.5 19.5t-46.5 61.5h-4q-17 -42 -44.5 -61.5t-62.5 -19.5z" />
-    <glyph glyph-name="uni03C2" unicode="&#x3c2;" 
-d="M438 -180l-66 26q26 33 39.5 55t13.5 44q0 12 -4 21.5t-15.5 18t-33 15.5t-56.5 14q-43 9 -84 25.5t-72.5 44t-50.5 69t-19 101.5q0 58 21 103.5t56.5 77t82 47.5t97.5 16q61 0 103 -19.5t74 -48.5l-42 -53q-30 27 -60 40t-71 13q-38 0 -70 -12.5t-55.5 -35.5t-37 -55.5
-t-13.5 -72.5q0 -43 13.5 -72.5t37.5 -49t56.5 -31.5t70.5 -20q43 -9 71.5 -19t45 -23.5t23 -32t6.5 -43.5q0 -26 -15 -63.5t-46 -79.5z" />
-    <glyph glyph-name="uni03D0" unicode="&#x3d0;" 
-d="M329 -12q-41 0 -82.5 12.5t-76 40t-56 72.5t-21.5 111v271q0 49 12.5 91t38 73t64 48t90.5 17q35 0 68.5 -10.5t60 -32t42.5 -54t16 -76.5q0 -54 -29.5 -96t-83.5 -70v-4q40 -4 71.5 -20t54 -41t34.5 -58.5t12 -72.5q0 -47 -16.5 -84t-46 -63t-68.5 -40t-84 -14zM173 480
-q0 -33 -0.5 -60t-0.5 -51q64 12 108.5 29t72 39t39.5 49t12 59q0 56 -32 84t-74 28q-60 0 -91.5 -44.5t-33.5 -132.5zM326 60q30 0 55 10t43 28t28 42.5t10 53.5q0 30 -8.5 55.5t-26 44t-44 29.5t-62.5 11q-15 0 -51 -5.5t-99 -22.5v-69q0 -54 16 -88t40 -54t51 -27.5
-t48 -7.5z" />
-    <glyph glyph-name="uni03D1" unicode="&#x3d1;" 
-d="M158 541q0 -32 12.5 -63t45 -53.5t88.5 -31.5t142 3q-2 70 -15 120t-34.5 81t-51 45t-65.5 14q-54 0 -88 -31t-34 -84zM297 -12q-93 0 -144.5 49t-51.5 145q0 39 -1.5 62.5t-6.5 46.5h77q6 -14 7 -39.5t1 -59.5q0 -37 9.5 -63t26.5 -42t39 -23.5t48 -7.5q30 0 56 12.5
-t45.5 45t31 87.5t13.5 140q-107 -15 -178 0.5t-113 47t-59.5 73.5t-17.5 80q0 41 15.5 74.5t42.5 57.5t63 37t77 13q125 0 188 -92.5t63 -269.5q0 -103 -16.5 -174.5t-47 -115.5t-73 -64t-94.5 -20z" />
-    <glyph glyph-name="uni03D5" unicode="&#x3d5;" 
-d="M128 244q0 -85 37.5 -133.5t94.5 -53.5v372q-57 -5 -94.5 -52.5t-37.5 -132.5zM472 244q0 85 -37.5 132.5t-94.5 52.5v-372q57 5 94.5 53.5t37.5 133.5zM260 -179v170q-44 3 -83 20.5t-68.5 49.5t-47 78t-17.5 105q0 58 17.5 104t47 77.5t68.5 49t83 20.5v127h80v-127
-q43 -3 82.5 -20.5t69 -49t47 -77.5t17.5 -104q0 -59 -17.5 -105t-47 -78t-69 -49.5t-82.5 -20.5v-170h-80z" />
-    <glyph glyph-name="phi.a" 
-d="M260 -179v170q-44 3 -84.5 19.5t-71 48t-49 77.5t-18.5 107q0 75 30.5 140t76.5 119l64 -48q-22 -26 -38.5 -51t-28 -51t-17.5 -55t-6 -63q0 -81 39.5 -127t102.5 -52v241q0 106 41.5 154t105.5 48q75 0 115.5 -65t40.5 -179q0 -60 -18 -107.5t-48.5 -81t-71 -52
-t-84.5 -21.5q1 -44 2 -86.5t2 -84.5h-85zM339 299q0 -61 0.5 -121.5t1.5 -122.5q62 6 101 56.5t39 138.5q0 83 -19.5 131t-57.5 48q-30 0 -47.5 -29t-17.5 -101z" />
-    <glyph glyph-name="alphatonos" unicode="&#x3ac;" 
-d="M253 -12q-44 0 -80 16t-61.5 47.5t-40 77t-14.5 105.5q0 63 18 112t48 82.5t69.5 51.5t82.5 18q25 0 49.5 -6.5t46 -21.5t38.5 -39.5t28 -59.5h3l20 115h82q-10 -48 -20.5 -100.5t-19.5 -103.5t-15 -96.5t-6 -78.5q0 -25 14 -38t34 -13q8 0 17 2.5t17 5.5l12 -63
-q-11 -5 -26.5 -9t-37.5 -4q-43 0 -69 24t-26 75h-3q-32 -51 -71 -75t-89 -24zM270 57q25 0 49.5 12t44 32.5t32 48t15.5 58.5l7 91q-10 40 -25 65.5t-33 39.5t-37 19.5t-35 5.5q-28 0 -54 -12.5t-46.5 -36.5t-33 -60.5t-12.5 -84.5q0 -85 34 -131.5t94 -46.5zM346 559
-l-57 10l47 230l85 -15z" />
-    <glyph glyph-name="epsilontonos" unicode="&#x3ad;" 
-d="M320 -12q-107 0 -168 38.5t-61 107.5q0 52 32.5 80t78.5 41v4q-43 16 -65 45t-22 63q0 33 15.5 58t43.5 41t66.5 24t84.5 8q54 0 102.5 -16t90.5 -46l-33 -55q-73 52 -158 52q-61 0 -95.5 -19t-34.5 -57q0 -33 33.5 -53t107.5 -20q14 0 28.5 0.5t32.5 2.5v-68
-q-21 2 -39.5 2h-36.5q-150 0 -150 -80q0 -41 38.5 -64t117.5 -23q45 0 85.5 11.5t84.5 46.5l35 -55q-27 -20 -52 -33.5t-51 -21.5t-53 -11t-58 -3zM358 559l-57 10l47 230l85 -15z" />
-    <glyph glyph-name="etatonos" unicode="&#x3ae;" 
-d="M431 -179q1 60 2 122t2 123t1.5 119.5t0.5 111.5q0 69 -21.5 99.5t-72.5 30.5q-23 0 -42.5 -4.5t-38 -16.5t-38.5 -32t-42 -50v-324h-82v353q0 29 -1 62t-6 71h75l7 -95h3q41 56 85.5 81.5t103.5 25.5q78 0 112.5 -48t34.5 -142v-487h-83zM348 559l-57 10l47 230l85 -15z
-" />
-    <glyph glyph-name="iotatonos" unicode="&#x3af;" 
-d="M400 -12q-81 0 -117 44t-36 131v256h-166v67h249q-1 -41 -2 -84t-2 -85.5t-1.5 -83t-0.5 -76.5q0 -53 23.5 -77t70.5 -24q19 0 41 4.5t45 15.5l21 -61q-26 -12 -55.5 -19.5t-69.5 -7.5zM305 559l-57 10l47 230l85 -15z" />
-    <glyph glyph-name="iotadieresis" unicode="&#x3ca;" 
-d="M400 -12q-81 0 -117 44t-36 131v256h-166v67h249q-1 -41 -2 -84t-2 -85.5t-1.5 -83t-0.5 -76.5q0 -53 23.5 -77t70.5 -24q19 0 41 4.5t45 15.5l21 -61q-26 -12 -55.5 -19.5t-69.5 -7.5zM186 588q-24 0 -39.5 16t-15.5 40q0 23 15.5 39.5t39.5 16.5t39.5 -16.5t15.5 -39.5
-q0 -24 -15.5 -40t-39.5 -16zM380 588q-24 0 -39.5 16t-15.5 40q0 23 15.5 39.5t39.5 16.5t39.5 -16.5t15.5 -39.5q0 -24 -15.5 -40t-39.5 -16z" />
-    <glyph glyph-name="omicrontonos" unicode="&#x3cc;" 
-d="M300 -12q-48 0 -91 17t-75 49.5t-51 80t-19 107.5q0 61 19 108.5t51 80.5t75 50t91 17t91 -17t75 -50t51 -80.5t19 -108.5q0 -60 -19 -107.5t-51 -80t-75 -49.5t-91 -17zM300 56q35 0 63 13.5t47.5 38t30 58.5t10.5 76t-10.5 76.5t-30 59.5t-47.5 38.5t-63 13.5
-t-63 -13.5t-47.5 -38.5t-30 -59.5t-10.5 -76.5t10.5 -76t30 -58.5t47.5 -38t63 -13.5zM322 559l-57 10l47 230l85 -15z" />
-    <glyph glyph-name="upsilontonos" unicode="&#x3cd;" 
-d="M294 -12q-99 0 -155 51.5t-56 157.5q0 39 2 78t2 78q0 29 -1.5 62t-6.5 71h80q5 -26 6 -53.5t1 -59.5q0 -19 -1 -42t-2 -47t-2 -47.5t-1 -44.5q0 -37 11 -63t29.5 -42t43 -23.5t51.5 -7.5q32 0 59 12t47 36.5t31 62.5t11 90q0 51 -9 105t-31 117l80 19q20 -60 32 -119
-t12 -120q0 -66 -17 -116.5t-48 -85t-74 -52t-94 -17.5zM319 559l-57 10l47 230l85 -15z" />
-    <glyph glyph-name="upsilondieresis" unicode="&#x3cb;" 
-d="M294 -12q-99 0 -155 51.5t-56 157.5q0 39 2 78t2 78q0 29 -1.5 62t-6.5 71h80q5 -26 6 -53.5t1 -59.5q0 -19 -1 -42t-2 -47t-2 -47.5t-1 -44.5q0 -37 11 -63t29.5 -42t43 -23.5t51.5 -7.5q32 0 59 12t47 36.5t31 62.5t11 90q0 51 -9 105t-31 117l80 19q20 -60 32 -119
-t12 -120q0 -66 -17 -116.5t-48 -85t-74 -52t-94 -17.5zM200 588q-24 0 -39.5 16t-15.5 40q0 23 15.5 39.5t39.5 16.5t39.5 -16.5t15.5 -39.5q0 -24 -15.5 -40t-39.5 -16zM394 588q-24 0 -39.5 16t-15.5 40q0 23 15.5 39.5t39.5 16.5t39.5 -16.5t15.5 -39.5q0 -24 -15.5 -40
-t-39.5 -16z" />
-    <glyph glyph-name="omegatonos" unicode="&#x3ce;" 
-d="M190 -12q-33 0 -61.5 15t-49.5 45t-33 75.5t-12 105.5q0 78 26.5 145t64.5 124l72 -33q-21 -30 -36.5 -59t-26 -59t-15.5 -62.5t-5 -70.5q0 -76 23 -117t58 -41q28 0 48.5 27t20.5 95q0 30 -2 60.5t-6 69.5h85q-4 -39 -5.5 -69.5t-1.5 -60.5q0 -35 5.5 -58.5t14.5 -37.5
-t21.5 -20t26.5 -6q36 0 58 41.5t22 129.5q0 37 -4.5 67.5t-13.5 58.5t-23.5 55.5t-34.5 58.5l73 31q19 -29 35 -58t27.5 -61.5t18 -68.5t6.5 -78q0 -123 -42.5 -183.5t-111.5 -60.5q-35 0 -64.5 19.5t-46.5 61.5h-4q-17 -42 -44.5 -61.5t-62.5 -19.5zM322 559l-57 10l47 230
-l85 -15z" />
-    <glyph glyph-name="iotadieresistonos" unicode="&#x390;" 
-d="M400 -12q-81 0 -117 44t-36 131v256h-166v67h249q-1 -41 -2 -84t-2 -85.5t-1.5 -83t-0.5 -76.5q0 -53 23.5 -77t70.5 -24q19 0 41 4.5t45 15.5l21 -61q-26 -12 -55.5 -19.5t-69.5 -7.5zM168 595q-20 0 -33 11.5t-13 31.5q0 21 13 33.5t33 12.5t33 -12.5t13 -33.5
-q0 -20 -13 -31.5t-33 -11.5zM241 573l49 226l68 -13l-75 -222zM398 595q-20 0 -33 11.5t-13 31.5q0 21 13 33.5t33 12.5t33 -12.5t13 -33.5q0 -20 -13 -31.5t-33 -11.5z" />
-    <glyph glyph-name="upsilondieresistonos" unicode="&#x3b0;" 
-d="M294 -12q-99 0 -155 51.5t-56 157.5q0 39 2 78t2 78q0 29 -1.5 62t-6.5 71h80q5 -26 6 -53.5t1 -59.5q0 -19 -1 -42t-2 -47t-2 -47.5t-1 -44.5q0 -37 11 -63t29.5 -42t43 -23.5t51.5 -7.5q32 0 59 12t47 36.5t31 62.5t11 90q0 51 -9 105t-31 117l80 19q20 -60 32 -119
-t12 -120q0 -66 -17 -116.5t-48 -85t-74 -52t-94 -17.5zM182 595q-20 0 -33 11.5t-13 31.5q0 21 13 33.5t33 12.5t33 -12.5t13 -33.5q0 -20 -13 -31.5t-33 -11.5zM255 573l49 226l68 -13l-75 -222zM412 595q-20 0 -33 11.5t-13 31.5q0 21 13 33.5t33 12.5t33 -12.5t13 -33.5
-q0 -20 -13 -31.5t-33 -11.5z" />
-    <glyph glyph-name="uni03D7" unicode="&#x3d7;" 
-d="M441 -187l-95 8q39 41 74 85t63 87q-22 25 -47.5 56t-51 64.5t-49.5 69.5t-43 72q-35 -38 -68 -83q-37 -54 -37 -147v-25h-77v353q0 29 -1.5 65t-8.5 68h82q5 -20 7 -50.5t2 -62.5v-152h4q30 52 69 97.5t83.5 81.5t91.5 61t94 37l9 -78q-48 -14 -97 -41.5t-98 -69.5
-q20 -38 47.5 -79t58 -81t62.5 -78t62 -71q-33 -53 -69.5 -102.5t-66.5 -84.5z" />
-    <glyph glyph-name="uni03D9" unicode="&#x3d9;" 
-d="M300 54q72 0 112.5 51t40.5 137q0 85 -40.5 136.5t-112.5 51.5t-112.5 -51.5t-40.5 -136.5q0 -86 40.5 -137t112.5 -51zM263 -179v170q-42 6 -79 25t-64 51t-42.5 76t-15.5 99q0 61 19 109t51.5 80.5t75.5 49.5t92 17t92 -17t75.5 -49.5t51.5 -80.5t19 -109
-q0 -54 -15 -97.5t-41.5 -75.5t-62.5 -51.5t-78 -26.5q1 -23 1.5 -42.5l1 -39t1 -41t1.5 -47.5h-83z" />
-    <glyph glyph-name="uni03DB" unicode="&#x3db;" 
-d="M438 -180l-65 26q26 33 39 55t13 42q0 12 -3.5 21.5t-14.5 18t-32.5 16t-58.5 15.5q-44 10 -84.5 26.5t-72 43.5t-50 66t-18.5 95q0 62 20.5 107.5t56.5 75t84.5 44t104.5 14.5h156v-70q-31 2 -70 2h-81q-85 0 -135.5 -42.5t-50.5 -130.5q0 -39 13 -66t36 -46t56 -31.5
-t72 -20.5q43 -9 71.5 -19.5t45 -24t23 -31.5t6.5 -43q0 -26 -15 -63.5t-46 -79.5z" />
-    <glyph glyph-name="uni03DD" unicode="&#x3dd;" 
-d="M146 -179v665h377v-67h-301l2 -217h266v-59h-265q0 -81 1 -157.5t3 -164.5h-83z" />
-    <glyph glyph-name="uni03E1" unicode="&#x3e1;" 
-d="M507 -179l-80 10q10 48 14 94t4 92q0 67 -10 126q-63 -29 -123.5 -57.5t-129.5 -63.5l-34 69l272 122q-15 63 -42 119q-69 -31 -135 -62t-141 -69l-34 69l278 125q-42 72 -100 131t-133 103l51 61q87 -53 154.5 -126t113 -160t69.5 -185.5t24 -202.5q0 -51 -4 -98.5
-t-14 -96.5z" />
-    <glyph glyph-name="uni037E" unicode="&#x37e;" 
-d="M300 346q-34 0 -57.5 23t-23.5 61t23.5 61.5t57.5 23.5t57.5 -23.5t23.5 -61.5t-23.5 -61t-57.5 -23zM220 -213l-23 52q62 28 93 67.5t33 99.5q-5 -2 -9.5 -2h-9.5q-32 0 -55 18.5t-23 56.5q0 37 24 56.5t56 19.5q45 0 67.5 -34.5t22.5 -93.5q0 -88 -46.5 -148.5
-t-129.5 -91.5z" />
-    <glyph glyph-name="anoteleia" unicode="&#x387;" 
-d="M300 340q-34 0 -57.5 23t-23.5 61t23.5 61.5t57.5 23.5t57.5 -23.5t23.5 -61.5t-23.5 -61t-57.5 -23z" />
-    <glyph glyph-name="anoteleia.cap" 
-d="M300 523q-34 0 -57.5 23t-23.5 61t23.5 61.5t57.5 23.5t57.5 -23.5t23.5 -61.5t-23.5 -61t-57.5 -23z" />
-    <glyph glyph-name="uni0374" unicode="&#x374;" 
-d="M257 449l22 241h81l-14 -92l-35 -149h-54z" />
-    <glyph glyph-name="uni0375" unicode="&#x375;" 
-d="M240 0l14 92l35 150h54l-22 -242h-81z" />
-    <glyph glyph-name="tonos" unicode="&#x384;" 
-d="M322 559l-57 10l47 230l85 -15z" />
-    <glyph glyph-name="tonos.cap" 
-d="M297 389l-57 10l36 291l79 -10z" />
-    <glyph glyph-name="dieresistonos" unicode="&#x385;" 
-d="M185 595q-20 0 -33 11.5t-13 31.5q0 21 13 33.5t33 12.5t33 -12.5t13 -33.5q0 -20 -13 -31.5t-33 -11.5zM258 573l49 226l68 -13l-75 -222zM415 595q-20 0 -33 11.5t-13 31.5q0 21 13 33.5t33 12.5t33 -12.5t13 -33.5q0 -20 -13 -31.5t-33 -11.5z" />
-    <glyph glyph-name="uni037A" unicode="&#x37a;" 
-d="M344 -201q-77 0 -77 92v47h64q-2 -13 -2 -27.5v-25.5q0 -17 9 -24t21 -7q4 0 8 0.5t14 2.5l9 -49q-10 -4 -19.5 -6.5t-26.5 -2.5z" />
-    <glyph glyph-name="uni1FBE" unicode="&#x1fbe;" 
-d="M346 -12q-51 0 -73 29.5t-22 83.5v305h83q-2 -81 -3.5 -160t-1.5 -151q0 -20 9.5 -29.5t25.5 -9.5q12 0 29 6l11 -62q-11 -5 -24.5 -8.5t-33.5 -3.5z" />
-    <glyph glyph-name="uni1FBD" unicode="&#x1fbd;" 
-d="M268 572l-9 40q24 6 40 16.5t16 30.5q0 43 -83 47l5 54q69 -2 106 -25.5t37 -68.5q0 -22 -9.5 -37.5t-25 -27t-35.5 -18.5t-42 -11z" />
-    <glyph glyph-name="uni1FBF" unicode="&#x1fbf;" 
-d="M268 572l-9 40q24 6 40 16.5t16 30.5q0 43 -83 47l5 54q69 -2 106 -25.5t37 -68.5q0 -22 -9.5 -37.5t-25 -27t-35.5 -18.5t-42 -11z" />
-    <glyph glyph-name="uni1FFE" unicode="&#x1ffe;" 
-d="M332 574q-22 4 -42 10.5t-35.5 17.5t-25 26.5t-9.5 37.5q0 45 37 68.5t106 25.5l5 -54q-83 -4 -83 -47q0 -20 16 -30.5t40 -16.5z" />
-    <glyph glyph-name="uni1FEF" unicode="&#x1fef;" 
-d="M276 558l-67 197l85 15l39 -201z" />
-    <glyph glyph-name="uni1FFD" unicode="&#x1ffd;" 
-d="M322 559l-57 10l47 230l85 -15z" />
-    <glyph glyph-name="uni1FCD" unicode="&#x1fcd;" 
-d="M180 577l-10 38q20 5 33.5 16t13.5 31q0 39 -73 43l4 51q59 -2 94 -23t35 -62q0 -22 -8.5 -38t-22 -27t-31 -18t-35.5 -11zM365 559l-63 197l74 14l39 -201z" />
-    <glyph glyph-name="uni1FDD" unicode="&#x1fdd;" 
-d="M235 577q-18 4 -35.5 11t-31 18t-22 27t-8.5 38q0 41 35 62t94 23l4 -51q-73 -4 -73 -43q0 -20 13 -31t33 -16zM359 559l-64 197l75 14l38 -201z" />
-    <glyph glyph-name="uni1FCE" unicode="&#x1fce;" 
-d="M180 577l-10 38q20 5 33.5 16t13.5 31q0 39 -73 43l4 51q59 -2 94 -23t35 -62q0 -22 -8.5 -38t-22 -27t-31 -18t-35.5 -11zM362 559l-50 10l42 201l74 -14z" />
-    <glyph glyph-name="uni1FDE" unicode="&#x1fde;" 
-d="M245 577q-18 4 -35.5 11t-31 18t-22 27t-8.5 38q0 41 35 62t94 23l4 -51q-73 -4 -73 -43q0 -20 13 -31t33 -16zM305 569l43 201l74 -14l-67 -197z" />
-    <glyph glyph-name="uni1FCF" unicode="&#x1fcf;" 
-d="M365 715q-22 0 -39 6.5t-31.5 14.5t-28 14.5t-27.5 6.5q-15 0 -22 -10.5t-11 -31.5l-47 4q4 38 21.5 63t54.5 25q22 0 39 -6.5t31.5 -14.5t28 -14.5t27.5 -6.5q15 0 22 10.5t11 31.5l47 -4q-4 -38 -21.5 -63t-54.5 -25zM273 562l-8 33q18 5 30 12t12 18q0 14 -16 21.5
-t-53 9.5l7 39q59 -2 90.5 -16.5t31.5 -44.5q0 -31 -29 -48t-65 -24z" />
-    <glyph glyph-name="uni1FDF" unicode="&#x1fdf;" 
-d="M327 562q-36 7 -65 24t-29 48q0 30 31.5 44.5t90.5 16.5l7 -39q-37 -2 -53 -9.5t-16 -21.5q0 -11 12 -18t30 -12zM159 719q4 38 21.5 63t54.5 25q22 0 39 -6.5t31.5 -14.5t28 -14.5t27.5 -6.5q15 0 22 10.5t11 31.5l47 -4q-4 -38 -21.5 -63t-54.5 -25q-22 0 -39 6.5
-t-31.5 14.5t-28 14.5t-27.5 6.5q-15 0 -22 -10.5t-11 -31.5z" />
-    <glyph glyph-name="uni1FC0" unicode="&#x1fc0;" 
-d="M372 577q-27 0 -46 13t-35 29t-30.5 29t-31.5 13q-23 0 -34 -22t-13 -57l-55 3q1 29 7.5 54t18.5 43t30.5 28.5t44.5 10.5q27 0 46 -13t35 -29t30.5 -29t32.5 -13q22 0 33 22t13 57l55 -4q-1 -29 -7.5 -53.5t-18.5 -42.5t-30.5 -28.5t-44.5 -10.5z" />
-    <glyph glyph-name="uni1FED" unicode="&#x1fed;" 
-d="M187 595q-18 0 -30 11.5t-12 30.5t12 30.5t30 11.5q17 0 29 -11.5t12 -30.5t-12 -30.5t-29 -11.5zM297 563l-64 197l66 14l41 -201zM413 595q-17 0 -29 11.5t-12 30.5t12 30.5t29 11.5q18 0 30 -11.5t12 -30.5t-12 -30.5t-30 -11.5z" />
-    <glyph glyph-name="uni1FEE" unicode="&#x1fee;" 
-d="M185 595q-20 0 -33 11.5t-13 31.5q0 21 13 33.5t33 12.5t33 -12.5t13 -33.5q0 -20 -13 -31.5t-33 -11.5zM258 573l49 226l68 -13l-75 -222zM415 595q-20 0 -33 11.5t-13 31.5q0 21 13 33.5t33 12.5t33 -12.5t13 -33.5q0 -20 -13 -31.5t-33 -11.5z" />
-    <glyph glyph-name="uni1FC1" unicode="&#x1fc1;" 
-d="M204 588q-20 0 -33 13t-13 32q0 20 13 33t33 13t32.5 -13t12.5 -33q0 -19 -12.5 -32t-32.5 -13zM396 588q-20 0 -32.5 13t-12.5 32q0 20 12.5 33t32.5 13t33 -13t13 -33q0 -19 -13 -32t-33 -13zM371 707q-26 0 -44 7.5t-33 17t-29 17t-32 7.5q-17 0 -29 -11.5t-15 -34.5
-l-42 4q2 39 23 65.5t59 26.5q26 0 44 -7.5t33 -17t29 -17t32 -7.5q17 0 29 11.5t15 34.5l42 -4q-2 -39 -23 -65.5t-59 -26.5z" />
-    <glyph glyph-name="uni1FBD.cap" 
-d="M265 461l-10 38q24 9 40.5 24t16.5 42q0 23 -20.5 37t-62.5 16l8 47q66 -2 102.5 -24.5t36.5 -66.5q0 -27 -9 -46t-24.5 -32t-35.5 -21.5t-42 -13.5z" />
-    <glyph glyph-name="uni1FFE.cap" 
-d="M339 461q-22 5 -42 13.5t-35.5 21.5t-24.5 32t-9 46q0 44 36 66.5t102 24.5l9 -47q-42 -2 -62.5 -16t-20.5 -37q0 -27 16.5 -42t39.5 -24z" />
-    <glyph glyph-name="uni1FEF.cap" 
-d="M296 464l-50 195l76 11l29 -195z" />
-    <glyph glyph-name="uni1FFD.cap" 
-d="M297 389l-57 10l36 291l79 -10z" />
-    <glyph glyph-name="uni1FCD.cap" 
-d="M206 464l-12 38q17 11 29.5 26t12.5 36q0 52 -66 57l8 47q54 -2 86 -25.5t32 -69.5q0 -22 -8 -39.5t-20.5 -31t-29 -23t-32.5 -15.5zM383 464l-50 195l75 11l30 -195z" />
-    <glyph glyph-name="uni1FDD.cap" 
-d="M261 464q-17 6 -33.5 15.5t-29 23t-20.5 31t-8 39.5q0 46 32 69.5t86 25.5l9 -47q-67 -4 -67 -57q0 -21 12.5 -36t30.5 -26zM381 464l-50 195l75 11l30 -195z" />
-    <glyph glyph-name="uni1FCE.cap" 
-d="M206 464l-12 38q17 11 29.5 26t12.5 36q0 52 -66 57l8 47q54 -2 86 -25.5t32 -69.5q0 -22 -8 -39.5t-20.5 -31t-29 -23t-32.5 -15.5zM387 464l-55 11l29 195l76 -11z" />
-    <glyph glyph-name="uni1FDE.cap" 
-d="M263 464q-17 6 -33.5 15.5t-29 23t-20.5 31t-8 39.5q0 46 32 69.5t86 25.5l9 -47q-67 -4 -67 -57q0 -21 12.5 -36t30.5 -26zM332 475l29 195l76 -11l-50 -195z" />
-    <glyph glyph-name="uni1FCF.cap" 
-d="M349 592q-18 0 -30.5 5.5t-23 12t-20 12t-21.5 5.5t-20 -6t-10 -25l-42 6q4 35 20 52.5t49 17.5q18 0 30.5 -5.5t23 -12t20 -12t21.5 -5.5t20 6t10 25l42 -6q-4 -35 -20 -52.5t-49 -17.5zM273 439l-8 33q18 5 30 12t12 17q0 14 -16 22t-53 10l7 39q59 -2 90.5 -16.5
-t31.5 -45.5q0 -15 -8 -27t-21 -20.5t-30 -14.5t-35 -9z" />
-    <glyph glyph-name="uni1FDF.cap" 
-d="M327 439q-18 3 -35 9t-30 14.5t-21 20.5t-8 27q0 31 31.5 45.5t90.5 16.5l7 -39q-37 -2 -53 -10t-16 -22q0 -10 12 -17t30 -12zM349 592q-18 0 -30.5 5.5t-23 12t-20 12t-21.5 5.5t-20 -6t-10 -25l-42 6q4 35 20 52.5t49 17.5q18 0 30.5 -5.5t23 -12t20 -12t21.5 -5.5
-t20 6t10 25l42 -6q-4 -35 -20 -52.5t-49 -17.5z" />
-    <glyph glyph-name="uni0410" unicode="&#x410;" 
-d="M232 367l-31 -100h196l-31 100q-17 55 -33.5 109.5t-31.5 111.5h-4q-16 -57 -32 -111.5t-33 -109.5zM32 0l221 656h94l221 -656h-88l-62 200h-238l-63 -200h-85z" />
-    <glyph glyph-name="uni0411" unicode="&#x411;" 
-d="M99 0v656h405v-70h-322v-206h126q52 0 96 -10t75.5 -31.5t49.5 -56t18 -83.5q0 -103 -63.5 -151t-171.5 -48h-213zM182 70h116q85 0 126 28t41 96q0 63 -42 89.5t-127 26.5h-114v-240z" />
-    <glyph glyph-name="uni0412" unicode="&#x412;" 
-d="M99 0v656h186q50 0 91.5 -9t71 -28t46 -49.5t16.5 -73.5q0 -49 -28 -88.5t-87 -54.5v-4q72 -11 112 -50t40 -107q0 -48 -18 -84t-50.5 -60t-78 -36t-100.5 -12h-201zM182 380h89q84 0 120.5 27t36.5 82q0 54 -38.5 75.5t-114.5 21.5h-93v-206zM182 70h106q85 0 131 29.5
-t46 96.5q0 61 -45 87.5t-132 26.5h-106v-240z" />
-    <glyph glyph-name="uni0413" unicode="&#x413;" 
-d="M135 0v656h400v-70h-317v-586h-83z" />
-    <glyph glyph-name="uni0414" unicode="&#x414;" 
-d="M31 -188l-9 209v50h30q9 4 19 16.5t20.5 39.5t21.5 71t22 109q9 49 16 90t13.5 81t13 82.5t14.5 95.5h313v-585h73v-50l-9 -209h-73v188h-392v-188h-73zM210 293q-14 -85 -31 -138t-37 -84h280v515h-165q-7 -42 -12.5 -77.5t-10.5 -69t-11 -69t-13 -77.5z" />
-    <glyph glyph-name="uni0415" unicode="&#x415;" 
-d="M114 0v656h406v-70h-322v-206h272v-71h-272v-238h332v-71h-416z" />
-    <glyph glyph-name="uni0416" unicode="&#x416;" 
-d="M2 0l139 351l-43 158q-8 26 -16 41.5t-15.5 23.5t-15.5 10.5t-16 2.5q-5 0 -10.5 -1t-10.5 -3l-13 80q7 2 19 3.5t21 1.5q19 0 36 -4.5t32 -17t28.5 -36t24.5 -62.5l47 -168h53v276h76v-276h53l47 168q11 39 23.5 62.5t27 36t31 17t35.5 4.5q9 0 23 -1.5t21 -3.5l-13 -80
-q-5 2 -10.5 3t-10.5 1q-8 0 -16 -2.5t-15.5 -10.5t-15.5 -23.5t-16 -41.5l-43 -158l139 -351h-90l-110 309h-60v-309h-76v309h-60l-110 -309h-90z" />
-    <glyph glyph-name="uni0417" unicode="&#x417;" 
-d="M301 -12q-72 0 -130 23t-109 74l47 57q44 -44 88.5 -62.5t102.5 -18.5q33 0 61.5 8.5t50 25t34 40.5t12.5 55q0 63 -47 93t-133 30h-74v64h54q88 0 127 28.5t39 84.5q0 52 -37 78.5t-94 26.5q-47 0 -86.5 -17t-70.5 -46l-45 56q36 35 89.5 57.5t114.5 22.5q47 0 86 -11.5
-t66.5 -33t43 -53t15.5 -70.5q0 -52 -25 -91.5t-73 -56.5v-4q57 -11 94.5 -52.5t37.5 -109.5q0 -47 -18.5 -84t-51 -62.5t-76 -38.5t-93.5 -13z" />
-    <glyph glyph-name="uni0418" unicode="&#x418;" 
-d="M78 0v656h80v-340q0 -52 -4.5 -105.5t-6.5 -102.5h2l63 136l218 412h92v-656h-80v343q0 51 4.5 102.5t6.5 102.5h-2l-63 -136l-218 -412h-92z" />
-    <glyph glyph-name="uni0419" unicode="&#x419;" 
-d="M78 0v656h80v-340q0 -52 -4.5 -105.5t-6.5 -102.5h2l63 136l218 412h92v-656h-80v343q0 51 4.5 102.5t6.5 102.5h-2l-63 -136l-218 -412h-92zM304 705q-42 0 -70 10.5t-45.5 28.5t-26 41t-9.5 48l72 4q1 -35 19 -60.5t60 -25.5q21 0 35.5 7t24 18.5t14 27t5.5 33.5l72 -4
-q-2 -25 -10 -48t-25.5 -41t-45.5 -28.5t-70 -10.5z" />
-    <glyph glyph-name="uni041A" unicode="&#x41a;" 
-d="M102 0v656h83v-276h107l88 166q19 37 36.5 61t34.5 37.5t35.5 18.5t41.5 5q9 0 18.5 -1.5t17.5 -4.5l-15 -78q-6 2 -12 3t-11 1q-11 0 -20.5 -3t-19 -11.5t-21 -25t-25.5 -43.5l-81 -153l221 -352h-92l-196 309h-107v-309h-83z" />
-    <glyph glyph-name="uni041B" unicode="&#x41b;" 
-d="M58 -12q-16 0 -29 2t-27 7l17 77q15 -6 28 -6q12 0 23 5.5t21 24t20 53t22 93.5q10 53 19.5 103t18.5 100.5t17.5 102t18.5 106.5h314v-656h-84v586h-165q-16 -91 -29.5 -175.5t-30.5 -175.5q-15 -75 -30 -123t-33 -75.5t-40.5 -38t-50.5 -10.5z" />
-    <glyph glyph-name="uni041C" unicode="&#x41c;" 
-d="M72 0v656h102l92 -280l32 -106h4l31 106l93 280h102v-656h-80v328q0 24 1.5 55.5t4 63.5t4.5 62t4 51h-3l-37 -128l-94 -258h-60l-92 258l-38 128h-2q2 -21 4.5 -51t4.5 -62t3.5 -63.5t1.5 -55.5v-328h-78z" />
-    <glyph glyph-name="uni041D" unicode="&#x41d;" 
-d="M79 0v656h84v-275h274v275h84v-656h-84v309h-274v-309h-84z" />
-    <glyph glyph-name="uni041E" unicode="&#x41e;" 
-d="M300 -12q-56 0 -102 23.5t-79.5 67.5t-52 107.5t-18.5 144.5q0 79 18.5 142t52 106t79.5 66t102 23q55 0 101.5 -23t80 -66t52 -106t18.5 -142q0 -81 -18.5 -144.5t-52 -107.5t-80 -67.5t-101.5 -23.5zM300 61q37 0 68 18.5t52.5 53.5t33.5 85t12 113q0 62 -12 111
-t-33.5 83t-52.5 52t-68 18q-38 0 -68.5 -18t-52 -52t-33.5 -83t-12 -111q0 -63 12 -113t33.5 -85t52 -53.5t68.5 -18.5z" />
-    <glyph glyph-name="uni041F" unicode="&#x41f;" 
-d="M79 0v656h442v-656h-84v586h-274v-586h-84z" />
-    <glyph glyph-name="uni0420" unicode="&#x420;" 
-d="M102 0v656h198q54 0 99 -10t77 -32.5t49.5 -59.5t17.5 -91q0 -52 -17.5 -90t-50 -63t-77 -37.5t-98.5 -12.5h-115v-260h-83zM185 328h105q87 0 128 32.5t41 102.5q0 71 -42 98.5t-127 27.5h-105v-261z" />
-    <glyph glyph-name="uni0421" unicode="&#x421;" 
-d="M351 -12q-61 0 -113 23t-90.5 66.5t-60.5 107t-22 143.5q0 79 22 142t61 107t93 67.5t118 23.5q59 0 104.5 -24t74.5 -56l-47 -53q-26 27 -58 43.5t-74 16.5q-47 0 -85.5 -18.5t-65.5 -53t-42 -83.5t-15 -110q0 -62 15 -111.5t42 -84.5t65.5 -54t85.5 -19q45 0 80.5 19
-t67.5 54l47 -51q-39 -45 -88 -70t-115 -25z" />
-    <glyph glyph-name="uni0422" unicode="&#x422;" 
-d="M258 0v586h-216v70h516v-70h-216v-586h-84z" />
-    <glyph glyph-name="uni0423" unicode="&#x423;" 
-d="M178 -12q-22 0 -36.5 2.5t-28.5 7.5l18 75q8 -3 17.5 -5t24.5 -2q32 0 51 12.5t33 40.5l14 35l-224 502h89l122 -292l50 -129h4l47 129l112 292h85l-215 -537q-25 -61 -62.5 -96t-100.5 -35z" />
-    <glyph glyph-name="uni0424" unicode="&#x424;" 
-d="M106 332q0 -82 38.5 -130t117.5 -55v364q-79 -6 -117.5 -52t-38.5 -127zM494 332q0 81 -38.5 127t-117.5 52v-364q79 7 117.5 55t38.5 130zM262 -12v95q-113 8 -174.5 71.5t-61.5 177.5q0 112 61.5 173.5t174.5 69.5v93h76v-93q113 -8 174.5 -69.5t61.5 -173.5
-q0 -114 -61.5 -177.5t-174.5 -71.5v-95h-76z" />
-    <glyph glyph-name="uni0425" unicode="&#x425;" 
-d="M54 0l196 339l-183 317h92l92 -168q13 -23 25 -44.5t28 -50.5h4q14 29 24.5 50.5t22.5 44.5l90 168h88l-183 -321l196 -335h-92l-99 177q-14 24 -27.5 49.5t-30.5 55.5h-4q-14 -30 -27 -55.5t-26 -49.5l-98 -177h-88z" />
-    <glyph glyph-name="uni0426" unicode="&#x426;" 
-d="M79 0v656h83v-585h273v585h83v-585h71v-50l-9 -209h-68v188h-433z" />
-    <glyph glyph-name="uni0427" unicode="&#x427;" 
-d="M432 0v294q-25 -5 -55 -7.5t-70 -2.5q-56 0 -101 11t-76.5 36.5t-48 67t-16.5 101.5v156h82v-156q0 -83 43.5 -115t123.5 -32q39 0 68 2.5t50 7.5v293h84v-656h-84z" />
-    <glyph glyph-name="uni0428" unicode="&#x428;" 
-d="M40 0v656h76v-585h146v585h76v-585h146v585h76v-656h-520z" />
-    <glyph glyph-name="uni0429" unicode="&#x429;" 
-d="M38 0v656h74v-585h134v585h74v-585h134v585h74v-585h64v-50l-9 -209h-66v188h-479z" />
-    <glyph glyph-name="uni042A" unicode="&#x42a;" 
-d="M201 0v586h-182v70h266v-269h55q50 0 93 -11t74 -33.5t48.5 -57.5t17.5 -83q0 -53 -16 -91t-45.5 -62.5t-71 -36.5t-93.5 -12h-146zM285 68h51q78 0 117.5 31t39.5 101q0 60 -41.5 90t-122.5 30h-44v-252z" />
-    <glyph glyph-name="uni042B" unicode="&#x42b;" 
-d="M55 0v656h76v-269h36q49 0 89.5 -10.5t69 -33t44.5 -57.5t16 -84q0 -105 -59 -153.5t-159 -48.5h-113zM131 68h30q75 0 113.5 31t38.5 101q0 63 -38.5 91.5t-115.5 28.5h-28v-252zM469 0v656h76v-656h-76z" />
-    <glyph glyph-name="uni042C" unicode="&#x42c;" 
-d="M98 0v656h84v-269h121q54 0 98.5 -10.5t76.5 -33t49.5 -57.5t17.5 -84q0 -53 -17 -91t-48.5 -62.5t-76 -36.5t-99.5 -12h-206zM182 68h111q84 0 127 31t43 101q0 63 -43 91.5t-129 28.5h-109v-252z" />
-    <glyph glyph-name="uni042D" unicode="&#x42d;" 
-d="M258 -12q-67 0 -118.5 25t-93.5 70l46 52q34 -35 73.5 -54.5t90.5 -19.5q86 0 137.5 61.5t56.5 186.5h-275v71h274q-9 105 -59 160t-136 55q-43 0 -80.5 -16.5t-65.5 -45.5l-46 54q31 32 82.5 56.5t113.5 24.5t113 -22t87 -65t56 -106.5t20 -146.5q0 -84 -20.5 -147.5
-t-57.5 -106t-87.5 -64.5t-110.5 -22z" />
-    <glyph glyph-name="uni042E" unicode="&#x42e;" 
-d="M380 -12q-80 0 -127 78.5t-51 242.5h-74v-309h-84v656h84v-275h75q7 149 53.5 218t123.5 69q84 0 134 -81t50 -255q0 -176 -50 -260t-134 -84zM380 61q24 0 42 15t30.5 47.5t19 84t6.5 124.5q0 72 -6.5 122t-19 81.5t-30.5 45.5t-42 14q-23 0 -41 -14t-30.5 -45.5
-t-19.5 -81.5t-7 -122q0 -73 7 -124.5t19.5 -84t30.5 -47.5t41 -15z" />
-    <glyph glyph-name="uni042F" unicode="&#x42f;" 
-d="M417 0v277h-121l-170 -277h-96l184 286q-66 16 -107.5 61.5t-41.5 124.5q0 51 17 86t47.5 57t73 31.5t92.5 9.5h206v-656h-84zM307 345h110v244h-110q-77 0 -117.5 -26t-40.5 -91q0 -64 40.5 -95.5t117.5 -31.5z" />
-    <glyph glyph-name="uni0400" unicode="&#x400;" 
-d="M114 0v656h406v-70h-322v-206h272v-71h-272v-238h332v-71h-416zM360 697l-152 115l47 55l141 -128z" />
-    <glyph glyph-name="uni0401" unicode="&#x401;" 
-d="M114 0v656h406v-70h-322v-206h272v-71h-272v-238h332v-71h-416zM240 715q-22 0 -36.5 14t-14.5 37t14.5 36.5t36.5 13.5t36 -13.5t14 -36.5t-14 -37t-36 -14zM422 715q-22 0 -36 14t-14 37t14 36.5t36 13.5t36.5 -13.5t14.5 -36.5t-14.5 -37t-36.5 -14z" />
-    <glyph glyph-name="uni0402" unicode="&#x402;" 
-d="M411 -12q-17 0 -35 3t-29 7l15 67q7 -3 17.5 -5.5t20.5 -2.5q16 0 32.5 6t30.5 21.5t23 41.5t9 65q0 74 -38.5 107.5t-107.5 33.5q-24 0 -48.5 -2.5t-43.5 -7.5v-322h-84v586h-168v70h462v-70h-210v-195q22 4 49.5 7t54.5 3q46 0 85.5 -12t68.5 -37t45 -65t16 -95
-q0 -59 -14 -98t-37.5 -62.5t-53 -33.5t-60.5 -10z" />
-    <glyph glyph-name="uni0403" unicode="&#x403;" 
-d="M135 0v656h400v-70h-317v-586h-83zM271 697l-36 42l141 128l47 -55z" />
-    <glyph glyph-name="uni0404" unicode="&#x404;" 
-d="M352 -12q-63 0 -115.5 22t-90.5 64.5t-59 106t-21 147.5q0 83 21.5 146.5t60 106.5t92 65t116.5 22q60 0 106.5 -24.5t75.5 -56.5l-46 -54q-26 28 -59 45t-75 17q-88 0 -142 -55t-65 -160h274v-71h-275q5 -125 58.5 -186.5t147.5 -61.5q47 0 83.5 19.5t68.5 54.5l46 -52
-q-39 -45 -88.5 -70t-113.5 -25z" />
-    <glyph glyph-name="uni0405" unicode="&#x405;" 
-d="M305 -12q-72 0 -132.5 26t-105.5 71l50 58q37 -37 86 -59.5t106 -22.5q68 0 105.5 29t37.5 75q0 26 -9 44t-25 31t-37.5 23t-46.5 21l-94 41q-25 10 -50 24t-45.5 34t-33.5 47.5t-13 63.5q0 37 16 69t44.5 55.5t68 36.5t86.5 13q62 0 114 -22.5t88 -58.5l-44 -54
-q-32 29 -71 45.5t-90 16.5q-57 0 -92 -25.5t-35 -70.5q0 -24 10.5 -40.5t27 -29t37.5 -21.5l42 -18l92 -40q30 -12 56.5 -27.5t46 -36t31 -48t11.5 -63.5q0 -39 -16 -73t-46 -59.5t-73 -40t-97 -14.5z" />
-    <glyph glyph-name="uni0406" unicode="&#x406;" 
-d="M95 0v71h163v515h-163v70h410v-70h-163v-515h163v-71h-410z" />
-    <glyph glyph-name="uni0407" unicode="&#x407;" 
-d="M95 0v71h163v515h-163v70h410v-70h-163v-515h163v-71h-410zM209 715q-22 0 -36.5 14t-14.5 37t14.5 36.5t36.5 13.5t36 -13.5t14 -36.5t-14 -37t-36 -14zM391 715q-22 0 -36 14t-14 37t14 36.5t36 13.5t36.5 -13.5t14.5 -36.5t-14.5 -37t-36.5 -14z" />
-    <glyph glyph-name="uni0408" unicode="&#x408;" 
-d="M276 -12q-55 0 -108 26t-87 83l52 51q28 -45 65.5 -66t75.5 -21q71 0 103.5 37.5t32.5 118.5v370h-275v70h358v-447q0 -46 -11 -86.5t-36.5 -70.5t-67 -47.5t-102.5 -17.5z" />
-    <glyph glyph-name="uni0409" unicode="&#x409;" 
-d="M35 -12q-11 0 -21 1t-22 6l17 77q5 -2 9 -3t9 -1q9 0 17 5t15.5 22t14.5 49.5t14 87.5q14 109 21 213.5t10 210.5h237v-269h22q43 0 79.5 -10.5t62 -33t40 -57.5t14.5 -84q0 -105 -54 -153.5t-145 -48.5h-95v586h-92q-3 -90 -10 -178t-18 -193q-8 -69 -19 -113t-26 -69.5
-t-35 -35t-45 -9.5zM356 68h16q65 0 96.5 31t31.5 101q0 63 -32 91.5t-99 28.5h-13v-252z" />
-    <glyph glyph-name="uni040A" unicode="&#x40a;" 
-d="M39 0v656h76v-275h152v275h76v-269h35q43 0 79 -10.5t62 -33t40 -57.5t14 -84q0 -53 -13.5 -91t-39 -62.5t-61.5 -36.5t-80 -12h-112v309h-152v-309h-76zM343 68h29q63 0 95 30t32 102q0 64 -32 92t-98 28h-26v-252z" />
-    <glyph glyph-name="uni040B" unicode="&#x40b;" 
-d="M173 0v586h-168v70h461v-70h-210v-195q23 4 50.5 7t53.5 3q97 0 152 -45t55 -147v-209h-82v209q0 67 -34 95t-103 28q-23 0 -48 -2.5t-44 -7.5v-322h-83z" />
-    <glyph glyph-name="uni040C" unicode="&#x40c;" 
-d="M102 0v656h83v-276h107l88 166q19 37 36.5 61t34.5 37.5t35.5 18.5t41.5 5q9 0 18.5 -1.5t17.5 -4.5l-15 -78q-6 2 -12 3t-11 1q-11 0 -20.5 -3t-19 -11.5t-21 -25t-25.5 -43.5l-81 -153l221 -352h-92l-196 309h-107v-309h-83zM288 697l-36 42l141 128l47 -55z" />
-    <glyph glyph-name="uni040D" unicode="&#x40d;" 
-d="M78 0v656h80v-340q0 -52 -4.5 -105.5t-6.5 -102.5h2l63 136l218 412h92v-656h-80v343q0 51 4.5 102.5t6.5 102.5h-2l-63 -136l-218 -412h-92zM333 697l-152 115l47 55l141 -128z" />
-    <glyph glyph-name="uni040E" unicode="&#x40e;" 
-d="M178 -12q-22 0 -36.5 2.5t-28.5 7.5l18 75q8 -3 17.5 -5t24.5 -2q32 0 51 12.5t33 40.5l14 35l-224 502h89l122 -292l50 -129h4l47 129l112 292h85l-215 -537q-25 -61 -62.5 -96t-100.5 -35zM304 705q-42 0 -70 10.5t-45.5 28.5t-26 41t-9.5 48l72 4q1 -35 19 -60.5
-t60 -25.5q21 0 35.5 7t24 18.5t14 27t5.5 33.5l72 -4q-2 -25 -10 -48t-25.5 -41t-45.5 -28.5t-70 -10.5z" />
-    <glyph glyph-name="uni040F" unicode="&#x40f;" 
-d="M75 0v656h84v-585h282v585h84v-656h-182l-8 -188h-69v188h-191z" />
-    <glyph glyph-name="uni0462" unicode="&#x462;" 
-d="M160 0v507h-136v68h136v125h83v-125h222v-68h-222v-136h66q54 0 98.5 -9.5t76.5 -30t49.5 -53.5t17.5 -80q0 -53 -16.5 -90.5t-47 -61.5t-74 -35t-98.5 -11h-155zM243 66h62q83 0 123.5 29.5t40.5 98.5q0 62 -41.5 88.5t-129.5 26.5h-55v-243z" />
-    <glyph glyph-name="uni0472" unicode="&#x472;" 
-d="M300 -12q-56 0 -102.5 23t-79.5 66.5t-51.5 107.5t-18.5 146t18.5 144.5t51.5 105.5t79.5 65t102.5 22t102.5 -22t79.5 -65t51.5 -106t18.5 -144q0 -82 -18.5 -146t-51.5 -107.5t-79.5 -66.5t-102.5 -23zM300 598q-70 0 -114.5 -56.5t-52.5 -162.5h334
-q-8 106 -52.5 162.5t-114.5 56.5zM300 58q74 0 119 65t50 188h-338q5 -123 50 -188t119 -65z" />
-    <glyph glyph-name="uni0474" unicode="&#x474;" 
-d="M248 0l-210 656h89l106 -354q16 -59 30 -109t33 -108h4q8 29 14.5 55.5t13.5 52.5t14 53t15 56l64 227q20 73 48.5 106t81.5 33q15 0 25.5 -2t22.5 -7l-17 -77q-5 2 -11.5 4t-14.5 2q-22 0 -34.5 -18.5t-23.5 -55.5l-148 -514h-102z" />
-    <glyph glyph-name="uni0490" unicode="&#x490;" 
-d="M135 0v656h313l16 172h70l-9 -242h-307v-586h-83z" />
-    <glyph glyph-name="uni0492" unicode="&#x492;" 
-d="M140 0v300h-80v58l80 4v294h386v-70h-302v-224h168v-62h-168v-300h-84z" />
-    <glyph glyph-name="uni0496" unicode="&#x496;" 
-d="M547 -188v188h-39l-110 309h-60v-309h-76v309h-60l-110 -309h-90l139 351l-43 158q-8 26 -16 41.5t-15.5 23.5t-15.5 10.5t-16 2.5q-5 0 -10.5 -1t-10.5 -3l-13 80q7 2 19 3.5t21 1.5q19 0 36 -4.5t32 -17t28.5 -36t24.5 -62.5l47 -168h53v276h76v-276h53l47 168
-q11 39 23.5 62.5t27 36t31 17t35.5 4.5q9 0 23 -1.5t21 -3.5l-13 -80q-5 2 -10.5 3t-10.5 1q-8 0 -16 -2.5t-15.5 -10.5t-15.5 -23.5t-16 -41.5l-43 -158l111 -280h45v-50l-9 -209h-59z" />
-    <glyph glyph-name="uni0498" unicode="&#x498;" 
-d="M264 -188v177q-60 5 -109 27.5t-93 67.5l47 57q44 -44 88.5 -62.5t102.5 -18.5q33 0 61.5 8.5t50 25t34 40.5t12.5 55q0 63 -47 93t-133 30h-74v64h54q88 0 127 28.5t39 84.5q0 52 -37 78.5t-94 26.5q-47 0 -86.5 -17t-70.5 -46l-45 56q36 35 89.5 57.5t114.5 22.5
-q47 0 86 -11.5t66.5 -33t43 -53t15.5 -70.5q0 -52 -25 -91.5t-73 -56.5v-4q57 -11 94.5 -52.5t37.5 -109.5q0 -42 -14.5 -76t-41 -58.5t-62 -40t-77.5 -20.5l-8 -178h-73z" />
-    <glyph glyph-name="uni049A" unicode="&#x49a;" 
-d="M513 -188v188h-25l-196 309h-107v-309h-83v656h83v-276h107l88 166q19 37 36.5 61t34.5 37.5t35.5 18.5t41.5 5q9 0 18.5 -1.5t17.5 -4.5l-15 -78q-6 2 -12 3t-11 1q-11 0 -20.5 -3t-19 -11.5t-21 -25t-25.5 -43.5l-81 -153l176 -281h53v-50l-9 -209h-66z" />
-    <glyph glyph-name="uni04A0" unicode="&#x4a0;" 
-d="M205 0v586h-186v70h262v-276h66l75 166q18 39 33 62.5t30.5 37t32 18t36.5 4.5q19 0 33 -6l-14 -77q-9 3 -20 3q-8 0 -15.5 -2.5t-16 -11.5t-19 -25.5t-23.5 -43.5l-73 -154l194 -351h-81l-174 309h-64v-309h-76z" />
-    <glyph glyph-name="uni04A2" unicode="&#x4a2;" 
-d="M79 0v656h84v-275h272v275h83v-585h71v-50l-9 -209h-64v188h-81v309h-272v-309h-84z" />
-    <glyph glyph-name="uni04AA" unicode="&#x4aa;" 
-d="M313 -188v178q-54 7 -99.5 33t-78.5 69t-51.5 102.5t-18.5 133.5q0 79 22 142t61 107t93 67.5t118 23.5q59 0 104.5 -24t74.5 -56l-47 -53q-26 27 -58 43.5t-74 16.5q-47 0 -85.5 -18.5t-65.5 -53t-42 -83.5t-15 -110q0 -62 15 -111.5t42 -84.5t65.5 -54t85.5 -19
-q45 0 80.5 19t67.5 54l47 -51q-32 -38 -71 -61t-89 -31l-8 -179h-73z" />
-    <glyph glyph-name="uni04AE" unicode="&#x4ae;" 
-d="M258 0v234l-220 422h88l99 -195q19 -38 37 -75.5t38 -77.5h4l39 78l38 76l95 194h86l-220 -422v-234h-84z" />
-    <glyph glyph-name="uni04B0" unicode="&#x4b0;" 
-d="M106 220v58l89 4h38l-195 374h88l99 -195q19 -38 37 -75.5t38 -77.5h4l39 78l38 76l95 194h86l-195 -374h127v-62h-152v-220h-84v220h-152z" />
-    <glyph glyph-name="uni04B2" unicode="&#x4b2;" 
-d="M491 -188v188h-37l-99 177q-14 24 -27.5 49.5t-30.5 55.5h-4q-14 -30 -27 -55.5t-26 -49.5l-98 -177h-88l196 339l-183 317h92l92 -168q13 -23 25 -44.5t28 -50.5h4q14 29 24.5 50.5t22.5 44.5l90 168h88l-183 -321l154 -264h60v-50l-8 -209h-65z" />
-    <glyph glyph-name="uni04B6" unicode="&#x4b6;" 
-d="M427 0v294q-24 -5 -53.5 -7.5t-69.5 -2.5q-56 0 -100.5 11t-75 36.5t-47 67t-16.5 101.5v156h82v-156q0 -83 42.5 -115t122.5 -32q38 0 66 2.5t49 7.5v293h84v-585h71v-50l-9 -209h-70v188h-76z" />
-    <glyph glyph-name="uni04BA" unicode="&#x4ba;" 
-d="M91 0v656h83v-258q24 4 52.5 7t66.5 3q56 0 100.5 -11t75 -36.5t47 -66.5t16.5 -100v-194h-82v194q0 41 -10.5 69t-31.5 45t-51.5 24t-70.5 7q-37 0 -64.5 -3t-47.5 -7v-329h-83z" />
-    <glyph glyph-name="uni04C0" unicode="&#x4c0;" 
-d="M95 0v71h163v515h-163v70h410v-70h-163v-515h163v-71h-410z" />
-    <glyph glyph-name="uni04C1" unicode="&#x4c1;" 
-d="M2 0l139 351l-43 158q-8 26 -16 41.5t-15.5 23.5t-15.5 10.5t-16 2.5q-5 0 -10.5 -1t-10.5 -3l-13 80q7 2 19 3.5t21 1.5q19 0 36 -4.5t32 -17t28.5 -36t24.5 -62.5l47 -168h53v276h76v-276h53l47 168q11 39 23.5 62.5t27 36t31 17t35.5 4.5q9 0 23 -1.5t21 -3.5l-13 -80
-q-5 2 -10.5 3t-10.5 1q-8 0 -16 -2.5t-15.5 -10.5t-15.5 -23.5t-16 -41.5l-43 -158l139 -351h-90l-110 309h-60v-309h-76v309h-60l-110 -309h-90zM300 705q-42 0 -70 10.5t-45.5 28.5t-26 41t-9.5 48l72 4q1 -35 19 -60.5t60 -25.5q21 0 35.5 7t24 18.5t14 27t5.5 33.5
-l72 -4q-2 -25 -10 -48t-25.5 -41t-45.5 -28.5t-70 -10.5z" />
-    <glyph glyph-name="uni04D0" unicode="&#x4d0;" 
-d="M232 367l-31 -100h196l-31 100q-17 55 -33.5 109.5t-31.5 111.5h-4q-16 -57 -32 -111.5t-33 -109.5zM32 0l221 656h94l221 -656h-88l-62 200h-238l-63 -200h-85zM300 705q-42 0 -70 10.5t-45.5 28.5t-26 41t-9.5 48l72 4q1 -35 19 -60.5t60 -25.5q21 0 35.5 7t24 18.5
-t14 27t5.5 33.5l72 -4q-2 -25 -10 -48t-25.5 -41t-45.5 -28.5t-70 -10.5z" />
-    <glyph glyph-name="uni04D4" unicode="&#x4d4;" 
-d="M231 377l-46 -119h132v332h-3q-20 -54 -41.5 -106.5t-41.5 -106.5zM-1 0l264 656h319v-70h-189v-205h147v-71h-147v-239h198v-71h-274v191h-158l-73 -191h-87z" />
-    <glyph glyph-name="uni04D6" unicode="&#x4d6;" 
-d="M114 0v656h406v-70h-322v-206h272v-71h-272v-238h332v-71h-416zM331 705q-42 0 -70 10.5t-45.5 28.5t-26 41t-9.5 48l72 4q1 -35 19 -60.5t60 -25.5q21 0 35.5 7t24 18.5t14 27t5.5 33.5l72 -4q-2 -25 -10 -48t-25.5 -41t-45.5 -28.5t-70 -10.5z" />
-    <glyph glyph-name="uni04D8" unicode="&#x4d8;" 
-d="M300 -12q-55 0 -99.5 24.5t-76 68.5t-48.5 106.5t-17 139.5v11.5t1 11.5h407q-4 118 -47 182t-123 64q-41 0 -74 -16t-58 -42l-40 57q31 32 74.5 52.5t101.5 20.5t104 -23.5t78.5 -67t49.5 -106t17 -141.5t-18.5 -142t-51.5 -107.5t-79 -68.5t-101 -24zM300 60
-q69 0 113.5 57t52.5 169h-325q8 -114 49 -170t110 -56z" />
-    <glyph glyph-name="uni04E2" unicode="&#x4e2;" 
-d="M78 0v656h80v-340q0 -52 -4.5 -105.5t-6.5 -102.5h2l63 136l218 412h92v-656h-80v343q0 51 4.5 102.5t6.5 102.5h-2l-63 -136l-218 -412h-92zM170 735v57h268v-57h-268z" />
-    <glyph glyph-name="uni04E6" unicode="&#x4e6;" 
-d="M300 -12q-56 0 -102 23.5t-79.5 67.5t-52 107.5t-18.5 144.5q0 79 18.5 142t52 106t79.5 66t102 23q55 0 101.5 -23t80 -66t52 -106t18.5 -142q0 -81 -18.5 -144.5t-52 -107.5t-80 -67.5t-101.5 -23.5zM300 61q37 0 68 18.5t52.5 53.5t33.5 85t12 113q0 62 -12 111
-t-33.5 83t-52.5 52t-68 18q-38 0 -68.5 -18t-52 -52t-33.5 -83t-12 -111q0 -63 12 -113t33.5 -85t52 -53.5t68.5 -18.5zM209 715q-22 0 -36.5 14t-14.5 37t14.5 36.5t36.5 13.5t36 -13.5t14 -36.5t-14 -37t-36 -14zM391 715q-22 0 -36 14t-14 37t14 36.5t36 13.5t36.5 -13.5
-t14.5 -36.5t-14.5 -37t-36.5 -14z" />
-    <glyph glyph-name="uni04E8" unicode="&#x4e8;" 
-d="M300 -12q-56 0 -102.5 23t-79.5 66.5t-51.5 107.5t-18.5 146t18.5 144.5t51.5 105.5t79.5 65t102.5 22t102.5 -22t79.5 -65t51.5 -106t18.5 -144q0 -82 -18.5 -146t-51.5 -107.5t-79.5 -66.5t-102.5 -23zM300 598q-70 0 -114.5 -56.5t-52.5 -162.5h334
-q-8 106 -52.5 162.5t-114.5 56.5zM300 58q74 0 119 65t50 188h-338q5 -123 50 -188t119 -65z" />
-    <glyph glyph-name="uni04EE" unicode="&#x4ee;" 
-d="M178 -12q-22 0 -36.5 2.5t-28.5 7.5l18 75q8 -3 17.5 -5t24.5 -2q32 0 51 12.5t33 40.5l14 35l-224 502h89l122 -292l50 -129h4l47 129l112 292h85l-215 -537q-25 -61 -62.5 -96t-100.5 -35zM170 735v57h268v-57h-268z" />
-    <glyph glyph-name="uni04F2" unicode="&#x4f2;" 
-d="M178 -12q-22 0 -36.5 2.5t-28.5 7.5l18 75q8 -3 17.5 -5t24.5 -2q32 0 51 12.5t33 40.5l14 35l-224 502h89l122 -292l50 -129h4l47 129l112 292h85l-215 -537q-25 -61 -62.5 -96t-100.5 -35zM232 703l-43 21l92 152l57 -32zM392 703l-43 21l93 152l56 -32z" />
-    <glyph glyph-name="uni0430" unicode="&#x430;" 
-d="M246 -12q-34 0 -64 9.5t-52.5 27t-35.5 43t-13 58.5q0 41 19.5 71.5t62 52.5t109.5 36t161 22q-1 25 -8 47t-22 38.5t-39.5 26.5t-59.5 10q-48 0 -92 -18.5t-78 -39.5l-32 56q18 12 42.5 24.5t52 22.5t58.5 16.5t63 6.5q100 0 148.5 -54.5t48.5 -145.5v-298h-67l-7 66h-3
-q-41 -32 -90.5 -55t-101.5 -23zM268 54q42 0 82.5 18.5t82.5 53.5v128q-78 -6 -130.5 -17t-84 -26.5t-44.5 -35t-13 -43.5q0 -21 9 -35.5t23.5 -24t34 -14t40.5 -4.5z" />
-    <glyph glyph-name="uni0431" unicode="&#x431;" 
-d="M311 -12q-56 0 -100 21t-74 61t-46 97t-16 128q0 121 22 195.5t62.5 118t98 63.5t128.5 31q22 3 37 5.5t27 5.5t21.5 6.5t21.5 9.5l17 -75q-20 -13 -47 -19.5t-60 -11.5q-59 -9 -102.5 -19.5t-73 -34.5t-46 -67t-22.5 -116q33 40 77.5 60.5t92.5 20.5q45 0 82 -15.5
-t63.5 -45t41.5 -71.5t15 -95q0 -58 -16.5 -105t-46 -80t-70 -50.5t-87.5 -17.5zM310 56q65 0 100.5 51t35.5 134q0 75 -35.5 119.5t-101.5 44.5q-38 0 -77.5 -18.5t-76.5 -69.5v-38q0 -50 9.5 -91.5t29 -70.5t48.5 -45t68 -16z" />
-    <glyph glyph-name="uni0432" unicode="&#x432;" 
-d="M104 0v486h225q42 0 77 -7t59.5 -21.5t38.5 -38t14 -56.5q0 -41 -23 -66.5t-62 -37.5v-3q21 -5 40.5 -14t34 -23.5t23 -34t8.5 -45.5q0 -36 -15 -62t-42 -43.5t-64 -25.5t-81 -8h-233zM185 284h130q66 0 94.5 18.5t28.5 52.5t-27.5 49.5t-89.5 15.5h-136v-136zM185 66
-h143q66 0 97.5 18.5t31.5 59.5q0 76 -134 76h-138v-154z" />
-    <glyph glyph-name="uni0433" unicode="&#x433;" 
-d="M146 0v486h377v-67h-295v-419h-82z" />
-    <glyph glyph-name="uni0434" unicode="&#x434;" 
-d="M206 255q-8 -72 -21.5 -117t-31.5 -71h251v352h-179zM51 -172l-9 187v52h24q10 6 19.5 16.5t17.5 32.5t16 59t15 96l26 215h326v-419h71v-52l-9 -187h-71v172h-356v-172h-70z" />
-    <glyph glyph-name="uni0435" unicode="&#x435;" 
-d="M330 -12q-55 0 -102.5 17t-83 50t-56 80.5t-20.5 108.5q0 59 20.5 106t55 80t79 50.5t93.5 17.5q52 0 93.5 -16.5t70 -46.5t43.5 -72t15 -93q0 -14 -1 -27t-3 -23h-383q8 -83 60.5 -124.5t128.5 -41.5q44 0 79.5 12.5t68.5 33.5l30 -54q-36 -24 -82.5 -41t-105.5 -17z
-M318 433q-30 0 -57.5 -10t-49.5 -28.5t-37 -46.5t-21 -64h310q-5 75 -43.5 112t-101.5 37z" />
-    <glyph glyph-name="uni0436" unicode="&#x436;" 
-d="M6 0l132 262l-34 93q-15 40 -31 51.5t-32 11.5h-8.5t-8.5 -2l-12 77q5 3 13 4t17 1q39 0 68.5 -21t52.5 -81l42 -112h55v202h80v-202h55l42 112q23 60 52.5 81t68.5 21q18 0 30 -5l-12 -77q-5 2 -8.5 2h-8.5q-17 0 -32.5 -11.5t-30.5 -51.5l-34 -93l132 -262h-86
-l-105 220h-63v-220h-80v220h-63l-105 -220h-86z" />
-    <glyph glyph-name="uni0437" unicode="&#x437;" 
-d="M280 -12q-60 0 -113 15.5t-105 57.5l36 54q42 -35 86 -48t89 -13q76 0 117 22.5t41 64.5t-38.5 60.5t-111.5 18.5h-84v64h72q70 0 104.5 19.5t34.5 55.5q0 74 -134 74q-53 0 -90.5 -13.5t-75.5 -41.5l-34 55q42 31 91.5 48t113.5 17q46 0 84.5 -8t66.5 -24t43.5 -41
-t15.5 -58q0 -36 -21.5 -63.5t-65.5 -44.5v-4q50 -13 80.5 -40.5t30.5 -80.5q0 -35 -17 -62t-47.5 -46t-73.5 -28.5t-95 -9.5z" />
-    <glyph glyph-name="uni0438" unicode="&#x438;" 
-d="M100 0v486h80v-202q0 -39 -3 -85.5t-5 -93.5h4q14 23 32 52t32 52l184 277h76v-486h-80v202q0 39 3 85.5t5 94.5h-4q-14 -23 -32 -52.5t-32 -51.5l-184 -278h-76z" />
-    <glyph glyph-name="uni0439" unicode="&#x439;" 
-d="M100 0v486h80v-202q0 -39 -3 -85.5t-5 -93.5h4q14 23 32 52t32 52l184 277h76v-486h-80v202q0 39 3 85.5t5 94.5h-4q-14 -23 -32 -52.5t-32 -51.5l-184 -278h-76zM311 572q-42 0 -71 12.5t-48 33t-28 47.5t-10 56l68 4q1 -21 5.5 -40.5t15 -33.5t27 -22.5t41.5 -8.5
-t41.5 8.5t27 22.5t15 33.5t5.5 40.5l68 -4q-2 -29 -10.5 -56t-27.5 -47.5t-48 -33t-71 -12.5z" />
-    <glyph glyph-name="uni043A" unicode="&#x43a;" 
-d="M110 0v486h82v-200h128l59 108q16 31 31 51t30 32t31.5 16.5t36.5 4.5t32 -6l-14 -77q-5 2 -9.5 2.5t-10.5 0.5q-9 0 -17 -2.5t-16 -10t-17 -20t-20 -33.5l-53 -97l177 -255h-91l-149 219h-128v-219h-82z" />
-    <glyph glyph-name="uni043B" unicode="&#x43b;" 
-d="M74 -12q-14 0 -24 2t-21 6l16 76q5 -2 10 -3t12 -1q26 0 42 24.5t23 78.5q10 79 19 157.5t18 157.5h327v-486h-83v419h-179q-8 -67 -16 -134.5t-16 -134.5q-21 -162 -128 -162z" />
-    <glyph glyph-name="uni043C" unicode="&#x43c;" 
-d="M64 0v486h100l92 -228q11 -30 22 -59t21 -59h4q11 30 22 59t21 59l90 228h100v-486h-78v218q0 16 1 37.5t2.5 44l3 45t3.5 41.5h-4q-11 -29 -22 -59t-22 -57l-88 -224h-62l-92 224q-11 27 -21 57t-21 59h-4q1 -19 3 -41.5t3.5 -45t2.5 -44t1 -37.5v-218h-78z" />
-    <glyph glyph-name="uni043D" unicode="&#x43d;" 
-d="M93 0v486h82v-197h250v197h82v-486h-82v216h-250v-216h-82z" />
-    <glyph glyph-name="uni043E" unicode="&#x43e;" 
-d="M300 -12q-48 0 -91.5 17t-76.5 49.5t-52.5 80t-19.5 107.5q0 61 19.5 108.5t52.5 80.5t76.5 50t91.5 17t91.5 -17t76.5 -50t52.5 -80.5t19.5 -108.5q0 -60 -19.5 -107.5t-52.5 -80t-76.5 -49.5t-91.5 -17zM300 56q35 0 63.5 13.5t49 38t31.5 58.5t11 76t-11 76.5
-t-31.5 59.5t-49 38.5t-63.5 13.5t-63.5 -13.5t-49 -38.5t-31.5 -59.5t-11 -76.5t11 -76t31.5 -58.5t49 -38t63.5 -13.5z" />
-    <glyph glyph-name="uni043F" unicode="&#x43f;" 
-d="M93 0v486h414v-486h-82v419h-250v-419h-82z" />
-    <glyph glyph-name="uni0440" unicode="&#x440;" 
-d="M93 -205v691h68l7 -62h3q34 32 78.5 53t89.5 21q49 0 86.5 -17.5t63 -50t38.5 -78t13 -102.5q0 -62 -18 -110.5t-48.5 -82.5t-70.5 -51.5t-84 -17.5q-34 0 -73.5 16.5t-71.5 46.5h-3l4 -92v-164h-82zM305 57q66 0 108 51t42 142q0 40 -8 73t-24.5 56.5t-42.5 36.5t-62 13
-q-32 0 -68.5 -17.5t-74.5 -55.5v-242q35 -31 70 -44t60 -13z" />
-    <glyph glyph-name="uni0441" unicode="&#x441;" 
-d="M346 -12q-57 0 -105.5 17t-84.5 49.5t-56 80t-20 107.5q0 61 21.5 108.5t58.5 80.5t86.5 50t104.5 17q60 0 103.5 -21t73.5 -50l-41 -53q-30 26 -62.5 41t-70.5 15q-42 0 -77 -13.5t-59.5 -38.5t-38.5 -59.5t-14 -76.5t13.5 -76t38 -58.5t59 -38t76.5 -13.5
-q45 0 82.5 17.5t67.5 43.5l37 -53q-41 -36 -90 -56t-103 -20z" />
-    <glyph glyph-name="uni0442" unicode="&#x442;" 
-d="M259 0v419h-193v67h468v-67h-193v-419h-82z" />
-    <glyph glyph-name="uni0443" unicode="&#x443;" 
-d="M131 -209q-36 0 -64 10l17 65q10 -3 21.5 -5t22.5 -2q51 0 83 29.5t50 74.5l15 36l-227 487h83l119 -269q14 -32 29.5 -69t30.5 -72h4q13 35 26.5 71.5t25.5 69.5l106 269h78l-214 -526q-14 -36 -32 -67t-43 -53.5t-57.5 -35.5t-73.5 -13z" />
-    <glyph glyph-name="uni0444" unicode="&#x444;" 
-d="M260 -205v155l2 74q-17 -14 -36 -25t-44 -11q-68 0 -109 66t-41 188q0 59 12.5 106.5t33 80.5t47.5 51t57 18q25 0 44 -10.5t36 -25.5l-2 74v176h80v-176l-2 -76q18 17 41 27.5t47 10.5q34 0 60.5 -17.5t44.5 -50t27.5 -78t9.5 -102.5q0 -62 -12.5 -110.5t-33 -82.5
-t-48 -51.5t-57.5 -17.5q-20 0 -40.5 10.5t-38.5 25.5l2 -74v-155h-80zM201 57q32 0 61 35v304q-30 33 -65 33q-38 0 -60.5 -51.5t-22.5 -135.5q0 -87 21 -136t66 -49zM401 57q41 0 63 51t22 142q0 40 -4 73t-13.5 56.5t-25.5 36.5t-39 13q-33 0 -66 -34v-305
-q17 -18 33.5 -25.5t29.5 -7.5z" />
-    <glyph glyph-name="uni0445" unicode="&#x445;" 
-d="M64 0l185 252l-171 234h91l77 -107q13 -20 27.5 -41t29.5 -41h4q14 20 28 42t27 42l73 105h87l-173 -241l186 -245h-90l-85 112q-15 21 -31.5 44t-32.5 44h-4q-15 -22 -30 -43.5t-30 -44.5l-80 -112h-88z" />
-    <glyph glyph-name="uni0446" unicode="&#x446;" 
-d="M94 0v486h82v-419h239v419h82v-419h71v-52l-8 -187h-71v172h-395z" />
-    <glyph glyph-name="uni0447" unicode="&#x447;" 
-d="M408 0v196l-27.5 -5.5t-24.5 -4t-26 -2t-33 -0.5q-50 0 -89 10t-65.5 31.5t-40.5 55.5t-14 83v122h82v-122q0 -61 34.5 -87t109.5 -26q26 0 47 3t47 9v223h82v-486h-82z" />
-    <glyph glyph-name="uni0448" unicode="&#x448;" 
-d="M58 0v486h82v-419h122v419h76v-419h122v419h82v-486h-484z" />
-    <glyph glyph-name="uni0449" unicode="&#x449;" 
-d="M58 0v486h82v-419h118v419h76v-419h118v419h82v-419h60v-52l-8 -187h-65v172h-463z" />
-    <glyph glyph-name="uni044A" unicode="&#x44a;" 
-d="M201 0v419h-166v67h248v-179h74q87 0 140.5 -36.5t53.5 -115.5q0 -81 -53.5 -118t-140.5 -37h-156zM283 66h66q121 0 121 89q0 46 -29.5 67t-91.5 21h-66v-177z" />
-    <glyph glyph-name="uni044B" unicode="&#x44b;" 
-d="M70 0v486h75v-179h68q81 0 130 -36t49 -116q0 -81 -49 -118t-130 -37h-143zM145 66h60q114 0 114 89q0 46 -28 67t-86 21h-60v-177zM455 0v486h75v-486h-75z" />
-    <glyph glyph-name="uni044C" unicode="&#x44c;" 
-d="M125 0v486h83v-179h113q44 0 80.5 -9t62.5 -27.5t40 -47t14 -68.5q0 -41 -14 -70t-40 -48t-62.5 -28t-80.5 -9h-196zM208 66h104q125 0 125 89q0 46 -30.5 67t-94.5 21h-104v-177z" />
-    <glyph glyph-name="uni044D" unicode="&#x44d;" 
-d="M256 -12q-57 0 -107 18.5t-88 53.5l35 51q28 -26 67 -41.5t85 -15.5q84 0 135 41t57 125h-251v64h249q-11 75 -60.5 112t-121.5 37q-48 0 -83 -15t-63 -39l-39 50q32 29 78 49t112 20q53 0 100 -15.5t82.5 -47t56 -80t20.5 -113.5q0 -64 -20 -111.5t-55 -79t-83.5 -47.5
-t-105.5 -16z" />
-    <glyph glyph-name="uni044E" unicode="&#x44e;" 
-d="M384 -12q-72 0 -121.5 56t-55.5 169h-81v-213h-82v486h82v-200h82q9 107 57.5 159.5t118.5 52.5q39 0 72 -15.5t57 -47.5t37.5 -80t13.5 -113q0 -64 -13.5 -112t-37.5 -79.5t-57 -47t-72 -15.5zM382 56q45 0 71.5 45.5t26.5 140.5q0 96 -26.5 142t-71.5 46
-q-47 0 -74.5 -46t-27.5 -142q0 -95 27.5 -140.5t74.5 -45.5z" />
-    <glyph glyph-name="uni044F" unicode="&#x44f;" 
-d="M418 0v190h-132l-138 -190h-93l145 196q-51 12 -87 47.5t-36 98.5q0 40 14 67.5t38.5 44.5t58.5 24.5t73 7.5h240v-486h-83zM275 254h143v166h-143q-55 0 -85.5 -18t-30.5 -62q0 -43 30.5 -64.5t85.5 -21.5z" />
-    <glyph glyph-name="uni0450" unicode="&#x450;" 
-d="M330 -12q-55 0 -102.5 17t-83 50t-56 80.5t-20.5 108.5q0 59 20.5 106t55 80t79 50.5t93.5 17.5q52 0 93.5 -16.5t70 -46.5t43.5 -72t15 -93q0 -14 -1 -27t-3 -23h-383q8 -83 60.5 -124.5t128.5 -41.5q44 0 79.5 12.5t68.5 33.5l30 -54q-36 -24 -82.5 -41t-105.5 -17z
-M318 433q-30 0 -57.5 -10t-49.5 -28.5t-37 -46.5t-21 -64h310q-5 75 -43.5 112t-101.5 37zM337 568l-157 153l58 56l142 -168z" />
-    <glyph glyph-name="uni0451" unicode="&#x451;" 
-d="M330 -12q-55 0 -102.5 17t-83 50t-56 80.5t-20.5 108.5q0 59 20.5 106t55 80t79 50.5t93.5 17.5q52 0 93.5 -16.5t70 -46.5t43.5 -72t15 -93q0 -14 -1 -27t-3 -23h-383q8 -83 60.5 -124.5t128.5 -41.5q44 0 79.5 12.5t68.5 33.5l30 -54q-36 -24 -82.5 -41t-105.5 -17z
-M318 433q-30 0 -57.5 -10t-49.5 -28.5t-37 -46.5t-21 -64h310q-5 75 -43.5 112t-101.5 37zM219 588q-24 0 -39.5 16t-15.5 40q0 23 15.5 39.5t39.5 16.5t39.5 -16.5t15.5 -39.5q0 -24 -15.5 -40t-39.5 -16zM413 588q-24 0 -39.5 16t-15.5 40q0 23 15.5 39.5t39.5 16.5
-t39.5 -16.5t15.5 -39.5q0 -24 -15.5 -40t-39.5 -16z" />
-    <glyph glyph-name="uni0452" unicode="&#x452;" 
-d="M334 -217q-19 0 -34.5 4t-26.5 9l16 62q8 -3 18.5 -5.5t21.5 -2.5q26 0 49 14t39.5 49t26 95.5t9.5 153.5q0 132 -34 188.5t-101 56.5q-38 0 -69.5 -21.5t-73.5 -66.5v-319h-82v564h-73v57l73 5v86h82v-86h213v-62h-213v-66l-5 -114h3q36 40 77 67t94 27q94 0 144 -76.5
-t50 -230.5q0 -113 -14 -187.5t-40.5 -119t-64.5 -63t-85 -18.5z" />
-    <glyph glyph-name="uni0453" unicode="&#x453;" 
-d="M146 0v486h377v-67h-295v-419h-82zM328 568l-43 41l142 168l58 -56z" />
-    <glyph glyph-name="uni0454" unicode="&#x454;" 
-d="M346 -12q-57 0 -106 16t-84.5 47.5t-55.5 79t-20 111.5t21.5 112.5t58.5 80t86.5 47.5t104.5 16q60 0 103 -19t75 -48l-39 -52q-29 25 -63 39.5t-76 14.5q-75 0 -126 -37.5t-63 -111.5h263v-64h-265q6 -83 57 -124.5t136 -41.5q46 0 84.5 16.5t67.5 41.5l34 -52
-q-40 -35 -89.5 -53.5t-103.5 -18.5z" />
-    <glyph glyph-name="uni0455" unicode="&#x455;" 
-d="M310 -12q-72 0 -133 22.5t-106 53.5l38 54q42 -30 92.5 -48t118.5 -18q62 0 92.5 22.5t30.5 53.5q0 14 -5 26t-21.5 23t-46.5 21t-79 20q-95 20 -142.5 53.5t-47.5 88.5q0 29 13 54.5t38.5 44t63 29t87.5 10.5q56 0 108 -18.5t88 -43.5l-40 -53q-34 23 -75 37t-88 14
-q-62 0 -87 -21t-25 -49q0 -32 33 -48.5t108 -32.5q61 -13 100 -27.5t61.5 -32.5t31 -40t8.5 -50q0 -30 -14 -56t-41.5 -46t-68 -31.5t-92.5 -11.5z" />
-    <glyph glyph-name="uni0456" unicode="&#x456;" 
-d="M316 0v419h-226v67h308v-486h-82zM348 588q-28 0 -47 17.5t-19 46.5t19 46.5t47 17.5t47 -17.5t19 -46.5t-19 -46.5t-47 -17.5z" />
-    <glyph glyph-name="uni0457" unicode="&#x457;" 
-d="M316 0v419h-226v67h308v-486h-82zM251 588q-24 0 -39.5 16t-15.5 40q0 23 15.5 39.5t39.5 16.5t39.5 -16.5t15.5 -39.5q0 -24 -15.5 -40t-39.5 -16zM445 588q-24 0 -39.5 16t-15.5 40q0 23 15.5 39.5t39.5 16.5t39.5 -16.5t15.5 -39.5q0 -24 -15.5 -40t-39.5 -16z" />
-    <glyph glyph-name="uni0458" unicode="&#x458;" 
-d="M194 -217q-38 0 -74 9.5t-65 23.5l27 61q26 -13 54.5 -20t56.5 -7q36 0 60 9t38 26t19.5 41.5t5.5 55.5v437h-226v67h308v-498q0 -45 -10 -82.5t-33.5 -65t-62.5 -42.5t-98 -15zM348 588q-28 0 -47 17.5t-19 46.5t19 46.5t47 17.5t47 -17.5t19 -46.5t-19 -46.5t-47 -17.5
-z" />
-    <glyph glyph-name="uni0459" unicode="&#x459;" 
-d="M37 -12q-14 0 -23.5 2t-20.5 6l15 76q5 -2 9.5 -3t10.5 -1q20 0 36 23.5t24 79.5q11 78 16.5 155t9.5 160h246v-179h15q81 0 131 -36.5t50 -115.5q0 -81 -50 -118t-131 -37h-95v419h-96q-4 -67 -9 -138t-15 -143q-11 -77 -44 -113.5t-79 -36.5zM360 66h6q61 0 88.5 21.5
-t27.5 67.5t-27.5 67t-88.5 21h-6v-177z" />
-    <glyph glyph-name="uni045A" unicode="&#x45a;" 
-d="M58 0v486h80v-197h128v197h80v-179h27q83 0 131 -36t48 -116q0 -81 -48 -118t-131 -37h-107v216h-128v-216h-80zM346 66h18q59 0 86.5 21t27.5 68t-27.5 67.5t-86.5 20.5h-18v-177z" />
-    <glyph glyph-name="uni045B" unicode="&#x45b;" 
-d="M93 0v562h-73v58l73 6v86h82v-86h213v-64h-213v-64l-5 -115h3q38 41 81.5 68t100.5 27q87 0 127.5 -49.5t40.5 -146.5v-282h-82v271q0 69 -26 102.5t-86 33.5q-22 0 -40.5 -5.5t-36.5 -16.5t-37 -27.5t-40 -38.5v-319h-82z" />
-    <glyph glyph-name="uni045C" unicode="&#x45c;" 
-d="M110 0v486h82v-200h128l59 108q16 31 31 51t30 32t31.5 16.5t36.5 4.5t32 -6l-14 -77q-5 2 -9.5 2.5t-10.5 0.5q-9 0 -17 -2.5t-16 -10t-17 -20t-20 -33.5l-53 -97l177 -255h-91l-149 219h-128v-219h-82zM299 568l-43 41l142 168l58 -56z" />
-    <glyph glyph-name="uni045D" unicode="&#x45d;" 
-d="M100 0v486h80v-202q0 -39 -3 -85.5t-5 -93.5h4q14 23 32 52t32 52l184 277h76v-486h-80v202q0 39 3 85.5t5 94.5h-4q-14 -23 -32 -52.5t-32 -51.5l-184 -278h-76zM332 568l-157 153l58 56l142 -168z" />
-    <glyph glyph-name="uni045E" unicode="&#x45e;" 
-d="M131 -209q-36 0 -64 10l17 65q10 -3 21.5 -5t22.5 -2q51 0 83 29.5t50 74.5l15 36l-227 487h83l119 -269q14 -32 29.5 -69t30.5 -72h4q13 35 26.5 71.5t25.5 69.5l106 269h78l-214 -526q-14 -36 -32 -67t-43 -53.5t-57.5 -35.5t-73.5 -13zM304 572q-42 0 -71 12.5t-48 33
-t-28 47.5t-10 56l68 4q1 -21 5.5 -40.5t15 -33.5t27 -22.5t41.5 -8.5t41.5 8.5t27 22.5t15 33.5t5.5 40.5l68 -4q-2 -29 -10.5 -56t-27.5 -47.5t-48 -33t-71 -12.5z" />
-    <glyph glyph-name="uni045F" unicode="&#x45f;" 
-d="M103 0v486h82v-419h230v419h82v-486h-154l-9 -172h-70l-3 172h-158z" />
-    <glyph glyph-name="uni0463" unicode="&#x463;" 
-d="M194 0v439h-153v67h153v116h82v-116h183v-67h-183v-132h76q43 0 78.5 -9t61 -27.5t39.5 -47t14 -68.5q0 -41 -14 -70t-39.5 -48t-61 -28t-78.5 -9h-158zM276 66h67q122 0 122 89q0 46 -30 67t-92 21h-67v-177z" />
-    <glyph glyph-name="uni0473" unicode="&#x473;" 
-d="M300 -12q-48 0 -91.5 16t-76.5 48t-52.5 79.5t-19.5 110.5t19.5 111t52.5 80.5t76.5 48.5t91.5 16t91.5 -16t76.5 -48.5t52.5 -80.5t19.5 -111t-19.5 -110.5t-52.5 -79.5t-76.5 -48t-91.5 -16zM300 434q-63 0 -105.5 -39t-53.5 -111h318q-11 72 -53.5 111t-105.5 39z
-M300 53q68 0 111.5 43.5t49.5 123.5h-322q6 -80 49.5 -123.5t111.5 -43.5z" />
-    <glyph glyph-name="uni0475" unicode="&#x475;" 
-d="M249 0l-179 486h84l97 -276q11 -35 23 -71.5t23 -71.5h4q9 35 19.5 71t21.5 72l48 148q10 36 21 62.5t25.5 43.5t32.5 25.5t43 8.5q15 0 25.5 -2t22.5 -7l-17 -74q-9 6 -24 6q-21 0 -33 -18t-24 -55l-112 -348h-101z" />
-    <glyph glyph-name="uni0491" unicode="&#x491;" 
-d="M162 0v486h259l16 172h66l-8 -239h-251v-419h-82z" />
-    <glyph glyph-name="uni0493" unicode="&#x493;" 
-d="M146 0v206h-74v56l74 6v218h377v-67h-295v-151h172v-62h-172v-206h-82z" />
-    <glyph glyph-name="uni0497" unicode="&#x497;" 
-d="M541 -172v172h-33l-105 220h-63v-220h-80v220h-63l-105 -220h-86l132 262l-34 93q-15 40 -31 51.5t-32 11.5h-8.5t-8.5 -2l-12 77q5 3 13 4t17 1q39 0 68.5 -21t52.5 -81l42 -112h55v202h80v-202h55l42 112q23 60 52.5 81t68.5 21q18 0 30 -5l-12 -77q-5 2 -8.5 2h-8.5
-q-17 0 -32.5 -11.5t-30.5 -51.5l-34 -93l98 -195h47v-52l-8 -187h-58z" />
-    <glyph glyph-name="uni0499" unicode="&#x499;" 
-d="M250 -172l-4 161q-49 4 -94 20t-90 52l36 54q42 -35 86 -48t89 -13q76 0 117 22.5t41 64.5t-38.5 60.5t-111.5 18.5h-84v64h72q70 0 104.5 19.5t34.5 55.5q0 74 -134 74q-53 0 -90.5 -13.5t-75.5 -41.5l-34 55q42 31 91.5 48t113.5 17q46 0 84.5 -8t66.5 -24t43.5 -41
-t15.5 -58q0 -36 -21.5 -63.5t-65.5 -44.5v-4q50 -13 80.5 -40.5t30.5 -80.5q0 -62 -50 -99t-135 -45l-9 -162h-69z" />
-    <glyph glyph-name="uni049B" unicode="&#x49b;" 
-d="M502 -172v172h-33l-149 219h-128v-219h-82v486h82v-200h128l59 108q16 31 31 51t30 32t31.5 16.5t36.5 4.5t32 -6l-14 -77q-5 2 -9.5 2.5t-10.5 0.5q-9 0 -17 -2.5t-16 -10t-17 -20t-20 -33.5l-53 -97l130 -188h60v-52l-8 -187h-63z" />
-    <glyph glyph-name="uni04A1" unicode="&#x4a1;" 
-d="M202 0v419h-169v67h244v-200h95l42 108q12 32 25.5 52.5t28.5 32t31.5 15.5t34.5 4q16 0 29 -5l-15 -77q-5 2 -8 2h-8q-17 0 -31.5 -11.5t-31.5 -54.5l-39 -101l152 -251h-79l-131 219h-95v-219h-75z" />
-    <glyph glyph-name="uni04A3" unicode="&#x4a3;" 
-d="M93 0v486h82v-197h240v197h82v-419h71v-52l-8 -187h-71v172h-74v216h-240v-216h-82z" />
-    <glyph glyph-name="uni04AB" unicode="&#x4ab;" 
-d="M303 -172l-3 163q-48 6 -88.5 26t-69.5 52t-45.5 75.5t-16.5 97.5q0 61 21.5 108.5t58.5 80.5t86.5 50t104.5 17q60 0 103.5 -21t73.5 -50l-41 -53q-30 26 -62.5 41t-70.5 15q-42 0 -77 -13.5t-59.5 -38.5t-38.5 -59.5t-14 -76.5t13.5 -76t38 -58.5t59 -38t76.5 -13.5
-q45 0 82.5 17.5t67.5 43.5l37 -53q-34 -30 -73.5 -49t-84.5 -25l-9 -162h-69z" />
-    <glyph glyph-name="uni04AF" unicode="&#x4af;" 
-d="M262 -205v199l-211 492h84l110 -269q15 -37 29 -74t27 -71h4q13 34 26 71t28 74l110 269h80l-205 -492v-199h-82z" />
-    <glyph glyph-name="uni04B1" unicode="&#x4b1;" 
-d="M100 0v56l78 6h57l-184 424h84l110 -269q15 -37 29 -74t27 -71h4q13 34 26 71t28 74l110 269h80l-179 -424h130v-62h-156v-205h-82v205h-162z" />
-    <glyph glyph-name="uni04B3" unicode="&#x4b3;" 
-d="M481 -172v172h-36l-85 112q-15 21 -31.5 44t-32.5 44h-4q-15 -22 -30 -43.5t-30 -44.5l-80 -112h-88l185 252l-171 234h91l77 -107q13 -20 27.5 -41t29.5 -41h4q14 20 28 42t27 42l73 105h87l-173 -241l135 -178h76v-52l-8 -187h-71z" />
-    <glyph glyph-name="uni04B7" unicode="&#x4b7;" 
-d="M402 0v196q-15 -3 -26.5 -5.5t-23.5 -4t-25.5 -2t-32.5 -0.5q-98 0 -152 40.5t-54 135.5v126h82v-126q0 -58 33.5 -83.5t107.5 -25.5q25 0 45.5 3t45.5 9v223h82v-419h71v-52l-8 -187h-71v172h-74z" />
-    <glyph glyph-name="uni04BB" unicode="&#x4bb;" 
-d="M93 0v712h82v-194l-5 -115h3q38 41 81.5 68t100.5 27q87 0 127.5 -49.5t40.5 -146.5v-302h-82v291q0 69 -26 102.5t-86 33.5q-22 0 -40.5 -5.5t-36.5 -16.5t-37 -27.5t-40 -38.5v-339h-82z" />
-    <glyph glyph-name="uni04C2" unicode="&#x4c2;" 
-d="M6 0l132 262l-34 93q-15 40 -31 51.5t-32 11.5h-8.5t-8.5 -2l-12 77q5 3 13 4t17 1q39 0 68.5 -21t52.5 -81l42 -112h55v202h80v-202h55l42 112q23 60 52.5 81t68.5 21q18 0 30 -5l-12 -77q-5 2 -8.5 2h-8.5q-17 0 -32.5 -11.5t-30.5 -51.5l-34 -93l132 -262h-86
-l-105 220h-63v-220h-80v220h-63l-105 -220h-86zM300 572q-42 0 -71 12.5t-48 33t-28 47.5t-10 56l68 4q1 -21 5.5 -40.5t15 -33.5t27 -22.5t41.5 -8.5t41.5 8.5t27 22.5t15 33.5t5.5 40.5l68 -4q-2 -29 -10.5 -56t-27.5 -47.5t-48 -33t-71 -12.5z" />
-    <glyph glyph-name="uni04CF" unicode="&#x4cf;" 
-d="M407 -12q-78 0 -119 44t-41 131v482h-173v67h255v-555q0 -54 26 -77.5t70 -23.5q43 0 91 22l21 -61q-34 -14 -62 -21.5t-68 -7.5z" />
-    <glyph glyph-name="uni04D1" unicode="&#x4d1;" 
-d="M246 -12q-34 0 -64 9.5t-52.5 27t-35.5 43t-13 58.5q0 41 19.5 71.5t62 52.5t109.5 36t161 22q-1 25 -8 47t-22 38.5t-39.5 26.5t-59.5 10q-48 0 -92 -18.5t-78 -39.5l-32 56q18 12 42.5 24.5t52 22.5t58.5 16.5t63 6.5q100 0 148.5 -54.5t48.5 -145.5v-298h-67l-7 66h-3
-q-41 -32 -90.5 -55t-101.5 -23zM268 54q42 0 82.5 18.5t82.5 53.5v128q-78 -6 -130.5 -17t-84 -26.5t-44.5 -35t-13 -43.5q0 -21 9 -35.5t23.5 -24t34 -14t40.5 -4.5zM320 572q-42 0 -71 12.5t-48 33t-28 47.5t-10 56l68 4q1 -21 5.5 -40.5t15 -33.5t27 -22.5t41.5 -8.5
-t41.5 8.5t27 22.5t15 33.5t5.5 40.5l68 -4q-2 -29 -10.5 -56t-27.5 -47.5t-48 -33t-71 -12.5z" />
-    <glyph glyph-name="uni04D5" unicode="&#x4d5;" 
-d="M145 -12q-56 0 -92 35t-36 97q0 74 58.5 119.5t190.5 62.5q-2 71 -26 99.5t-62 28.5q-30 0 -60.5 -12t-53.5 -28l-31 56q30 20 69.5 36t82.5 16q44 0 75 -23t48 -77q25 54 62 77t78 23q38 0 66 -18t46.5 -48.5t27.5 -70.5t9 -85q0 -14 -1 -28.5t-3 -27.5h-261
-q4 -77 36 -121t89 -44q28 0 51.5 9t43.5 23l30 -56q-25 -18 -57.5 -30.5t-70.5 -12.5q-51 0 -88.5 22.5t-61.5 64.5q-35 -42 -74.5 -64.5t-84.5 -22.5zM167 54q28 0 59 17.5t57 51.5q-17 54 -17 119v7q-51 -8 -84 -19.5t-53 -26.5t-28 -34t-8 -41q0 -35 20.5 -54.5
-t53.5 -19.5zM443 433q-38 0 -70 -34t-40 -115h197q-4 149 -87 149z" />
-    <glyph glyph-name="uni04D7" unicode="&#x4d7;" 
-d="M330 -12q-55 0 -102.5 17t-83 50t-56 80.5t-20.5 108.5q0 59 20.5 106t55 80t79 50.5t93.5 17.5q52 0 93.5 -16.5t70 -46.5t43.5 -72t15 -93q0 -14 -1 -27t-3 -23h-383q8 -83 60.5 -124.5t128.5 -41.5q44 0 79.5 12.5t68.5 33.5l30 -54q-36 -24 -82.5 -41t-105.5 -17z
-M318 433q-30 0 -57.5 -10t-49.5 -28.5t-37 -46.5t-21 -64h310q-5 75 -43.5 112t-101.5 37zM316 572q-42 0 -71 12.5t-48 33t-28 47.5t-10 56l68 4q1 -21 5.5 -40.5t15 -33.5t27 -22.5t41.5 -8.5t41.5 8.5t27 22.5t15 33.5t5.5 40.5l68 -4q-2 -29 -10.5 -56t-27.5 -47.5
-t-48 -33t-71 -12.5z" />
-    <glyph glyph-name="uni04D9" unicode="&#x4d9;" 
-d="M297 -12q-55 0 -97.5 17.5t-71.5 48.5t-44 74.5t-15 95.5q0 13 1 27t3 23h381q-8 79 -54 119t-121 40q-44 0 -80 -12.5t-69 -33.5l-30 54q37 23 83 40t105 17q55 0 101 -17.5t79 -50t51 -79.5t18 -107q0 -61 -18.5 -108.5t-51 -80.5t-76.5 -50t-94 -17zM295 54
-q66 0 108.5 39t50.5 117h-311q5 -78 44.5 -117t107.5 -39z" />
-    <glyph glyph-name="uni04E3" unicode="&#x4e3;" 
-d="M100 0v486h80v-202q0 -39 -3 -85.5t-5 -93.5h4q14 23 32 52t32 52l184 277h76v-486h-80v202q0 39 3 85.5t5 94.5h-4q-14 -23 -32 -52.5t-32 -51.5l-184 -278h-76zM178 601v57h266v-57h-266z" />
-    <glyph glyph-name="uni04E7" unicode="&#x4e7;" 
-d="M300 -12q-48 0 -91.5 17t-76.5 49.5t-52.5 80t-19.5 107.5q0 61 19.5 108.5t52.5 80.5t76.5 50t91.5 17t91.5 -17t76.5 -50t52.5 -80.5t19.5 -108.5q0 -60 -19.5 -107.5t-52.5 -80t-76.5 -49.5t-91.5 -17zM300 56q35 0 63.5 13.5t49 38t31.5 58.5t11 76t-11 76.5
-t-31.5 59.5t-49 38.5t-63.5 13.5t-63.5 -13.5t-49 -38.5t-31.5 -59.5t-11 -76.5t11 -76t31.5 -58.5t49 -38t63.5 -13.5zM203 588q-24 0 -39.5 16t-15.5 40q0 23 15.5 39.5t39.5 16.5t39.5 -16.5t15.5 -39.5q0 -24 -15.5 -40t-39.5 -16zM397 588q-24 0 -39.5 16t-15.5 40
-q0 23 15.5 39.5t39.5 16.5t39.5 -16.5t15.5 -39.5q0 -24 -15.5 -40t-39.5 -16z" />
-    <glyph glyph-name="uni04E9" unicode="&#x4e9;" 
-d="M300 -12q-48 0 -91.5 16t-76.5 48t-52.5 79.5t-19.5 110.5t19.5 111t52.5 80.5t76.5 48.5t91.5 16t91.5 -16t76.5 -48.5t52.5 -80.5t19.5 -111t-19.5 -110.5t-52.5 -79.5t-76.5 -48t-91.5 -16zM300 434q-63 0 -105.5 -39t-53.5 -111h318q-11 72 -53.5 111t-105.5 39z
-M300 53q68 0 111.5 43.5t49.5 123.5h-322q6 -80 49.5 -123.5t111.5 -43.5z" />
-    <glyph glyph-name="uni04EF" unicode="&#x4ef;" 
-d="M131 -209q-36 0 -64 10l17 65q10 -3 21.5 -5t22.5 -2q51 0 83 29.5t50 74.5l15 36l-227 487h83l119 -269q14 -32 29.5 -69t30.5 -72h4q13 35 26.5 71.5t25.5 69.5l106 269h78l-214 -526q-14 -36 -32 -67t-43 -53.5t-57.5 -35.5t-73.5 -13zM171 601v57h266v-57h-266z" />
-    <glyph glyph-name="uni04F3" unicode="&#x4f3;" 
-d="M131 -209q-36 0 -64 10l17 65q10 -3 21.5 -5t22.5 -2q51 0 83 29.5t50 74.5l15 36l-227 487h83l119 -269q14 -32 29.5 -69t30.5 -72h4q13 35 26.5 71.5t25.5 69.5l106 269h78l-214 -526q-14 -36 -32 -67t-43 -53.5t-57.5 -35.5t-73.5 -13zM247 568l-46 21l87 172l58 -28z
-M398 568l-46 21l87 172l58 -28z" />
-    <glyph glyph-name="uni0430.a" 
-d="M270 -12q-47 0 -85.5 17t-66.5 49.5t-43 79.5t-15 108q0 59 18 106.5t49 80.5t71 51t84 18q43 0 79 -17t70 -49h3l7 54h66v-486h-68l-7 64h-3q-29 -31 -71 -53.5t-88 -22.5zM288 57q72 0 137 73v242q-33 31 -64.5 44t-63.5 13t-59.5 -13.5t-48 -38t-32.5 -58.5t-12 -76
-q0 -88 37.5 -137t105.5 -49z" />
-    <glyph glyph-name="uni04D1.a" 
-d="M270 -12q-47 0 -85.5 17t-66.5 49.5t-43 79.5t-15 108q0 59 18 106.5t49 80.5t71 51t84 18q43 0 79 -17t70 -49h3l7 54h66v-486h-68l-7 64h-3q-29 -31 -71 -53.5t-88 -22.5zM288 57q72 0 137 73v242q-33 31 -64.5 44t-63.5 13t-59.5 -13.5t-48 -38t-32.5 -58.5t-12 -76
-q0 -88 37.5 -137t105.5 -49zM304 572q-42 0 -71 12.5t-48 33t-28 47.5t-10 56l68 4q1 -21 5.5 -40.5t15 -33.5t27 -22.5t41.5 -8.5t41.5 8.5t27 22.5t15 33.5t5.5 40.5l68 -4q-2 -29 -10.5 -56t-27.5 -47.5t-48 -33t-71 -12.5z" />
-    <glyph glyph-name="uni0431.srb" 
-d="M295 -12q-41 0 -79 15t-67 42.5t-46.5 67.5t-17.5 90q0 92 52.5 147t139.5 82q-26 18 -50.5 35t-43.5 34.5t-31 36.5t-12 40q0 37 16 59t46.5 34.5t74 19t97.5 13.5q30 3 49.5 5t33.5 5t24 7t21 9l17 -75q-21 -11 -48 -17.5t-58 -10.5q-53 -6 -89 -9.5t-59 -9t-33 -14.5
-t-10 -26q0 -13 11.5 -24t31 -23t45 -26.5t52.5 -33.5q34 -24 62 -48t48.5 -52t32 -62t11.5 -78q0 -51 -15.5 -94t-44 -74t-69.5 -48t-92 -17zM297 56q33 0 59 12.5t44 34.5t27.5 52.5t9.5 66.5q0 30 -8 54t-22.5 44.5t-34 38.5t-42.5 35q-78 -20 -123 -68t-45 -120
-q0 -34 11 -61.5t30 -47t43.5 -30.5t50.5 -11z" />
-    <glyph glyph-name="uni0456.a" 
-d="M99 0v67h197v352h-173v67h255v-419h186v-67h-465zM328 588q-28 0 -47 17.5t-19 46.5t19 46.5t47 17.5t47 -17.5t19 -46.5t-19 -46.5t-47 -17.5z" />
-    <glyph glyph-name="uni0457.a" 
-d="M99 0v67h197v352h-173v67h255v-419h186v-67h-465zM227 588q-24 0 -39.5 16t-15.5 40q0 23 15.5 39.5t39.5 16.5t39.5 -16.5t15.5 -39.5q0 -24 -15.5 -40t-39.5 -16zM421 588q-24 0 -39.5 16t-15.5 40q0 23 15.5 39.5t39.5 16.5t39.5 -16.5t15.5 -39.5q0 -24 -15.5 -40
-t-39.5 -16z" />
-    <glyph glyph-name="uni04CF.a" 
-d="M99 0v67h197v578h-173v67h255v-645h186v-67h-465z" />
-    <glyph glyph-name="uni2116" unicode="&#x2116;" 
-d="M35 -12q-5 0 -13 0.5t-14 2.5l-6 65q15 0 22.5 8.5t7.5 33.5v540h86q3 -11 12.5 -42t22 -72t26 -86.5t25.5 -86.5t20.5 -72t11.5 -43q9 -29 19 -69t18 -69h4q-3 47 -6.5 86.5t-6.5 75t-4.5 69t-1.5 69.5v153q0 99 68 99q5 0 13 -0.5t15 -2.5l5 -65q-14 0 -21.5 -8.5
-t-7.5 -33.5v-540h-88q-3 11 -12 42t-21 72t-25.5 87t-25.5 87t-21 72t-12 43q-4 14 -9 32t-10 37t-9.5 36.5t-8.5 31.5h-4q4 -47 7.5 -86.5t6.5 -75t4.5 -69t1.5 -69.5v-154q0 -98 -69 -98zM494 276q-23 0 -43.5 9.5t-36.5 29.5t-25 50.5t-9 72.5q0 41 9 71.5t25 50t36.5 29
-t43.5 9.5q46 0 79 -39t33 -121q0 -83 -33 -122.5t-79 -39.5zM494 331q50 0 50 107q0 106 -50 106q-52 0 -52 -106q0 -107 52 -107zM408 168v54h172v-54h-172z" />
-    <glyph glyph-name="ampersand" unicode="&#x26;" 
-d="M238 -12q-44 0 -80 13.5t-61.5 37.5t-40 57.5t-14.5 73.5q0 32 10 59t27.5 49.5t39.5 42t46 37.5q-21 41 -32.5 80.5t-11.5 74.5q0 33 10.5 61t29 49t45 33t59.5 12q61 0 94 -36t33 -94q0 -32 -12.5 -58t-32.5 -49.5t-45 -44t-51 -40.5q32 -51 73.5 -98t86.5 -86
-q28 40 48.5 87.5t34.5 104.5h76q-18 -65 -44 -124t-62 -111q60 -46 113 -63l-23 -68q-65 20 -137 75q-36 -35 -79.5 -55t-99.5 -20zM192 514q0 -27 8 -56t22 -59q21 15 39.5 30.5t33 32t22.5 35t8 40.5q0 29 -13.5 50.5t-46.5 21.5q-35 0 -54 -27t-19 -68zM248 54
-q31 0 60 14t55 38q-48 42 -90.5 92t-76.5 104q-32 -28 -53 -58.5t-21 -68.5q0 -27 10 -49.5t27 -38.5t40 -24.5t49 -8.5z" />
-    <glyph glyph-name="zero" unicode="0" 
-d="M300 -12q-107 0 -168 86.5t-61 246.5q0 161 61 245t168 84t168 -84t61 -245q0 -160 -61 -246.5t-168 -86.5zM300 54q67 0 109.5 65t42.5 202q0 69 -11 118.5t-31.5 82t-48.5 47.5t-61 15t-61 -15t-48.5 -47.5t-31.5 -82t-11 -118.5q0 -137 42.5 -202t109.5 -65zM300 261
-q-25 0 -43.5 17.5t-18.5 49.5q0 31 18.5 48.5t43.5 17.5t43.5 -17.5t18.5 -48.5q0 -32 -18.5 -49.5t-43.5 -17.5z" />
-    <glyph glyph-name="one" unicode="1" 
-d="M97 0v68h184v470h-143v53q57 8 95 19t69 28h61v-570h167v-68h-433z" />
-    <glyph glyph-name="two" unicode="2" 
-d="M73 0v49q81 72 143.5 130t105 106.5t64.5 90.5t22 82q0 55 -34 90t-105 35q-45 0 -83.5 -22.5t-69.5 -54.5l-47 47q43 44 92.5 70.5t117.5 26.5q48 0 86.5 -13.5t65.5 -38t41.5 -59.5t14.5 -77q0 -45 -21.5 -90.5t-60.5 -94t-93 -101t-119 -111.5l60 4t59 2h210v-71h-449
-z" />
-    <glyph glyph-name="three" unicode="3" 
-d="M287 -12q-83 0 -139 27.5t-91 62.5l42 54q32 -30 76.5 -53t106.5 -23q33 0 61 8.5t48.5 23.5t32 36.5t11.5 48.5q0 28 -12.5 51.5t-40.5 40.5t-72 26t-107 9v63q57 0 96.5 9t64.5 25t36.5 38t11.5 47q0 47 -35.5 74t-94.5 27q-45 0 -85 -18t-72 -47l-44 52q40 35 91 57.5
-t113 22.5q45 0 83.5 -11t67 -31.5t44.5 -50.5t16 -69q0 -58 -38 -95t-98 -57v-4q32 -7 60.5 -20.5t50.5 -34t34.5 -47.5t12.5 -60q0 -42 -18 -76t-49.5 -57.5t-73.5 -36t-90 -12.5z" />
-    <glyph glyph-name="four" unicode="4" 
-d="M368 0v176h-329v55l319 407h88v-396h99v-66h-99v-176h-78zM130 242h238v198q1 26 2 56.5t3 56.5h-5q-15 -23 -32 -46.5t-33 -46.5z" />
-    <glyph glyph-name="five" unicode="5" 
-d="M286 -12q-43 0 -77.5 7.5t-62 19.5t-50 27.5t-40.5 32.5l41 54q16 -14 34 -27.5t39.5 -23.5t48 -16t58.5 -6q34 0 63.5 10.5t51.5 29.5t34.5 46t12.5 60q0 66 -42.5 103t-114.5 37q-40 0 -68 -10t-62 -29l-44 28l21 307h361v-71h-288l-17 -189q28 12 54.5 19t63.5 7
-q46 0 86 -12t69.5 -36.5t46.5 -62t17 -89.5t-19.5 -92t-52.5 -67.5t-75.5 -42t-88.5 -14.5z" />
-    <glyph glyph-name="six" unicode="6" 
-d="M321 -12q-52 0 -96.5 19t-77.5 57.5t-51.5 96t-18.5 134.5q0 96 22 163.5t59 110t85.5 62t100.5 19.5q59 0 102.5 -19.5t75.5 -48.5l-46 -51q-25 23 -58 36.5t-69 13.5q-38 0 -73 -14t-61.5 -46t-43 -84.5t-17.5 -129.5q39 38 86 60.5t95 22.5q44 0 80.5 -12.5t63 -37
-t41 -61.5t14.5 -86q0 -46 -17.5 -83.5t-46.5 -64.5t-67.5 -42t-81.5 -15zM321 53q28 0 53 10t43 28.5t28.5 44t10.5 57.5q0 66 -35 100.5t-101 34.5q-38 0 -81.5 -20t-81.5 -66q9 -93 51.5 -141t112.5 -48z" />
-    <glyph glyph-name="seven" unicode="7" 
-d="M226 0q4 91 17 165.5t38 141.5t63.5 130t93.5 130h-368v71h462v-51q-63 -72 -104 -138t-66 -134.5t-36 -144.5t-14 -170h-86z" />
-    <glyph glyph-name="eight" unicode="8" 
-d="M302 -12q-54 0 -97.5 13t-73.5 36.5t-46.5 55.5t-16.5 70q0 33 12 59t31 47t43.5 36.5t50.5 27.5v4q-40 25 -68.5 61.5t-28.5 87.5q0 37 14.5 67t41 51.5t62.5 33.5t79 12q47 0 83.5 -12.5t62 -35t39 -54t13.5 -68.5q0 -45 -28.5 -84.5t-68.5 -67.5v-4q26 -13 49 -28
-t40 -34t26.5 -44.5t9.5 -59.5q0 -36 -15.5 -67t-44.5 -54t-71.5 -36t-97.5 -13zM352 348q80 58 80 128q0 48 -33 80.5t-96 32.5q-54 0 -87 -28t-33 -75q0 -29 13 -49.5t36 -36.5t53.5 -28.5t66.5 -23.5zM304 49q72 0 110 31t38 81q0 33 -15.5 55.5t-42.5 38.5t-63.5 28.5
-t-78.5 26.5q-47 -26 -78 -58.5t-31 -80.5q0 -54 43.5 -88t117.5 -34z" />
-    <glyph glyph-name="nine" unicode="9" 
-d="M281 310q38 0 81 20t82 65q-10 94 -51.5 142t-112.5 48q-29 0 -53.5 -10t-42.5 -28.5t-28.5 -44.5t-10.5 -57q0 -66 34.5 -100.5t101.5 -34.5zM257 -12q-59 0 -102.5 19t-75.5 48l46 52q24 -23 57 -37t70 -14q38 0 72.5 14t61 46.5t42.5 84.5t18 129q-39 -38 -85.5 -60
-t-95.5 -22q-44 0 -80.5 12.5t-62.5 37t-40.5 61.5t-14.5 86q0 46 17 83.5t46.5 64.5t68 42t80.5 15q52 0 97 -19t78 -57.5t51.5 -96t18.5 -134.5q0 -96 -22.5 -163.5t-59.5 -110t-85 -62t-100 -19.5z" />
-    <glyph glyph-name="zero.a" 
-d="M300 -12q-107 0 -168 86.5t-61 246.5q0 161 61 245t168 84t168 -84t61 -245q0 -160 -61 -246.5t-168 -86.5zM300 587q-67 0 -107 -59l243 -346q8 29 12 63t4 76q0 139 -42.5 202.5t-109.5 63.5zM300 51q32 0 59.5 15t47.5 47l-243 347q-8 -28 -12 -62.5t-4 -76.5
-q0 -70 11 -121t31.5 -84t48.5 -49t61 -16z" />
-    <glyph glyph-name="one.a" 
-d="M97 0v68h184v448l-116 -86l-42 48l176 160h64v-570h167v-68h-433z" />
-    <glyph glyph-name="zero.onum" 
-d="M300 -12q-107 0 -168 78t-61 224q0 144 61 220t168 76t168 -76t61 -220q0 -146 -61 -224t-168 -78zM300 54q33 0 61 14t48.5 43t31.5 73.5t11 105.5q0 118 -42.5 173.5t-109.5 55.5t-109.5 -55.5t-42.5 -173.5q0 -61 11 -105.5t31.5 -73.5t48.5 -43t61 -14zM300 230
-q-25 0 -43.5 17.5t-18.5 49.5q0 31 18.5 48.5t43.5 17.5t43.5 -17.5t18.5 -48.5q0 -32 -18.5 -49.5t-43.5 -17.5z" />
-    <glyph glyph-name="one.onum" 
-d="M97 0v68h184v406h-143v53q57 8 95 19.5t69 27.5h61v-506h167v-68h-433z" />
-    <glyph glyph-name="two.onum" 
-d="M73 0v49q165 110 250 193t85 147q0 58 -34 94t-105 36q-45 0 -83.5 -22.5t-69.5 -54.5l-47 47q43 44 92.5 70.5t117.5 26.5q48 0 86.5 -13.5t65.5 -39t41.5 -61t14.5 -79.5q0 -38 -19.5 -77t-55.5 -79.5t-87.5 -83t-115.5 -88.5q29 2 59.5 4t59.5 2h194v-71h-449z" />
-    <glyph glyph-name="three.onum" 
-d="M287 -86q-83 0 -139 27.5t-91 62.5l42 54q32 -30 76.5 -52.5t106.5 -22.5q33 0 61 8.5t48.5 24t32 37.5t11.5 50q0 29 -12.5 53t-40.5 40.5t-72 25.5t-107 9v64q57 0 96.5 9t64.5 25.5t36.5 38.5t11.5 48q0 47 -35.5 75t-94.5 28q-45 0 -85 -18t-72 -47l-44 52
-q40 35 91 57.5t113 22.5q45 0 83.5 -11t67 -32t44.5 -51.5t16 -69.5q0 -59 -38 -96.5t-98 -57.5v-4q32 -7 60.5 -21t50.5 -34.5t34.5 -47.5t12.5 -61q0 -44 -18 -78.5t-49.5 -58.5t-73.5 -36.5t-90 -12.5z" />
-    <glyph glyph-name="four.onum" 
-d="M368 -74v168h-329v55l319 425h88v-413h99v-67h-99v-168h-78zM129 161h239v215q1 26 2 56.5t3 56.5h-5q-15 -25 -31.5 -49.5t-32.5 -47.5z" />
-    <glyph glyph-name="five.onum" 
-d="M286 -86q-43 0 -77.5 7.5t-62 19.5t-50 28t-40.5 33l41 53q16 -14 34 -27t39.5 -23t48 -16t58.5 -6q34 0 63.5 10.5t51.5 29.5t34.5 46.5t12.5 62.5q0 68 -42.5 105t-114.5 37q-40 0 -68 -10t-62 -29l-44 28l21 311h361v-71h-288l-17 -193q28 13 54.5 19.5t63.5 6.5
-q46 0 86 -11.5t69.5 -36.5t46.5 -63t17 -91t-19.5 -93.5t-52.5 -69t-75.5 -43t-88.5 -14.5z" />
-    <glyph glyph-name="six.onum" 
-d="M322 -12q-52 0 -96.5 19t-77.5 57.5t-51.5 96t-18.5 134.5q0 96 22 163.5t59 110t85.5 62t100.5 19.5q59 0 102.5 -19.5t75.5 -48.5l-46 -51q-25 23 -58 36.5t-69 13.5q-38 0 -73 -14t-61.5 -46t-43 -84.5t-17.5 -129.5q39 38 86 60.5t95 22.5q44 0 80.5 -12.5t63 -37
-t41 -61.5t14.5 -86q0 -46 -17.5 -83.5t-46.5 -64.5t-67.5 -42t-81.5 -15zM322 53q28 0 53 10t43 28.5t28.5 44t10.5 57.5q0 66 -35 100.5t-101 34.5q-38 0 -81.5 -20t-81.5 -66q9 -93 51.5 -141t112.5 -48z" />
-    <glyph glyph-name="seven.onum" 
-d="M226 -74q4 92 17 168t38 144.5t63.5 132.5t93.5 132h-368v71h462v-51q-63 -73 -104 -139.5t-65.5 -136.5t-35.5 -147.5t-15 -173.5h-86z" />
-    <glyph glyph-name="eight.onum" 
-d="M302 -12q-54 0 -97.5 13t-73.5 36.5t-46.5 55.5t-16.5 70q0 33 12 59t31 47t43.5 36.5t50.5 27.5v4q-40 25 -68.5 61.5t-28.5 87.5q0 37 14.5 67t41 51.5t62.5 33.5t79 12q47 0 83.5 -12.5t62 -35t39 -54t13.5 -68.5q0 -45 -28.5 -84.5t-68.5 -67.5v-4q26 -13 49 -28
-t40 -34t26.5 -44.5t9.5 -59.5q0 -36 -15.5 -67t-44.5 -54t-71.5 -36t-97.5 -13zM352 348q80 58 80 128q0 48 -33 80.5t-96 32.5q-54 0 -87 -28t-33 -75q0 -29 13 -49.5t36 -36.5t53.5 -28.5t66.5 -23.5zM304 49q72 0 110 31t38 81q0 33 -15.5 55.5t-42.5 38.5t-63.5 28.5
-t-78.5 26.5q-47 -26 -78 -58.5t-31 -80.5q0 -54 43.5 -88t117.5 -34z" />
-    <glyph glyph-name="nine.onum" 
-d="M281 237q38 0 81 20t82 66q-8 97 -50 147.5t-114 50.5q-29 0 -53.5 -10t-42.5 -29t-28.5 -45t-10.5 -59q0 -68 34.5 -104.5t101.5 -36.5zM257 -86q-59 0 -102.5 19.5t-75.5 48.5l46 51q24 -23 57 -36.5t70 -13.5t71 14t60.5 46t43.5 84.5t19 129.5q-39 -38 -85.5 -60
-t-95.5 -22q-44 0 -80.5 13t-62.5 38.5t-40.5 63.5t-14.5 88q0 46 17 84.5t46.5 66t68 42.5t80.5 15q52 0 97 -19t78 -57.5t51.5 -96t18.5 -134.5q0 -99 -22.5 -168.5t-59.5 -113t-85 -63.5t-100 -20z" />
-    <glyph glyph-name="zero.b" 
-d="M300 -12q-107 0 -168 78t-61 224q0 144 61 220t168 76t168 -76t61 -220q0 -146 -61 -224t-168 -78zM300 523q-29 0 -53.5 -10t-44.5 -31l230 -330q20 55 20 138q0 60 -11 104t-31.5 72.5t-48.5 42.5t-61 14zM300 51q59 0 98 43l-229 331q-21 -53 -21 -135q0 -62 11 -107
-t31.5 -74.5t48.5 -43.5t61 -14z" />
-    <glyph glyph-name="one.b" 
-d="M97 0v68h184v393l-110 -82l-42 47l170 148h64v-506h167v-68h-433z" />
-    <glyph glyph-name="zero.cap" 
-d="M300 -12q-107 0 -168 89t-61 254q0 166 61 251.5t168 85.5t168 -85.5t61 -251.5q0 -165 -61 -254t-168 -89zM300 54q33 0 61 16.5t48.5 50.5t31.5 86.5t11 123.5t-11 122t-31.5 84t-48.5 49t-61 16t-61 -16t-48.5 -49t-31.5 -84t-11 -122t11 -123.5t31.5 -86.5
-t48.5 -50.5t61 -16.5zM300 271q-25 0 -43.5 17t-18.5 49t18.5 49t43.5 17t43.5 -17t18.5 -49t-18.5 -49t-43.5 -17z" />
-    <glyph glyph-name="one.cap" 
-d="M97 0v68h184v489h-143v52q57 8 95 19t69 28h61v-588h167v-68h-433z" />
-    <glyph glyph-name="two.cap" 
-d="M73 0v49q81 72 143.5 130t105 107.5t64.5 92t22 82.5q0 62 -34 101t-105 39q-45 0 -83.5 -22t-69.5 -54l-47 46q43 45 92.5 71t117.5 26q48 0 86.5 -14.5t65.5 -41.5t41.5 -64.5t14.5 -83.5q0 -45 -21.5 -90.5t-60.5 -94.5t-93 -101.5t-119 -112.5q29 2 59.5 4t59.5 2
-h210v-71h-449z" />
-    <glyph glyph-name="three.cap" 
-d="M287 -12q-83 0 -139 27.5t-91 62.5l42 54q32 -30 76.5 -53t106.5 -23q33 0 61 8.5t48.5 24.5t32 38.5t11.5 51.5t-12.5 53t-40.5 41t-72 26.5t-107 9.5v63q57 0 96.5 9.5t64.5 26t36.5 39.5t11.5 49q0 49 -35.5 77t-94.5 28q-45 0 -85 -18t-72 -46l-44 52q40 35 91 57
-t113 22q45 0 83.5 -11t67 -32t44.5 -52t16 -71q0 -60 -38 -98.5t-98 -57.5v-4q32 -7 60.5 -21.5t50.5 -35.5t34.5 -48.5t12.5 -61.5q0 -44 -18 -78.5t-49.5 -58.5t-73.5 -37t-90 -13z" />
-    <glyph glyph-name="four.cap" 
-d="M368 0v180h-329v55l319 421h88v-410h99v-66h-99v-180h-78zM129 246h239v209q1 28 2 59t3 58h-3q-15 -25 -32.5 -49t-34.5 -48z" />
-    <glyph glyph-name="five.cap" 
-d="M286 -12q-43 0 -77.5 7.5t-62 19.5t-50 27.5t-40.5 32.5l41 57q16 -14 34 -28t40 -24.5t48 -17t58 -6.5q34 0 63.5 10.5t51.5 30t34.5 47.5t12.5 63q0 68 -42.5 106t-114.5 38q-40 0 -68 -9.5t-62 -29.5l-44 28l21 316h361v-70h-288l-17 -199q28 12 54.5 19t63.5 7
-q46 0 86 -12t69.5 -37t46.5 -63.5t17 -90.5q0 -53 -19.5 -94.5t-52.5 -70t-75.5 -43t-88.5 -14.5z" />
-    <glyph glyph-name="six.cap" 
-d="M321 -12q-52 0 -96.5 19.5t-77.5 59t-51.5 99t-18.5 138.5q0 99 22 168t59 112.5t85.5 63.5t100.5 20q59 0 102.5 -19t75.5 -48l-46 -51q-25 23 -58 36.5t-69 13.5q-38 0 -73 -14.5t-61.5 -48t-43 -88t-17.5 -133.5q38 39 85.5 61t95.5 22q44 0 80.5 -12.5t63 -38t41 -63
-t14.5 -87.5q0 -47 -17.5 -85.5t-46.5 -66.5t-67.5 -43t-81.5 -15zM321 53q28 0 53 10.5t43 29.5t28.5 45.5t10.5 59.5q0 68 -35 103.5t-101 35.5q-38 0 -81.5 -20t-82.5 -66q10 -97 52 -147.5t113 -50.5z" />
-    <glyph glyph-name="seven.cap" 
-d="M226 0q4 94 16.5 171.5t37.5 146.5t63.5 134t94.5 134h-368v70h462v-50q-65 -74 -106 -141.5t-65 -138.5t-35 -150t-14 -176h-86z" />
-    <glyph glyph-name="eight.cap" 
-d="M302 -12q-54 0 -97.5 13.5t-73.5 37.5t-46.5 57.5t-16.5 72.5q0 33 12 60t31 48.5t43.5 37.5t50.5 28v4q-40 25 -68.5 63t-28.5 91q0 37 14.5 68t41 53t62.5 34t79 12q47 0 83.5 -13t62 -36t39 -54.5t13.5 -69.5q0 -48 -28 -89t-69 -69v-4q26 -13 49 -28t40 -34.5
-t26.5 -45.5t9.5 -61q0 -37 -15.5 -69t-44.5 -56t-71.5 -37.5t-97.5 -13.5zM352 357q80 60 80 133q0 50 -33 83.5t-96 33.5q-54 0 -87 -29t-33 -77q0 -30 13 -52t36 -38.5t53.5 -29.5t66.5 -24zM304 49q72 0 110 32.5t38 84.5q0 34 -15.5 57t-42.5 39.5t-63.5 29.5t-78.5 27
-q-48 -25 -78.5 -59t-30.5 -84q0 -55 43.5 -91t117.5 -36z" />
-    <glyph glyph-name="nine.cap" 
-d="M281 319q38 0 81 20t82 65q-9 98 -51 149t-113 51q-29 0 -53.5 -10.5t-42.5 -30t-28.5 -46t-10.5 -59.5q0 -68 34.5 -103.5t101.5 -35.5zM257 -12q-59 0 -102.5 19t-75.5 48l46 52q24 -23 57 -37t70 -14q38 0 72.5 14.5t61 48t42.5 87.5t18 133q-39 -38 -85.5 -60
-t-95.5 -22q-44 0 -80.5 12.5t-62.5 37.5t-40.5 63t-14.5 88q0 47 17 86t46.5 66.5t68 42.5t80.5 15q52 0 97 -19.5t78 -59t51.5 -99t18.5 -138.5q0 -98 -22.5 -167.5t-59.5 -113t-85 -63.5t-100 -20z" />
-    <glyph glyph-name="zero.c" 
-d="M300 -12q-107 0 -168 89t-61 254q0 166 61 251.5t168 85.5t168 -85.5t61 -251.5q0 -165 -61 -254t-168 -89zM300 606q-68 0 -108 -63l243 -360q17 60 17 148q0 72 -11 124t-31.5 85.5t-48.5 49.5t-61 16zM300 51q33 0 60.5 16t47.5 50l-243 361q-17 -60 -17 -147
-q0 -72 11 -125t31.5 -87.5t48.5 -51t61 -16.5z" />
-    <glyph glyph-name="one.c" 
-d="M97 0v68h184v476l-110 -82l-42 47l170 147h64v-588h167v-68h-433z" />
-    <glyph glyph-name="period" unicode="." 
-d="M300 -12q-34 0 -57.5 23t-23.5 61t23.5 61.5t57.5 23.5t57.5 -23.5t23.5 -61.5t-23.5 -61t-57.5 -23z" />
-    <glyph glyph-name="comma" unicode="," 
-d="M220 -213l-23 52q62 28 93 67.5t33 99.5q-5 -2 -9.5 -2h-9.5q-32 0 -55 18.5t-23 56.5q0 37 24 56.5t56 19.5q45 0 67.5 -34.5t22.5 -93.5q0 -88 -46.5 -148.5t-129.5 -91.5z" />
-    <glyph glyph-name="colon" unicode=":" 
-d="M300 346q-34 0 -57.5 23t-23.5 61t23.5 61.5t57.5 23.5t57.5 -23.5t23.5 -61.5t-23.5 -61t-57.5 -23zM300 -12q-34 0 -57.5 23t-23.5 61t23.5 61.5t57.5 23.5t57.5 -23.5t23.5 -61.5t-23.5 -61t-57.5 -23z" />
-    <glyph glyph-name="semicolon" unicode=";" 
-d="M300 346q-34 0 -57.5 23t-23.5 61t23.5 61.5t57.5 23.5t57.5 -23.5t23.5 -61.5t-23.5 -61t-57.5 -23zM220 -213l-23 52q62 28 93 67.5t33 99.5q-5 -2 -9.5 -2h-9.5q-32 0 -55 18.5t-23 56.5q0 37 24 56.5t56 19.5q45 0 67.5 -34.5t22.5 -93.5q0 -88 -46.5 -148.5
-t-129.5 -91.5z" />
-    <glyph glyph-name="ellipsis" unicode="&#x2026;" 
-d="M102 -12q-29 0 -49.5 21t-20.5 54q0 34 20.5 54.5t49.5 20.5t49 -20.5t20 -54.5q0 -33 -20 -54t-49 -21zM300 -12q-29 0 -49.5 21t-20.5 54q0 34 20.5 54.5t49.5 20.5t49.5 -20.5t20.5 -54.5q0 -33 -20.5 -54t-49.5 -21zM498 -12q-29 0 -49 21t-20 54q0 34 20 54.5
-t49 20.5t49.5 -20.5t20.5 -54.5q0 -33 -20.5 -54t-49.5 -21z" />
-    <glyph glyph-name="exclam" unicode="!" 
-d="M272 232l-10 344l-2 94h80l-2 -94l-10 -344h-56zM300 -12q-30 0 -51.5 21t-21.5 57q0 35 21.5 55.5t51.5 20.5t51.5 -20.5t21.5 -55.5q0 -36 -21.5 -57t-51.5 -21z" />
-    <glyph glyph-name="exclamdown" unicode="&#xa1;" 
-d="M260 -184l2 94l10 344h56l10 -344l2 -94h-80zM300 344q-30 0 -51.5 20.5t-21.5 56.5q0 35 21.5 56t51.5 21t51.5 -21t21.5 -56q0 -36 -21.5 -56.5t-51.5 -20.5z" />
-    <glyph glyph-name="question" unicode="?" 
-d="M242 232q-6 36 3 64t26.5 51t39.5 43t41.5 39.5t32.5 40.5t13 47q0 42 -27.5 69.5t-82.5 27.5q-38 0 -70.5 -15.5t-59.5 -42.5l-49 45q34 35 80 58t104 23q42 0 76 -11t58.5 -31.5t38 -49t13.5 -64.5q0 -34 -13.5 -60t-33 -48t-42 -41.5t-41 -41t-29 -46.5t-5.5 -57h-73z
-M286 -12q-30 0 -51.5 21t-21.5 57q0 35 21.5 55.5t51.5 20.5t51.5 -20.5t21.5 -55.5q0 -36 -21.5 -57t-51.5 -21z" />
-    <glyph glyph-name="questiondown" unicode="&#xbf;" 
-d="M307 -196q-42 0 -76 11t-58.5 31.5t-38 49t-13.5 64.5q0 34 13.5 60t33 48t42 41.5t41 41t28.5 46t6 57.5h73q6 -36 -3 -64t-26.5 -51t-39.5 -43t-41.5 -39.5t-32.5 -41t-13 -46.5q0 -42 27.5 -69t82.5 -27q38 0 70.5 15t59.5 42l49 -45q-34 -35 -80 -58t-104 -23z
-M314 344q-30 0 -51.5 20.5t-21.5 56.5q0 35 21.5 56t51.5 21t51.5 -21t21.5 -56q0 -36 -21.5 -56.5t-51.5 -20.5z" />
-    <glyph glyph-name="quotesingle" unicode="'" 
-d="M272 352l-25 225l-2 110h110l-2 -110l-25 -225h-56z" />
-    <glyph glyph-name="quotedbl" unicode="&#x22;" 
-d="M158 352l-25 225l-2 110h110l-2 -110l-25 -225h-56zM387 352l-25 225l-2 110h110l-2 -110l-25 -225h-56z" />
-    <glyph glyph-name="quoteleft" unicode="&#x2018;" 
-d="M299 350q-39 0 -64.5 31.5t-25.5 88.5q0 75 38 134.5t106 94.5l27 -48q-46 -27 -73 -66.5t-30 -91.5q12 6 26 6q31 0 50.5 -20t19.5 -52q0 -35 -21 -56t-53 -21z" />
-    <glyph glyph-name="quoteright" unicode="&#x2019;" 
-d="M245 350l-28 48q47 26 74 65.5t30 92.5q-12 -6 -26 -6q-32 0 -51.5 19.5t-19.5 51.5q0 35 21 56.5t53 21.5q40 0 65 -32t25 -89q0 -75 -38 -134t-105 -94z" />
-    <glyph glyph-name="quotedblleft" unicode="&#x201c;" 
-d="M185 350q-39 0 -64.5 31.5t-25.5 88.5q0 75 38 134.5t106 94.5l27 -48q-46 -27 -73 -66.5t-30 -91.5q12 6 26 6q31 0 50.5 -20t19.5 -52q0 -35 -21 -56t-53 -21zM414 350q-39 0 -64.5 31.5t-25.5 88.5q0 75 38 134.5t106 94.5l27 -48q-46 -27 -73 -66.5t-30 -91.5
-q12 6 26 6q31 0 50.5 -20t19.5 -52q0 -35 -21 -56t-53 -21z" />
-    <glyph glyph-name="quotedblright" unicode="&#x201d;" 
-d="M131 350l-28 48q47 26 74 65.5t30 92.5q-12 -6 -26 -6q-32 0 -51.5 19.5t-19.5 51.5q0 35 21 56.5t53 21.5q40 0 65 -32t25 -89q0 -75 -38 -134t-105 -94zM360 350l-28 48q47 26 74 65.5t30 92.5q-12 -6 -26 -6q-32 0 -51.5 19.5t-19.5 51.5q0 35 21 56.5t53 21.5
-q40 0 65 -32t25 -89q0 -75 -38 -134t-105 -94z" />
-    <glyph glyph-name="quotesinglbase" unicode="&#x201a;" 
-d="M245 -225l-28 48q47 26 74 65.5t30 92.5q-12 -6 -26 -6q-32 0 -51.5 19.5t-19.5 51.5q0 35 21 56.5t53 21.5q40 0 65 -32t25 -89q0 -75 -38 -134t-105 -94z" />
-    <glyph glyph-name="quotedblbase" unicode="&#x201e;" 
-d="M131 -225l-28 48q47 26 74 65.5t30 92.5q-12 -6 -26 -6q-32 0 -51.5 19.5t-19.5 51.5q0 35 21 56.5t53 21.5q40 0 65 -32t25 -89q0 -75 -38 -134t-105 -94zM360 -225l-28 48q47 26 74 65.5t30 92.5q-12 -6 -26 -6q-32 0 -51.5 19.5t-19.5 51.5q0 35 21 56.5t53 21.5
-q40 0 65 -32t25 -89q0 -75 -38 -134t-105 -94z" />
-    <glyph glyph-name="quotereversed" unicode="&#x201b;" 
-d="M355 350q-67 35 -105 94t-38 134q0 57 25 89t65 32q32 0 53 -21.5t21 -56.5q0 -32 -19.5 -51.5t-51.5 -19.5q-14 0 -26 6q3 -53 30 -92.5t74 -65.5z" />
-    <glyph glyph-name="guilsinglleft" unicode="&#x2039;" 
-d="M350 52l-153 160v80l153 160l39 -35l-127 -165l127 -166z" />
-    <glyph glyph-name="guilsinglright" unicode="&#x203a;" 
-d="M250 52l-39 34l127 166l-127 165l39 35l153 -160v-80z" />
-    <glyph glyph-name="guillemotleft" unicode="&#xab;" 
-d="M236 52l-153 160v80l153 160l39 -35l-127 -165l127 -166zM465 52l-153 160v80l153 160l39 -35l-127 -165l127 -166z" />
-    <glyph glyph-name="guillemotright" unicode="&#xbb;" 
-d="M136 52l-39 34l127 166l-127 165l39 35l153 -160v-80zM365 52l-39 34l127 166l-127 165l39 35l153 -160v-80z" />
-    <glyph glyph-name="hyphen" unicode="-" 
-d="M85 299v62h430v-62h-430z" />
-    <glyph glyph-name="uni00AD" unicode="&#xad;" 
-d="M85 299v62h430v-62h-430z" />
-    <glyph glyph-name="uni2010" unicode="&#x2010;" 
-d="M85 299v62h430v-62h-430z" />
-    <glyph glyph-name="endash" unicode="&#x2013;" 
-d="M80 216v72h440v-72h-440z" />
-    <glyph glyph-name="emdash" unicode="&#x2014;" 
-d="M0 216v72h600v-72h-600z" />
-    <glyph glyph-name="figuredash" unicode="&#x2012;" 
-d="M80 216v72h440v-72h-440z" />
-    <glyph glyph-name="uni2015" unicode="&#x2015;" 
-d="M0 216v72h600v-72h-600z" />
-    <glyph glyph-name="periodcentered" unicode="&#xb7;" 
-d="M300 263q-34 0 -57.5 23t-23.5 61t23.5 61.5t57.5 23.5t57.5 -23.5t23.5 -61.5t-23.5 -61t-57.5 -23z" />
-    <glyph glyph-name="bullet" unicode="&#x2022;" 
-d="M300 115q-30 0 -57 10.5t-47.5 30t-32.5 46.5t-12 60t12 60t32.5 46.5t47.5 30t57 10.5t57 -10.5t47.5 -30t32.5 -46.5t12 -60t-12 -60t-32.5 -46.5t-47.5 -30t-57 -10.5z" />
-    <glyph glyph-name="uni25E6" unicode="&#x25e6;" 
-d="M300 103q-35 0 -64.5 12t-51 33.5t-33.5 50.5t-12 63t12 63t33.5 50.5t51 33.5t64.5 12t64.5 -12t51 -33.5t33.5 -50.5t12 -63t-12 -63t-33.5 -50.5t-51 -33.5t-64.5 -12zM300 151q47 0 76.5 31t29.5 80t-29.5 80t-76.5 31t-76.5 -31t-29.5 -80t29.5 -80t76.5 -31z" />
-    <glyph glyph-name="uni25AA" unicode="&#x25aa;" 
-d="M166 129v266h268v-266h-268z" />
-    <glyph glyph-name="uni25AB" unicode="&#x25ab;" 
-d="M154 117v290h292v-290h-292zM203 162h194v200h-194v-200z" />
-    <glyph glyph-name="uni25B4" unicode="&#x25b4;" 
-d="M139 129v3l160 293h2l160 -293v-3h-322z" />
-    <glyph glyph-name="uni25B5" unicode="&#x25b5;" 
-d="M117 117v3l182 326h2l182 -326v-3h-366zM191 160h218l-109 202z" />
-    <glyph glyph-name="uni25B8" unicode="&#x25b8;" 
-d="M166 101v324h3l293 -161v-3l-293 -160h-3z" />
-    <glyph glyph-name="uni25B9" unicode="&#x25b9;" 
-d="M154 79v367h2l327 -182v-3l-327 -182h-2zM197 154l201 109l-201 108v-217z" />
-    <glyph glyph-name="uni25BE" unicode="&#x25be;" 
-d="M299 99l-160 293v3h322v-3l-160 -293h-2z" />
-    <glyph glyph-name="uni25BF" unicode="&#x25bf;" 
-d="M299 78l-182 326v3h366v-3l-182 -326h-2zM300 162l109 202h-218z" />
-    <glyph glyph-name="uni25C2" unicode="&#x25c2;" 
-d="M431 101l-293 160v3l293 161h3v-324h-3z" />
-    <glyph glyph-name="uni25C3" unicode="&#x25c3;" 
-d="M444 79l-327 182v3l327 182h2v-367h-2zM403 154v217l-201 -108z" />
-    <glyph glyph-name="invbullet" unicode="&#x25d8;" 
-d="M152 115v294h296v-294h-296zM300 127q29 0 54 10t43 28t28.5 43t10.5 54t-10.5 54t-28.5 43t-43 28t-54 10t-54 -10t-43 -28t-28.5 -43t-10.5 -54t10.5 -54t28.5 -43t43 -28t54 -10z" />
-    <glyph glyph-name="filledrect" unicode="&#x25ac;" 
-d="M0 196v112h600v-112h-600z" />
-    <glyph glyph-name="underscore" unicode="_" 
-d="M60 -140v71h480v-71h-480z" />
-    <glyph glyph-name="underscoredbl" unicode="&#x2017;" 
-d="M60 -131v62h480v-62h-480zM60 -253v61h480v-61h-480z" />
-    <glyph glyph-name="uni203E" unicode="&#x203e;" 
-d="M62 577v54h476v-54h-476z" />
-    <glyph glyph-name="uni203F" unicode="&#x203f;" 
-d="M300 -233q-128 0 -240.5 32.5t-213.5 95.5l24 41q96 -58 208.5 -84.5t221.5 -26.5t221.5 26.5t208.5 84.5l24 -41q-101 -63 -213.5 -95.5t-240.5 -32.5z" />
-    <glyph glyph-name="parenleft" unicode="(" 
-d="M433 -176q-104 81 -164.5 195t-60.5 259t60.5 259t164.5 195l45 -42q-101 -85 -148.5 -185t-47.5 -227t47.5 -227t148.5 -185z" />
-    <glyph glyph-name="parenright" unicode=")" 
-d="M167 -176l-45 42q101 85 148.5 185t47.5 227t-47.5 227t-148.5 185l45 42q104 -81 164.5 -195t60.5 -259t-60.5 -259t-164.5 -195z" />
-    <glyph glyph-name="bracketleft" unicode="[" 
-d="M225 -152v860h277v-47h-211v-766h211v-47h-277z" />
-    <glyph glyph-name="bracketright" unicode="]" 
-d="M98 -152v47h211v766h-211v47h277v-860h-277z" />
-    <glyph glyph-name="braceleft" unicode="{" 
-d="M441 -152q-47 0 -82 6.5t-58 21.5t-34 40.5t-11 64.5q0 27 1.5 51.5t3 47.5l3 46t1.5 48q0 15 -6 28.5t-22 24.5t-44.5 18t-72.5 7v52q44 0 72.5 7t44.5 18t22 24.5t6 28.5q0 48 -4.5 94.5t-4.5 98.5q0 39 11 64.5t34 40.5t58 21.5t82 6.5h61v-47h-52q-38 0 -62.5 -5
-t-38 -16t-18.5 -28.5t-5 -41.5q0 -43 3 -88.5t3 -92.5q0 -49 -19.5 -74.5t-71.5 -34.5v-4q52 -9 71.5 -34.5t19.5 -74.5q0 -51 -3 -93t-3 -88q0 -24 5 -41.5t18.5 -28.5t38 -16t62.5 -5h52v-47h-61z" />
-    <glyph glyph-name="braceright" unicode="}" 
-d="M99 -152v47h51q38 0 62.5 5t38.5 16t19 28.5t5 41.5q0 46 -3 88t-3 93q0 49 19 74.5t71 34.5v4q-52 9 -71 34.5t-19 74.5q0 47 3 92.5t3 88.5q0 24 -5 41.5t-19 28.5t-38.5 16t-62.5 5h-51v47h61q47 0 81.5 -6.5t57.5 -21.5t34 -40.5t11 -64.5q0 -52 -4.5 -98.5
-t-4.5 -94.5q0 -15 6 -28.5t22 -24.5t44.5 -18t72.5 -7v-52q-44 0 -72.5 -7t-44.5 -18t-22 -24.5t-6 -28.5q0 -25 1.5 -48l3 -46t3 -47.5t1.5 -51.5q0 -39 -11 -64.5t-34 -40.5t-57.5 -21.5t-81.5 -6.5h-61z" />
-    <glyph glyph-name="slash" unicode="/" 
-d="M99 -160l328 870h74l-328 -870h-74z" />
-    <glyph glyph-name="bar" unicode="|" 
-d="M263 -250v1000h74v-1000h-74z" />
-    <glyph glyph-name="backslash" unicode="\" 
-d="M427 -160l-328 870h74l328 -870h-74z" />
-    <glyph glyph-name="brokenbar" unicode="&#xa6;" 
-d="M263 -250v440h74v-440h-74zM263 310v440h74v-440h-74z" />
-    <glyph glyph-name="asterisk" unicode="*" 
-d="M180 111l-42 30l108 165l-162 70l16 46l167 -55l9 189h48l9 -189l167 55l16 -46l-162 -70l108 -165l-42 -30l-120 159z" />
-    <glyph glyph-name="dagger" unicode="&#x2020;" 
-d="M265 -80l5 571l-143 -5v71l143 -5l-5 160h70l-5 -160l143 5v-71l-143 5l5 -571h-70z" />
-    <glyph glyph-name="daggerdbl" unicode="&#x2021;" 
-d="M265 -80l5 160l-143 -5v71l143 -7l-5 177l5 177l-143 -7v71l143 -5l-5 160h70l-5 -160l143 5v-71l-143 7l5 -177l-5 -177l143 7v-71l-143 5l5 -160h-70z" />
-    <glyph glyph-name="section" unicode="&#xa7;" 
-d="M287 -64q-55 0 -101 19t-78 52l50 45q26 -24 56.5 -38t72.5 -14q41 0 63.5 20t22.5 49q0 28 -21 47t-52 34t-68 29.5t-68 35.5t-52 51.5t-21 76.5q0 45 25.5 77t65.5 53q-14 16 -22.5 35.5t-8.5 45.5t9.5 49.5t28.5 41.5t47 28.5t66 10.5q50 0 90.5 -17t70.5 -40l-40 -53
-q-26 20 -54 33t-63 13q-42 0 -61 -18.5t-19 -44.5q0 -27 21 -45t52.5 -33t68 -30t68 -36.5t52.5 -52t21 -76.5q0 -48 -24.5 -78t-66.5 -52q14 -16 22 -35.5t8 -45.5q0 -30 -12 -55t-33 -43t-50.5 -28.5t-65.5 -10.5zM162 348q0 -33 20.5 -54.5t52 -38t68 -30.5t68.5 -33
-q32 14 49.5 33t17.5 53t-20.5 56t-51.5 38.5t-67.5 31t-68.5 32.5q-31 -16 -49.5 -36.5t-18.5 -51.5z" />
-    <glyph glyph-name="paragraph" unicode="&#xb6;" 
-d="M318 226q-53 0 -98 12.5t-78 39t-51.5 67.5t-18.5 98q0 59 18 99.5t49.5 66t74.5 36.5t93 11h43v-430h-32zM404 -80v736h81v-736h-81z" />
-    <glyph glyph-name="uni2016" unicode="&#x2016;" 
-d="M157 -250v1000h74v-1000h-74zM370 -250v1000h74v-1000h-74z" />
-    <glyph glyph-name="exclamdbl" unicode="&#x203c;" 
-d="M139 232l-10 344l-2 94h80l-2 -94l-10 -344h-56zM167 -12q-30 0 -51.5 21t-21.5 57q0 35 21.5 55.5t51.5 20.5t51.5 -20.5t21.5 -55.5q0 -36 -21.5 -57t-51.5 -21zM393 232l-10 344l-2 94h80l-2 -94l-10 -344h-56zM421 -12q-30 0 -51.5 21t-21.5 57q0 35 21.5 55.5
-t51.5 20.5t51.5 -20.5t21.5 -55.5q0 -36 -21.5 -57t-51.5 -21z" />
-    <glyph glyph-name="uni2047" unicode="&#x2047;" 
-d="M102 232q-6 35 -0.5 63.5t18 53.5t28 46.5t30 43.5t24 45.5t9.5 50.5q0 33 -18 56t-55 23q-24 0 -43.5 -11t-39.5 -37l-41 49q29 33 63 50t76 17q31 0 56.5 -10t43.5 -27.5t28 -42t10 -52.5q0 -35 -10 -63.5t-25 -52.5t-32 -46.5t-30.5 -46t-20.5 -50t-2 -59.5h-69z
-M146 -12q-30 0 -51.5 21t-21.5 57q0 35 21.5 55.5t51.5 20.5t51.5 -20.5t21.5 -55.5q0 -36 -21.5 -57t-51.5 -21zM382 232q-6 35 -0.5 63.5t18 53.5t28 46.5t30 43.5t24 45.5t9.5 50.5q0 33 -18 56t-55 23q-24 0 -43.5 -11t-39.5 -37l-41 49q29 33 63 50t76 17
-q31 0 56.5 -10t43.5 -27.5t28 -42t10 -52.5q0 -35 -10 -63.5t-25 -52.5t-32 -46.5t-30.5 -46t-20.5 -50t-2 -59.5h-69zM426 -12q-30 0 -51.5 21t-21.5 57q0 35 21.5 55.5t51.5 20.5t51.5 -20.5t21.5 -55.5q0 -36 -21.5 -57t-51.5 -21z" />
-    <glyph glyph-name="uni2049" unicode="&#x2049;" 
-d="M382 232q-6 35 -0.5 63.5t18 53.5t28 46.5t30 43.5t24 45.5t9.5 50.5q0 33 -18 56t-55 23q-24 0 -43.5 -11t-39.5 -37l-41 49q29 33 63 50t76 17q31 0 56.5 -10t43.5 -27.5t28 -42t10 -52.5q0 -35 -10 -63.5t-25 -52.5t-32 -46.5t-30.5 -46t-20.5 -50t-2 -59.5h-69z
-M426 -12q-30 0 -51.5 21t-21.5 57q0 35 21.5 55.5t51.5 20.5t51.5 -20.5t21.5 -55.5q0 -36 -21.5 -57t-51.5 -21zM132 232l-10 344l-2 94h80l-2 -94l-10 -344h-56zM160 -12q-30 0 -51.5 21t-21.5 57q0 35 21.5 55.5t51.5 20.5t51.5 -20.5t21.5 -55.5q0 -36 -21.5 -57
-t-51.5 -21z" />
-    <glyph glyph-name="uni2048" unicode="&#x2048;" 
-d="M102 232q-6 35 -0.5 63.5t18 53.5t28 46.5t30 43.5t24 45.5t9.5 50.5q0 33 -18 56t-55 23q-24 0 -43.5 -11t-39.5 -37l-41 49q29 33 63 50t76 17q31 0 56.5 -10t43.5 -27.5t28 -42t10 -52.5q0 -35 -10 -63.5t-25 -52.5t-32 -46.5t-30.5 -46t-20.5 -50t-2 -59.5h-69z
-M146 -12q-30 0 -51.5 21t-21.5 57q0 35 21.5 55.5t51.5 20.5t51.5 -20.5t21.5 -55.5q0 -36 -21.5 -57t-51.5 -21zM412 232l-10 344l-2 94h80l-2 -94l-10 -344h-56zM440 -12q-30 0 -51.5 21t-21.5 57q0 35 21.5 55.5t51.5 20.5t51.5 -20.5t21.5 -55.5q0 -36 -21.5 -57
-t-51.5 -21z" />
-    <glyph glyph-name="uni203D" unicode="&#x203d;" 
-d="M254 232l-11 224l-4 76h70l-1 -76l-3 -107q15 19 33 36t33 35.5t25.5 40.5t10.5 51q0 45 -31.5 75t-92.5 30q-80 0 -141 -63l-48 44q35 38 85.5 61t109.5 23q44 0 80 -11.5t61.5 -32.5t39.5 -50t14 -63q0 -40 -13.5 -68.5t-33.5 -51t-43 -41t-42 -38t-31 -42t-9 -52.5
-h-58zM282 -12q-28 0 -48.5 20.5t-20.5 54.5t20.5 54.5t48.5 20.5q29 0 49.5 -20.5t20.5 -54.5t-20.5 -54.5t-49.5 -20.5z" />
-    <glyph glyph-name="uni2E18" unicode="&#x2e18;" 
-d="M346 254l11 -224l4 -76h-70l1 76l3 107q-15 -19 -33 -36t-33 -35.5t-25.5 -40.5t-10.5 -51q0 -45 31.5 -75t92.5 -30q80 0 141 63l48 -44q-35 -38 -85.5 -61t-109.5 -23q-44 0 -80 11.5t-61.5 32.5t-39.5 50t-14 63q0 39 13.5 68t33.5 51.5t43 41t42 38t31 42t9 52.5h58z
-M318 498q28 0 48.5 -20.5t20.5 -54.5t-20.5 -54.5t-48.5 -20.5q-29 0 -49.5 20.5t-20.5 54.5t20.5 54.5t49.5 20.5z" />
-    <glyph glyph-name="uni231C" unicode="&#x231c;" 
-d="M225 0v695h277v-47h-211v-648h-66z" />
-    <glyph glyph-name="uni231D" unicode="&#x231d;" 
-d="M309 0v648h-211v47h277v-695h-66z" />
-    <glyph glyph-name="uni231E" unicode="&#x231e;" 
-d="M225 -86v724h66v-677h211v-47h-277z" />
-    <glyph glyph-name="uni231F" unicode="&#x231f;" 
-d="M98 -86v47h211v677h66v-724h-277z" />
-    <glyph glyph-name="uni27E6" unicode="&#x27e6;" 
-d="M186 -152v860h316v-47h-172v-766h172v-47h-316zM238 -105h43v766h-43v-766z" />
-    <glyph glyph-name="uni27E7" unicode="&#x27e7;" 
-d="M98 -152v47h172v766h-172v47h316v-860h-316zM319 -105h43v766h-43v-766z" />
-    <glyph glyph-name="uni2E22" unicode="&#x2e22;" 
-d="M226 278v430h276v-47h-211v-383h-65z" />
-    <glyph glyph-name="uni2E23" unicode="&#x2e23;" 
-d="M309 278v370h-211v47h277v-417h-66z" />
-    <glyph glyph-name="uni2E24" unicode="&#x2e24;" 
-d="M225 -152v430h66v-383h211v-47h-277z" />
-    <glyph glyph-name="uni2E25" unicode="&#x2e25;" 
-d="M98 -152v47h211v383h66v-430h-277z" />
-    <glyph glyph-name="copyright" unicode="&#xa9;" 
-d="M300 -11q-57 0 -106.5 23.5t-86 67t-57 105t-20.5 138.5q0 76 20.5 137.5t57 104t86 65.5t106.5 23t106.5 -23t86 -65.5t57 -104t20.5 -137.5q0 -77 -20.5 -138.5t-57 -105t-86 -67t-106.5 -23.5zM300 31q50 0 91.5 21t71 59.5t45.5 92t16 119.5t-16 119t-45.5 91
-t-71 58.5t-91.5 20.5t-91.5 -20.5t-71 -58.5t-45.5 -91t-16 -119t16 -119.5t45.5 -92t71 -59.5t91.5 -21zM308 125q-34 0 -63.5 13.5t-51.5 39t-34.5 62t-12.5 83.5q0 43 13.5 78t36.5 60t52.5 38t62.5 13q35 0 59.5 -13.5t44.5 -33.5l-34 -39q-16 14 -31.5 22.5t-35.5 8.5
-q-46 0 -74 -37.5t-28 -96.5q0 -66 26.5 -104.5t71.5 -38.5q26 0 45 10t36 24l30 -42q-23 -20 -49 -33.5t-64 -13.5z" />
-    <glyph glyph-name="uni2117" unicode="&#x2117;" 
-d="M300 -11q-57 0 -106.5 23.5t-86 67t-57 105t-20.5 138.5q0 76 20.5 137.5t57 104t86 65.5t106.5 23t106.5 -23t86 -65.5t57 -104t20.5 -137.5q0 -77 -20.5 -138.5t-57 -105t-86 -67t-106.5 -23.5zM300 31q50 0 91.5 21t71 59.5t45.5 92t16 119.5t-16 119t-45.5 91
-t-71 58.5t-91.5 20.5t-91.5 -20.5t-71 -58.5t-45.5 -91t-16 -119t16 -119.5t45.5 -92t71 -59.5t91.5 -21zM193 137v363h114q28 0 53 -7t43.5 -21t29 -36.5t10.5 -52.5q0 -33 -10.5 -57.5t-29 -41t-43.5 -24.5t-53 -8h-49v-115h-65zM258 302h39q39 0 60 18.5t21 60.5
-q0 36 -21.5 52t-59.5 16h-39v-147z" />
-    <glyph glyph-name="registered" unicode="&#xae;" 
-d="M300 319q-39 0 -73.5 14.5t-60 40.5t-40 62t-14.5 80t14.5 80t40 62t60 40.5t73.5 14.5t73 -14.5t59.5 -40.5t40.5 -62t15 -80t-15 -80t-40.5 -62t-59.5 -40.5t-73 -14.5zM300 356q31 0 58.5 11.5t47 32.5t31 50.5t11.5 65.5q0 35 -11.5 64.5t-31 51t-47 33.5t-58.5 12
-q-32 0 -59 -12t-47 -33.5t-31.5 -51t-11.5 -64.5q0 -36 11.5 -65.5t31.5 -50.5t47 -32.5t59 -11.5zM227 417v203h76q32 0 55.5 -14.5t23.5 -50.5q0 -18 -10.5 -33.5t-27.5 -21.5l46 -83h-46l-35 70h-41v-70h-41zM268 519h26q20 0 32 8.5t12 25.5q0 15 -9.5 24t-32.5 9h-28
-v-67z" />
-    <glyph glyph-name="trademark" unicode="&#x2122;" 
-d="M91 366v256h-96v54h252v-54h-96v-256h-60zM292 366v310h71l45 -114l27 -80h4l26 80l44 114h71v-310h-55v137l7 105h-4l-71 -187h-42l-72 187h-4l7 -105v-137h-54z" />
-    <glyph glyph-name="uni2120" unicode="&#x2120;" 
-d="M125 354q-33 0 -60 12.5t-50 35.5l33 37q19 -17 37.5 -27.5t43.5 -10.5q23 0 36 10.5t13 28.5q0 20 -9.5 27.5t-32.5 18.5l-46 24q-22 11 -40.5 30.5t-18.5 54.5q0 39 28 63.5t76 24.5q28 0 53 -11t42 -27l-30 -39q-15 12 -32.5 21t-34.5 9q-23 0 -35 -11.5t-12 -26.5
-t10.5 -24.5t30.5 -18.5l46 -23q29 -14 45 -33t16 -54q0 -18 -7.5 -34t-21.5 -29t-34.5 -20.5t-45.5 -7.5zM292 366v310h71l45 -114l27 -80h4l26 80l44 114h71v-310h-55v137l7 105h-4l-71 -187h-42l-72 187h-4l7 -105v-137h-54z" />
-    <glyph glyph-name="at" unicode="@" 
-d="M341 -144q-59 0 -112 25.5t-93 75t-63.5 123.5t-23.5 170t22.5 168t62.5 120t93.5 72.5t115.5 24.5q52 0 90 -18t63 -50t37.5 -75.5t12.5 -94.5v-297h-50l-7 58h-4q-22 -28 -57.5 -49t-74.5 -21q-27 0 -50.5 9t-41 26t-27.5 41.5t-10 54.5q0 77 68 116t196 55v14
-q0 36 -8.5 68t-26.5 56t-46.5 38t-67.5 14q-45 0 -86 -21t-72.5 -62.5t-50 -104t-18.5 -145.5q0 -80 18 -142.5t49 -105.5t73 -65.5t91 -22.5q45 0 78.5 11.5t62.5 33.5l28 -45q-39 -27 -80 -41t-91 -14zM370 146q56 0 112 64v126q-104 -14 -148 -41.5t-44 -73.5
-q0 -35 21.5 -55t58.5 -20z" />
-    <glyph glyph-name="at.case" 
-d="M341 -18q-59 0 -112 22t-93 65t-63.5 106.5t-23.5 147.5q0 86 23 150.5t63 108t94.5 65t116.5 21.5q51 0 88.5 -16t62.5 -44t37 -65.5t12 -79.5v-290h-50l-7 58h-4q-22 -29 -57.5 -49.5t-74.5 -20.5q-27 0 -50.5 9t-41 26t-27.5 41.5t-10 54.5q0 76 68 115.5t196 55.5v10
-q0 28 -8.5 53.5t-26.5 44.5t-45.5 30.5t-65.5 11.5q-45 0 -87 -18.5t-73.5 -55t-50.5 -91.5t-19 -128q0 -68 18 -120.5t49 -88.5t73 -55t91 -19q45 0 78.5 11.5t62.5 33.5l28 -45q-39 -26 -80 -40.5t-91 -14.5zM370 219q56 0 112 64v126q-104 -15 -148 -42t-44 -74
-q0 -35 21.5 -54.5t58.5 -19.5z" />
-    <glyph glyph-name="numbersign" unicode="#" 
-d="M328 0l25 204h-132l-25 -204h-54l25 204h-80v57h87l18 148h-85v58h92l23 183h53l-22 -183h132l23 183h53l-22 -183h80v-58h-87l-18 -148h85v-57h-92l-25 -204h-54zM360 261l18 148h-132l-18 -148h132z" />
-    <glyph glyph-name="asterisk.a" 
-d="M197 316l-42 29l92 147l-143 57l16 46l147 -44l9 161h48l9 -159l147 42l16 -46l-143 -57l92 -147l-42 -29l-103 140z" />
-    <glyph glyph-name="hyphen.a" 
-d="M134 216v72h332v-72h-332z" />
-    <glyph glyph-name="uni00AD.a" 
-d="M134 216v72h332v-72h-332z" />
-    <glyph glyph-name="uni2010.a" 
-d="M134 216v72h332v-72h-332z" />
-    <glyph glyph-name="dollar.a" 
-d="M190 467q0 -30 28 -49t70 -35l31 166q-5 1 -9.5 1h-9.5q-51 0 -80.5 -22.5t-29.5 -60.5zM314 102q59 0 90 24.5t31 62.5q0 36 -31.5 58t-76.5 40l-34 -184q5 -1 10.5 -1h10.5zM304 34h-12t-12 1l-27 -148l-56 6l28 151q-42 11 -78 29t-62 40l39 57q25 -17 53.5 -32.5
-t60.5 -24.5l36 195q-31 12 -60.5 26t-52.5 32t-37 42t-14 57q0 35 14.5 63.5t40.5 48.5t62 30.5t79 10.5h13t12 -1l25 134l56 -7l-25 -137q33 -10 59 -27t49 -39l-44 -48q-20 15 -38.5 26.5t-38.5 18.5l-33 -175q32 -12 63 -26.5t56 -34t40 -45.5t15 -62t-15.5 -65.5
-t-43 -51t-66.5 -33t-86 -11.5z" />
-    <glyph glyph-name="zero.sups" unicode="&#x2070;" 
-d="M300 383q-72 0 -115.5 54t-43.5 154q0 99 43.5 152.5t115.5 53.5t115.5 -53.5t43.5 -152.5q0 -100 -43.5 -154t-115.5 -54zM300 434q43 0 70 39t27 118q0 78 -27 116.5t-70 38.5t-70 -38.5t-27 -116.5q0 -79 27 -118t70 -39z" />
-    <glyph glyph-name="one.sups" unicode="&#xb9;" 
-d="M175 395v54h123v254h-105v41q41 6 67.5 15t49.5 26h52v-336h114v-54h-301z" />
-    <glyph glyph-name="two.sups" unicode="&#xb2;" 
-d="M162 395l-4 37q50 43 88.5 75.5t64.5 59.5t39 49.5t13 44.5q0 38 -23 60t-62 22q-28 0 -52.5 -16t-41.5 -41l-38 35q23 35 60.5 55.5t80.5 20.5q63 0 101.5 -32t38.5 -95q0 -28 -12.5 -53.5t-34.5 -51.5t-52 -54t-66 -62h184v-54h-284z" />
-    <glyph glyph-name="three.sups" unicode="&#xb3;" 
-d="M297 383q-51 0 -91.5 21t-63.5 55l42 33q19 -29 47.5 -43.5t61.5 -14.5q36 0 62 18t26 51q0 70 -131 70v40q60 0 88 20.5t28 50.5q0 28 -21.5 45t-58.5 17q-25 0 -49 -13t-41 -35l-38 34q26 31 59.5 48t77.5 17q27 0 51.5 -7.5t43 -21t29.5 -33t11 -43.5q0 -35 -19.5 -58
-t-59.5 -38q43 -8 68.5 -33t25.5 -63q0 -27 -11.5 -48.5t-32 -37t-47.5 -23.5t-57 -8z" />
-    <glyph glyph-name="four.sups" unicode="&#x2074;" 
-d="M346 395v104h-198v33l154 265l47 -25l-132 -227h129v116h58v-116h58v-46h-58v-104h-58z" />
-    <glyph glyph-name="five.sups" unicode="&#x2075;" 
-d="M299 383q-55 0 -94 21t-63 55l42 33q40 -58 111 -58q39 0 64.5 24t25.5 62q0 40 -27 63t-69 23q-25 0 -43.5 -9t-35.5 -23l-32 22l19 189h232v-56h-180l-10 -96q16 8 34.5 11.5t37.5 3.5q28 0 53.5 -8.5t44 -25t29.5 -41t11 -56.5q0 -30 -11.5 -54.5t-31.5 -42.5
-t-47.5 -27.5t-59.5 -9.5z" />
-    <glyph glyph-name="six.sups" unicode="&#x2076;" 
-d="M313 383q-75 0 -118.5 52t-43.5 144q0 55 14 96t38 68t57 40.5t71 13.5t62 -8.5t44 -22.5l-27 -44q-16 11 -34.5 17.5t-42.5 6.5q-48 0 -82 -36t-39 -111q44 41 108 41t98 -34.5t34 -90.5q0 -28 -10.5 -52t-29.5 -42t-44 -28t-55 -10zM312 434q35 0 58 22t23 58
-q0 35 -21.5 57t-63.5 22q-25 0 -48.5 -9t-47.5 -35q5 -57 31.5 -86t68.5 -29z" />
-    <glyph glyph-name="seven.sups" unicode="&#x2077;" 
-d="M247 395q3 51 12.5 93.5t25 82.5t38.5 78.5t54 80.5h-221v55h293v-36q-37 -47 -61.5 -89t-39.5 -84t-22.5 -86t-10.5 -95h-68z" />
-    <glyph glyph-name="eight.sups" unicode="&#x2078;" 
-d="M299 383q-72 0 -110 31t-38 76q0 38 22.5 65.5t61.5 44.5v4q-33 20 -50.5 39t-17.5 51q0 46 36 74.5t96 28.5q62 0 98 -27.5t36 -75.5q0 -35 -20 -57t-49 -37v-4q42 -19 62 -43t20 -61q0 -47 -39 -78t-108 -31zM322 617q31 20 41.5 37t10.5 37q0 26 -20.5 41.5
-t-55.5 15.5q-34 0 -53 -15.5t-19 -40.5q0 -29 27 -45t69 -30zM299 429q42 0 64.5 19.5t22.5 46.5q0 18 -9 30t-24.5 21t-35.5 16.5t-42 16.5q-35 -18 -49.5 -38.5t-14.5 -45.5q0 -26 21.5 -46t66.5 -20z" />
-    <glyph glyph-name="nine.sups" unicode="&#x2079;" 
-d="M290 586q25 0 48 9t47 34q-5 58 -31.5 87.5t-67.5 29.5q-35 0 -58 -22.5t-23 -57.5t21.5 -57.5t63.5 -22.5zM267 383q-38 0 -63 8.5t-43 21.5l26 45q16 -11 35 -17.5t43 -6.5q48 0 81.5 35.5t38.5 110.5q-44 -40 -108 -40q-63 0 -97.5 34.5t-34.5 89.5q0 28 10.5 52.5
-t29.5 42.5t44.5 28t55.5 10q74 0 118 -52t44 -145q0 -55 -14 -96t-38 -68t-57 -40t-71 -13z" />
-    <glyph glyph-name="parenleft.sups" unicode="&#x207d;" 
-d="M344 316q-29 33 -49.5 63.5t-33.5 63t-19 68.5t-6 78t6 77.5t19 68t33.5 63.5t49.5 64l45 -26q-53 -62 -72 -121.5t-19 -125.5t19 -125t72 -122z" />
-    <glyph glyph-name="parenright.sups" unicode="&#x207e;" 
-d="M257 316l-46 26q53 63 72 122t19 125t-19 125.5t-72 121.5l46 26q28 -33 48.5 -64t33.5 -63.5t19 -68t6 -77.5t-6 -78t-19 -68.5t-33.5 -63t-48.5 -63.5z" />
-    <glyph glyph-name="period.sups" 
-d="M300 384q-20 0 -34.5 13.5t-14.5 36.5t14.5 36.5t34.5 13.5t34.5 -13.5t14.5 -36.5t-14.5 -36.5t-34.5 -13.5z" />
-    <glyph glyph-name="comma.sups" 
-d="M262 278l-18 39q30 11 47.5 30t16.5 46q-2 -1 -7 -1q-19 0 -33.5 10.5t-14.5 33.5t14.5 35.5t34.5 12.5q26 0 41.5 -19t15.5 -56q0 -45 -26 -79.5t-71 -51.5z" />
-    <glyph glyph-name="zero.subs" unicode="&#x2080;" 
-d="M300 -189q-72 0 -115.5 54t-43.5 154q0 99 43.5 152.5t115.5 53.5t115.5 -53.5t43.5 -152.5q0 -100 -43.5 -154t-115.5 -54zM300 -138q43 0 70 39t27 118q0 78 -27 116.5t-70 38.5t-70 -38.5t-27 -116.5q0 -79 27 -118t70 -39z" />
-    <glyph glyph-name="one.subs" unicode="&#x2081;" 
-d="M175 -177v54h123v254h-105v41q41 6 67.5 15t49.5 26h52v-336h114v-54h-301z" />
-    <glyph glyph-name="two.subs" unicode="&#x2082;" 
-d="M162 -177l-4 37q50 43 88.5 75.5t64.5 59.5t39 49.5t13 44.5q0 38 -23 60t-62 22q-28 0 -52.5 -16t-41.5 -41l-38 35q23 35 60.5 55.5t80.5 20.5q63 0 101.5 -32t38.5 -95q0 -28 -12.5 -53.5t-34.5 -51.5t-52 -54t-66 -62h184v-54h-284z" />
-    <glyph glyph-name="three.subs" unicode="&#x2083;" 
-d="M297 -189q-51 0 -91.5 21t-63.5 55l42 33q19 -29 47.5 -43.5t61.5 -14.5q36 0 62 18t26 51q0 70 -131 70v40q60 0 88 20.5t28 50.5q0 28 -21.5 45t-58.5 17q-25 0 -49 -13t-41 -35l-38 34q26 31 59.5 48t77.5 17q27 0 51.5 -7.5t43 -21t29.5 -33t11 -43.5
-q0 -35 -19.5 -58t-59.5 -38q43 -8 68.5 -33t25.5 -63q0 -27 -11.5 -48.5t-32 -37t-47.5 -23.5t-57 -8z" />
-    <glyph glyph-name="four.subs" unicode="&#x2084;" 
-d="M346 -177v104h-198v33l154 265l47 -25l-132 -227h129v116h58v-116h58v-46h-58v-104h-58z" />
-    <glyph glyph-name="five.subs" unicode="&#x2085;" 
-d="M299 -189q-55 0 -94 21t-63 55l42 33q40 -58 111 -58q39 0 64.5 24t25.5 62q0 40 -27 63t-69 23q-25 0 -43.5 -9t-35.5 -23l-32 22l19 189h232v-56h-180l-10 -96q16 8 34.5 11.5t37.5 3.5q28 0 53.5 -8.5t44 -25t29.5 -41t11 -56.5q0 -30 -11.5 -54.5t-31.5 -42.5
-t-47.5 -27.5t-59.5 -9.5z" />
-    <glyph glyph-name="six.subs" unicode="&#x2086;" 
-d="M313 -189q-75 0 -118.5 52t-43.5 144q0 55 14 96t38 68t57 40.5t71 13.5t62 -8.5t44 -22.5l-27 -44q-16 11 -34.5 17.5t-42.5 6.5q-48 0 -82 -36t-39 -111q44 41 108 41t98 -34.5t34 -90.5q0 -28 -10.5 -52t-29.5 -42t-44 -28t-55 -10zM312 -138q35 0 58 22t23 58
-q0 35 -21.5 57t-63.5 22q-25 0 -48.5 -9t-47.5 -35q5 -57 31.5 -86t68.5 -29z" />
-    <glyph glyph-name="seven.subs" unicode="&#x2087;" 
-d="M247 -177q3 51 12.5 93.5t25 82.5t38.5 78.5t54 80.5h-221v55h293v-36q-37 -47 -61.5 -89t-39.5 -84t-22.5 -86t-10.5 -95h-68z" />
-    <glyph glyph-name="eight.subs" unicode="&#x2088;" 
-d="M299 -189q-72 0 -110 31t-38 76q0 38 22.5 65.5t61.5 44.5v4q-33 20 -50.5 39t-17.5 51q0 46 36 74.5t96 28.5q62 0 98 -27.5t36 -75.5q0 -35 -20 -57t-49 -37v-4q42 -19 62 -43t20 -61q0 -47 -39 -78t-108 -31zM322 45q31 20 41.5 37t10.5 37q0 26 -20.5 41.5
-t-55.5 15.5q-34 0 -53 -15.5t-19 -40.5q0 -29 27 -45t69 -30zM299 -143q42 0 64.5 19.5t22.5 46.5q0 18 -9 30t-24.5 21t-35.5 16.5t-42 16.5q-35 -18 -49.5 -38.5t-14.5 -45.5q0 -26 21.5 -46t66.5 -20z" />
-    <glyph glyph-name="nine.subs" unicode="&#x2089;" 
-d="M290 14q25 0 48 9t47 34q-5 58 -31.5 87.5t-67.5 29.5q-35 0 -58 -22.5t-23 -57.5t21.5 -57.5t63.5 -22.5zM267 -189q-38 0 -63 8.5t-43 21.5l26 45q16 -11 35 -17.5t43 -6.5q48 0 81.5 35.5t38.5 110.5q-44 -40 -108 -40q-63 0 -97.5 34.5t-34.5 89.5q0 28 10.5 52.5
-t29.5 42.5t44.5 28t55.5 10q74 0 118 -52t44 -145q0 -55 -14 -96t-38 -68t-57 -40t-71 -13z" />
-    <glyph glyph-name="parenleft.subs" unicode="&#x208d;" 
-d="M344 -256q-29 33 -49.5 63.5t-33.5 63t-19 68.5t-6 78t6 77.5t19 68t33.5 63.5t49.5 64l45 -26q-53 -62 -72 -121.5t-19 -125.5t19 -125t72 -122z" />
-    <glyph glyph-name="parenright.subs" unicode="&#x208e;" 
-d="M257 -256l-46 26q53 63 72 122t19 125t-19 125.5t-72 121.5l46 26q28 -33 48.5 -64t33.5 -63.5t19 -68t6 -77.5t-6 -78t-19 -68.5t-33.5 -63t-48.5 -63.5z" />
-    <glyph glyph-name="period.subs" 
-d="M300 -188q-20 0 -34.5 13.5t-14.5 36.5t14.5 36.5t34.5 13.5t34.5 -13.5t14.5 -36.5t-14.5 -36.5t-34.5 -13.5z" />
-    <glyph glyph-name="comma.subs" 
-d="M262 -294l-18 39q30 11 47.5 30t16.5 46q-2 -1 -7 -1q-19 0 -33.5 10.5t-14.5 33.5t14.5 35.5t34.5 12.5q26 0 41.5 -19t15.5 -56q0 -45 -26 -79.5t-71 -51.5z" />
-    <glyph glyph-name="zero.dnom" 
-d="M300 -12q-61 0 -100 44t-39 122t39 120.5t100 42.5t100 -42.5t39 -120.5t-39 -122t-100 -44zM300 38q32 0 55 28.5t23 87.5q0 60 -23 87t-55 27t-55 -27t-23 -87q0 -59 23 -87.5t55 -28.5z" />
-    <glyph glyph-name="one.dnom" 
-d="M290 0v230h-82v42q33 5 53.5 13t41.5 20h50v-305h-63z" />
-    <glyph glyph-name="two.dnom" 
-d="M183 0v36q78 59 119.5 98t41.5 72q0 27 -15.5 43t-44.5 16q-20 0 -39 -11.5t-33 -30.5l-39 33q23 26 52.5 43.5t65.5 17.5q54 0 85 -26.5t31 -76.5q0 -20 -9.5 -39.5t-26 -39t-38.5 -40t-47 -42.5h136v-53h-239z" />
-    <glyph glyph-name="three.dnom" 
-d="M299 -12q-35 0 -68.5 14t-58.5 40l32 39q15 -18 39.5 -30.5t51.5 -12.5t44.5 11t17.5 36q0 51 -96 51v38q42 0 61.5 14t19.5 37q0 20 -13 31.5t-42 11.5q-18 0 -38 -9.5t-35 -24.5l-30 38q19 20 49.5 32.5t65.5 12.5q47 0 76.5 -22t29.5 -62q0 -55 -56 -75
-q32 -8 51.5 -27t19.5 -50q0 -45 -35 -69t-86 -24z" />
-    <glyph glyph-name="four.dnom" 
-d="M334 0v74h-162v31l113 212l46 -20l-97 -181h100v97h57v-97h50v-42h-50v-74h-57z" />
-    <glyph glyph-name="five.dnom" 
-d="M301 -12q-42 0 -72 14t-57 40l32 39q17 -18 39.5 -30.5t52.5 -12.5q29 0 47.5 15t18.5 42q0 29 -18 43.5t-49 14.5q-20 0 -34.5 -6t-29.5 -17l-31 20l17 155h189v-54h-139l-10 -70q24 12 56 12q50 0 81 -25.5t31 -73.5t-35 -77t-89 -29z" />
-    <glyph glyph-name="six.dnom" 
-d="M313 -12q-59 0 -98 40.5t-39 111.5q0 86 42.5 131.5t111.5 45.5q30 0 52 -9t41 -23l-26 -41q-14 11 -29 17.5t-35 6.5q-43 0 -68.5 -29.5t-29.5 -86.5q19 17 41.5 26t49.5 9q51 0 77 -26.5t26 -68.5q0 -21 -8.5 -40t-24 -33.5t-37 -22.5t-46.5 -8zM312 38q28 0 43 14.5
-t15 39.5q0 23 -14 38t-45 15q-40 0 -75 -35q6 -38 28 -55t48 -17z" />
-    <glyph glyph-name="seven.dnom" 
-d="M253 0q2 39 8.5 71.5t18.5 62t30 58.5t42 60h-169v53h243v-36q-32 -35 -52 -66.5t-32 -63t-17 -65.5t-7 -74h-65z" />
-    <glyph glyph-name="eight.dnom" 
-d="M300 -12q-28 0 -51 7t-39.5 19t-25.5 28t-9 34q0 32 19.5 50.5t45.5 30.5v4q-23 14 -38.5 29.5t-15.5 42.5q0 18 9 33.5t24.5 27t36.5 17.5t44 6q50 0 82.5 -23.5t32.5 -60.5q0 -28 -16.5 -44.5t-36.5 -27.5v-4q26 -11 44.5 -29.5t18.5 -51.5q0 -18 -9.5 -34t-26.5 -28
-t-39.5 -19t-49.5 -7zM320 177q20 12 28 25t8 28q0 18 -14.5 30t-41.5 12q-25 0 -40 -11.5t-15 -28.5q0 -22 22 -34t53 -21zM300 33q26 0 46.5 12.5t20.5 32.5q0 14 -7.5 23.5t-19.5 16t-27.5 11.5t-32.5 10q-47 -22 -47 -59q0 -20 19.5 -33.5t47.5 -13.5z" />
-    <glyph glyph-name="nine.dnom" 
-d="M290 161q20 0 37.5 7.5t36.5 25.5q-5 39 -27 56.5t-48 17.5q-27 0 -42.5 -15t-15.5 -40q0 -23 14 -37.5t45 -14.5zM271 -12q-29 0 -51.5 9.5t-41.5 23.5l26 40q14 -11 29.5 -17t35.5 -6q42 0 67 28.5t29 85.5q-19 -16 -41.5 -25t-48.5 -9q-51 0 -76.5 26.5t-25.5 68.5
-q0 44 32 74t83 30q59 0 98 -40.5t39 -111.5q0 -86 -42.5 -131.5t-111.5 -45.5z" />
-    <glyph glyph-name="parenleft.dnom" 
-d="M341 -76q-50 49 -77.5 104.5t-27.5 130.5t27.5 130.5t77.5 105.5l46 -33q-45 -45 -65 -94.5t-20 -108.5t20 -108.5t65 -94.5z" />
-    <glyph glyph-name="parenright.dnom" 
-d="M259 -76l-46 32q45 45 65 94.5t20 108.5t-20 108.5t-65 94.5l46 33q50 -50 77.5 -105.5t27.5 -130.5t-27.5 -130.5t-77.5 -104.5z" />
-    <glyph glyph-name="period.dnom" 
-d="M300 -11q-20 0 -34.5 13.5t-14.5 36.5t14.5 37t34.5 14t34.5 -14t14.5 -37t-14.5 -36.5t-34.5 -13.5z" />
-    <glyph glyph-name="comma.dnom" 
-d="M262 -117l-18 39q30 11 47.5 30t16.5 46q-2 -1 -7 -1q-19 0 -33.5 10.5t-14.5 33.5t14.5 36t34.5 13q26 0 41.5 -19t15.5 -57q0 -45 -26 -79.5t-71 -51.5z" />
-    <glyph glyph-name="zero.numr" 
-d="M300 276q-61 0 -100 44t-39 122t39 120.5t100 42.5t100 -42.5t39 -120.5t-39 -122t-100 -44zM300 326q32 0 55 28.5t23 87.5q0 60 -23 87t-55 27t-55 -27t-23 -87q0 -59 23 -87.5t55 -28.5z" />
-    <glyph glyph-name="one.numr" 
-d="M290 288v230h-82v42q33 5 53.5 13t41.5 20h50v-305h-63z" />
-    <glyph glyph-name="two.numr" 
-d="M183 288v36q78 59 119.5 98t41.5 72q0 27 -15.5 43t-44.5 16q-20 0 -39 -11.5t-33 -30.5l-39 33q23 26 52.5 43.5t65.5 17.5q54 0 85 -26.5t31 -76.5q0 -20 -9.5 -39.5t-26 -39t-38.5 -40t-47 -42.5h136v-53h-239z" />
-    <glyph glyph-name="three.numr" 
-d="M299 276q-35 0 -68.5 14t-58.5 40l32 39q15 -18 39.5 -30.5t51.5 -12.5t44.5 11t17.5 36q0 51 -96 51v38q42 0 61.5 14t19.5 37q0 20 -13 31.5t-42 11.5q-18 0 -38 -9.5t-35 -24.5l-30 38q19 20 49.5 32.5t65.5 12.5q47 0 76.5 -22t29.5 -62q0 -55 -56 -75
-q32 -8 51.5 -27t19.5 -50q0 -45 -35 -69t-86 -24z" />
-    <glyph glyph-name="four.numr" 
-d="M334 288v74h-162v31l113 212l46 -20l-97 -181h100v97h57v-97h50v-42h-50v-74h-57z" />
-    <glyph glyph-name="five.numr" 
-d="M301 276q-42 0 -72 14t-57 40l32 39q17 -18 39.5 -30.5t52.5 -12.5q29 0 47.5 15t18.5 42q0 29 -18 43.5t-49 14.5q-20 0 -34.5 -6t-29.5 -17l-31 20l17 155h189v-54h-139l-10 -70q24 12 56 12q50 0 81 -25.5t31 -73.5t-35 -77t-89 -29z" />
-    <glyph glyph-name="six.numr" 
-d="M313 276q-59 0 -98 40.5t-39 111.5q0 86 42.5 131.5t111.5 45.5q30 0 52 -9t41 -23l-26 -41q-14 11 -29 17.5t-35 6.5q-43 0 -68.5 -29.5t-29.5 -86.5q19 17 41.5 26t49.5 9q51 0 77 -26.5t26 -68.5q0 -21 -8.5 -40t-24 -33.5t-37 -22.5t-46.5 -8zM312 326q28 0 43 14.5
-t15 39.5q0 23 -14 38t-45 15q-40 0 -75 -35q6 -38 28 -55t48 -17z" />
-    <glyph glyph-name="seven.numr" 
-d="M253 288q2 39 8.5 71.5t18.5 62t30 58.5t42 60h-169v53h243v-36q-32 -35 -52 -66.5t-32 -63t-17 -65.5t-7 -74h-65z" />
-    <glyph glyph-name="eight.numr" 
-d="M300 276q-28 0 -51 7t-39.5 19t-25.5 28t-9 34q0 32 19.5 50.5t45.5 30.5v4q-23 14 -38.5 29.5t-15.5 42.5q0 18 9 33.5t24.5 27t36.5 17.5t44 6q50 0 82.5 -23.5t32.5 -60.5q0 -28 -16.5 -44.5t-36.5 -27.5v-4q26 -11 44.5 -29.5t18.5 -51.5q0 -18 -9.5 -34t-26.5 -28
-t-39.5 -19t-49.5 -7zM320 465q20 12 28 25t8 28q0 18 -14.5 30t-41.5 12q-25 0 -40 -11.5t-15 -28.5q0 -22 22 -34t53 -21zM300 321q26 0 46.5 12.5t20.5 32.5q0 14 -7.5 23.5t-19.5 16t-27.5 11.5t-32.5 10q-47 -22 -47 -59q0 -20 19.5 -33.5t47.5 -13.5z" />
-    <glyph glyph-name="nine.numr" 
-d="M290 449q20 0 37.5 7.5t36.5 25.5q-5 39 -27 56.5t-48 17.5q-27 0 -42.5 -15t-15.5 -40q0 -23 14 -37.5t45 -14.5zM271 276q-29 0 -51.5 9.5t-41.5 23.5l26 40q14 -11 29.5 -17t35.5 -6q42 0 67 28.5t29 85.5q-19 -16 -41.5 -25t-48.5 -9q-51 0 -76.5 26.5t-25.5 68.5
-q0 44 32 74t83 30q59 0 98 -40.5t39 -111.5q0 -86 -42.5 -131.5t-111.5 -45.5z" />
-    <glyph glyph-name="parenleft.numr" 
-d="M341 212q-50 49 -77.5 104.5t-27.5 130.5t27.5 130.5t77.5 105.5l46 -33q-45 -45 -65 -94.5t-20 -108.5t20 -108.5t65 -94.5z" />
-    <glyph glyph-name="parenright.numr" 
-d="M259 212l-46 32q45 45 65 94.5t20 108.5t-20 108.5t-65 94.5l46 33q50 -50 77.5 -105.5t27.5 -130.5t-27.5 -130.5t-77.5 -104.5z" />
-    <glyph glyph-name="period.numr" 
-d="M300 277q-20 0 -34.5 13.5t-14.5 36.5t14.5 37t34.5 14t34.5 -14t14.5 -37t-14.5 -36.5t-34.5 -13.5z" />
-    <glyph glyph-name="comma.numr" 
-d="M262 171l-18 39q30 11 47.5 30t16.5 46q-2 -1 -7 -1q-19 0 -33.5 10.5t-14.5 33.5t14.5 36t34.5 13q26 0 41.5 -19t15.5 -57q0 -45 -26 -79.5t-71 -51.5z" />
-    <glyph glyph-name="ordfeminine" unicode="&#xaa;" 
-d="M269 387q-45 0 -75.5 24.5t-30.5 67.5q0 53 53 81.5t166 37.5q-2 31 -18 53t-57 22q-29 0 -56 -10t-50 -24l-25 43q26 16 63.5 29t78.5 13q65 0 96.5 -35.5t31.5 -98.5v-195h-53l-4 38h-2q-25 -20 -55 -33t-63 -13zM285 436q26 0 49.5 10.5t47.5 29.5v83
-q-86 -8 -121.5 -26.5t-35.5 -47.5q0 -26 18 -37.5t42 -11.5z" />
-    <glyph glyph-name="ordfeminine.a" 
-d="M276 387q-63 0 -101 43.5t-38 124.5q0 39 12 70.5t32 53.5t46.5 33.5t55.5 11.5q28 0 50.5 -9.5t45.5 -29.5h2l5 31h52v-321h-53l-5 36h-2q-20 -18 -46.5 -31t-55.5 -13zM291 440q46 0 83 40v160q-20 17 -40 24t-40 7q-38 0 -64.5 -30.5t-26.5 -84.5q0 -56 23 -86t65 -30
-z" />
-    <glyph glyph-name="ordmasculine" unicode="&#xba;" 
-d="M300 387q-32 0 -60.5 11.5t-50 33t-34.5 52.5t-13 71t13 71.5t34.5 53.5t50 33t60.5 11t60.5 -11t50.5 -33t34.5 -53.5t12.5 -71.5t-12.5 -71t-34.5 -52.5t-50.5 -33t-60.5 -11.5zM300 439q43 0 67.5 32t24.5 84q0 53 -24.5 85t-67.5 32t-67.5 -32t-24.5 -85
-q0 -52 24.5 -84t67.5 -32z" />
-    <glyph glyph-name="a.sups" unicode="&#x1d43;" 
-d="M269 387q-45 0 -75.5 24.5t-30.5 67.5q0 53 53 81.5t166 37.5q-2 31 -18 53t-57 22q-29 0 -56 -10t-50 -24l-25 43q26 16 63.5 29t78.5 13q65 0 96.5 -35.5t31.5 -98.5v-195h-53l-4 38h-2q-25 -20 -55 -33t-63 -13zM285 436q26 0 49.5 10.5t47.5 29.5v83
-q-86 -8 -121.5 -26.5t-35.5 -47.5q0 -26 18 -37.5t42 -11.5z" />
-    <glyph glyph-name="b.sups" unicode="&#x1d47;" 
-d="M327 387q-24 0 -49 10.5t-48 29.5h-1l-7 -32h-50v471h64v-129l-2 -56q23 19 49.5 31t54.5 12q66 0 100 -44.5t34 -119.5q0 -41 -12 -73t-32 -54.5t-46.5 -34t-54.5 -11.5zM314 440q40 0 66 31t26 89q0 51 -19.5 81t-65.5 30q-39 0 -85 -40v-161q21 -17 41 -23.5t37 -6.5z
-" />
-    <glyph glyph-name="c.sups" unicode="&#x1d9c;" 
-d="M346 387q-35 0 -65.5 11.5t-52.5 33t-34.5 52.5t-12.5 71t14 71.5t37.5 53.5t54 33t64.5 11q35 0 60 -11t43 -27l-32 -41q-15 12 -31.5 19.5t-36.5 7.5q-48 0 -78 -32t-30 -85q0 -52 29 -84t77 -32q25 0 45 9t37 21l27 -41q-24 -20 -53.5 -30.5t-61.5 -10.5z" />
-    <glyph glyph-name="d.sups" unicode="&#x1d48;" 
-d="M276 387q-63 0 -101 43.5t-38 124.5q0 39 12 70.5t32 53.5t46.5 33.5t55.5 11.5t50.5 -10t42.5 -27l-2 55v124h64v-471h-53l-5 36h-2q-20 -18 -46.5 -31t-55.5 -13zM291 440q44 0 83 40v160q-21 17 -40 24t-39 7q-39 0 -65.5 -30.5t-26.5 -84.5q0 -56 23 -86t65 -30z" />
-    <glyph glyph-name="e.sups" unicode="&#x1d49;" 
-d="M320 387q-36 0 -68 11.5t-56 33t-37.5 52.5t-13.5 71q0 39 13.5 70.5t36.5 53t52.5 33.5t61.5 12q72 0 110.5 -41t38.5 -110q0 -11 -1 -19.5t-2 -15.5h-250q6 -51 40.5 -76.5t81.5 -25.5q27 0 50.5 6.5t44.5 18.5l22 -40q-54 -34 -124 -34zM312 674q-36 0 -66.5 -21.5
-t-38.5 -66.5h196q-5 48 -29.5 68t-61.5 20z" />
-    <glyph glyph-name="f.sups" unicode="&#x1da0;" 
-d="M277 395v271h-79v48l79 2v27q0 59 32.5 94.5t101.5 35.5q47 0 92 -17l-14 -47q-33 13 -71 13q-42 0 -60 -21t-18 -56v-29h128v-50h-128v-271h-63z" />
-    <glyph glyph-name="g.sups" unicode="&#x1d4d;" 
-d="M298 249q-70 0 -109.5 22t-39.5 65q0 40 53 70v2q-13 8 -23 21t-10 33q0 16 10.5 32t28.5 28v3q-17 13 -29 33.5t-12 49.5q0 27 10.5 48.5t28 36.5t41 23t50.5 8q14 0 26 -1.5t23 -6.5h134v-48h-82q11 -11 18 -26.5t7 -34.5q0 -27 -9.5 -47.5t-26.5 -34.5t-40 -21.5
-t-50 -7.5q-23 0 -53 11q-22 -14 -22 -34q0 -34 63 -34h71q64 0 95 -18t31 -59q0 -24 -13 -44.5t-37 -35.5t-58 -24t-76 -9zM297 538q29 0 49 18.5t20 51.5q0 32 -20 52t-49 20t-49 -20t-20 -52q0 -33 20 -51.5t49 -18.5zM304 291q54 0 85.5 18.5t31.5 41.5q0 21 -18.5 28.5
-t-53.5 7.5h-59q-15 0 -26.5 1t-22.5 4q-21 -11 -29.5 -23.5t-8.5 -25.5q0 -23 25.5 -37.5t75.5 -14.5z" />
-    <glyph glyph-name="h.sups" unicode="&#x2b0;" 
-d="M175 395v471h64v-129l-4 -69q24 23 52 39.5t64 16.5q57 0 83 -32.5t26 -94.5v-202h-64v194q0 42 -15.5 61.5t-51.5 19.5q-26 0 -45.5 -12.5t-44.5 -36.5v-226h-64z" />
-    <glyph glyph-name="i.sups" unicode="&#x2071;" 
-d="M316 395v271h-141v50h205v-321h-64zM343 779q-21 0 -34.5 12.5t-13.5 32.5q0 21 13.5 34t34.5 13t35 -13t14 -34q0 -20 -14 -32.5t-35 -12.5z" />
-    <glyph glyph-name="j.sups" unicode="&#x2b2;" 
-d="M229 254q-26 0 -48.5 6.5t-40.5 15.5l20 47q17 -9 34 -13.5t32 -4.5q47 0 63 21.5t16 61.5v278h-142v50h206v-324q0 -30 -6.5 -55t-23 -43.5t-43.5 -29t-67 -10.5zM332 779q-21 0 -35 12.5t-14 32.5q0 21 14 34t35 13t34.5 -13t13.5 -34q0 -20 -13.5 -32.5t-34.5 -12.5z
-" />
-    <glyph glyph-name="k.sups" unicode="&#x1d4f;" 
-d="M189 395v471h64v-310h2l159 160h72l-125 -128l140 -193h-71l-107 151l-70 -67v-84h-64z" />
-    <glyph glyph-name="l.sups" unicode="&#x2e1;" 
-d="M381 387q-54 0 -79 29.5t-25 86.5v312h-81v51h145v-367q0 -32 14.5 -46t40.5 -14q20 0 50 10l12 -49q-20 -5 -37 -9t-40 -4z" />
-    <glyph glyph-name="m.sups" unicode="&#x1d50;" 
-d="M70 395v321h50l6 -45h3q20 22 44.5 37.5t56.5 15.5q69 0 90 -60q23 24 49.5 42t59.5 18q53 0 76.5 -35t23.5 -91v-203h-62v194q0 38 -12 60t-47 22q-17 0 -35.5 -11t-41.5 -36v-229h-62v194q0 38 -12 60t-47 22q-18 0 -36.5 -11t-41.5 -36v-229h-62z" />
-    <glyph glyph-name="n.sups" unicode="&#x207f;" 
-d="M175 395v321h53l5 -48h3q23 23 50.5 39.5t64.5 16.5q56 0 82.5 -32.5t26.5 -94.5v-202h-64v194q0 42 -15.5 61.5t-51.5 19.5q-26 0 -45.5 -12.5t-44.5 -36.5v-226h-64z" />
-    <glyph glyph-name="o.sups" unicode="&#x1d52;" 
-d="M300 387q-32 0 -60.5 11.5t-50 33t-34.5 52.5t-13 71t13 71.5t34.5 53.5t50 33t60.5 11t60.5 -11t50.5 -33t34.5 -53.5t12.5 -71.5t-12.5 -71t-34.5 -52.5t-50.5 -33t-60.5 -11.5zM300 439q43 0 67.5 32t24.5 84q0 53 -24.5 85t-67.5 32t-67.5 -32t-24.5 -85
-q0 -52 24.5 -84t67.5 -32z" />
-    <glyph glyph-name="p.sups" unicode="&#x1d56;" 
-d="M172 262v454h52l5 -36h3q23 18 50 31t57 13q65 0 99 -44.5t34 -119.5q0 -41 -12 -73t-32 -54.5t-46.5 -34t-54.5 -11.5q-46 0 -93 36l2 -55v-106h-64zM314 440q40 0 66 31t26 89q0 51 -19.5 81t-65.5 30q-20 0 -41 -10t-44 -30v-161q21 -17 41 -23.5t37 -6.5z" />
-    <glyph glyph-name="q.sups" 
-d="M374 262v111l3 56q-20 -18 -46 -30t-55 -12q-63 0 -101 43.5t-38 124.5q0 39 12 70.5t32 53.5t46.5 33.5t55.5 11.5t51 -9.5t45 -29.5h2l5 31h52v-454h-64zM291 440q44 0 83 40v160q-21 17 -40 24t-39 7q-39 0 -65.5 -30.5t-26.5 -84.5q0 -56 23 -86t65 -30z" />
-    <glyph glyph-name="r.sups" unicode="&#x2b3;" 
-d="M243 395v321h54l5 -75h2q23 39 56 61t72 22q35 0 64 -13l-13 -54q-17 5 -29.5 7.5t-30.5 2.5q-31 0 -61.5 -20t-54.5 -70v-182h-64z" />
-    <glyph glyph-name="s.sups" unicode="&#x2e2;" 
-d="M308 387q-43 0 -81 13t-65 32l30 41q26 -18 53.5 -28t64.5 -10q40 0 59 13t19 32q0 12 -7.5 20.5t-20 15t-28.5 11.5l-32 10q-21 7 -42.5 15t-38.5 18.5t-28 25.5t-11 35q0 40 35.5 66.5t99.5 26.5q36 0 67.5 -11t54.5 -26l-30 -40q-20 13 -42.5 21t-49.5 8
-q-38 0 -54.5 -12.5t-16.5 -29.5q0 -10 7 -17.5t19 -13.5t27 -11t31 -10q22 -7 44 -14.5t39.5 -18.5t28.5 -26.5t11 -38.5q0 -40 -36.5 -68.5t-106.5 -28.5z" />
-    <glyph glyph-name="t.sups" unicode="&#x1d57;" 
-d="M369 387q-72 0 -100 37t-28 98v144h-77v48l80 2l8 100h53v-100h145v-50h-145v-145q0 -42 17 -63t62 -21q20 0 35.5 4t30.5 11l13 -47q-20 -8 -44 -13t-50 -5z" />
-    <glyph glyph-name="u.sups" unicode="&#x1d58;" 
-d="M266 387q-55 0 -81 32.5t-26 93.5v203h64v-195q0 -41 15 -60t50 -19q26 0 46.5 11.5t44.5 38.5v224h64v-321h-52l-6 50h-2q-23 -26 -51.5 -42t-65.5 -16z" />
-    <glyph glyph-name="v.sups" unicode="&#x1d5b;" 
-d="M261 395l-122 321h66l62 -176q8 -24 15.5 -48t15.5 -47h2q8 23 15 47t15 48l62 176h62l-119 -321h-74z" />
-    <glyph glyph-name="w.sups" unicode="&#x2b7;" 
-d="M141 395l-89 321h64l44 -179l20 -91h3l22 91l48 179h56l50 -179l21 -91h4l21 91l43 179h59l-87 -321h-75l-42 163l-22 91h-2l-20 -91l-44 -163h-74z" />
-    <glyph glyph-name="x.sups" unicode="&#x2e3;" 
-d="M159 395l111 168l-102 153h68l43 -66q8 -14 16.5 -27t16.5 -27h3q8 14 15.5 27t15.5 27l38 66h68l-104 -160l111 -161h-69l-47 69q-8 15 -18 29.5t-20 28.5h-2q-8 -14 -16.5 -28.5t-17.5 -29.5l-43 -69h-67z" />
-    <glyph glyph-name="y.sups" unicode="&#x2b8;" 
-d="M198 258q-13 0 -23.5 2t-19.5 5l13 50q5 -2 12 -3.5t14 -1.5q29 0 47.5 18t29.5 45l7 23l-138 320h64l69 -169q8 -21 16.5 -44.5t17.5 -46.5h2q8 22 14.5 45.5t14.5 45.5l60 169h62l-130 -343q-9 -25 -21 -46t-28 -36.5t-36.5 -24t-46.5 -8.5z" />
-    <glyph glyph-name="z.sups" unicode="&#x1dbb;" 
-d="M146 395v33l213 238h-189v50h279v-33l-212 -238h219v-50h-310z" />
-    <glyph glyph-name="egrave.sups" 
-d="M329 766l-112 110l45 41l102 -120zM320 387q-36 0 -68 11.5t-56 33t-37.5 52.5t-13.5 71q0 39 13.5 70.5t36.5 53t52.5 33.5t61.5 12q72 0 110.5 -41t38.5 -110q0 -11 -1 -19.5t-2 -15.5h-250q6 -51 40.5 -76.5t81.5 -25.5q27 0 50.5 6.5t44.5 18.5l22 -40
-q-54 -34 -124 -34zM312 674q-36 0 -66.5 -21.5t-38.5 -66.5h196q-5 48 -29.5 68t-61.5 20z" />
-    <glyph glyph-name="eacute.sups" 
-d="M295 766l-34 31l102 120l45 -41zM320 387q-36 0 -68 11.5t-56 33t-37.5 52.5t-13.5 71q0 39 13.5 70.5t36.5 53t52.5 33.5t61.5 12q72 0 110.5 -41t38.5 -110q0 -11 -1 -19.5t-2 -15.5h-250q6 -51 40.5 -76.5t81.5 -25.5q27 0 50.5 6.5t44.5 18.5l22 -40
-q-54 -34 -124 -34zM312 674q-36 0 -66.5 -21.5t-38.5 -66.5h196q-5 48 -29.5 68t-61.5 20z" />
-    <glyph glyph-name="eogonek.sups" 
-d="M386 244q-29 0 -49.5 15t-20.5 48q0 24 12.5 45t34.5 39q-13 -3 -24 -3.5t-19 -0.5q-36 0 -68 11.5t-56 33t-37.5 52.5t-13.5 71q0 39 13.5 70.5t36.5 53t52.5 33.5t61.5 12q72 0 110.5 -41t38.5 -110q0 -11 -1 -19.5t-2 -15.5h-250q6 -51 40.5 -76.5t81.5 -25.5
-q27 0 50.5 6.5t44.5 18.5l22 -40q-47 -32 -65 -55t-18 -48q0 -18 11.5 -25.5t24.5 -7.5q12 0 20.5 4.5t14.5 10.5l18 -30q-12 -11 -28 -18.5t-36 -7.5zM312 674q-36 0 -66.5 -21.5t-38.5 -66.5h196q-5 48 -29.5 68t-61.5 20z" />
-    <glyph glyph-name="uni0259.sups" unicode="&#x2094;" 
-d="M298 387q-36 0 -65 11.5t-49.5 32.5t-31 49.5t-10.5 62.5q0 11 1 20t2 15h250q-6 49 -37.5 73.5t-76.5 24.5q-50 0 -94 -25l-22 40q26 17 57 26t67 9q35 0 65.5 -11.5t53 -33.5t35 -53t12.5 -71q0 -39 -13 -70.5t-34.5 -53.5t-50 -34t-59.5 -12zM296 437q36 0 63.5 22.5
-t34.5 70.5h-197q4 -50 31.5 -71.5t67.5 -21.5z" />
-    <glyph glyph-name="uni0266.sups" 
-d="M175 395v346q0 60 29.5 95t92.5 35q20 0 37.5 -4t34.5 -11l-14 -48q-14 6 -25.5 9t-25.5 3q-35 0 -50 -21t-16 -56l-3 -81q24 23 52 39.5t64 16.5q57 0 83 -32.5t26 -94.5v-196h-64v188q0 42 -15.5 61.5t-51.5 19.5q-26 0 -45.5 -12.5t-44.5 -36.5v-220h-64z" />
-    <glyph glyph-name="uni02E0" unicode="&#x2e0;" 
-d="M301 249q-39 0 -60 21.5t-21 57.5q0 23 10.5 46.5t29.5 58.5l-114 284h65l59 -166q8 -23 15 -41.5t14 -40.5h3q8 22 15 40.5t15 41.5l59 166h63l-113 -283q19 -35 29.5 -59t10.5 -47q0 -36 -20.5 -57.5t-59.5 -21.5zM301 291q14 0 20.5 9t6.5 23q0 34 -26 81h-3
-q-12 -23 -19 -44t-7 -37q0 -14 7 -23t21 -9z" />
-    <glyph glyph-name="uni02E4" unicode="&#x2e4;" 
-d="M282 395v179q-25 16 -47.5 33.5t-39 37.5t-26 43.5t-9.5 52.5q0 31 12.5 55.5t34 41t49.5 25t59 8.5q48 0 81.5 -18t55.5 -41l-34 -40q-19 19 -42.5 32.5t-55.5 13.5q-43 0 -69.5 -21t-26.5 -58q0 -42 30 -74.5t91 -64.5v-205h-63z" />
-    <glyph glyph-name="a.supa" 
-d="M276 387q-63 0 -101 43.5t-38 124.5q0 39 12 70.5t32 53.5t46.5 33.5t55.5 11.5q28 0 50.5 -9.5t45.5 -29.5h2l5 31h52v-321h-53l-5 36h-2q-20 -18 -46.5 -31t-55.5 -13zM291 440q46 0 83 40v160q-20 17 -40 24t-40 7q-38 0 -64.5 -30.5t-26.5 -84.5q0 -56 23 -86t65 -30
-z" />
-    <glyph glyph-name="g.supa" 
-d="M283 255q-31 0 -63.5 9t-59.5 26l23 44q25 -15 51 -22t49 -7q45 0 67.5 21.5t23.5 57.5l1 56q-19 -17 -44.5 -29t-54.5 -12q-63 0 -101 43t-38 118q0 38 12.5 68.5t32.5 51.5t46.5 32.5t54.5 11.5t50.5 -9.5t44.5 -28.5h1l6 30h53v-333q0 -61 -40.5 -94.5t-114.5 -33.5z
-M291 451q44 0 83 42v147q-20 17 -40 24t-40 7q-38 0 -65 -30t-27 -80q0 -51 23.5 -80.5t65.5 -29.5z" />
-    <glyph glyph-name="i.supa" 
-d="M330 779q-21 0 -34.5 12.5t-13.5 32.5q0 21 13.5 34t34.5 13t34.5 -13t13.5 -34q0 -20 -13.5 -32.5t-34.5 -12.5zM173 395v50h130v221h-114v50h178v-271h124v-50h-318z" />
-    <glyph glyph-name="colon.sups" 
-d="M300 384q-20 0 -34.5 13.5t-14.5 36.5t14.5 36.5t34.5 13.5t34.5 -13.5t14.5 -36.5t-14.5 -36.5t-34.5 -13.5zM300 609q-20 0 -34.5 13.5t-14.5 36.5t14.5 36.5t34.5 13.5t34.5 -13.5t14.5 -36.5t-14.5 -36.5t-34.5 -13.5z" />
-    <glyph glyph-name="hyphen.sups" 
-d="M222 536v47h156v-47h-156z" />
-    <glyph glyph-name="endash.sups" 
-d="M165 539v42h270v-42h-270z" />
-    <glyph glyph-name="emdash.sups" 
-d="M61 539v42h478v-42h-478z" />
-    <glyph glyph-name="currency" unicode="&#xa4;" 
-d="M102 83l-44 45l84 85q-17 23 -26.5 52t-9.5 64t9 64.5t26 52.5l-83 86l44 45l87 -90q48 37 111 37q62 0 111 -37l87 90l44 -45l-84 -86q17 -23 26.5 -52.5t9.5 -64.5t-9.5 -64t-26.5 -52l84 -85l-44 -45l-88 89q-23 -19 -51.5 -28.5t-58.5 -9.5q-62 0 -111 38zM300 195
-q24 0 45.5 9.5t37.5 27.5t25.5 42.5t9.5 54.5t-9.5 54.5t-25.5 42.5t-37.5 27.5t-45.5 9.5t-45.5 -9.5t-37.5 -27.5t-25.5 -42.5t-9.5 -54.5t9.5 -54.5t25.5 -42.5t37.5 -27.5t45.5 -9.5z" />
-    <glyph glyph-name="dollar" unicode="$" 
-d="M85 113l39 57q38 -27 83.5 -47.5t102.5 -20.5q60 0 90.5 24.5t30.5 62.5q0 31 -23.5 51.5t-58.5 36.5t-76.5 31t-76.5 35.5t-58.5 49t-23.5 72.5q0 63 44.5 103t117.5 48v132h60v-131q55 -5 92 -26t67 -50l-44 -48q-17 13 -32.5 23.5t-32.5 18t-37 11.5t-45 4
-q-51 0 -80.5 -22.5t-29.5 -60.5q0 -28 23.5 -46t59 -33t76.5 -30t76.5 -36t59 -51t23.5 -76q0 -32 -12.5 -59.5t-36 -48t-56 -34t-71.5 -17.5v-146h-60v145q-56 5 -106 27t-85 51z" />
-    <glyph glyph-name="sterling" unicode="&#xa3;" 
-d="M78 0v50q63 28 93.5 75.5t30.5 104.5q0 26 -8 55h-117v52l99 4q-11 32 -21.5 62.5t-10.5 62.5q0 42 15 76t42.5 58t66 37t86.5 13q62 0 104.5 -21.5t71.5 -53.5l-48 -47q-23 23 -52.5 38t-71.5 15q-66 0 -100.5 -32.5t-34.5 -84.5q0 -32 9.5 -61.5t20.5 -61.5h189v-56
-h-173q6 -27 6 -56q0 -53 -18 -88t-54 -66v-4h328v-71h-453z" />
-    <glyph glyph-name="yen" unicode="&#xa5;" 
-d="M258 0v158h-181v48h181v65h-181v47h161l-185 320h85l92 -171q17 -33 33.5 -66.5t35.5 -68.5h4q18 35 35 68.5t35 66.5l92 171h82l-186 -320h162v-47h-183v-65h183v-48h-183v-158h-82z" />
-    <glyph glyph-name="Euro" unicode="&#x20ac;" 
-d="M374 -12q-99 0 -166 65t-86 183h-64v44l59 4q-1 8 -1 17v17v16.5t1 16.5h-59v44l64 5q19 118 89.5 184t176.5 66q51 0 95 -22.5t74 -55.5l-49 -47q-26 26 -55.5 42.5t-67.5 16.5q-73 0 -118.5 -48.5t-59.5 -135.5h294v-49h-299q-1 -8 -1 -15v-15v-18t1 -18h259v-49h-253
-q14 -86 58 -134t113 -48q43 0 75.5 18t62.5 53l49 -44q-38 -44 -84 -68.5t-108 -24.5z" />
-    <glyph glyph-name="cent" unicode="&#xa2;" 
-d="M194 310q0 -67 31.5 -111t88.5 -57v335q-56 -13 -88 -57t-32 -110zM314 -33v104q-45 5 -82 23t-63.5 48.5t-41 72.5t-14.5 95q0 52 15.5 93.5t42.5 71.5t64 48t79 24v106h51v-103q44 -2 76 -19t55 -39l-40 -52q-20 18 -42.5 29t-48.5 13v-344q32 2 58 15.5t47 31.5
-l36 -52q-30 -26 -66 -43t-75 -20v-103h-51z" />
-    <glyph glyph-name="uni0192" unicode="&#x192;" 
-d="M132 -97q-26 0 -47 5.5t-36 12.5l16 62q14 -5 28.5 -9t30.5 -4q52 0 74.5 39.5t32.5 116.5l24 219h-104v59l70 4h41l6 56q13 100 53 152t124 52q26 0 50 -6t41 -14l-20 -62q-14 7 -29.5 11t-37.5 4q-25 0 -42.5 -11t-29.5 -29t-19 -41.5t-10 -48.5l-7 -63h142v-63h-149
-l-27 -237q-6 -46 -17.5 -83.5t-31.5 -64.5t-51 -42t-75 -15z" />
-    <glyph glyph-name="colonmonetary" unicode="&#x20a1;" 
-d="M365 584h-10t-10 -1l-60 -511q28 -16 59 -17l62 523q-20 6 -41 6zM181 321q0 -141 60 -213l54 462q-56 -26 -85 -90t-29 -159zM216 -102l14 123q-62 37 -98 112.5t-36 184.5q0 134 55.5 218t151.5 107l13 107l48 -8l-11 -92h17q11 0 22 -1.5t22 -3.5l12 105l48 -8
-l-13 -113q43 -21 76 -57l-49 -47q-15 17 -36 31l-58 -499q30 7 55 24t48 44l49 -44q-32 -38 -71 -61.5t-89 -29.5l-12 -100l-48 8l11 91q-30 1 -60 11l-13 -110z" />
-    <glyph glyph-name="lira" unicode="&#x20a4;" 
-d="M78 0v50q63 28 93.5 75.5t30.5 104.5v6h-124v44l87 5h29q-4 17 -10 33t-12 33h-94v46l77 3q-5 17 -8 33t-3 33q0 42 15 76t42.5 58t66 37t86.5 13q62 0 104.5 -21.5t71.5 -53.5l-48 -47q-23 23 -52.5 38t-71.5 15q-66 0 -100.5 -32.5t-34.5 -84.5q0 -17 2.5 -32.5
-t7.5 -31.5h209v-49h-193q5 -16 10.5 -32.5t9.5 -33.5h173v-49h-167v-7q0 -53 -18 -88t-54 -66v-4h328v-71h-453z" />
-    <glyph glyph-name="uni20A6" unicode="&#x20a6;" 
-d="M170 563l9 -163h59l-64 163h-4zM426 74h4l-9 162h-58zM121 0v236h-75v43l75 5v68h-75v43l75 5v238h84l94 -238h115v238h65v-238h73v-48h-73v-68h73v-48h-73v-236h-84l-93 236h-116v-236h-65zM419 284l-4 68h-97l27 -68h74zM283 284l-26 68h-76l4 -68h98z" />
-    <glyph glyph-name="peseta" unicode="&#x20a7;" 
-d="M135 0v417h-93v51l93 5v165h148q45 0 84 -9t68.5 -28.5t48 -51t23.5 -76.5h76v-56h-76q-5 -44 -24 -76.5t-48.5 -53.5t-68 -31.5t-83.5 -10.5h-70v-245h-78zM213 581v-108h214q-8 59 -47 83.5t-108 24.5h-59zM213 302h59q69 0 108 29t47 86h-214v-115z" />
-    <glyph glyph-name="uni20A9" unicode="&#x20a9;" 
-d="M298 528l-14 -174h32l-14 174h-4zM408 68h4l12 130l10 98h-49l11 -98zM140 0l-36 296h-76v52l69 6l-34 284h76l29 -284h59l27 244h98l27 -244h60l28 284h71l-31 -284h63v-58h-70l-32 -296h-112l-34 296h-44l-32 -296h-106zM194 68h4l12 130l11 98h-47l10 -98z" />
-    <glyph glyph-name="dong" unicode="&#x20ab;" 
-d="M276 110q-76 0 -121.5 48.5t-45.5 140.5q0 41 14.5 74t39 56.5t56 36t64.5 12.5q39 0 65.5 -12t50.5 -34h3l-5 83v34h-155v49h155v67h71v-67h78v-44l-78 -5v-429h-58l-6 46h-3q-24 -25 -55 -40.5t-70 -15.5zM291 169q28 0 54 12.5t52 40.5v155q-27 22 -49.5 31.5
-t-52.5 9.5q-23 0 -43.5 -9t-36 -25t-24.5 -37.5t-9 -46.5q0 -62 28.5 -96.5t80.5 -34.5zM121 0v49h378v-49h-378z" />
-    <glyph glyph-name="uni20B1" unicode="&#x20b1;" 
-d="M135 0v372h-93v40l93 6v58h-93v40l93 6v116h148q77 0 133.5 -26.5t79.5 -89.5h88v-46h-78q1 -8 1.5 -16t0.5 -16v-13.5t-1 -12.5h77v-46h-87q-21 -65 -78.5 -96t-135.5 -31h-70v-245h-78zM213 581v-59h199q-18 32 -53.5 45.5t-86.5 13.5h-59zM429 444q0 9 -0.5 16.5
-t-1.5 15.5h-214v-58h214q1 6 1.5 12.5t0.5 13.5zM213 302h59q107 0 142 70h-201v-70z" />
-    <glyph glyph-name="uni20B2" unicode="&#x20b2;" 
-d="M311 -110v100q-50 6 -92 31t-72 67t-46.5 100t-16.5 130q0 70 16 127.5t45.5 100t71.5 68t94 33.5v101h60v-99q46 -4 85.5 -26t66.5 -53l-49 -46q-26 27 -55.5 43.5t-67.5 16.5q-44 0 -77.5 -18.5t-57 -52.5t-35.5 -83t-12 -109q0 -62 12 -111t34.5 -83t55 -52.5
-t74.5 -18.5q32 0 61 11t45 26v169h-116v69h191v-270q-67 -62 -155 -71v-100h-60z" />
-    <glyph glyph-name="uni20B4" unicode="&#x20b4;" 
-d="M323 -12q-45 0 -82 11.5t-63.5 33t-41 52.5t-14.5 70q0 44 19 80h-80v43l69 5h46q18 20 40 36t45 31h-200v44l70 5h202q26 20 42.5 43t16.5 52q0 38 -27.5 64t-75.5 26q-41 0 -68 -15.5t-57 -48.5l-44 47q33 37 72 60t100 23q40 0 73 -11.5t57 -32.5t37 -50t13 -64
-q0 -28 -8.5 -50.5t-23.5 -42.5h97v-49h-147q-23 -18 -48 -34t-48 -33h243v-48h-300q-16 -18 -25.5 -38.5t-9.5 -45.5q0 -43 30.5 -70t90.5 -27q45 0 81.5 20.5t69.5 52.5l38 -55q-36 -38 -85.5 -61t-103.5 -23z" />
-    <glyph glyph-name="uni20B5" unicode="&#x20b5;" 
-d="M181 321q0 -112 38.5 -182t110.5 -83v525q-72 -14 -110.5 -83t-38.5 -177zM330 -110v99q-52 5 -95 29.5t-74 66.5t-48 101t-17 132q0 71 16.5 129t47 100t74 68t96.5 33v97h53v-96q47 -3 86.5 -24.5t67.5 -52.5l-49 -47q-23 23 -48 38.5t-57 19.5v-527q34 5 61 22.5
-t53 46.5l49 -44q-33 -38 -72.5 -62t-90.5 -29v-100h-53z" />
-    <glyph glyph-name="uni20B9" unicode="&#x20b9;" 
-d="M108 252v67h79q83 0 131 29t53 89h-263v44l76 5h184q-12 46 -58.5 65t-122.5 19h-79v68h417v-49h-157q33 -15 54.5 -41.5t28.5 -61.5h74v-49h-72q-5 -77 -51 -120.5t-120 -57.5l208 -259h-93l-200 252h-89z" />
-    <glyph glyph-name="uni20BA" unicode="&#x20ba;" 
-d="M160 -12v273l-93 -43l-22 43l115 53v72l-93 -43l-22 42l115 54v199h84v-158l171 81l23 -43l-194 -91v-72l171 81l23 -43l-194 -91v-236q37 1 76 12t71.5 31.5t53 51t20.5 69.5q0 8 -0.5 18.5t-5.5 24.5l69 18q5 -17 6.5 -30.5t1.5 -26.5q0 -63 -29 -110t-80 -78
-t-119.5 -45.5t-147.5 -12.5z" />
-    <glyph glyph-name="uni20AE" unicode="&#x20ae;" 
-d="M120 255l-22 43l160 75v201h-203v64h490v-64h-203v-166l138 64l22 -40l-160 -77v-72l138 64l22 -40l-160 -76v-231h-84v195l-138 -65l-22 43l160 75v72z" />
-    <glyph glyph-name="uni20B8" unicode="&#x20b8;" 
-d="M258 0v474h-203v44l82 4h408v-48h-203v-474h-84zM55 589v49h490v-49h-490z" />
-    <glyph glyph-name="uni20BD" unicode="&#x20bd;" 
-d="M158 0v164h-116v44l116 5v67h-116v44l116 4v310h173q49 0 91.5 -10t73 -31.5t48 -55t17.5 -79.5q0 -48 -17.5 -82.5t-48.5 -56.5t-73 -32.5t-91 -10.5h-94v-67h258v-49h-258v-164h-79zM237 328h84q78 0 119.5 32.5t41.5 98.5q0 67 -41.5 94.5t-119.5 27.5h-84v-253z" />
-    <glyph glyph-name="franc" unicode="&#x20a3;" 
-d="M148 0v124h-79v52l79 4v458h385v-71h-302v-197h253v-70h-253v-120h160v-56h-160v-124h-83z" />
-    <glyph glyph-name="fraction" unicode="&#x2044;" 
-d="M77 32l-49 45l183 188l33 -30zM389 391l-33 30l167 203l49 -45z" />
-    <glyph glyph-name="uni2215" unicode="&#x2215;" 
-d="M77 32l-49 45l183 188l33 -30zM389 391l-33 30l167 203l49 -45z" />
-    <glyph glyph-name="slash.frac" 
-d="M77 32l-49 45l183 188l33 -30zM389 391l-33 30l167 203l49 -45z" />
-    <glyph glyph-name="percent" unicode="%" 
-d="M167 321q-61 0 -100 44t-39 122t39 120.5t100 42.5t100 -42.5t39 -120.5t-39 -122t-100 -44zM167 371q32 0 55 28.5t23 87.5q0 60 -23 87t-55 27t-55 -27t-23 -87q0 -59 23 -87.5t55 -28.5zM77 32l-49 45l183 188l33 -30zM389 391l-33 30l167 203l49 -45zM434 -12
-q-61 0 -100 44t-39 122t39 120.5t100 42.5t100 -42.5t39 -120.5t-39 -122t-100 -44zM434 38q32 0 55 28.5t23 87.5q0 60 -23 87t-55 27t-55 -27t-23 -87q0 -59 23 -87.5t55 -28.5z" />
-    <glyph glyph-name="perthousand" unicode="&#x2030;" 
-d="M165 389q-52 0 -84.5 34.5t-32.5 97.5q0 61 32.5 95t84.5 34t84.5 -34t32.5 -95q0 -63 -32.5 -97.5t-84.5 -34.5zM165 431q27 0 44.5 21.5t17.5 68.5q0 45 -17.5 66t-44.5 21t-45 -21t-18 -66q0 -47 18 -68.5t45 -21.5zM119 278l-14 31l446 201l24 -58zM165 -12
-q-52 0 -84.5 34.5t-32.5 97.5q0 61 32.5 95t84.5 34t84.5 -34t32.5 -95q0 -63 -32.5 -97.5t-84.5 -34.5zM165 30q27 0 44.5 21.5t17.5 68.5q0 45 -17.5 65.5t-44.5 20.5t-45 -20.5t-18 -65.5q0 -47 18 -68.5t45 -21.5zM436 -12q-52 0 -84.5 34.5t-32.5 97.5q0 61 32.5 95
-t84.5 34t84.5 -34t32.5 -95q0 -63 -32.5 -97.5t-84.5 -34.5zM436 30q27 0 44.5 21.5t17.5 68.5q0 45 -17.5 65.5t-44.5 20.5t-45 -20.5t-18 -65.5q0 -47 18 -68.5t45 -21.5z" />
-    <glyph glyph-name="onequarter" unicode="&#xbc;" 
-d="M150 333v230h-82v42q33 5 53.5 13t41.5 20h50v-305h-63zM77 32l-49 45l183 188l33 -30zM389 391l-33 30l167 203l49 -45zM468 0v74h-162v31l113 212l46 -20l-97 -181h100v97h57v-97h50v-42h-50v-74h-57z" />
-    <glyph glyph-name="onehalf" unicode="&#xbd;" 
-d="M150 333v230h-82v42q33 5 53.5 13t41.5 20h50v-305h-63zM77 32l-49 45l183 188l33 -30zM389 391l-33 30l167 203l49 -45zM324 0v36q78 59 119.5 98t41.5 72q0 27 -15.5 43t-44.5 16q-20 0 -39 -11.5t-33 -30.5l-39 33q23 26 52.5 43.5t65.5 17.5q54 0 85 -26.5t31 -76.5
-q0 -20 -9.5 -39.5t-26 -39t-38.5 -40t-47 -42.5h136v-53h-239z" />
-    <glyph glyph-name="threequarters" unicode="&#xbe;" 
-d="M159 321q-35 0 -68.5 14t-58.5 40l32 39q15 -18 39.5 -30.5t51.5 -12.5t44.5 11t17.5 36q0 51 -96 51v38q42 0 61.5 14t19.5 37q0 20 -13 31.5t-42 11.5q-18 0 -38 -9.5t-35 -24.5l-30 38q19 20 49.5 32.5t65.5 12.5q47 0 76.5 -22t29.5 -62q0 -55 -56 -75
-q32 -8 51.5 -27t19.5 -50q0 -45 -35 -69t-86 -24zM102 32l-49 45l183 188l33 -30zM414 391l-33 30l167 203l49 -45zM468 0v74h-162v31l113 212l46 -20l-97 -181h100v97h57v-97h50v-42h-50v-74h-57z" />
-    <glyph glyph-name="onethird" unicode="&#x2153;" 
-d="M150 333v230h-82v42q33 5 53.5 13t41.5 20h50v-305h-63zM77 32l-49 45l183 188l33 -30zM389 391l-33 30l167 203l49 -45zM440 -12q-35 0 -68.5 14t-58.5 40l32 39q15 -18 39.5 -30.5t51.5 -12.5t44.5 11t17.5 36q0 51 -96 51v38q42 0 61.5 14t19.5 37q0 20 -13 31.5
-t-42 11.5q-18 0 -38 -9.5t-35 -24.5l-30 38q19 20 49.5 32.5t65.5 12.5q47 0 76.5 -22t29.5 -62q0 -55 -56 -75q32 -8 51.5 -27t19.5 -50q0 -45 -35 -69t-86 -24z" />
-    <glyph glyph-name="twothirds" unicode="&#x2154;" 
-d="M43 333v36q78 59 119.5 98t41.5 72q0 27 -15.5 43t-44.5 16q-20 0 -39 -11.5t-33 -30.5l-39 33q23 26 52.5 43.5t65.5 17.5q54 0 85 -26.5t31 -76.5q0 -20 -9.5 -39.5t-26 -39t-38.5 -40t-47 -42.5h136v-53h-239zM77 32l-49 45l183 188l33 -30zM389 391l-33 30l167 203
-l49 -45zM440 -12q-35 0 -68.5 14t-58.5 40l32 39q15 -18 39.5 -30.5t51.5 -12.5t44.5 11t17.5 36q0 51 -96 51v38q42 0 61.5 14t19.5 37q0 20 -13 31.5t-42 11.5q-18 0 -38 -9.5t-35 -24.5l-30 38q19 20 49.5 32.5t65.5 12.5q47 0 76.5 -22t29.5 -62q0 -55 -56 -75
-q32 -8 51.5 -27t19.5 -50q0 -45 -35 -69t-86 -24z" />
-    <glyph glyph-name="uni2155" unicode="&#x2155;" 
-d="M150 333v230h-82v42q33 5 53.5 13t41.5 20h50v-305h-63zM77 32l-49 45l183 188l33 -30zM389 391l-33 30l167 203l49 -45zM442 -12q-42 0 -72 14t-57 40l32 39q17 -18 39.5 -30.5t52.5 -12.5q29 0 47.5 15t18.5 42q0 29 -18 43.5t-49 14.5q-20 0 -34.5 -6t-29.5 -17
-l-31 20l17 155h189v-54h-139l-10 -70q24 12 56 12q50 0 81 -25.5t31 -73.5t-35 -77t-89 -29z" />
-    <glyph glyph-name="uni2156" unicode="&#x2156;" 
-d="M43 333v36q78 59 119.5 98t41.5 72q0 27 -15.5 43t-44.5 16q-20 0 -39 -11.5t-33 -30.5l-39 33q23 26 52.5 43.5t65.5 17.5q54 0 85 -26.5t31 -76.5q0 -20 -9.5 -39.5t-26 -39t-38.5 -40t-47 -42.5h136v-53h-239zM77 32l-49 45l183 188l33 -30zM389 391l-33 30l167 203
-l49 -45zM442 -12q-42 0 -72 14t-57 40l32 39q17 -18 39.5 -30.5t52.5 -12.5q29 0 47.5 15t18.5 42q0 29 -18 43.5t-49 14.5q-20 0 -34.5 -6t-29.5 -17l-31 20l17 155h189v-54h-139l-10 -70q24 12 56 12q50 0 81 -25.5t31 -73.5t-35 -77t-89 -29z" />
-    <glyph glyph-name="uni2157" unicode="&#x2157;" 
-d="M159 321q-35 0 -68.5 14t-58.5 40l32 39q15 -18 39.5 -30.5t51.5 -12.5t44.5 11t17.5 36q0 51 -96 51v38q42 0 61.5 14t19.5 37q0 20 -13 31.5t-42 11.5q-18 0 -38 -9.5t-35 -24.5l-30 38q19 20 49.5 32.5t65.5 12.5q47 0 76.5 -22t29.5 -62q0 -55 -56 -75
-q32 -8 51.5 -27t19.5 -50q0 -45 -35 -69t-86 -24zM77 32l-49 45l183 188l33 -30zM389 391l-33 30l167 203l49 -45zM442 -12q-42 0 -72 14t-57 40l32 39q17 -18 39.5 -30.5t52.5 -12.5q29 0 47.5 15t18.5 42q0 29 -18 43.5t-49 14.5q-20 0 -34.5 -6t-29.5 -17l-31 20l17 155
-h189v-54h-139l-10 -70q24 12 56 12q50 0 81 -25.5t31 -73.5t-35 -77t-89 -29z" />
-    <glyph glyph-name="uni2158" unicode="&#x2158;" 
-d="M194 333v74h-162v31l113 212l46 -20l-97 -181h100v97h57v-97h50v-42h-50v-74h-57zM77 32l-49 45l183 188l33 -30zM389 391l-33 30l167 203l49 -45zM442 -12q-42 0 -72 14t-57 40l32 39q17 -18 39.5 -30.5t52.5 -12.5q29 0 47.5 15t18.5 42q0 29 -18 43.5t-49 14.5
-q-20 0 -34.5 -6t-29.5 -17l-31 20l17 155h189v-54h-139l-10 -70q24 12 56 12q50 0 81 -25.5t31 -73.5t-35 -77t-89 -29z" />
-    <glyph glyph-name="uni2159" unicode="&#x2159;" 
-d="M150 333v230h-82v42q33 5 53.5 13t41.5 20h50v-305h-63zM77 32l-49 45l183 188l33 -30zM389 391l-33 30l167 203l49 -45zM454 -12q-59 0 -98 40.5t-39 111.5q0 86 42.5 131.5t111.5 45.5q30 0 52 -9t41 -23l-26 -41q-14 11 -29 17.5t-35 6.5q-43 0 -68.5 -29.5
-t-29.5 -86.5q19 17 41.5 26t49.5 9q51 0 77 -26.5t26 -68.5q0 -21 -8.5 -40t-24 -33.5t-37 -22.5t-46.5 -8zM453 38q28 0 43 14.5t15 39.5q0 23 -14 38t-45 15q-40 0 -75 -35q6 -38 28 -55t48 -17z" />
-    <glyph glyph-name="uni215A" unicode="&#x215a;" 
-d="M161 321q-42 0 -72 14t-57 40l32 39q17 -18 39.5 -30.5t52.5 -12.5q29 0 47.5 15t18.5 42q0 29 -18 43.5t-49 14.5q-20 0 -34.5 -6t-29.5 -17l-31 20l17 155h189v-54h-139l-10 -70q24 12 56 12q50 0 81 -25.5t31 -73.5t-35 -77t-89 -29zM77 32l-49 45l183 188l33 -30z
-M389 391l-33 30l167 203l49 -45zM454 -12q-59 0 -98 40.5t-39 111.5q0 86 42.5 131.5t111.5 45.5q30 0 52 -9t41 -23l-26 -41q-14 11 -29 17.5t-35 6.5q-43 0 -68.5 -29.5t-29.5 -86.5q19 17 41.5 26t49.5 9q51 0 77 -26.5t26 -68.5q0 -21 -8.5 -40t-24 -33.5t-37 -22.5
-t-46.5 -8zM453 38q28 0 43 14.5t15 39.5q0 23 -14 38t-45 15q-40 0 -75 -35q6 -38 28 -55t48 -17z" />
-    <glyph glyph-name="uni2150" unicode="&#x2150;" 
-d="M150 333v230h-82v42q33 5 53.5 13t41.5 20h50v-305h-63zM77 32l-49 45l183 188l33 -30zM389 391l-33 30l167 203l49 -45zM394 0q2 39 8.5 71.5t18.5 62t30 58.5t42 60h-169v53h243v-36q-32 -35 -52 -66.5t-32 -63t-17 -65.5t-7 -74h-65z" />
-    <glyph glyph-name="oneeighth" unicode="&#x215b;" 
-d="M150 333v230h-82v42q33 5 53.5 13t41.5 20h50v-305h-63zM77 32l-49 45l183 188l33 -30zM389 391l-33 30l167 203l49 -45zM441 -12q-28 0 -51 7t-39.5 19t-25.5 28t-9 34q0 32 19.5 50.5t45.5 30.5v4q-23 14 -38.5 29.5t-15.5 42.5q0 18 9 33.5t24.5 27t36.5 17.5t44 6
-q50 0 82.5 -23.5t32.5 -60.5q0 -28 -16.5 -44.5t-36.5 -27.5v-4q26 -11 44.5 -29.5t18.5 -51.5q0 -18 -9.5 -34t-26.5 -28t-39.5 -19t-49.5 -7zM461 177q20 12 28 25t8 28q0 18 -14.5 30t-41.5 12q-25 0 -40 -11.5t-15 -28.5q0 -22 22 -34t53 -21zM441 33q26 0 46.5 12.5
-t20.5 32.5q0 14 -7.5 23.5t-19.5 16t-27.5 11.5t-32.5 10q-47 -22 -47 -59q0 -20 19.5 -33.5t47.5 -13.5z" />
-    <glyph glyph-name="threeeighths" unicode="&#x215c;" 
-d="M159 321q-35 0 -68.5 14t-58.5 40l32 39q15 -18 39.5 -30.5t51.5 -12.5t44.5 11t17.5 36q0 51 -96 51v38q42 0 61.5 14t19.5 37q0 20 -13 31.5t-42 11.5q-18 0 -38 -9.5t-35 -24.5l-30 38q19 20 49.5 32.5t65.5 12.5q47 0 76.5 -22t29.5 -62q0 -55 -56 -75
-q32 -8 51.5 -27t19.5 -50q0 -45 -35 -69t-86 -24zM77 32l-49 45l183 188l33 -30zM389 391l-33 30l167 203l49 -45zM441 -12q-28 0 -51 7t-39.5 19t-25.5 28t-9 34q0 32 19.5 50.5t45.5 30.5v4q-23 14 -38.5 29.5t-15.5 42.5q0 18 9 33.5t24.5 27t36.5 17.5t44 6
-q50 0 82.5 -23.5t32.5 -60.5q0 -28 -16.5 -44.5t-36.5 -27.5v-4q26 -11 44.5 -29.5t18.5 -51.5q0 -18 -9.5 -34t-26.5 -28t-39.5 -19t-49.5 -7zM461 177q20 12 28 25t8 28q0 18 -14.5 30t-41.5 12q-25 0 -40 -11.5t-15 -28.5q0 -22 22 -34t53 -21zM441 33q26 0 46.5 12.5
-t20.5 32.5q0 14 -7.5 23.5t-19.5 16t-27.5 11.5t-32.5 10q-47 -22 -47 -59q0 -20 19.5 -33.5t47.5 -13.5z" />
-    <glyph glyph-name="fiveeighths" unicode="&#x215d;" 
-d="M161 321q-42 0 -72 14t-57 40l32 39q17 -18 39.5 -30.5t52.5 -12.5q29 0 47.5 15t18.5 42q0 29 -18 43.5t-49 14.5q-20 0 -34.5 -6t-29.5 -17l-31 20l17 155h189v-54h-139l-10 -70q24 12 56 12q50 0 81 -25.5t31 -73.5t-35 -77t-89 -29zM77 32l-49 45l183 188l33 -30z
-M389 391l-33 30l167 203l49 -45zM441 -12q-28 0 -51 7t-39.5 19t-25.5 28t-9 34q0 32 19.5 50.5t45.5 30.5v4q-23 14 -38.5 29.5t-15.5 42.5q0 18 9 33.5t24.5 27t36.5 17.5t44 6q50 0 82.5 -23.5t32.5 -60.5q0 -28 -16.5 -44.5t-36.5 -27.5v-4q26 -11 44.5 -29.5
-t18.5 -51.5q0 -18 -9.5 -34t-26.5 -28t-39.5 -19t-49.5 -7zM461 177q20 12 28 25t8 28q0 18 -14.5 30t-41.5 12q-25 0 -40 -11.5t-15 -28.5q0 -22 22 -34t53 -21zM441 33q26 0 46.5 12.5t20.5 32.5q0 14 -7.5 23.5t-19.5 16t-27.5 11.5t-32.5 10q-47 -22 -47 -59
-q0 -20 19.5 -33.5t47.5 -13.5z" />
-    <glyph glyph-name="seveneighths" unicode="&#x215e;" 
-d="M113 333q2 39 8.5 71.5t18.5 62t30 58.5t42 60h-169v53h243v-36q-32 -35 -52 -66.5t-32 -63t-17 -65.5t-7 -74h-65zM77 32l-49 45l183 188l33 -30zM389 391l-33 30l167 203l49 -45zM441 -12q-28 0 -51 7t-39.5 19t-25.5 28t-9 34q0 32 19.5 50.5t45.5 30.5v4
-q-23 14 -38.5 29.5t-15.5 42.5q0 18 9 33.5t24.5 27t36.5 17.5t44 6q50 0 82.5 -23.5t32.5 -60.5q0 -28 -16.5 -44.5t-36.5 -27.5v-4q26 -11 44.5 -29.5t18.5 -51.5q0 -18 -9.5 -34t-26.5 -28t-39.5 -19t-49.5 -7zM461 177q20 12 28 25t8 28q0 18 -14.5 30t-41.5 12
-q-25 0 -40 -11.5t-15 -28.5q0 -22 22 -34t53 -21zM441 33q26 0 46.5 12.5t20.5 32.5q0 14 -7.5 23.5t-19.5 16t-27.5 11.5t-32.5 10q-47 -22 -47 -59q0 -20 19.5 -33.5t47.5 -13.5z" />
-    <glyph glyph-name="uni2151" unicode="&#x2151;" 
-d="M150 333v230h-82v42q33 5 53.5 13t41.5 20h50v-305h-63zM77 32l-49 45l183 188l33 -30zM389 391l-33 30l167 203l49 -45zM431 161q20 0 37.5 7.5t36.5 25.5q-5 39 -27 56.5t-48 17.5q-27 0 -42.5 -15t-15.5 -40q0 -23 14 -37.5t45 -14.5zM412 -12q-29 0 -51.5 9.5
-t-41.5 23.5l26 40q14 -11 29.5 -17t35.5 -6q42 0 67 28.5t29 85.5q-19 -16 -41.5 -25t-48.5 -9q-51 0 -76.5 26.5t-25.5 68.5q0 44 32 74t83 30q59 0 98 -40.5t39 -111.5q0 -86 -42.5 -131.5t-111.5 -45.5z" />
-    <glyph glyph-name="uni2152" unicode="&#x2152;" 
-d="M165 401v162h-82v42q33 5 53.5 12.5t41.5 20.5h50v-237h-63zM119 278l-14 31l446 201l24 -58zM165 0v162h-82v42q33 5 53.5 12.5t41.5 20.5h50v-237h-63zM436 -12q-52 0 -84.5 34.5t-32.5 97.5q0 61 32.5 95t84.5 34t84.5 -34t32.5 -95q0 -63 -32.5 -97.5t-84.5 -34.5z
-M436 30q27 0 44.5 21.5t17.5 68.5q0 45 -17.5 65.5t-44.5 20.5t-45 -20.5t-18 -65.5q0 -47 18 -68.5t45 -21.5z" />
-    <glyph glyph-name="uni2189" unicode="&#x2189;" 
-d="M167 321q-61 0 -100 44t-39 122t39 120.5t100 42.5t100 -42.5t39 -120.5t-39 -122t-100 -44zM167 371q32 0 55 28.5t23 87.5q0 60 -23 87t-55 27t-55 -27t-23 -87q0 -59 23 -87.5t55 -28.5zM77 32l-49 45l183 188l33 -30zM389 391l-33 30l167 203l49 -45zM440 -12
-q-35 0 -68.5 14t-58.5 40l32 39q15 -18 39.5 -30.5t51.5 -12.5t44.5 11t17.5 36q0 51 -96 51v38q42 0 61.5 14t19.5 37q0 20 -13 31.5t-42 11.5q-18 0 -38 -9.5t-35 -24.5l-30 38q19 20 49.5 32.5t65.5 12.5q47 0 76.5 -22t29.5 -62q0 -55 -56 -75q32 -8 51.5 -27t19.5 -50
-q0 -45 -35 -69t-86 -24z" />
-    <glyph glyph-name="plus" unicode="+" 
-d="M267 104v195h-182v62h182v195h66v-195h182v-62h-182v-195h-66z" />
-    <glyph glyph-name="minus" unicode="&#x2212;" 
-d="M85 299v62h430v-62h-430z" />
-    <glyph glyph-name="multiply" unicode="&#xd7;" 
-d="M146 126l-44 45l154 159l-154 158l44 45l154 -159l154 159l44 -45l-154 -158l154 -159l-44 -45l-154 160z" />
-    <glyph glyph-name="divide" unicode="&#xf7;" 
-d="M300 456q-23 0 -38.5 15t-15.5 39q0 23 15.5 38t38.5 15t38.5 -15t15.5 -38q0 -24 -15.5 -39t-38.5 -15zM300 96q-23 0 -38.5 15t-15.5 39q0 23 15.5 38t38.5 15t38.5 -15t15.5 -38q0 -24 -15.5 -39t-38.5 -15zM85 299v62h430v-62h-430z" />
-    <glyph glyph-name="uni2219" unicode="&#x2219;" 
-d="M297 263q-34 0 -57.5 23t-23.5 61t23.5 61.5t57.5 23.5t57.5 -23.5t23.5 -61.5t-23.5 -61t-57.5 -23z" />
-    <glyph glyph-name="equal" unicode="=" 
-d="M85 406v62h430v-62h-430zM85 193v62h430v-62h-430z" />
-    <glyph glyph-name="equivalence" unicode="&#x2261;" 
-d="M85 514v62h430v-62h-430zM85 299v62h430v-62h-430zM85 85v62h430v-62h-430z" />
-    <glyph glyph-name="less" unicode="&#x3c;" 
-d="M493 48l-373 253v62l373 253v-79l-301 -203v-4l301 -203v-79z" />
-    <glyph glyph-name="greater" unicode="&#x3e;" 
-d="M107 48v79l301 203v4l-301 203v79l373 -253v-62z" />
-    <glyph glyph-name="lessequal" unicode="&#x2264;" 
-d="M85 0v62h430v-62h-430zM515 153l-430 153v74l430 153v-71l-210 -73l-135 -44v-4l135 -44l210 -73v-71z" />
-    <glyph glyph-name="greaterequal" unicode="&#x2265;" 
-d="M85 0v62h430v-62h-430zM85 153v71l210 73l135 44v4l-135 44l-210 73v71l430 -153v-74z" />
-    <glyph glyph-name="plusminus" unicode="&#xb1;" 
-d="M267 127v177h-182v62h182v190h66v-190h182v-62h-182v-177h-66zM85 0v62h430v-62h-430z" />
-    <glyph glyph-name="asciicircum" unicode="^" 
-d="M111 284l153 386h72l153 -386h-72l-66 176l-49 133h-4l-49 -133l-66 -176h-72z" />
-    <glyph glyph-name="notequal" unicode="&#x2260;" 
-d="M112 65l76 127h-103v62h139l91 152h-230v62h266l76 127h61l-76 -127h103v-62h-139l-91 -152h230v-62h-266l-76 -127h-61z" />
-    <glyph glyph-name="asciitilde" unicode="~" 
-d="M388 257q-30 0 -53.5 13t-44 29t-40 29t-40.5 13q-23 0 -43.5 -17t-37.5 -69l-53 23q26 70 62 97.5t74 27.5q30 0 53.5 -13t44 -29t40 -29t40.5 -13q12 0 22.5 3.5t21 13t19.5 26.5t18 43l53 -24q-26 -70 -62 -97t-74 -27z" />
-    <glyph glyph-name="approxequal" unicode="&#x2248;" 
-d="M388 364q-30 0 -53.5 13t-44 29t-40 29t-40.5 13q-23 0 -43.5 -17t-37.5 -69l-53 23q26 70 62 97.5t74 27.5q30 0 53.5 -13t44 -29t40 -29t40.5 -13q12 0 22.5 3.5t21 13t19.5 26.5t18 43l53 -24q-26 -70 -62 -97t-74 -27zM388 151q-30 0 -53.5 13t-44 29t-40 29
-t-40.5 13q-23 0 -43.5 -17t-37.5 -69l-53 23q26 70 62 97.5t74 27.5q30 0 53.5 -13t44 -29t40 -29t40.5 -13q12 0 22.5 3.5t21 13t19.5 26.5t18 43l53 -24q-26 -70 -62 -97t-74 -27z" />
-    <glyph glyph-name="logicalnot" unicode="&#xac;" 
-d="M449 104v195h-364v62h430v-257h-66z" />
-    <glyph glyph-name="revlogicalnot" unicode="&#x2310;" 
-d="M85 104v257h430v-62h-364v-195h-66z" />
-    <glyph glyph-name="intersection" unicode="&#x2229;" 
-d="M96 104v251q0 49 15.5 88.5t42.5 67.5t64.5 43.5t81.5 15.5t81.5 -15.5t64.5 -43.5t42.5 -67.5t15.5 -88.5v-251h-65v239q0 78 -38 119.5t-101 41.5t-101 -41.5t-38 -119.5v-239h-65z" />
-    <glyph glyph-name="orthogonal" unicode="&#x221f;" 
-d="M85 104v452h66v-390h364v-62h-430z" />
-    <glyph glyph-name="infinity" unicode="&#x221e;" 
-d="M449 150q-55 0 -94.5 28.5t-77.5 90.5h-4q-11 -18 -25 -35.5t-31.5 -32t-39 -23t-47.5 -8.5q-27 0 -51.5 12t-43 33t-29 49t-10.5 60q0 39 11.5 70t31 52.5t46 33t57.5 11.5q25 0 45.5 -8t38 -22t31.5 -32t25 -39h4q31 53 70.5 85t93.5 32q33 0 61.5 -12.5t49 -35.5
-t32 -54.5t11.5 -68.5q0 -42 -11.5 -76.5t-32 -58.5t-49 -37.5t-62.5 -13.5zM142 233q64 0 104 88q-25 49 -51 70.5t-55 21.5q-36 0 -57.5 -22.5t-21.5 -63.5t23.5 -67.5t57.5 -26.5zM446 229q45 0 69 30.5t24 73.5q0 48 -26 79.5t-74 31.5q-35 0 -65.5 -24.5t-60.5 -79.5
-q33 -62 64 -86.5t69 -24.5z" />
-    <glyph glyph-name="degree" unicode="&#xb0;" 
-d="M300 429q-25 0 -47.5 9t-40 25.5t-27.5 40t-10 52.5q0 30 10 53.5t27.5 40.5t40 26t47.5 9t48 -9t40 -26t27.5 -40.5t10.5 -53.5q0 -29 -10.5 -52.5t-27.5 -40t-40 -25.5t-48 -9zM300 475q34 0 55 23t21 58q0 37 -21 60t-55 23q-33 0 -54 -23t-21 -60q0 -35 21 -58
-t54 -23z" />
-    <glyph glyph-name="uni2032" unicode="&#x2032;" 
-d="M257 434l22 256h81l-15 -100l-34 -156h-54z" />
-    <glyph glyph-name="uni2033" unicode="&#x2033;" 
-d="M170 434l22 256h81l-15 -100l-34 -156h-54zM345 434l22 256h81l-15 -100l-34 -156h-54z" />
-    <glyph glyph-name="uni2035" unicode="&#x2035;" 
-d="M289 434l-34 156l-15 100h81l22 -256h-54z" />
-    <glyph glyph-name="uni00B5" unicode="&#xb5;" 
-d="M84 -187v673h82v-291q0 -67 24.5 -101.5t78.5 -34.5q19 0 37 4t36.5 15t37 32t37.5 54v322h83q-2 -99 -4 -202.5t-2 -191.5q0 -20 8 -28t20 -8h7.5t10.5 2l11 -62q-18 -8 -47 -8q-38 0 -57.5 22.5t-22.5 81.5h-2q-30 -52 -69.5 -77t-84.5 -25q-33 0 -60.5 10.5
-t-47.5 42.5q0 -38 0.5 -67.5t1 -55.5t2 -51.5t3.5 -55.5h-83z" />
-    <glyph glyph-name="partialdiff" unicode="&#x2202;" 
-d="M258 -12q-36 0 -69 13.5t-58 38t-40 60t-15 80.5q0 49 15 90.5t43 71.5t68 47t91 17q41 0 80.5 -19t68.5 -53q1 8 1 16.5v16.5q0 125 -38 181t-102 56q-32 0 -60 -13.5t-52 -37.5l-38 52q32 32 71.5 49.5t86.5 17.5q97 0 154.5 -76t57.5 -231q0 -84 -19 -153.5t-54 -119
-t-84 -77t-108 -27.5zM266 56q65 0 109.5 54t60.5 154q-33 42 -68 59t-68 17q-37 0 -64.5 -12t-45.5 -32.5t-27 -49t-9 -61.5q0 -30 9 -53.5t24.5 -40.5t35.5 -26t43 -9z" />
-    <glyph glyph-name="integral" unicode="&#x222b;" 
-d="M233 -158q-31 0 -47 7l9 62q12 -4 35 -4q42 0 54.5 41t12.5 119q0 55 -6.5 118t-14 128t-14 128.5t-6.5 119.5q0 48 5.5 90t20.5 72.5t42 48t70 17.5q15 0 28 -2t19 -4l-10 -62q-7 2 -15.5 3t-19.5 1q-41 0 -53.5 -42.5t-12.5 -119.5q0 -54 6.5 -117t14.5 -128
-t14.5 -128.5t6.5 -118.5q0 -49 -5.5 -91t-21 -72.5t-42.5 -48t-70 -17.5z" />
-    <glyph glyph-name="integraltp" unicode="&#x2320;" 
-d="M340 -400h-75v961q0 48 5.5 90t21 72.5t42.5 48t70 17.5q14 0 27 -2t19 -4l-9 -62q-7 2 -15.5 3t-19.5 1q-41 0 -53.5 -42.5t-12.5 -119.5v-963z" />
-    <glyph glyph-name="integralbt" unicode="&#x2321;" 
-d="M201 -158q-31 0 -48 7l10 62q12 -4 35 -4q42 0 54.5 41t12.5 119v933h75v-929q0 -49 -5.5 -91t-21 -72.5t-42.5 -48t-70 -17.5z" />
-    <glyph glyph-name="radical" unicode="&#x221a;" 
-d="M303 -95l-150 428l-71 -32l-20 45l134 59l116 -346q5 -16 9 -32l8 -32h4q3 16 5.5 32t6.5 32l178 761h60l-218 -915h-62z" />
-    <glyph glyph-name="uni2206" unicode="&#x2206;" 
-d="M43 0v50l209 606h96l209 -606v-50h-514zM134 71h331l-97 293q-17 54 -33.5 109t-33.5 112h-4q-17 -57 -33.5 -112t-33.5 -109z" />
-    <glyph glyph-name="uni2126" unicode="&#x2126;" 
-d="M38 0v68h121v4q-21 20 -40.5 47.5t-35.5 62.5t-25.5 77t-9.5 92q0 69 17.5 127t50.5 100.5t79.5 66t104.5 23.5t104.5 -23.5t79.5 -66t50.5 -100.5t17.5 -127q0 -50 -9.5 -92t-25.5 -77t-35.5 -62.5t-40.5 -47.5v-4h121v-68h-210v61q24 24 45 52t36.5 62.5t24 76.5
-t8.5 94q0 53 -11 98.5t-32 79t-52 52.5t-71 19t-71 -19t-52 -52.5t-32 -79t-11 -98.5q0 -52 8.5 -94t24 -76.5t36.5 -62.5t45 -52v-61h-210z" />
-    <glyph glyph-name="uni2200" unicode="&#x2200;" 
-d="M568 656l-221 -656h-94l-221 656h88l62 -200h238l63 200h85zM299 68h4q16 57 32 111.5t33 109.5l31 100h-196l31 -100q17 -55 33.5 -109.5t31.5 -111.5z" />
-    <glyph glyph-name="uni2203" unicode="&#x2203;" 
-d="M70 0v71h332v238h-272v71h272v206h-322v70h406v-656h-416z" />
-    <glyph glyph-name="uni2237" unicode="&#x2237;" 
-d="M161 425q-34 0 -57.5 23t-23.5 61t23.5 61.5t57.5 23.5t57.5 -23.5t23.5 -61.5t-23.5 -61t-57.5 -23zM161 67q-34 0 -57.5 23t-23.5 61t23.5 61.5t57.5 23.5t57.5 -23.5t23.5 -61.5t-23.5 -61t-57.5 -23zM440 425q-34 0 -57.5 23t-23.5 61t23.5 61.5t57.5 23.5
-t57.5 -23.5t23.5 -61.5t-23.5 -61t-57.5 -23zM440 67q-34 0 -57.5 23t-23.5 61t23.5 61.5t57.5 23.5t57.5 -23.5t23.5 -61.5t-23.5 -61t-57.5 -23z" />
-    <glyph glyph-name="summation" unicode="&#x2211;" 
-d="M70 -120v53l238 326l-227 326v53h440v-71h-337v-4l212 -303l-222 -305v-4h375v-71h-479z" />
-    <glyph glyph-name="product" unicode="&#x220f;" 
-d="M52 -120v758h496v-758h-85v685h-328v-685h-83z" />
-    <glyph glyph-name="uni2105" unicode="&#x2105;" 
-d="M166 321q-30 0 -55 11t-44 32t-29.5 51.5t-10.5 69.5t12 69.5t32 52t46 32.5t54 11q32 0 55 -12t40 -27l-32 -39q-14 12 -28 20t-32 8q-36 0 -60.5 -32t-24.5 -83t23 -82.5t60 -31.5q23 0 41 9.5t32 21.5l28 -39q-23 -20 -50 -31t-57 -11zM78 32l-49 45l183 188l33 -30z
-M390 391l-33 30l167 203l49 -45zM434 -12q-61 0 -100 44t-39 122t39 120.5t100 42.5t100 -42.5t39 -120.5t-39 -122t-100 -44zM434 38q32 0 55 28.5t23 87.5q0 60 -23 87t-55 27t-55 -27t-23 -87q0 -59 23 -87.5t55 -28.5z" />
-    <glyph glyph-name="uni2113" unicode="&#x2113;" 
-d="M361 -12q-30 0 -57 9.5t-48 30t-35 53t-18 78.5q-26 -18 -54 -36l-33 52q23 15 44.5 30t41.5 31v267q0 58 11 99t30.5 67.5t46.5 38.5t58 12q57 0 93.5 -40t36.5 -115q0 -94 -52 -180.5t-144 -164.5v-25q0 -39 7 -65t19.5 -42t29 -23t34.5 -7q31 0 52.5 13.5t39.5 30.5
-l33 -51q-26 -23 -59 -43t-77 -20zM282 517v-211q59 60 92.5 124t33.5 135q0 50 -16.5 71t-41.5 21q-27 0 -47.5 -33.5t-20.5 -106.5z" />
-    <glyph glyph-name="estimated" unicode="&#x212e;" 
-d="M300 -12q-57 0 -106.5 26.5t-87 72t-59 106.5t-21.5 131t21.5 131t59 106.5t87 72t106.5 26.5t106.5 -26.5t87 -72t59 -106.5t21.5 -131v-8h-414q-4 0 -4 -4v-224q0 -6 2.5 -10.5t5.5 -9.5q26 -29 61.5 -44.5t76.5 -15.5q53 0 100 30.5t82 81.5h38q-41 -60 -97.5 -96
-t-124.5 -36zM160 334h280q6 0 6 6v224q0 12 -10 22q-26 26 -61 40t-73 14q-41 0 -76.5 -15.5t-61.5 -42.5q-3 -5 -5.5 -11t-2.5 -11v-220q0 -6 4 -6z" />
-    <glyph glyph-name="uni2190" unicode="&#x2190;" 
-d="M289 -15l-272 265v4l272 265l43 -46l-201 -187h438v-68h-438l201 -187z" />
-    <glyph glyph-name="arrowup" unicode="&#x2191;" 
-d="M266 -25v439l-187 -201l-46 42l265 272h4l265 -272l-46 -42l-187 201v-439h-68z" />
-    <glyph glyph-name="uni2192" unicode="&#x2192;" 
-d="M309 -15l-42 46l201 187h-439v68h439l-201 187l42 46l273 -265v-4z" />
-    <glyph glyph-name="arrowdown" unicode="&#x2193;" 
-d="M298 -25l-265 273l46 42l187 -201v438h68v-438l187 201l46 -42l-265 -273h-4z" />
-    <glyph glyph-name="uni2196" unicode="&#x2196;" 
-d="M465 33l-311 310l10 -274l-63 -3l-5 380l3 3l380 -5l-2 -63l-275 10l310 -310z" />
-    <glyph glyph-name="uni2197" unicode="&#x2197;" 
-d="M129 32l-48 48l310 310l-274 -9l-3 62l380 5l3 -3l-5 -380l-63 3l10 274z" />
-    <glyph glyph-name="uni2198" unicode="&#x2198;" 
-d="M499 55l-380 5l3 63l274 -10l-310 310l48 48l310 -310l-9 274l62 3l5 -380z" />
-    <glyph glyph-name="uni2199" unicode="&#x2199;" 
-d="M106 55l-3 3l5 380l63 -3l-10 -275l310 310l48 -47l-310 -311l274 10l3 -63z" />
-    <glyph glyph-name="uni21D0" unicode="&#x21d0;" 
-d="M289 -15l-272 265v4l272 265l43 -46l-112 -103h349v-54h-408l-67 -62v-4l67 -62h408v-54h-349l112 -103z" />
-    <glyph glyph-name="uni21D1" unicode="&#x21d1;" 
-d="M79 213l-46 42l265 272h4l265 -272l-46 -42l-103 111v-349h-54v408l-62 67h-4l-62 -67v-408h-54v349z" />
-    <glyph glyph-name="uni21D2" unicode="&#x21d2;" 
-d="M309 -15l-42 46l111 103h-349v54h408l67 62v4l-67 62h-408v54h349l-111 103l42 46l273 -265v-4z" />
-    <glyph glyph-name="uni21D3" unicode="&#x21d3;" 
-d="M298 -25l-265 273l46 42l103 -111v348h54v-407l62 -67h4l62 67v407h54v-348l103 111l46 -42l-265 -273h-4z" />
-    <glyph glyph-name="arrowboth" unicode="&#x2194;" 
-d="M612 254v-4l-179 -213l-45 38l126 143h-428l126 -143l-45 -38l-179 213v4l179 213l45 -38l-126 -143h428l-126 143l45 38z" />
-    <glyph glyph-name="arrowupdn" unicode="&#x2195;" 
-d="M302 -57h-4l-213 178l38 46l143 -126v421l-143 -126l-38 45l213 179h4l213 -179l-38 -45l-143 126v-421l143 126l38 -46z" />
-    <glyph glyph-name="arrowupdnbse" unicode="&#x21a8;" 
-d="M60 -138v64h480v-64h-480zM302 -57h-4l-213 178l38 46l143 -126v421l-143 -126l-38 45l213 179h4l213 -179l-38 -45l-143 126v-421l143 126l38 -46z" />
-    <glyph glyph-name="uni25CF" unicode="&#x25cf;" 
-d="M300 105q-49 0 -90.5 17t-71.5 47t-47 71.5t-17 89.5t17 89.5t47 71.5t71.5 47t90.5 17t90.5 -17t71.5 -47t47 -71.5t17 -89.5t-17 -89.5t-47 -71.5t-71.5 -47t-90.5 -17z" />
-    <glyph glyph-name="uni25CB" unicode="&#x25cb;" 
-d="M300 94q-52 0 -95.5 18t-75 49.5t-49.5 75t-18 93.5t18 93.5t49.5 75t75 49.5t95.5 18t95.5 -18t75 -49.5t49.5 -75t18 -93.5t-18 -93.5t-49.5 -75t-75 -49.5t-95.5 -18zM300 144q39 0 72 14t57.5 38.5t38 58.5t13.5 75q0 40 -13.5 74.5t-38 59t-57.5 38.5t-72 14
-t-72 -14t-57.5 -38.5t-38 -59t-13.5 -74.5q0 -41 13.5 -75t38 -58.5t57.5 -38.5t72 -14z" />
-    <glyph glyph-name="uni25A0" unicode="&#x25a0;" 
-d="M87 117v426h426v-426h-426z" />
-    <glyph glyph-name="uni25A1" unicode="&#x25a1;" 
-d="M73 103v454h454v-454h-454zM126 152h348v356h-348v-356z" />
-    <glyph glyph-name="uni2752" unicode="&#x2752;" 
-d="M73 103v405l59 49h395v-399l-51 -55h-403zM115 143h344v349h-344v-349z" />
-    <glyph glyph-name="uni25C6" unicode="&#x25c6;" 
-d="M300 75l-267 268l267 267l267 -267z" />
-    <glyph glyph-name="triagup" unicode="&#x25b2;" 
-d="M62 105v3l237 492h2l237 -492v-3h-476z" />
-    <glyph glyph-name="uni25B3" unicode="&#x25b3;" 
-d="M62 105v3l237 492h2l237 -492v-3h-476zM137 149h326l-163 347z" />
-    <glyph glyph-name="uni25B6" unicode="&#x25b6;" 
-d="M62 109v475h3l493 -236v-3l-493 -236h-3z" />
-    <glyph glyph-name="uni25B7" unicode="&#x25b7;" 
-d="M62 109v475h3l493 -236v-3l-493 -236h-3zM109 186l345 160l-345 161v-321z" />
-    <glyph glyph-name="triagdn" unicode="&#x25bc;" 
-d="M299 85l-237 492v3h476v-3l-237 -492h-2z" />
-    <glyph glyph-name="uni25BD" unicode="&#x25bd;" 
-d="M299 85l-237 492v3h476v-3l-237 -492h-2zM300 189l163 347h-326z" />
-    <glyph glyph-name="uni25C0" unicode="&#x25c0;" 
-d="M535 109l-493 236v3l493 236h3v-475h-3z" />
-    <glyph glyph-name="uni25C1" unicode="&#x25c1;" 
-d="M535 109l-493 236v3l493 236h3v-475h-3zM491 186v321l-344 -161z" />
-    <glyph glyph-name="triagrt" unicode="&#x25ba;" 
-d="M21 109v475h3l601 -236v-3l-601 -236h-3z" />
-    <glyph glyph-name="triaglf" unicode="&#x25c4;" 
-d="M576 109l-601 236v3l601 236h3v-475h-3z" />
-    <glyph glyph-name="invcircle" unicode="&#x25d9;" 
-d="M68 100v460h464v-460h-464zM300 104q50 0 92 17t72 47.5t47 72t17 89.5t-17 89.5t-47 72t-72 47.5t-92 17t-92 -17t-72 -47.5t-47 -72t-17 -89.5t17 -89.5t47 -72t72 -47.5t92 -17zM300 153q-37 0 -68.5 13t-54 36.5t-35.5 56t-13 71.5t13 71.5t35.5 56t54 36.5t68.5 13
-t68.5 -13t54 -36.5t35.5 -56t13 -71.5t-13 -71.5t-35.5 -56t-54 -36.5t-68.5 -13z" />
-    <glyph glyph-name="uni25C9" unicode="&#x25c9;" 
-d="M300 91q-51 0 -96.5 17.5t-79 50t-53.5 79t-20 105.5q0 58 20 104.5t53.5 79t79 50t96.5 17.5t96.5 -17.5t79 -50t53.5 -79t20 -104.5q0 -59 -20 -105.5t-53.5 -79t-79 -50t-96.5 -17.5zM300 141q39 0 74.5 13.5t62.5 39.5t43.5 63.5t16.5 85.5t-16.5 85.5t-43.5 63.5
-t-62.5 39.5t-74.5 13.5t-74.5 -13.5t-62.5 -39.5t-43.5 -63.5t-16.5 -85.5t16.5 -85.5t43.5 -63.5t62.5 -39.5t74.5 -13.5zM300 199q-28 0 -53 10t-44.5 29t-31 45.5t-11.5 59.5q0 32 11.5 58.5t31 45t44.5 29t53 10.5t53 -10.5t44.5 -29t31 -45t11.5 -58.5
-q0 -33 -11.5 -59.5t-31 -45.5t-44.5 -29t-53 -10z" />
-    <glyph glyph-name="uni2610" unicode="&#x2610;" 
-d="M-25 -10v630l61 51h589v-620l-52 -61h-598zM18 33h532v564h-532v-564z" />
-    <glyph glyph-name="uni2611" unicode="&#x2611;" 
-d="M250 104q-28 77 -62.5 145t-77.5 132l56 38q37 -58 67.5 -121t50.5 -126h4q32 110 84.5 219t118.5 206h-473v-564h532v532q-68 -95 -123.5 -208.5t-90.5 -242.5zM-25 -10v630l61 51h508q51 67 108 124l54 -50l-40.5 -40.5t-40.5 -43.5v-610l-52 -61h-598z" />
-    <glyph glyph-name="uni2713" unicode="&#x2713;" 
-d="M145 -20q-30 83 -66.5 154.5t-84.5 140.5l56 38q42 -63 75.5 -130.5t56.5 -134.5h4q27 89 66 178t87 171.5t103 155.5t114 131l54 -50q-59 -55 -115 -124.5t-105 -151.5t-90 -174.5t-69 -193.5z" />
-    <glyph glyph-name="musicalnote" unicode="&#x266a;" 
-d="M178 -24q-41 0 -71 19t-30 57q0 23 11.5 44t32 37.5t49.5 26t64 9.5q20 0 37 -3.5t24 -8.5v537h50q4 -10 8 -17.5t11.5 -15t19.5 -17t31 -22.5q34 -24 56 -47t35 -46.5t18 -49t5 -53.5q0 -39 -10.5 -73.5t-21.5 -57.5l-35 13q8 24 10.5 44.5t2.5 47.5q0 48 -32.5 89.5
-t-92.5 60.5v-407q0 -41 -14 -72.5t-37.5 -52.5t-55 -31.5t-65.5 -10.5z" />
-    <glyph glyph-name="musicalnotedbl" unicode="&#x266b;" 
-d="M104 -24q-40 0 -70 19t-30 57q0 23 11 44t30.5 37.5t47.5 26t61 9.5q20 0 37 -3.5t24 -8.5v517l378 60v-539q0 -41 -13.5 -72t-36.5 -52t-53.5 -31.5t-63.5 -10.5q-40 0 -69.5 19t-29.5 57q0 23 11 44t30.5 37.5t47 26t60.5 9.5q20 0 37 -3.5t24 -8.5v363l-267 -42v-388
-q0 -41 -13.5 -72.5t-36.5 -52.5t-53 -31.5t-63 -10.5z" />
-    <glyph glyph-name="heart" unicode="&#x2665;" 
-d="M302 -12h-4q-90 97 -146.5 171t-88 135.5t-43 114t-11.5 106.5q0 49 11 86t30.5 62t46 37.5t57.5 12.5q49 0 86 -26.5t58 -93.5h4q21 67 58.5 93.5t85.5 26.5q31 0 57.5 -12.5t46 -37.5t30.5 -62t11 -86q0 -54 -11.5 -106.5t-43 -114t-88 -135.5t-146.5 -171z" />
-    <glyph glyph-name="club" unicode="&#x2663;" 
-d="M105 0v40q33 5 61 17t50 35.5t37.5 61.5t24.5 94h-7q-21 -50 -56.5 -68.5t-72.5 -18.5q-60 0 -96.5 42t-36.5 110q0 35 11 61.5t30 44t45 26.5t55 9q17 0 34 -4.5t40 -15.5l4 4q-25 22 -40 43.5t-22.5 41t-10 36t-2.5 29.5q0 27 11.5 50t31.5 39.5t46.5 26t57.5 9.5
-t57.5 -9.5t46.5 -26t31.5 -39.5t11.5 -50q0 -13 -2.5 -29.5t-10 -36t-22.5 -41t-40 -43.5l4 -4q23 11 40 15.5t34 4.5q29 0 55 -9t45 -26.5t30 -44t11 -61.5q0 -34 -9.5 -62t-27 -48t-42 -31t-54.5 -11q-19 0 -37.5 4.5t-35.5 14.5t-31.5 26.5t-24.5 41.5h-7q9 -56 24.5 -94
-t37.5 -61.5t50 -35.5t61 -17v-40h-390z" />
-    <glyph glyph-name="diamond" unicode="&#x2666;" 
-d="M302 -12h-4l-293 367v4l293 365h4l293 -365v-4z" />
-    <glyph glyph-name="spade" unicode="&#x2660;" 
-d="M105 0v40q33 5 61 17t50 35.5t37.5 61.5t24.5 94h-7q-23 -52 -57 -71t-76 -19q-56 0 -92.5 33t-36.5 103q0 45 13 85t46 87.5t88.5 108.5t141.5 149h4q85 -88 141 -149t89 -108.5t46 -87.5t13 -85q0 -70 -36.5 -103t-92.5 -33q-42 0 -76 19t-57 71h-7q9 -56 24.5 -94
-t37.5 -61.5t50 -35.5t61 -17v-40h-390z" />
-    <glyph glyph-name="smileface" unicode="&#x263a;" 
-d="M300 39q-64 0 -117.5 21.5t-92 60.5t-60 92.5t-21.5 116.5t21.5 116.5t60 92.5t92 60.5t117.5 21.5t117.5 -21.5t92 -60.5t60 -92.5t21.5 -116.5t-21.5 -116.5t-60 -92.5t-92 -60.5t-117.5 -21.5zM300 84q53 0 97.5 18t76 50.5t49 77.5t17.5 100t-17.5 100t-49 77.5
-t-76 50.5t-97.5 18t-97.5 -18t-76 -50.5t-49 -77.5t-17.5 -100t17.5 -100t49 -77.5t76 -50.5t97.5 -18zM221 340q-23 0 -35.5 17.5t-12.5 46.5t12.5 46.5t35.5 17.5t36 -17.5t13 -46.5t-13 -46.5t-36 -17.5zM379 340q-23 0 -36 17.5t-13 46.5t13 46.5t36 17.5t35.5 -17.5
-t12.5 -46.5t-12.5 -46.5t-35.5 -17.5zM300 152q-66 0 -106.5 34.5t-48.5 95.5l34 13q14 -39 45 -57t76 -18t76 18t45 57l34 -13q-8 -61 -48.5 -95.5t-106.5 -34.5zM236 397q13 0 13 15t-13 15t-13 -15t13 -15zM393 397q13 0 13 15t-13 15q-12 0 -12 -15t12 -15z" />
-    <glyph glyph-name="invsmileface" unicode="&#x263b;" 
-d="M300 59q-60 0 -110 20.5t-86 56.5t-55.5 85.5t-19.5 108.5t19.5 108.5t55.5 85.5t86 56.5t110 20.5t110 -20.5t86 -56.5t55.5 -85.5t19.5 -108.5t-19.5 -108.5t-55.5 -85.5t-86 -56.5t-110 -20.5zM220 345q23 0 35 18t12 45q0 26 -12 44t-35 18t-35.5 -18t-12.5 -44
-q0 -27 12.5 -45t35.5 -18zM380 345q23 0 35.5 18t12.5 45q0 26 -12.5 44t-35.5 18t-35 -18t-12 -44q0 -27 12 -45t35 -18zM300 149q68 0 108 33t51 96l-34 13q-15 -39 -47 -58t-78 -19t-78 19t-47 58l-34 -13q11 -63 51 -96t108 -33zM208 394q-7 0 -12 4.5t-5 13.5t5 14
-t12 5q6 0 11 -5t5 -14t-5 -13.5t-11 -4.5zM368 394q-7 0 -12 4.5t-5 13.5t5 14t12 5t12 -5t5 -14t-5 -13.5t-12 -4.5z" />
-    <glyph glyph-name="uni2764" unicode="&#x2764;" 
-d="M302 9h-4q-24 47 -60.5 78.5t-77.5 57.5t-82 51t-74.5 59t-54 82t-20.5 119q0 49 14.5 86.5t41 63t62.5 38.5t79 13q66 0 109.5 -29.5t62.5 -103.5h4q19 74 62.5 103.5t109.5 29.5q43 0 79 -13t62.5 -38.5t41 -63t14.5 -86.5q0 -71 -20.5 -119t-54 -82t-74.5 -59t-82 -51
-t-77.5 -57.5t-60.5 -78.5z" />
-    <glyph glyph-name="uni2615" unicode="&#x2615;" 
-d="M248 39q-64 0 -115.5 23t-88 71t-56.5 121.5t-20 173.5q0 94 74 143.5t206 49.5q121 0 190 -39.5t83 -114.5q58 -11 92.5 -44.5t34.5 -102.5q0 -38 -15 -69t-40.5 -53.5t-59.5 -34.5t-72 -12q-35 -58 -91 -85t-122 -27zM248 80q61 0 110.5 24.5t76.5 81.5q42 0 73 11
-t51.5 29t30.5 42.5t10 51.5q0 46 -29 78t-88 32q0 72 -60.5 112t-174.5 40q-113 0 -173.5 -43.5t-60.5 -118.5q0 -90 17 -154t48 -105.5t74 -61t95 -19.5zM248 326q-93 0 -142.5 22t-73.5 62q15 47 71.5 74.5t144.5 27.5t145 -28t72 -74q-12 -20 -30 -35.5t-44 -26.5
-t-61 -16.5t-82 -5.5zM458 250q10 28 14.5 56t6.5 56q29 0 43 -10t14 -38q0 -32 -23 -48t-55 -16zM310 419q-43 29 -73 39.5t-58 10.5q-25 0 -38 -8t-13 -19q0 -8 6.5 -13.5t24.5 -9.5q-18 -5 -24.5 -10t-6.5 -13q0 -11 13 -19.5t38 -8.5q28 0 58 11t73 40zM314 419
-q23 -14 40 -18.5t26 -4.5q11 0 18.5 6t7.5 17t-7.5 16.5t-18.5 5.5q-9 0 -26 -4t-40 -18z" />
-    <glyph glyph-name="u1F4A9" unicode="&#x1f4a9;" 
-d="M300 14q-80 0 -137 6t-94.5 22.5t-55 44.5t-17.5 73q0 95 91 118q-18 14 -27 35.5t-9 54.5q0 54 30.5 83.5t78.5 38.5q-9 9 -15 20t-6 32q0 25 9.5 39.5t24.5 22.5t34.5 12.5t39.5 9.5t39 12.5t33 23.5q142 -39 142 -118q0 -20 -5 -31.5t-16 -22.5q48 -9 78.5 -38.5
-t30.5 -83.5q0 -33 -9 -54.5t-27 -35.5q91 -23 91 -118q0 -45 -17.5 -73t-55 -44.5t-95 -22.5t-136.5 -6zM300 109q63 0 100 28t43 87h-286q6 -59 43 -87t100 -28zM148 312l28 -2q2 35 10.5 50.5t26.5 15.5t27 -15.5t11 -50.5l28 2q-1 65 -17.5 92.5t-48.5 27.5t-48 -27.5
-t-17 -92.5zM321 312l28 -2q2 35 11 50.5t27 15.5t26.5 -15.5t10.5 -50.5l28 2q-1 65 -17 92.5t-48 27.5t-48.5 -27.5t-17.5 -92.5z" />
-    <glyph glyph-name="u1F916" unicode="&#x1f916;" 
-d="M300 39q-90 0 -159.5 42.5t-103.5 126.5q-63 12 -63 140q0 38 10.5 56.5t35.5 23.5q22 98 96 145.5t184 47.5t184 -47.5t96 -145.5q25 -5 35.5 -23.5t10.5 -56.5q0 -128 -63 -140q-34 -84 -103.5 -126.5t-159.5 -42.5zM300 84q51 0 95 16t76 48.5t50.5 82.5t18.5 119
-q0 61 -16.5 104t-48 70t-76 39.5t-99.5 12.5q-56 0 -100 -12.5t-75.5 -39.5t-48 -70t-16.5 -104q0 -69 18.5 -119t50.5 -82.5t76 -48.5t95 -16zM300 258q-98 0 -145.5 21t-47.5 75q0 83 51.5 121.5t141.5 38.5t141.5 -38.5t51.5 -121.5q0 -54 -47.5 -75t-145.5 -21zM147 332
-l32 -2q2 33 10 47.5t26 14.5t26 -14.5t10 -47.5l32 2q-2 65 -19 92.5t-49 27.5t-49 -27.5t-19 -92.5zM317 332l32 -2q2 33 10 47.5t26 14.5t26 -14.5t10 -47.5l32 2q-2 65 -19 92.5t-49 27.5t-49 -27.5t-19 -92.5zM300 149q-15 0 -26 5.5t-11 18.5q0 9 7 12t30 3t30 -3
-t7 -12q0 -13 -11 -18.5t-26 -5.5z" />
-    <glyph glyph-name="u1F512" unicode="&#x1f512;" 
-d="M85 -70l-40 36v518l40 36h46v153q0 88 44 135.5t125 47.5t125 -47.5t44 -135.5v-153h46l40 -36v-518l-40 -36h-430zM246 59l44 -20h20l44 20l-26 169q29 11 42.5 31.5t13.5 47.5q0 35 -24.5 59t-59.5 24t-59.5 -24t-24.5 -59q0 -27 13.5 -47.5t42.5 -31.5zM199 520h202
-v145q0 60 -25 93t-76 33t-76 -33t-25 -93v-145z" />
-    <glyph glyph-name="female" unicode="&#x2640;" 
-d="M300 299q37 0 68.5 13t54.5 36.5t36 55.5t13 71t-13 71t-36 55t-54.5 36t-68.5 13t-68.5 -13t-55 -36t-36.5 -55t-13 -71t13 -71t36.5 -55.5t55 -36.5t68.5 -13zM267 -46v128h-142v62h142v101q-45 6 -83 25.5t-65.5 50t-43 70t-15.5 84.5q0 49 18 91.5t50 74t76 49
-t96 17.5t96 -17.5t76 -49t50 -74t18 -91.5q0 -45 -15.5 -84.5t-43 -70t-65.5 -50t-83 -25.5v-101h142v-62h-142v-128h-66z" />
-    <glyph glyph-name="male" unicode="&#x2642;" 
-d="M228 9q-52 0 -96 17.5t-76 49t-50 74t-18 92.5q0 49 18 91.5t50 73.5t76 49t96 18q37 0 69.5 -9t59.5 -26l158 155l-176 -7v58l271 3l3 -3l-2 -272h-59l7 177l-150 -154q28 -30 43 -69.5t15 -84.5q0 -50 -18 -92.5t-50 -74t-76 -49t-95 -17.5zM228 66q37 0 68.5 13
-t54.5 36t36.5 55.5t13.5 71.5q0 38 -13.5 70t-36.5 55.5t-54.5 36.5t-68.5 13t-68.5 -13t-55 -36.5t-36.5 -55.5t-13 -70q0 -39 13 -71.5t36.5 -55.5t55 -36t68.5 -13z" />
-    <glyph glyph-name="sun" unicode="&#x263c;" 
-d="M300 192q30 0 55 10t43 28.5t28 44t10 55.5t-10 55.5t-28 44t-43 28.5t-55 10t-55 -10t-43 -28.5t-28 -44t-10 -55.5t10 -55.5t28 -44t43 -28.5t55 -10zM504 83l-88 90q-37 -28 -84 -34v-116h-64v116q-23 3 -43.5 11.5t-38.5 20.5l-90 -88l-43 44l88 87q-29 38 -36 85
-h-108v62h108q3 23 12 43.5t22 38.5l-86 88l43 44l87 -88q18 13 39.5 22t45.5 12v116h64v-116q45 -6 83 -33l89 87l43 -44l-88 -86q28 -36 36 -84h108v-62h-108q-7 -46 -35 -83l87 -89z" />
-    <glyph glyph-name="lozenge" unicode="&#x25ca;" 
-d="M262 -10l-166 339l166 338h76l166 -338l-166 -339h-76zM298 59h4l64 133l65 137l-65 135l-64 134h-4l-64 -134l-65 -135l65 -137z" />
-    <glyph glyph-name="house" unicode="&#x2302;" 
-d="M49 0v360l215 307h72l215 -307v-360h-502zM119 60h362v278l-97 143l-82 125h-4l-82 -125l-97 -143v-278z" />
-    <glyph glyph-name="uni02B9" unicode="&#x2b9;" 
-d="M257 434l22 256h81l-15 -100l-34 -156h-54z" />
-    <glyph glyph-name="uni02BB" unicode="&#x2bb;" 
-d="M299 350q-39 0 -64.5 31.5t-25.5 88.5q0 75 38 134.5t106 94.5l27 -48q-46 -27 -73 -66.5t-30 -91.5q12 6 26 6q31 0 50.5 -20t19.5 -52q0 -35 -21 -56t-53 -21z" />
-    <glyph glyph-name="uni02BC" unicode="&#x2bc;" 
-d="M245 350l-28 48q47 26 74 65.5t30 92.5q-12 -6 -26 -6q-32 0 -51.5 19.5t-19.5 51.5q0 35 21 56.5t53 21.5q40 0 65 -32t25 -89q0 -75 -38 -134t-105 -94z" />
-    <glyph glyph-name="uni02BE" unicode="&#x2be;" 
-d="M226 538v50q58 0 88 24.5t30 69.5t-30 70t-88 25v49q91 3 137.5 -36t46.5 -108t-46.5 -108t-137.5 -36z" />
-    <glyph glyph-name="uni02BF" unicode="&#x2bf;" 
-d="M374 538q-91 -3 -137.5 36t-46.5 108t46.5 108t137.5 36v-49q-58 0 -88 -25t-30 -70t30 -69.5t88 -24.5v-50z" />
-    <glyph glyph-name="uni02C1" unicode="&#x2c1;" 
-d="M282 438v91q-25 16 -47.5 33.5t-39 37.5t-26 43.5t-9.5 52.5q0 32 12.5 56.5t34 41t49.5 25t59 8.5q48 0 81.5 -18t55.5 -41l-34 -40q-19 19 -42.5 32.5t-55.5 13.5q-43 0 -69.5 -21t-26.5 -58q0 -42 30 -74.5t91 -64.5v-118h-63z" />
-    <glyph glyph-name="uni02D0" unicode="&#x2d0;" 
-d="M202 0l93 162h10l93 -162h-196zM295 343l-93 160h196l-93 -160h-10z" />
-    <glyph glyph-name="uni02D1" unicode="&#x2d1;" 
-d="M295 343l-93 160h196l-93 -160h-10z" />
-    <glyph glyph-name="uni02DE" unicode="&#x2de;" 
-d="M329 230q-32 0 -57 21t-39 75l-105 -43v63l146 60q5 -38 11.5 -62.5t14 -38t16.5 -18.5t19 -5q12 0 21 4.5t17 10.5l22 -43q-12 -9 -28 -16.5t-38 -7.5z" />
-    <glyph glyph-name="grave" unicode="`" 
-d="M321 568l-157 153l58 56l142 -168z" />
-    <glyph glyph-name="acute" unicode="&#xb4;" 
-d="M279 568l-43 41l142 168l58 -56z" />
-    <glyph glyph-name="circumflex" unicode="&#x2c6;" 
-d="M180 568l-35 32l114 140h82l114 -140l-35 -32l-118 113h-4z" />
-    <glyph glyph-name="caron" unicode="&#x2c7;" 
-d="M259 574l-114 140l35 32l118 -113h4l118 113l35 -32l-114 -140h-82z" />
-    <glyph glyph-name="uni02C8" unicode="&#x2c8;" 
-d="M272 397l-23 319h102l-23 -319h-56z" />
-    <glyph glyph-name="uni02C9" unicode="&#x2c9;" 
-d="M167 601v57h266v-57h-266z" />
-    <glyph glyph-name="uni02CA" unicode="&#x2ca;" 
-d="M279 568l-43 41l142 168l58 -56z" />
-    <glyph glyph-name="uni02CB" unicode="&#x2cb;" 
-d="M321 568l-157 153l58 56l142 -168z" />
-    <glyph glyph-name="uni02CC" unicode="&#x2cc;" 
-d="M249 -254l23 320h56l23 -320h-102z" />
-    <glyph glyph-name="tilde" unicode="&#x2dc;" 
-d="M372 577q-27 0 -46 13t-35 29t-30.5 29t-31.5 13q-23 0 -34 -22t-13 -57l-55 3q1 29 7.5 54t18.5 43t30.5 28.5t44.5 10.5q27 0 46 -13t35 -29t30.5 -29t32.5 -13q22 0 33 22t13 57l55 -4q-1 -29 -7.5 -53.5t-18.5 -42.5t-30.5 -28.5t-44.5 -10.5z" />
-    <glyph glyph-name="dieresis" unicode="&#xa8;" 
-d="M203 588q-24 0 -39.5 16t-15.5 40q0 23 15.5 39.5t39.5 16.5t39.5 -16.5t15.5 -39.5q0 -24 -15.5 -40t-39.5 -16zM397 588q-24 0 -39.5 16t-15.5 40q0 23 15.5 39.5t39.5 16.5t39.5 -16.5t15.5 -39.5q0 -24 -15.5 -40t-39.5 -16z" />
-    <glyph glyph-name="macron" unicode="&#xaf;" 
-d="M167 601v57h266v-57h-266z" />
-    <glyph glyph-name="breve" unicode="&#x2d8;" 
-d="M300 571q-40 0 -69 13t-47.5 34.5t-28 48.5t-11.5 55l51 8q3 -19 10.5 -37.5t20.5 -33.5t31.5 -24t42.5 -9t42.5 9t31.5 24t20.5 33.5t10.5 37.5l51 -8q-2 -28 -11.5 -55t-28.5 -48.5t-47.5 -34.5t-68.5 -13z" />
-    <glyph glyph-name="ring" unicode="&#x2da;" 
-d="M300 569q-52 0 -81 27.5t-29 68.5t29 68.5t81 27.5t81 -27.5t29 -68.5t-29 -68.5t-81 -27.5zM300 606q24 0 40.5 17t16.5 42q0 26 -16.5 42.5t-40.5 16.5t-40.5 -16.5t-16.5 -42.5q0 -25 16.5 -42t40.5 -17z" />
-    <glyph glyph-name="hungarumlaut" unicode="&#x2dd;" 
-d="M243 568l-46 21l87 172l58 -28zM394 568l-46 21l87 172l58 -28z" />
-    <glyph glyph-name="dotaccent" unicode="&#x2d9;" 
-d="M300 588q-28 0 -47 17.5t-19 46.5t19 46.5t47 17.5t47 -17.5t19 -46.5t-19 -46.5t-47 -17.5z" />
-    <glyph glyph-name="cedilla" unicode="&#xb8;" 
-d="M213 -226l-8 40q63 5 86 16.5t23 33.5q0 20 -17 31t-60 17l40 96h54l-26 -72q35 -8 54 -24t19 -47q0 -44 -42.5 -65.5t-122.5 -25.5z" />
-    <glyph glyph-name="ogonek" unicode="&#x2db;" 
-d="M312 -225q-44 0 -73 22.5t-29 70.5q0 23 8 43t20.5 37t27.5 30.5t29 24.5h58q-38 -27 -60 -56.5t-22 -62.5q0 -29 18 -42t40 -13q18 0 31.5 6.5t22.5 14.5l24 -39q-17 -16 -41 -26t-54 -10z" />
-    <glyph glyph-name="uni25CC" unicode="&#x25cc;" 
-d="M299 -12q-14 0 -24 9.5t-10 27.5q0 17 10 26.5t24 9.5q16 0 26 -9.5t10 -26.5q0 -18 -10 -27.5t-26 -9.5zM193 15q-14 0 -24.5 9.5t-10.5 28.5q0 17 10.5 26t24.5 9q15 0 25.5 -9t10.5 -26q0 -19 -10 -28.5t-26 -9.5zM405 15q-14 0 -24 9.5t-10 28.5q0 17 10 26t24 9
-q15 0 25.5 -9t10.5 -26q0 -19 -9.5 -28.5t-26.5 -9.5zM115 97q-14 0 -24 9.5t-10 26.5q0 18 10 28t24 10q16 0 26 -10t10 -28q0 -17 -9.5 -26.5t-26.5 -9.5zM484 97q-14 0 -24.5 9.5t-10.5 26.5q0 18 10.5 28t24.5 10q15 0 25 -10t10 -28q0 -17 -9 -26.5t-26 -9.5zM87 206
-q-14 0 -24 10t-10 27q0 18 10 27t24 9q16 0 26.5 -9t10.5 -27q0 -17 -10 -27t-27 -10zM511 206q-15 0 -25 10t-10 27q0 18 10 27t25 9q14 0 25 -9t11 -27q0 -17 -10 -27t-26 -10zM115 316q-14 0 -24 10t-10 28t10 27t24 9q16 0 26 -9t10 -27t-9.5 -28t-26.5 -10zM484 316
-q-14 0 -24.5 9.5t-10.5 27.5q0 17 10.5 26.5t24.5 9.5q15 0 25 -9.5t10 -26.5q0 -37 -35 -37zM193 398q-14 0 -24.5 9.5t-10.5 26.5q0 19 10.5 28t24.5 9q15 0 25.5 -9t10.5 -28q0 -17 -10 -26.5t-26 -9.5zM405 397q-14 0 -24 10t-10 27q0 18 10 27.5t24 9.5q15 0 25.5 -9.5
-t10.5 -27.5q0 -17 -9.5 -27t-26.5 -10zM299 424q-14 0 -24 10t-10 28q0 17 10 26.5t24 9.5q16 0 26 -9.5t10 -26.5q0 -18 -10 -28t-26 -10z" />
-    <glyph glyph-name="uni0300" unicode="&#x300;" 
-d="M321 568l-157 153l58 56l142 -168z" />
-    <glyph glyph-name="uni0300.cap" 
-d="M329 697l-152 115l47 55l141 -128z" />
-    <glyph glyph-name="uni0300.g" 
-d="M276 558l-67 197l85 15l39 -201z" />
-    <glyph glyph-name="uni0301" unicode="&#x301;" 
-d="M279 568l-43 41l142 168l58 -56z" />
-    <glyph glyph-name="uni0301.cap" 
-d="M271 697l-36 42l141 128l47 -55z" />
-    <glyph glyph-name="uni0301.g" 
-d="M322 559l-57 10l47 230l85 -15z" />
-    <glyph glyph-name="uni0302" unicode="&#x302;" 
-d="M180 568l-35 32l114 140h82l114 -140l-35 -32l-118 113h-4z" />
-    <glyph glyph-name="uni0302.cap" 
-d="M188 699l-36 26l105 113h86l105 -113l-36 -26l-110 93h-4z" />
-    <glyph glyph-name="uni0303" unicode="&#x303;" 
-d="M372 577q-27 0 -46 13t-35 29t-30.5 29t-31.5 13q-23 0 -34 -22t-13 -57l-55 3q1 29 7.5 54t18.5 43t30.5 28.5t44.5 10.5q27 0 46 -13t35 -29t30.5 -29t32.5 -13q22 0 33 22t13 57l55 -4q-1 -29 -7.5 -53.5t-18.5 -42.5t-30.5 -28.5t-44.5 -10.5z" />
-    <glyph glyph-name="uni0303.cap" 
-d="M375 709q-28 0 -48 11t-36.5 24.5t-31 24.5t-32.5 11q-19 0 -32 -17t-16 -49l-56 4q3 57 30 90t72 33q28 0 48 -11t36.5 -24.5t31 -24.5t32.5 -11q40 0 48 66l56 -4q-3 -58 -30 -90.5t-72 -32.5z" />
-    <glyph glyph-name="uni0304" unicode="&#x304;" 
-d="M167 601v57h266v-57h-266z" />
-    <glyph glyph-name="uni0304.cap" 
-d="M166 735v57h268v-57h-268z" />
-    <glyph glyph-name="uni0305" unicode="&#x305;" 
-d="M167 601v57h266v-57h-266z" />
-    <glyph glyph-name="uni0305.cap" 
-d="M166 735v57h268v-57h-268z" />
-    <glyph glyph-name="uni0306" unicode="&#x306;" 
-d="M300 571q-40 0 -69 13t-47.5 34.5t-28 48.5t-11.5 55l51 8q3 -19 10.5 -37.5t20.5 -33.5t31.5 -24t42.5 -9t42.5 9t31.5 24t20.5 33.5t10.5 37.5l51 -8q-2 -28 -11.5 -55t-28.5 -48.5t-47.5 -34.5t-68.5 -13z" />
-    <glyph glyph-name="uni0306.c" 
-d="M300 572q-42 0 -71 12.5t-48 33t-28 47.5t-10 56l68 4q1 -21 5.5 -40.5t15 -33.5t27 -22.5t41.5 -8.5t41.5 8.5t27 22.5t15 33.5t5.5 40.5l68 -4q-2 -29 -10.5 -56t-27.5 -47.5t-48 -33t-71 -12.5z" />
-    <glyph glyph-name="uni0306.cap" 
-d="M300 705q-35 0 -61 10.5t-44 28t-28 41t-13 49.5l50 8q6 -35 29.5 -59.5t66.5 -24.5t66.5 24.5t29.5 59.5l50 -8q-3 -26 -13 -49.5t-28 -41t-44 -28t-61 -10.5z" />
-    <glyph glyph-name="uni0306.ccap" 
-d="M300 705q-42 0 -70 10.5t-45.5 28.5t-26 41t-9.5 48l72 4q1 -35 19 -60.5t60 -25.5q21 0 35.5 7t24 18.5t14 27t5.5 33.5l72 -4q-2 -25 -10 -48t-25.5 -41t-45.5 -28.5t-70 -10.5z" />
-    <glyph glyph-name="uni0307" unicode="&#x307;" 
-d="M300 588q-28 0 -47 17.5t-19 46.5t19 46.5t47 17.5t47 -17.5t19 -46.5t-19 -46.5t-47 -17.5z" />
-    <glyph glyph-name="uni0307.cap" 
-d="M300 714q-25 0 -42 15.5t-17 41.5q0 25 17 40.5t42 15.5t42 -15.5t17 -40.5q0 -26 -17 -41.5t-42 -15.5z" />
-    <glyph glyph-name="uni0308" unicode="&#x308;" 
-d="M203 588q-24 0 -39.5 16t-15.5 40q0 23 15.5 39.5t39.5 16.5t39.5 -16.5t15.5 -39.5q0 -24 -15.5 -40t-39.5 -16zM397 588q-24 0 -39.5 16t-15.5 40q0 23 15.5 39.5t39.5 16.5t39.5 -16.5t15.5 -39.5q0 -24 -15.5 -40t-39.5 -16z" />
-    <glyph glyph-name="uni0308.cap" 
-d="M209 715q-22 0 -36.5 14t-14.5 37t14.5 36.5t36.5 13.5t36 -13.5t14 -36.5t-14 -37t-36 -14zM391 715q-22 0 -36 14t-14 37t14 36.5t36 13.5t36.5 -13.5t14.5 -36.5t-14.5 -37t-36.5 -14z" />
-    <glyph glyph-name="uni0309" unicode="&#x309;" 
-d="M268 572l-9 40q24 6 40 16.5t16 30.5q0 43 -83 47l5 54q69 -2 106 -25.5t37 -68.5q0 -22 -9.5 -37.5t-25 -27t-35.5 -18.5t-42 -11z" />
-    <glyph glyph-name="uni0309.cap" 
-d="M268 698l-9 38q24 7 40 17t16 29q0 39 -83 42l9 48q66 -2 102 -22.5t36 -58.5q0 -22 -9 -37.5t-24.5 -27t-35.5 -18t-42 -10.5z" />
-    <glyph glyph-name="uni0310" unicode="&#x310;" 
-d="M300 571q-41 0 -70.5 13t-49 34.5t-29.5 48.5t-12 55l48 8q3 -20 11 -39.5t22 -34.5t34 -24.5t46 -9.5q25 0 45 9.5t34.5 24.5t22.5 34.5t11 39.5l48 -8q-2 -28 -12 -55t-29.5 -48.5t-49 -34.5t-70.5 -13zM300 701q-24 0 -40 15t-16 41t16 41t40 15t40 -15t16 -41
-t-16 -41t-40 -15z" />
-    <glyph glyph-name="uni0310.cap" 
-d="M300 705q-36 0 -63 10.5t-46 28t-30 41t-14 49.5l46 8q8 -38 34.5 -63t72.5 -25t72.5 25t34.5 63l46 -8q-3 -26 -14 -49.5t-29.5 -41t-46 -28t-63.5 -10.5zM300 821q-22 0 -37 14.5t-15 37.5t15 37.5t37 14.5t37 -14.5t15 -37.5t-15 -37.5t-37 -14.5z" />
-    <glyph glyph-name="uni030A" unicode="&#x30a;" 
-d="M300 569q-52 0 -81 27.5t-29 68.5t29 68.5t81 27.5t81 -27.5t29 -68.5t-29 -68.5t-81 -27.5zM300 606q24 0 40.5 17t16.5 42q0 26 -16.5 42.5t-40.5 16.5t-40.5 -16.5t-16.5 -42.5q0 -25 16.5 -42t40.5 -17z" />
-    <glyph glyph-name="uni030A.cap" 
-d="M300 699q-42 0 -69.5 24.5t-27.5 65.5q0 42 27.5 66.5t69.5 24.5t69.5 -24.5t27.5 -66.5q0 -41 -27.5 -65.5t-69.5 -24.5zM300 735q20 0 35.5 14t15.5 40t-15.5 40t-35.5 14q-22 0 -37 -14t-15 -40t15 -40t37 -14z" />
-    <glyph glyph-name="uni030B" unicode="&#x30b;" 
-d="M243 568l-46 21l87 172l58 -28zM394 568l-46 21l87 172l58 -28z" />
-    <glyph glyph-name="uni030B.cap" 
-d="M228 703l-43 21l92 152l57 -32zM388 703l-43 21l93 152l56 -32z" />
-    <glyph glyph-name="uni030C" unicode="&#x30c;" 
-d="M259 574l-114 140l35 32l118 -113h4l118 113l35 -32l-114 -140h-82z" />
-    <glyph glyph-name="uni030C.cap" 
-d="M257 706l-105 113l36 26l110 -92h4l110 92l36 -26l-105 -113h-86z" />
-    <glyph glyph-name="uni030C.a" 
-d="M258 548l-3 268h74v-81l-14 -187h-57z" />
-    <glyph glyph-name="uni030F" unicode="&#x30f;" 
-d="M206 568l-99 165l58 28l87 -172zM357 568l-99 165l58 28l87 -172z" />
-    <glyph glyph-name="uni030F.cap" 
-d="M212 703l-106 141l56 32l93 -152zM372 703l-106 141l57 32l92 -152z" />
-    <glyph glyph-name="uni0311" unicode="&#x311;" 
-d="M195 568l-51 8q2 28 11.5 55t28 48.5t47.5 34.5t69 13t68.5 -13t47.5 -34.5t28.5 -48.5t11.5 -55l-51 -8q-3 19 -10.5 37.5t-20.5 33.5t-31.5 24t-42.5 9t-42.5 -9t-31.5 -24t-20.5 -33.5t-10.5 -37.5z" />
-    <glyph glyph-name="uni0311.cap" 
-d="M204 704l-50 8q3 26 13 49.5t28 41t44 28t61 10.5t61 -10.5t44 -28t28 -41t13 -49.5l-50 -8q-6 35 -29.5 59.5t-66.5 24.5t-66.5 -24.5t-29.5 -59.5z" />
-    <glyph glyph-name="uni0312" unicode="&#x312;" 
-d="M303 553q-26 0 -42 19.5t-16 55.5q0 37 21 68.5t69 50.5l18 -34q-32 -14 -47 -32t-15 -38q8 2 13 2q17 0 31 -10.5t14 -33.5t-13 -35.5t-33 -12.5z" />
-    <glyph glyph-name="uni0312.g" 
-d="M332 574q-22 4 -42 10.5t-35.5 17.5t-25 26.5t-9.5 37.5q0 45 37 68.5t106 25.5l5 -54q-83 -4 -83 -47q0 -20 16 -30.5t40 -16.5z" />
-    <glyph glyph-name="uni0313" unicode="&#x313;" 
-d="M265 553l-18 34q32 14 47 32t15 38q-8 -2 -13 -2q-17 0 -31 10.5t-14 33.5t13 35.5t33 12.5q26 0 42 -19.5t16 -55.5q0 -37 -21 -68.5t-69 -50.5z" />
-    <glyph glyph-name="uni0313.g" 
-d="M268 572l-9 40q24 6 40 16.5t16 30.5q0 43 -83 47l5 54q69 -2 106 -25.5t37 -68.5q0 -22 -9.5 -37.5t-25 -27t-35.5 -18.5t-42 -11z" />
-    <glyph glyph-name="uni0318" unicode="&#x318;" 
-d="M339 -249v72h-115v47h115v72h53v-191h-53z" />
-    <glyph glyph-name="uni0319" unicode="&#x319;" 
-d="M208 -249v191h53v-72h115v-47h-115v-72h-53z" />
-    <glyph glyph-name="uni031A" unicode="&#x31a;" 
-d="M335 573v94h-111v47h161v-141h-50z" />
-    <glyph glyph-name="uni031B" unicode="&#x31b;" 
-d="M299 434l-8 41q84 13 84 90q0 15 -4 28t-10 27l64 30q10 -18 16.5 -37t6.5 -42q0 -32 -12 -55.5t-32 -40.5t-47 -27t-58 -14z" />
-    <glyph glyph-name="uni031C" unicode="&#x31c;" 
-d="M362 -257q-69 -2 -103.5 24t-34.5 71q0 46 34.5 72t103.5 24v-36q-38 0 -57.5 -16t-19.5 -44q0 -27 19.5 -43t57.5 -16v-36z" />
-    <glyph glyph-name="uni031D" unicode="&#x31d;" 
-d="M184 -211v47h89v106h54v-106h89v-47h-232z" />
-    <glyph glyph-name="uni031E" unicode="&#x31e;" 
-d="M273 -249v106h-89v47h232v-47h-89v-106h-54z" />
-    <glyph glyph-name="uni031F" unicode="&#x31f;" 
-d="M273 -249v72h-89v47h89v72h54v-72h89v-47h-89v-72h-54z" />
-    <glyph glyph-name="uni0320" unicode="&#x320;" 
-d="M184 -150v47h232v-47h-232z" />
-    <glyph glyph-name="uni0323" unicode="&#x323;" 
-d="M300 -214q-28 0 -47 17.5t-19 46.5t19 46.5t47 17.5t47 -17.5t19 -46.5t-19 -46.5t-47 -17.5z" />
-    <glyph glyph-name="uni0324" unicode="&#x324;" 
-d="M203 -207q-24 0 -39.5 16t-15.5 40q0 23 15.5 39.5t39.5 16.5t39.5 -16.5t15.5 -39.5q0 -24 -15.5 -40t-39.5 -16zM397 -207q-24 0 -39.5 16t-15.5 40q0 23 15.5 39.5t39.5 16.5t39.5 -16.5t15.5 -39.5q0 -24 -15.5 -40t-39.5 -16z" />
-    <glyph glyph-name="uni0325" unicode="&#x325;" 
-d="M300 -243q-52 0 -81 27.5t-29 68.5t29 68.5t81 27.5t81 -27.5t29 -68.5t-29 -68.5t-81 -27.5zM300 -206q24 0 40.5 17t16.5 42q0 26 -16.5 42.5t-40.5 16.5t-40.5 -16.5t-16.5 -42.5q0 -25 16.5 -42t40.5 -17z" />
-    <glyph glyph-name="uni0326" unicode="&#x326;" 
-d="M213 -226l-8 40q63 5 86 16.5t23 31.5t-18 29.5t-53 12.5l18 38q65 -8 91 -25.5t26 -51.5q0 -44 -42.5 -65.5t-122.5 -25.5z" />
-    <glyph glyph-name="uni0326.a" 
-d="M339 575q-65 7 -91 25t-26 52q0 44 42.5 65.5t122.5 26.5l8 -41q-63 -4 -86 -15.5t-23 -32.5q0 -20 18 -29.5t53 -12.5z" />
-    <glyph glyph-name="uni0327" unicode="&#x327;" 
-d="M213 -226l-8 40q63 5 86 16.5t23 33.5q0 20 -17 31t-60 17l40 96h54l-26 -72q35 -8 54 -24t19 -47q0 -44 -42.5 -65.5t-122.5 -25.5z" />
-    <glyph glyph-name="uni0327.cap" 
-d="M213 -226l-8 40q63 5 86 16.5t23 33.5q0 20 -17 31t-60 17l40 96h54l-26 -72q35 -8 54 -24t19 -47q0 -44 -42.5 -65.5t-122.5 -25.5z" />
-    <glyph glyph-name="uni0328" unicode="&#x328;" 
-d="M312 -225q-44 0 -73 22.5t-29 70.5q0 23 8 43t20.5 37t27.5 30.5t29 24.5h58q-38 -27 -60 -56.5t-22 -62.5q0 -29 18 -42t40 -13q18 0 31.5 6.5t22.5 14.5l24 -39q-17 -16 -41 -26t-54 -10z" />
-    <glyph glyph-name="uni0328.cap" 
-d="M314 -225q-45 0 -74 22.5t-29 68.5q0 23 8 43.5t20.5 37.5t27.5 31t29 25h61q-37 -26 -59 -56t-22 -63q0 -26 17 -38.5t38 -12.5q16 0 28 6.5t21 14.5l25 -43q-17 -15 -39.5 -25.5t-51.5 -10.5z" />
-    <glyph glyph-name="uni0329" unicode="&#x329;" 
-d="M265 -266l6 195h58l6 -195h-70z" />
-    <glyph glyph-name="uni032A" unicode="&#x32a;" 
-d="M177 -226v144h246v-144h-48v97h-150v-97h-48z" />
-    <glyph glyph-name="uni032C" unicode="&#x32c;" 
-d="M259 -223l-114 140l35 32l118 -113h4l118 113l35 -32l-114 -140h-82z" />
-    <glyph glyph-name="uni032E" unicode="&#x32e;" 
-d="M300 -230q-40 0 -69 13t-47.5 34.5t-28 48.5t-11.5 55l51 8q3 -19 10.5 -37.5t20.5 -33.5t31.5 -24t42.5 -9t42.5 9t31.5 24t20.5 33.5t10.5 37.5l51 -8q-2 -28 -11.5 -55t-28.5 -48.5t-47.5 -34.5t-68.5 -13z" />
-    <glyph glyph-name="uni032F" unicode="&#x32f;" 
-d="M195 -236l-51 8q2 28 11.5 55t28 48.5t47.5 34.5t69 13t68.5 -13t47.5 -34.5t28.5 -48.5t11.5 -55l-51 -8q-3 19 -10.5 37.5t-20.5 33.5t-31.5 24t-42.5 9t-42.5 -9t-31.5 -24t-20.5 -33.5t-10.5 -37.5z" />
-    <glyph glyph-name="uni0330" unicode="&#x330;" 
-d="M372 -222q-27 0 -46 13t-35 29t-30.5 29t-31.5 13q-23 0 -34 -22t-13 -57l-55 3q1 29 7.5 54t18.5 43t30.5 28.5t44.5 10.5q27 0 46 -13t35 -29t30.5 -29t32.5 -13q22 0 33 22t13 57l55 -4q-1 -29 -7.5 -53.5t-18.5 -42.5t-30.5 -28.5t-44.5 -10.5z" />
-    <glyph glyph-name="uni0331" unicode="&#x331;" 
-d="M167 -169v57h266v-57h-266z" />
-    <glyph glyph-name="uni0334" unicode="&#x334;" 
-d="M394 173q-33 0 -57 13t-44.5 29t-39.5 29t-41 13t-33 -21.5t-13 -56.5l-55 10q1 27 7 50.5t17.5 40.5t29 27t41.5 10q33 0 57.5 -13t45 -29t39 -29t40.5 -13t33 21.5t13 55.5l55 -9q-2 -27 -7.5 -50.5t-17 -40.5t-29 -27t-41.5 -10z" />
-    <glyph glyph-name="uni0339" unicode="&#x339;" 
-d="M238 -257v36q38 0 57.5 16t19.5 43q0 28 -19.5 44t-57.5 16v36q69 2 103.5 -24t34.5 -72q0 -45 -34.5 -71t-103.5 -24z" />
-    <glyph glyph-name="uni033A" unicode="&#x33a;" 
-d="M177 -225v143h48v-96h150v96h48v-143h-246z" />
-    <glyph glyph-name="uni033B" unicode="&#x33b;" 
-d="M177 -240v163h246v-163h-246zM225 -200h150v84h-150v-84z" />
-    <glyph glyph-name="uni033C" unicode="&#x33c;" 
-d="M182 -234l-52 6q-1 78 24 113t73 35q26 0 45 -13t27 -45h2q8 32 27.5 45t44.5 13q48 0 73 -35t24 -113l-52 -6q0 60 -13 80t-36 20t-34 -21t-11 -59v-19h-48v19q0 38 -11.5 59t-34.5 21t-35.5 -20t-12.5 -80z" />
-    <glyph glyph-name="uni033D" unicode="&#x33d;" 
-d="M238 565l-32 30l61 57l-61 57l32 30l62 -58l62 58l32 -30l-61 -57l61 -57l-32 -30l-62 58z" />
-    <glyph glyph-name="uni0342" unicode="&#x342;" 
-d="M372 577q-27 0 -46 13t-35 29t-30.5 29t-31.5 13q-23 0 -34 -22t-13 -57l-55 3q1 29 7.5 54t18.5 43t30.5 28.5t44.5 10.5q27 0 46 -13t35 -29t30.5 -29t32.5 -13q22 0 33 22t13 57l55 -4q-1 -29 -7.5 -53.5t-18.5 -42.5t-30.5 -28.5t-44.5 -10.5z" />
-    <glyph glyph-name="uni0342.cap" 
-d="M375 709q-28 0 -48 11t-36.5 24.5t-31 24.5t-32.5 11q-19 0 -32 -17t-16 -49l-56 4q3 57 30 90t72 33q28 0 48 -11t36.5 -24.5t31 -24.5t32.5 -11q40 0 48 66l56 -4q-3 -58 -30 -90.5t-72 -32.5z" />
-    <glyph glyph-name="uni0345" unicode="&#x345;" 
-d="M344 -201q-77 0 -77 92v47h64q-2 -13 -2 -27.5v-25.5q0 -17 9 -24t21 -7q4 0 8 0.5t14 2.5l9 -49q-10 -4 -19.5 -6.5t-26.5 -2.5z" />
-    <glyph glyph-name="uni035F" unicode="&#x35f;" 
-d="M-193 -171v58h986v-58h-986z" />
-    <glyph glyph-name="uni0361" unicode="&#x361;" 
-d="M-130 600l-24 42q101 62 213.5 94.5t240.5 32.5t240.5 -32.5t213.5 -94.5l-24 -42q-96 58 -208.5 84.5t-221.5 26.5t-221.5 -26.5t-208.5 -84.5z" />
-    <glyph glyph-name="uni03080301" 
-d="M204 588q-20 0 -33 13t-13 32q0 20 13 33t33 13t32.5 -13t12.5 -33q0 -19 -12.5 -32t-32.5 -13zM396 588q-20 0 -32.5 13t-12.5 32q0 20 12.5 33t32.5 13t33 -13t13 -33q0 -19 -13 -32t-33 -13zM293 705l-35 24l82 115l49 -34z" />
-    <glyph glyph-name="uni03080301.cap" 
-d="M197 715q-20 0 -32.5 13t-12.5 33t12.5 32.5t32.5 12.5t33 -12.5t13 -32.5t-13 -33t-33 -13zM403 715q-20 0 -33 13t-13 33t13 32.5t33 12.5t32.5 -12.5t12.5 -32.5t-12.5 -33t-32.5 -13zM299 823l-37 26l95 119l53 -36z" />
-    <glyph glyph-name="uni03080301.g" 
-d="M185 595q-20 0 -33 11.5t-13 31.5q0 21 13 33.5t33 12.5t33 -12.5t13 -33.5q0 -20 -13 -31.5t-33 -11.5zM258 573l49 226l68 -13l-75 -222zM415 595q-20 0 -33 11.5t-13 31.5q0 21 13 33.5t33 12.5t33 -12.5t13 -33.5q0 -20 -13 -31.5t-33 -11.5z" />
-    <glyph glyph-name="uni03080300" 
-d="M204 588q-20 0 -33 13t-13 32q0 20 13 33t33 13t32.5 -13t12.5 -33q0 -19 -12.5 -32t-32.5 -13zM396 588q-20 0 -32.5 13t-12.5 32q0 20 12.5 33t32.5 13t33 -13t13 -33q0 -19 -13 -32t-33 -13zM307 705l-96 105l49 34l82 -115z" />
-    <glyph glyph-name="uni03080300.cap" 
-d="M197 715q-20 0 -32.5 13t-12.5 33t12.5 32.5t32.5 12.5t33 -12.5t13 -32.5t-13 -33t-33 -13zM403 715q-20 0 -33 13t-13 33t13 32.5t33 12.5t32.5 -12.5t12.5 -32.5t-12.5 -33t-32.5 -13zM301 823l-111 109l53 36l95 -119z" />
-    <glyph glyph-name="uni03080300.g" 
-d="M187 595q-18 0 -30 11.5t-12 30.5t12 30.5t30 11.5q17 0 29 -11.5t12 -30.5t-12 -30.5t-29 -11.5zM297 563l-64 197l66 14l41 -201zM413 595q-17 0 -29 11.5t-12 30.5t12 30.5t29 11.5q18 0 30 -11.5t12 -30.5t-12 -30.5t-30 -11.5z" />
-    <glyph glyph-name="uni03080303" 
-d="M204 588q-20 0 -33 13t-13 32q0 20 13 33t33 13t32.5 -13t12.5 -33q0 -19 -12.5 -32t-32.5 -13zM396 588q-20 0 -32.5 13t-12.5 32q0 20 12.5 33t32.5 13t33 -13t13 -33q0 -19 -13 -32t-33 -13zM371 707q-26 0 -44 7.5t-33 17t-29 17t-32 7.5q-17 0 -29 -11.5t-15 -34.5
-l-42 4q2 39 23 65.5t59 26.5q26 0 44 -7.5t33 -17t29 -17t32 -7.5q17 0 29 11.5t15 34.5l42 -4q-2 -39 -23 -65.5t-59 -26.5z" />
-    <glyph glyph-name="uni03080304" 
-d="M204 588q-20 0 -33 13t-13 32q0 20 13 33t33 13t32.5 -13t12.5 -33q0 -19 -12.5 -32t-32.5 -13zM396 588q-20 0 -32.5 13t-12.5 32q0 20 12.5 33t32.5 13t33 -13t13 -33q0 -19 -13 -32t-33 -13zM166 750v47h267v-47h-267z" />
-    <glyph glyph-name="uni03080304.cap" 
-d="M197 715q-20 0 -32.5 13t-12.5 33t12.5 32.5t32.5 12.5t33 -12.5t13 -32.5t-13 -33t-33 -13zM403 715q-20 0 -33 13t-13 33t13 32.5t33 12.5t32.5 -12.5t12.5 -32.5t-12.5 -33t-32.5 -13zM166 861v46h268v-46h-268z" />
-    <glyph glyph-name="uni0308030C" 
-d="M204 588q-20 0 -33 13t-13 32q0 20 13 33t33 13t32.5 -13t12.5 -33q0 -19 -12.5 -32t-32.5 -13zM396 588q-20 0 -32.5 13t-12.5 32q0 20 12.5 33t32.5 13t33 -13t13 -33q0 -19 -13 -32t-33 -13zM266 720l-94 92l30 28l96 -73h4l96 73l30 -28l-94 -92h-68z" />
-    <glyph glyph-name="uni0308030C.cap" 
-d="M197 715q-20 0 -32.5 13t-12.5 33t12.5 32.5t32.5 12.5t33 -12.5t13 -32.5t-13 -33t-33 -13zM403 715q-20 0 -33 13t-13 33t13 32.5t33 12.5t32.5 -12.5t12.5 -32.5t-12.5 -33t-32.5 -13zM264 839l-99 96l33 27l100 -75h4l100 75l33 -27l-99 -96h-72z" />
-    <glyph glyph-name="uni03020301" 
-d="M195 570l-29 34l100 92h68l100 -92l-29 -34l-103 72h-4zM434 637l-35 28l87 120l49 -34z" />
-    <glyph glyph-name="uni03020301.cap" 
-d="M205 699l-34 26l93 90h72l93 -90l-34 -26l-93 69h-4zM421 763l-30 32l97 93l35 -39z" />
-    <glyph glyph-name="uni03020300" 
-d="M195 570l-29 34l100 92h68l100 -92l-29 -34l-103 72h-4zM166 637l-113 112l48 36l100 -117z" />
-    <glyph glyph-name="uni03020300.cap" 
-d="M205 699l-34 26l93 90h72l93 -90l-34 -26l-93 69h-4zM179 763l-90 88l35 37l85 -95z" />
-    <glyph glyph-name="uni03020309" 
-d="M195 570l-29 34l100 92h68l100 -92l-29 -34l-103 72h-4zM416 635l-9 35q19 5 30.5 14t11.5 25q0 20 -16 29.5t-53 11.5l7 41q59 -2 90.5 -20t31.5 -53q0 -20 -8 -34t-21 -23.5t-29.5 -15.5t-34.5 -10z" />
-    <glyph glyph-name="uni03020309.cap" 
-d="M205 699l-34 26l93 90h72l93 -90l-34 -26l-93 69h-4zM415 754l-11 35q19 5 32 12.5t13 23.5q0 20 -16.5 28.5t-54.5 10.5l9 42q59 -2 89.5 -20t30.5 -53q0 -38 -28 -55.5t-64 -23.5z" />
-    <glyph glyph-name="uni03020303" 
-d="M195 570l-29 34l100 88h68l100 -88l-29 -34l-103 69h-4zM365 710q-22 0 -39 6.5t-31.5 14.5t-28 14.5t-27.5 6.5q-15 0 -22 -10t-11 -32l-43 4q4 39 20.5 64t51.5 25q22 0 39 -6.5t31.5 -14.5t28 -14.5t27.5 -6.5q15 0 22 10t11 32l43 -4q-4 -38 -20.5 -63.5t-51.5 -25.5
-z" />
-    <glyph glyph-name="uni03020303.cap" 
-d="M205 699l-34 26l93 87h72l93 -87l-34 -26l-93 66h-4zM366 839q-24 0 -41 8t-31.5 17t-27.5 17t-28 8q-18 0 -26.5 -12t-11.5 -34l-45 5q2 38 20 64.5t59 26.5q24 0 41 -7.5t31.5 -17t27.5 -17t28 -7.5q18 0 26.5 12t11.5 34l45 -5q-2 -39 -20 -65.5t-59 -26.5z" />
-    <glyph glyph-name="uni03060301" 
-d="M300 571q-40 0 -69 13t-47.5 34.5t-28 48.5t-11.5 55l48 8q3 -20 10.5 -39.5t21 -34.5t32.5 -24.5t44 -9.5t44 9.5t32.5 24.5t21 34.5t10.5 39.5l48 -8q-2 -28 -11.5 -55t-28.5 -48.5t-47.5 -34.5t-68.5 -13zM295 679l-39 29l88 124l52 -40z" />
-    <glyph glyph-name="uni03060301.cap" 
-d="M300 705q-35 0 -61 10.5t-44 28t-28 41t-13 49.5l47 8q6 -37 30 -62.5t69 -25.5t69 25.5t30 62.5l47 -8q-3 -26 -13 -49.5t-28 -41t-44 -28t-61 -10.5zM303 803l-41 29l95 116l53 -36z" />
-    <glyph glyph-name="uni03060300" 
-d="M300 571q-40 0 -69 13t-47.5 34.5t-28 48.5t-11.5 55l48 8q3 -20 10.5 -39.5t21 -34.5t32.5 -24.5t44 -9.5t44 9.5t32.5 24.5t21 34.5t10.5 39.5l48 -8q-2 -28 -11.5 -55t-28.5 -48.5t-47.5 -34.5t-68.5 -13zM305 679l-101 113l52 40l88 -124z" />
-    <glyph glyph-name="uni03060300.cap" 
-d="M300 705q-35 0 -61 10.5t-44 28t-28 41t-13 49.5l47 8q6 -37 30 -62.5t69 -25.5t69 25.5t30 62.5l47 -8q-3 -26 -13 -49.5t-28 -41t-44 -28t-61 -10.5zM297 803l-107 109l53 36l95 -116z" />
-    <glyph glyph-name="uni03060309" 
-d="M300 571q-40 0 -69 13t-47.5 34.5t-28 48.5t-11.5 55l48 8q3 -20 10.5 -39.5t21 -34.5t32.5 -24.5t44 -9.5t44 9.5t32.5 24.5t21 34.5t10.5 39.5l48 -8q-2 -28 -11.5 -55t-28.5 -48.5t-47.5 -34.5t-68.5 -13zM273 682l-8 36q21 5 34.5 14t13.5 25q0 20 -17.5 29.5
-t-58.5 11.5l7 50q61 -2 95 -22t34 -60q0 -20 -8.5 -34.5t-22.5 -24.5t-32 -16t-37 -9z" />
-    <glyph glyph-name="uni03060309.cap" 
-d="M300 705q-35 0 -61 10.5t-44 28t-28 41t-13 49.5l47 8q6 -37 30 -62.5t69 -25.5t69 25.5t30 62.5l47 -8q-3 -26 -13 -49.5t-28 -41t-44 -28t-61 -10.5zM277 800l-10 35q18 5 31 12.5t13 23.5q0 20 -16.5 28.5t-53.5 10.5l8 42q59 -2 90 -20t31 -53q0 -19 -8 -32.5
-t-20.5 -23t-29.5 -15t-35 -8.5z" />
-    <glyph glyph-name="uni03060303" 
-d="M300 571q-37 0 -63 9.5t-43.5 25t-26.5 34.5t-11 38l47 8q4 -25 27 -46.5t70 -21.5t70 21.5t27 46.5l47 -8q-2 -19 -11 -38t-26.5 -34.5t-43.5 -25t-63 -9.5zM365 710q-22 0 -39 6.5t-31.5 14.5t-28 14.5t-27.5 6.5q-15 0 -22 -10.5t-11 -32.5l-47 5q4 38 21.5 63
-t54.5 25q22 0 39 -6.5t31.5 -14.5t28 -14.5t27.5 -6.5q15 0 22 10.5t11 31.5l47 -4q-4 -38 -21.5 -63t-54.5 -25z" />
-    <glyph glyph-name="uni03060303.cap" 
-d="M300 708q-35 0 -60.5 8.5t-43 23.5t-27 34t-12.5 40l46 8q5 -27 28 -48t69 -21t69 21t28 48l46 -8q-3 -21 -12.5 -40t-27 -34t-43 -23.5t-60.5 -8.5zM366 843q-24 0 -41 8t-31.5 17t-27.5 17t-28 8q-18 0 -26.5 -12t-11.5 -35l-45 5q2 39 20 65.5t59 26.5q24 0 41 -8
-t31.5 -17t27.5 -17t28 -8q18 0 26.5 12t11.5 34l45 -5q-2 -38 -20 -64.5t-59 -26.5z" />
-    <glyph glyph-name="uni03020306" 
-d="M202 570l-31 24l95 83h68l95 -83l-31 -24l-96 62h-4zM300 705q-31 0 -53.5 7.5t-38 20.5t-23.5 28.5t-11 32.5l38 10q6 -22 26 -38t62 -16t62 16t26 38l38 -10q-3 -17 -11 -32.5t-23.5 -28.5t-38 -20.5t-53.5 -7.5z" />
-    <glyph glyph-name="uni03020306.cap" 
-d="M205 699l-33 26l92 87h72l92 -87l-33 -26l-93 69h-4zM300 841q-66 0 -99 28t-38 66l46 8q5 -23 26 -39.5t65 -16.5t65 16.5t26 39.5l46 -8q-5 -38 -38 -66t-99 -28z" />
-    <glyph glyph-name="uni03040301" 
-d="M167 601v57h266v-57h-266zM266 705l-32 39l135 99l38 -49z" />
-    <glyph glyph-name="uni03040301.cap" 
-d="M166 735v57h268v-57h-268zM282 827l-31 38l121 103l39 -48z" />
-    <glyph glyph-name="uni030C0307" 
-d="M300 701q-24 0 -40 15t-16 41t16 41t40 15t40 -15t16 -41t-16 -41t-40 -15zM259 574l-114 140l31 28l122 -115h4l122 115l31 -28l-114 -140h-82z" />
-    <glyph glyph-name="uni030C0307.cap" 
-d="M300 821q-22 0 -37 14.5t-15 37.5t15 37.5t37 14.5t37 -14.5t15 -37.5t-15 -37.5t-37 -14.5zM257 706l-108 109l28 30l121 -92h4l121 92l28 -30l-108 -109h-86z" />
-    <glyph glyph-name="uni03120301" 
-d="M245 577q-18 4 -35.5 11t-31 18t-22 27t-8.5 38q0 41 35 62t94 23l4 -51q-73 -4 -73 -43q0 -20 13 -31t33 -16zM305 569l43 201l74 -14l-67 -197z" />
-    <glyph glyph-name="uni03120300" 
-d="M235 577q-18 4 -35.5 11t-31 18t-22 27t-8.5 38q0 41 35 62t94 23l4 -51q-73 -4 -73 -43q0 -20 13 -31t33 -16zM359 559l-64 197l75 14l38 -201z" />
-    <glyph glyph-name="uni03120303" 
-d="M327 562q-36 7 -65 24t-29 48q0 30 31.5 44.5t90.5 16.5l7 -39q-37 -2 -53 -9.5t-16 -21.5q0 -11 12 -18t30 -12zM159 719q4 38 21.5 63t54.5 25q22 0 39 -6.5t31.5 -14.5t28 -14.5t27.5 -6.5q15 0 22 10.5t11 31.5l47 -4q-4 -38 -21.5 -63t-54.5 -25q-22 0 -39 6.5
-t-31.5 14.5t-28 14.5t-27.5 6.5q-15 0 -22 -10.5t-11 -31.5z" />
-    <glyph glyph-name="uni03130301" 
-d="M180 577l-10 38q20 5 33.5 16t13.5 31q0 39 -73 43l4 51q59 -2 94 -23t35 -62q0 -22 -8.5 -38t-22 -27t-31 -18t-35.5 -11zM362 559l-50 10l42 201l74 -14z" />
-    <glyph glyph-name="uni03130300" 
-d="M180 577l-10 38q20 5 33.5 16t13.5 31q0 39 -73 43l4 51q59 -2 94 -23t35 -62q0 -22 -8.5 -38t-22 -27t-31 -18t-35.5 -11zM365 559l-63 197l74 14l39 -201z" />
-    <glyph glyph-name="uni03130303" 
-d="M365 715q-22 0 -39 6.5t-31.5 14.5t-28 14.5t-27.5 6.5q-15 0 -22 -10.5t-11 -31.5l-47 4q4 38 21.5 63t54.5 25q22 0 39 -6.5t31.5 -14.5t28 -14.5t27.5 -6.5q15 0 22 10.5t11 31.5l47 -4q-4 -38 -21.5 -63t-54.5 -25zM273 562l-8 33q18 5 30 12t12 18q0 14 -16 21.5
-t-53 9.5l7 39q59 -2 90.5 -16.5t31.5 -44.5q0 -31 -29 -48t-65 -24z" />
-    <glyph glyph-name="uni00A0" unicode="&#xa0;" 
- />
-    <glyph glyph-name="uni2007" unicode="&#x2007;" 
- />
-    <glyph glyph-name="space.frac" 
- />
-    <glyph glyph-name="nbspace.frac" 
- />
-    <glyph glyph-name="uni2500" unicode="&#x2500;" 
-d="M-39 261v78h678v-78h-678z" />
-    <glyph glyph-name="uni2501" unicode="&#x2501;" 
-d="M-39 222v156h678v-156h-678z" />
-    <glyph glyph-name="uni2502" unicode="&#x2502;" 
-d="M261 -400v1400h78v-1400h-78z" />
-    <glyph glyph-name="uni2503" unicode="&#x2503;" 
-d="M222 -400v1400h156v-1400h-156z" />
-    <glyph glyph-name="uni2504" unicode="&#x2504;" 
-d="M433 261v78h134v-78h-134zM233 261v78h134v-78h-134zM33 261v78h134v-78h-134z" />
-    <glyph glyph-name="uni2505" unicode="&#x2505;" 
-d="M433 222v156h134v-156h-134zM233 222v156h134v-156h-134zM33 222v156h134v-156h-134z" />
-    <glyph glyph-name="uni2506" unicode="&#x2506;" 
-d="M261 567v266h78v-266h-78zM261 167v266h78v-266h-78zM261 -233v266h78v-266h-78z" />
-    <glyph glyph-name="uni2507" unicode="&#x2507;" 
-d="M222 567v266h156v-266h-156zM222 167v266h156v-266h-156zM222 -233v266h156v-266h-156z" />
-    <glyph glyph-name="uni2508" unicode="&#x2508;" 
-d="M469 261v78h112v-78h-112zM319 261v78h112v-78h-112zM169 261v78h112v-78h-112zM19 261v78h112v-78h-112z" />
-    <glyph glyph-name="uni2509" unicode="&#x2509;" 
-d="M469 222v156h112v-156h-112zM319 222v156h112v-156h-112zM169 222v156h112v-156h-112zM19 222v156h112v-156h-112z" />
-    <glyph glyph-name="uni250A" unicode="&#x250a;" 
-d="M261 638v225h78v-225h-78zM261 338v225h78v-225h-78zM261 38v225h78v-225h-78zM261 -263v225h78v-225h-78z" />
-    <glyph glyph-name="uni250B" unicode="&#x250b;" 
-d="M222 638v225h156v-225h-156zM222 338v225h156v-225h-156zM222 38v225h156v-225h-156zM222 -263v225h156v-225h-156z" />
-    <glyph glyph-name="uni250C" unicode="&#x250c;" 
-d="M639 261h-300v-661h-78v739h378v-78z" />
-    <glyph glyph-name="uni250D" unicode="&#x250d;" 
-d="M639 222h-300v-622h-78v778h378v-156z" />
-    <glyph glyph-name="uni250E" unicode="&#x250e;" 
-d="M639 261h-261v-661h-156v739h417v-78z" />
-    <glyph glyph-name="uni250F" unicode="&#x250f;" 
-d="M639 222h-261v-622h-156v778h417v-156z" />
-    <glyph glyph-name="uni2510" unicode="&#x2510;" 
-d="M339 -400h-78v661h-300v78h378v-739z" />
-    <glyph glyph-name="uni2511" unicode="&#x2511;" 
-d="M339 -400h-78v622h-300v156h378v-778z" />
-    <glyph glyph-name="uni2512" unicode="&#x2512;" 
-d="M378 -400h-156v661h-261v78h417v-739z" />
-    <glyph glyph-name="uni2513" unicode="&#x2513;" 
-d="M378 -400h-156v622h-261v156h417v-778z" />
-    <glyph glyph-name="uni2514" unicode="&#x2514;" 
-d="M639 261h-378v739h78v-661h300v-78z" />
-    <glyph glyph-name="uni2515" unicode="&#x2515;" 
-d="M639 222h-378v778h78v-622h300v-156z" />
-    <glyph glyph-name="uni2516" unicode="&#x2516;" 
-d="M222 261v739h156v-661h261v-78h-417z" />
-    <glyph glyph-name="uni2517" unicode="&#x2517;" 
-d="M222 222v778h156v-622h261v-156h-417z" />
-    <glyph glyph-name="uni2518" unicode="&#x2518;" 
-d="M339 261h-378v78h300v661h78v-739z" />
-    <glyph glyph-name="uni2519" unicode="&#x2519;" 
-d="M339 222h-378v156h300v622h78v-778z" />
-    <glyph glyph-name="uni251A" unicode="&#x251a;" 
-d="M-39 261v78h261v661h156v-739h-417z" />
-    <glyph glyph-name="uni251B" unicode="&#x251b;" 
-d="M-39 222v156h261v622h156v-778h-417z" />
-    <glyph glyph-name="uni251C" unicode="&#x251c;" 
-d="M639 261h-300v-661h-78v1400h78v-661h300v-78z" />
-    <glyph glyph-name="uni251D" unicode="&#x251d;" 
-d="M639 222h-300v-622h-78v1400h78v-622h300v-156z" />
-    <glyph glyph-name="uni251E" unicode="&#x251e;" 
-d="M639 261h-300v-661h-78v661h-39v739h156v-661h261v-78z" />
-    <glyph glyph-name="uni251F" unicode="&#x251f;" 
-d="M639 261h-261v-661h-156v739h39v661h78v-661h300v-78z" />
-    <glyph glyph-name="uni2520" unicode="&#x2520;" 
-d="M639 261h-261v-661h-156v1400h156v-661h261v-78z" />
-    <glyph glyph-name="uni2521" unicode="&#x2521;" 
-d="M639 222h-300v-622h-78v622h-39v778h156v-622h261v-156z" />
-    <glyph glyph-name="uni2522" unicode="&#x2522;" 
-d="M639 222h-261v-622h-156v778h39v622h78v-622h300v-156z" />
-    <glyph glyph-name="uni2523" unicode="&#x2523;" 
-d="M639 222h-261v-622h-156v1400h156v-622h261v-156z" />
-    <glyph glyph-name="uni2524" unicode="&#x2524;" 
-d="M339 -400h-78v661h-300v78h300v661h78v-1400z" />
-    <glyph glyph-name="uni2525" unicode="&#x2525;" 
-d="M339 -400h-78v622h-300v156h300v622h78v-1400z" />
-    <glyph glyph-name="uni2526" unicode="&#x2526;" 
-d="M339 -400h-78v661h-300v78h261v661h156v-739h-39v-661z" />
-    <glyph glyph-name="uni2527" unicode="&#x2527;" 
-d="M378 -400h-156v661h-261v78h300v661h78v-661h39v-739z" />
-    <glyph glyph-name="uni2528" unicode="&#x2528;" 
-d="M378 -400h-156v661h-261v78h261v661h156v-1400z" />
-    <glyph glyph-name="uni2529" unicode="&#x2529;" 
-d="M339 -400h-78v622h-300v156h261v622h156v-778h-39v-622z" />
-    <glyph glyph-name="uni252A" unicode="&#x252a;" 
-d="M378 -400h-156v622h-261v156h300v622h78v-622h39v-778z" />
-    <glyph glyph-name="uni252B" unicode="&#x252b;" 
-d="M378 -400h-156v622h-261v156h261v622h156v-1400z" />
-    <glyph glyph-name="uni252C" unicode="&#x252c;" 
-d="M639 261h-300v-661h-78v661h-300v78h678v-78z" />
-    <glyph glyph-name="uni252D" unicode="&#x252d;" 
-d="M339 -400h-78v622h-300v156h378v-39h300v-78h-300v-661z" />
-    <glyph glyph-name="uni252E" unicode="&#x252e;" 
-d="M639 222h-300v-622h-78v661h-300v78h300v39h378v-156z" />
-    <glyph glyph-name="uni252F" unicode="&#x252f;" 
-d="M639 222h-300v-622h-78v622h-300v156h678v-156z" />
-    <glyph glyph-name="uni2530" unicode="&#x2530;" 
-d="M639 261h-261v-661h-156v661h-261v78h678v-78z" />
-    <glyph glyph-name="uni2531" unicode="&#x2531;" 
-d="M639 261h-261v-661h-156v622h-261v156h417v-39h261v-78z" />
-    <glyph glyph-name="uni2532" unicode="&#x2532;" 
-d="M639 222h-261v-622h-156v661h-261v78h261v39h417v-156z" />
-    <glyph glyph-name="uni2533" unicode="&#x2533;" 
-d="M639 222h-261v-622h-156v622h-261v156h678v-156z" />
-    <glyph glyph-name="uni2534" unicode="&#x2534;" 
-d="M639 261h-678v78h300v661h78v-661h300v-78z" />
-    <glyph glyph-name="uni2535" unicode="&#x2535;" 
-d="M639 261h-300v-39h-378v156h300v622h78v-661h300v-78z" />
-    <glyph glyph-name="uni2536" unicode="&#x2536;" 
-d="M639 222h-378v39h-300v78h300v661h78v-622h300v-156z" />
-    <glyph glyph-name="uni2537" unicode="&#x2537;" 
-d="M639 222h-678v156h300v622h78v-622h300v-156z" />
-    <glyph glyph-name="uni2538" unicode="&#x2538;" 
-d="M639 261h-678v78h261v661h156v-661h261v-78z" />
-    <glyph glyph-name="uni2539" unicode="&#x2539;" 
-d="M-39 222v156h261v622h156v-661h261v-78h-261v-39h-417z" />
-    <glyph glyph-name="uni253A" unicode="&#x253a;" 
-d="M222 222v39h-261v78h261v661h156v-622h261v-156h-417z" />
-    <glyph glyph-name="uni253B" unicode="&#x253b;" 
-d="M639 222h-678v156h261v622h156v-622h261v-156z" />
-    <glyph glyph-name="uni253C" unicode="&#x253c;" 
-d="M639 261h-300v-661h-78v661h-300v78h300v661h78v-661h300v-78z" />
-    <glyph glyph-name="uni253D" unicode="&#x253d;" 
-d="M639 261h-300v-661h-78v622h-300v156h300v622h78v-661h300v-78z" />
-    <glyph glyph-name="uni253E" unicode="&#x253e;" 
-d="M639 222h-300v-622h-78v661h-300v78h300v661h78v-622h300v-156z" />
-    <glyph glyph-name="uni253F" unicode="&#x253f;" 
-d="M639 222h-300v-622h-78v622h-300v156h300v622h78v-622h300v-156z" />
-    <glyph glyph-name="uni2540" unicode="&#x2540;" 
-d="M639 261h-300v-661h-78v661h-300v78h261v661h156v-661h261v-78z" />
-    <glyph glyph-name="uni2541" unicode="&#x2541;" 
-d="M639 261h-261v-661h-156v661h-261v78h300v661h78v-661h300v-78z" />
-    <glyph glyph-name="uni2542" unicode="&#x2542;" 
-d="M639 261h-261v-661h-156v661h-261v78h261v661h156v-661h261v-78z" />
-    <glyph glyph-name="uni2543" unicode="&#x2543;" 
-d="M378 222h-39v-622h-78v622h-300v156h261v622h156v-661h261v-78h-261v-39z" />
-    <glyph glyph-name="uni2544" unicode="&#x2544;" 
-d="M639 222h-300v-622h-78v622h-39v39h-261v78h261v661h156v-622h261v-156z" />
-    <glyph glyph-name="uni2545" unicode="&#x2545;" 
-d="M378 -400h-156v622h-261v156h300v622h78v-622h39v-39h261v-78h-261v-661z" />
-    <glyph glyph-name="uni2546" unicode="&#x2546;" 
-d="M639 222h-261v-622h-156v661h-261v78h261v39h39v622h78v-622h300v-156z" />
-    <glyph glyph-name="uni2547" unicode="&#x2547;" 
-d="M639 222h-300v-622h-78v622h-300v156h261v622h156v-622h261v-156z" />
-    <glyph glyph-name="uni2548" unicode="&#x2548;" 
-d="M639 222h-261v-622h-156v622h-261v156h300v622h78v-622h300v-156z" />
-    <glyph glyph-name="uni2549" unicode="&#x2549;" 
-d="M639 261h-261v-661h-156v622h-261v156h261v622h156v-661h261v-78z" />
-    <glyph glyph-name="uni254A" unicode="&#x254a;" 
-d="M639 222h-261v-622h-156v661h-261v78h261v661h156v-622h261v-156z" />
-    <glyph glyph-name="uni254B" unicode="&#x254b;" 
-d="M639 222h-261v-622h-156v622h-261v156h261v622h156v-622h261v-156z" />
-    <glyph glyph-name="uni254C" unicode="&#x254c;" 
-d="M375 261v78h150v-78h-150zM75 261v78h150v-78h-150z" />
-    <glyph glyph-name="uni254D" unicode="&#x254d;" 
-d="M375 222v156h150v-156h-150zM75 222v156h150v-156h-150z" />
-    <glyph glyph-name="uni254E" unicode="&#x254e;" 
-d="M261 450v300h78v-300h-78zM261 -150v300h78v-300h-78z" />
-    <glyph glyph-name="uni254F" unicode="&#x254f;" 
-d="M222 450v300h156v-300h-156zM222 -150v300h156v-300h-156z" />
-    <glyph glyph-name="uni2550" unicode="&#x2550;" 
-d="M-39 339v78h678v-78h-678zM-39 183v78h678v-78h-678z" />
-    <glyph glyph-name="uni2551" unicode="&#x2551;" 
-d="M339 -400v1400h78v-1400h-78zM183 -400v1400h78v-1400h-78z" />
-    <glyph glyph-name="uni2552" unicode="&#x2552;" 
-d="M639 183h-300v-583h-78v817h378v-78h-300v-78h300v-78z" />
-    <glyph glyph-name="uni2553" unicode="&#x2553;" 
-d="M339 -400v661h-78v-661h-78v739h456v-78h-222v-661h-78z" />
-    <glyph glyph-name="uni2554" unicode="&#x2554;" 
-d="M639 339h-378v-739h-78v817h456v-78zM639 183h-222v-583h-78v661h300v-78z" />
-    <glyph glyph-name="uni2555" unicode="&#x2555;" 
-d="M339 -400h-78v583h-300v78h300v78h-300v78h378v-817z" />
-    <glyph glyph-name="uni2556" unicode="&#x2556;" 
-d="M339 -400v661h-78v-661h-78v661h-222v78h456v-739h-78z" />
-    <glyph glyph-name="uni2557" unicode="&#x2557;" 
-d="M417 -400h-78v739h-378v78h456v-817zM261 -400h-78v583h-222v78h300v-661z" />
-    <glyph glyph-name="uni2558" unicode="&#x2558;" 
-d="M261 183v817h78v-583h300v-78h-300v-78h300v-78h-378z" />
-    <glyph glyph-name="uni2559" unicode="&#x2559;" 
-d="M183 261v739h78v-661h78v661h78v-661h222v-78h-456z" />
-    <glyph glyph-name="uni255A" unicode="&#x255a;" 
-d="M339 339v661h78v-583h222v-78h-300zM183 183v817h78v-739h378v-78h-456z" />
-    <glyph glyph-name="uni255B" unicode="&#x255b;" 
-d="M339 183h-378v78h300v78h-300v78h300v583h78v-817z" />
-    <glyph glyph-name="uni255C" unicode="&#x255c;" 
-d="M417 261h-456v78h222v661h78v-661h78v661h78v-739z" />
-    <glyph glyph-name="uni255D" unicode="&#x255d;" 
-d="M261 339h-300v78h222v583h78v-661zM417 183h-456v78h378v739h78v-817z" />
-    <glyph glyph-name="uni255E" unicode="&#x255e;" 
-d="M639 183h-300v-583h-78v1400h78v-583h300v-78h-300v-78h300v-78z" />
-    <glyph glyph-name="uni255F" unicode="&#x255f;" 
-d="M183 -400v1400h78v-1400h-78zM639 261h-222v-661h-78v1400h78v-661h222v-78z" />
-    <glyph glyph-name="uni2560" unicode="&#x2560;" 
-d="M183 -400v1400h78v-1400h-78zM339 339v661h78v-583h222v-78h-300zM639 183h-222v-583h-78v661h300v-78z" />
-    <glyph glyph-name="uni2561" unicode="&#x2561;" 
-d="M339 -400h-78v583h-300v78h300v78h-300v78h300v583h78v-1400z" />
-    <glyph glyph-name="uni2562" unicode="&#x2562;" 
-d="M339 -400v1400h78v-1400h-78zM261 -400h-78v661h-222v78h222v661h78v-1400z" />
-    <glyph glyph-name="uni2563" unicode="&#x2563;" 
-d="M339 -400v1400h78v-1400h-78zM261 339h-300v78h222v583h78v-661zM261 -400h-78v583h-222v78h300v-661z" />
-    <glyph glyph-name="uni2564" unicode="&#x2564;" 
-d="M-39 339v78h678v-78h-678zM639 183h-300v-583h-78v583h-300v78h678v-78z" />
-    <glyph glyph-name="uni2565" unicode="&#x2565;" 
-d="M339 -400v661h-78v-661h-78v661h-222v78h678v-78h-222v-661h-78z" />
-    <glyph glyph-name="uni2566" unicode="&#x2566;" 
-d="M-39 339v78h678v-78h-678zM639 183h-222v-583h-78v661h300v-78zM261 -400h-78v583h-222v78h300v-661z" />
-    <glyph glyph-name="uni2567" unicode="&#x2567;" 
-d="M639 339h-678v78h300v583h78v-583h300v-78zM-39 183v78h678v-78h-678z" />
-    <glyph glyph-name="uni2568" unicode="&#x2568;" 
-d="M639 261h-678v78h222v661h78v-661h78v661h78v-661h222v-78z" />
-    <glyph glyph-name="uni2569" unicode="&#x2569;" 
-d="M339 339v661h78v-583h222v-78h-300zM261 339h-300v78h222v583h78v-661zM-39 183v78h678v-78h-678z" />
-    <glyph glyph-name="uni256A" unicode="&#x256a;" 
-d="M639 183h-300v-583h-78v583h-300v78h300v78h-300v78h300v583h78v-583h300v-78h-300v-78h300v-78z" />
-    <glyph glyph-name="uni256B" unicode="&#x256b;" 
-d="M339 -400v661h-78v-661h-78v661h-222v78h222v661h78v-661h78v661h78v-661h222v-78h-222v-661h-78z" />
-    <glyph glyph-name="uni256C" unicode="&#x256c;" 
-d="M339 339v661h78v-583h222v-78h-300zM261 339h-300v78h222v583h78v-661zM639 183h-222v-583h-78v661h300v-78zM261 -400h-78v583h-222v78h300v-661z" />
-    <glyph glyph-name="uni256D" unicode="&#x256d;" 
-d="M261 -400v400q0 70 26.5 132t72.5 108t108 72.5t132 26.5h39v-78h-39q-54 0 -101.5 -20.5t-83 -56t-56 -83t-20.5 -101.5v-400h-78z" />
-    <glyph glyph-name="uni256E" unicode="&#x256e;" 
-d="M339 0v-400h-78v400q0 54 -20.5 101.5t-56 83t-83 56t-101.5 20.5h-39v78h39q70 0 132 -26.5t108 -72.5t72.5 -108t26.5 -132z" />
-    <glyph glyph-name="uni256F" unicode="&#x256f;" 
-d="M339 1000v-400q0 -70 -26.5 -132t-72.5 -108t-108 -72.5t-132 -26.5h-39v78h39q54 0 101.5 20.5t83 56t56 83t20.5 101.5v400h78z" />
-    <glyph glyph-name="uni2570" unicode="&#x2570;" 
-d="M261 600v400h78v-400q0 -54 20.5 -101.5t56 -83t83 -56t101.5 -20.5h39v-78h-39q-70 0 -132 26.5t-108 72.5t-72.5 108t-26.5 132z" />
-    <glyph glyph-name="uni2571" unicode="&#x2571;" 
-d="M0 -213l557 1113h43v-87l-557 -1113h-43v87z" />
-    <glyph glyph-name="uni2572" unicode="&#x2572;" 
-d="M43 900l557 -1113v-87h-43l-557 1113v87h43z" />
-    <glyph glyph-name="uni2573" unicode="&#x2573;" 
-d="M557 -300l-257 513l-257 -513h-43v87l257 513l-257 513v87h43l257 -513l257 513h43v-87l-257 -513l257 -513v-87h-43z" />
-    <glyph glyph-name="uni2574" unicode="&#x2574;" 
-d="M-39 261v78h378v-78h-378z" />
-    <glyph glyph-name="uni2575" unicode="&#x2575;" 
-d="M261 261v739h78v-739h-78z" />
-    <glyph glyph-name="uni2576" unicode="&#x2576;" 
-d="M261 261v78h378v-78h-378z" />
-    <glyph glyph-name="uni2577" unicode="&#x2577;" 
-d="M261 -400v739h78v-739h-78z" />
-    <glyph glyph-name="uni2578" unicode="&#x2578;" 
-d="M-39 222v156h378v-156h-378z" />
-    <glyph glyph-name="uni2579" unicode="&#x2579;" 
-d="M222 261v739h156v-739h-156z" />
-    <glyph glyph-name="uni257A" unicode="&#x257a;" 
-d="M261 222v156h378v-156h-378z" />
-    <glyph glyph-name="uni257B" unicode="&#x257b;" 
-d="M222 -400v739h156v-739h-156z" />
-    <glyph glyph-name="uni257C" unicode="&#x257c;" 
-d="M639 222h-378v39h-300v78h300v39h378v-156z" />
-    <glyph glyph-name="uni257D" unicode="&#x257d;" 
-d="M378 -400h-156v739h39v661h78v-661h39v-739z" />
-    <glyph glyph-name="uni257E" unicode="&#x257e;" 
-d="M639 261h-300v-39h-378v156h378v-39h300v-78z" />
-    <glyph glyph-name="uni257F" unicode="&#x257f;" 
-d="M378 261h-39v-661h-78v661h-39v739h156v-739z" />
-    <glyph glyph-name="uni2580" unicode="&#x2580;" 
-d="M0 300v700h600v-700h-600z" />
-    <glyph glyph-name="uni2581" unicode="&#x2581;" 
-d="M0 -400v175h600v-175h-600z" />
-    <glyph glyph-name="uni2582" unicode="&#x2582;" 
-d="M0 -400v350h600v-350h-600z" />
-    <glyph glyph-name="uni2583" unicode="&#x2583;" 
-d="M0 -400v525h600v-525h-600z" />
-    <glyph glyph-name="uni2584" unicode="&#x2584;" 
-d="M0 -400v700h600v-700h-600z" />
-    <glyph glyph-name="uni2585" unicode="&#x2585;" 
-d="M0 -400v875h600v-875h-600z" />
-    <glyph glyph-name="uni2586" unicode="&#x2586;" 
-d="M0 -400v1050h600v-1050h-600z" />
-    <glyph glyph-name="uni2587" unicode="&#x2587;" 
-d="M0 -400v1225h600v-1225h-600z" />
-    <glyph glyph-name="uni2588" unicode="&#x2588;" 
-d="M0 -400v1400h600v-1400h-600z" />
-    <glyph glyph-name="uni2589" unicode="&#x2589;" 
-d="M0 -400v1400h525v-1400h-525z" />
-    <glyph glyph-name="uni258A" unicode="&#x258a;" 
-d="M0 -400v1400h450v-1400h-450z" />
-    <glyph glyph-name="uni258B" unicode="&#x258b;" 
-d="M0 -400v1400h375v-1400h-375z" />
-    <glyph glyph-name="uni258C" unicode="&#x258c;" 
-d="M0 -400v1400h300v-1400h-300z" />
-    <glyph glyph-name="uni258D" unicode="&#x258d;" 
-d="M0 -400v1400h225v-1400h-225z" />
-    <glyph glyph-name="uni258E" unicode="&#x258e;" 
-d="M0 -400v1400h150v-1400h-150z" />
-    <glyph glyph-name="uni258F" unicode="&#x258f;" 
-d="M0 -400v1400h75v-1400h-75z" />
-    <glyph glyph-name="uni2590" unicode="&#x2590;" 
-d="M300 -400v1400h300v-1400h-300z" />
-    <glyph glyph-name="uni2591" unicode="&#x2591;" 
-d="M464 900q0 15 10.5 25.5t25.5 10.5t25.5 -10.5t10.5 -25.5t-10.5 -25.5t-25.5 -10.5t-25.5 10.5t-10.5 25.5zM264 900q0 15 10.5 25.5t25.5 10.5t25.5 -10.5t10.5 -25.5t-10.5 -25.5t-25.5 -10.5t-25.5 10.5t-10.5 25.5zM64 900q0 15 10.5 25.5t25.5 10.5t25.5 -10.5
-t10.5 -25.5t-10.5 -25.5t-25.5 -10.5t-25.5 10.5t-10.5 25.5zM376 800q0 10 7 17t17 7t17 -7t7 -17t-7 -17t-17 -7t-17 7t-7 17zM176 800q0 10 7 17t17 7t17 -7t7 -17t-7 -17t-17 -7t-17 7t-7 17zM-24 800q0 10 7 17t17 7t17 -7t7 -17t-7 -17t-17 -7t-17 7t-7 17zM464 700
-q0 15 10.5 25.5t25.5 10.5t25.5 -10.5t10.5 -25.5t-10.5 -25.5t-25.5 -10.5t-25.5 10.5t-10.5 25.5zM264 700q0 15 10.5 25.5t25.5 10.5t25.5 -10.5t10.5 -25.5t-10.5 -25.5t-25.5 -10.5t-25.5 10.5t-10.5 25.5zM64 700q0 15 10.5 25.5t25.5 10.5t25.5 -10.5t10.5 -25.5
-t-10.5 -25.5t-25.5 -10.5t-25.5 10.5t-10.5 25.5zM376 600q0 10 7 17t17 7t17 -7t7 -17t-7 -17t-17 -7t-17 7t-7 17zM176 600q0 10 7 17t17 7t17 -7t7 -17t-7 -17t-17 -7t-17 7t-7 17zM-24 600q0 10 7 17t17 7t17 -7t7 -17t-7 -17t-17 -7t-17 7t-7 17zM464 500
-q0 15 10.5 25.5t25.5 10.5t25.5 -10.5t10.5 -25.5t-10.5 -25.5t-25.5 -10.5t-25.5 10.5t-10.5 25.5zM264 500q0 15 10.5 25.5t25.5 10.5t25.5 -10.5t10.5 -25.5t-10.5 -25.5t-25.5 -10.5t-25.5 10.5t-10.5 25.5zM64 500q0 15 10.5 25.5t25.5 10.5t25.5 -10.5t10.5 -25.5
-t-10.5 -25.5t-25.5 -10.5t-25.5 10.5t-10.5 25.5zM376 400q0 10 7 17t17 7t17 -7t7 -17t-7 -17t-17 -7t-17 7t-7 17zM176 400q0 10 7 17t17 7t17 -7t7 -17t-7 -17t-17 -7t-17 7t-7 17zM-24 400q0 10 7 17t17 7t17 -7t7 -17t-7 -17t-17 -7t-17 7t-7 17zM464 300
-q0 15 10.5 25.5t25.5 10.5t25.5 -10.5t10.5 -25.5t-10.5 -25.5t-25.5 -10.5t-25.5 10.5t-10.5 25.5zM264 300q0 15 10.5 25.5t25.5 10.5t25.5 -10.5t10.5 -25.5t-10.5 -25.5t-25.5 -10.5t-25.5 10.5t-10.5 25.5zM64 300q0 15 10.5 25.5t25.5 10.5t25.5 -10.5t10.5 -25.5
-t-10.5 -25.5t-25.5 -10.5t-25.5 10.5t-10.5 25.5zM376 200q0 10 7 17t17 7t17 -7t7 -17t-7 -17t-17 -7t-17 7t-7 17zM176 200q0 10 7 17t17 7t17 -7t7 -17t-7 -17t-17 -7t-17 7t-7 17zM-24 200q0 10 7 17t17 7t17 -7t7 -17t-7 -17t-17 -7t-17 7t-7 17zM464 100
-q0 15 10.5 25.5t25.5 10.5t25.5 -10.5t10.5 -25.5t-10.5 -25.5t-25.5 -10.5t-25.5 10.5t-10.5 25.5zM264 100q0 15 10.5 25.5t25.5 10.5t25.5 -10.5t10.5 -25.5t-10.5 -25.5t-25.5 -10.5t-25.5 10.5t-10.5 25.5zM64 100q0 15 10.5 25.5t25.5 10.5t25.5 -10.5t10.5 -25.5
-t-10.5 -25.5t-25.5 -10.5t-25.5 10.5t-10.5 25.5zM376 0q0 10 7 17t17 7t17 -7t7 -17t-7 -17t-17 -7t-17 7t-7 17zM176 0q0 10 7 17t17 7t17 -7t7 -17t-7 -17t-17 -7t-17 7t-7 17zM-24 0q0 10 7 17t17 7t17 -7t7 -17t-7 -17t-17 -7t-17 7t-7 17zM464 -100q0 15 10.5 25.5
-t25.5 10.5t25.5 -10.5t10.5 -25.5t-10.5 -25.5t-25.5 -10.5t-25.5 10.5t-10.5 25.5zM264 -100q0 15 10.5 25.5t25.5 10.5t25.5 -10.5t10.5 -25.5t-10.5 -25.5t-25.5 -10.5t-25.5 10.5t-10.5 25.5zM64 -100q0 15 10.5 25.5t25.5 10.5t25.5 -10.5t10.5 -25.5t-10.5 -25.5
-t-25.5 -10.5t-25.5 10.5t-10.5 25.5zM376 -200q0 10 7 17t17 7t17 -7t7 -17t-7 -17t-17 -7t-17 7t-7 17zM176 -200q0 10 7 17t17 7t17 -7t7 -17t-7 -17t-17 -7t-17 7t-7 17zM-24 -200q0 10 7 17t17 7t17 -7t7 -17t-7 -17t-17 -7t-17 7t-7 17zM464 -300q0 15 10.5 25.5
-t25.5 10.5t25.5 -10.5t10.5 -25.5t-10.5 -25.5t-25.5 -10.5t-25.5 10.5t-10.5 25.5zM264 -300q0 15 10.5 25.5t25.5 10.5t25.5 -10.5t10.5 -25.5t-10.5 -25.5t-25.5 -10.5t-25.5 10.5t-10.5 25.5zM64 -300q0 15 10.5 25.5t25.5 10.5t25.5 -10.5t10.5 -25.5t-10.5 -25.5
-t-25.5 -10.5t-25.5 10.5t-10.5 25.5zM376 -400q0 10 7 17t17 7t17 -7t7 -17t-7 -17t-17 -7t-17 7t-7 17zM176 -400q0 10 7 17t17 7t17 -7t7 -17t-7 -17t-17 -7t-17 7t-7 17zM-24 -400q0 10 7 17t17 7t17 -7t7 -17t-7 -17t-17 -7t-17 7t-7 17z" />
-    <glyph glyph-name="uni2592" unicode="&#x2592;" 
-d="M446 900q0 23 15.5 38.5t38.5 15.5t38.5 -15.5t15.5 -38.5t-15.5 -38.5t-38.5 -15.5t-38.5 15.5t-15.5 38.5zM246 900q0 23 15.5 38.5t38.5 15.5t38.5 -15.5t15.5 -38.5t-15.5 -38.5t-38.5 -15.5t-38.5 15.5t-15.5 38.5zM46 900q0 23 15.5 38.5t38.5 15.5t38.5 -15.5
-t15.5 -38.5t-15.5 -38.5t-38.5 -15.5t-38.5 15.5t-15.5 38.5zM364 800q0 15 10.5 25.5t25.5 10.5t25.5 -10.5t10.5 -25.5t-10.5 -25.5t-25.5 -10.5t-25.5 10.5t-10.5 25.5zM164 800q0 15 10.5 25.5t25.5 10.5t25.5 -10.5t10.5 -25.5t-10.5 -25.5t-25.5 -10.5t-25.5 10.5
-t-10.5 25.5zM-36 800q0 15 10.5 25.5t25.5 10.5t25.5 -10.5t10.5 -25.5t-10.5 -25.5t-25.5 -10.5t-25.5 10.5t-10.5 25.5zM446 700q0 23 15.5 38.5t38.5 15.5t38.5 -15.5t15.5 -38.5t-15.5 -38.5t-38.5 -15.5t-38.5 15.5t-15.5 38.5zM246 700q0 23 15.5 38.5t38.5 15.5
-t38.5 -15.5t15.5 -38.5t-15.5 -38.5t-38.5 -15.5t-38.5 15.5t-15.5 38.5zM46 700q0 23 15.5 38.5t38.5 15.5t38.5 -15.5t15.5 -38.5t-15.5 -38.5t-38.5 -15.5t-38.5 15.5t-15.5 38.5zM364 600q0 15 10.5 25.5t25.5 10.5t25.5 -10.5t10.5 -25.5t-10.5 -25.5t-25.5 -10.5
-t-25.5 10.5t-10.5 25.5zM164 600q0 15 10.5 25.5t25.5 10.5t25.5 -10.5t10.5 -25.5t-10.5 -25.5t-25.5 -10.5t-25.5 10.5t-10.5 25.5zM-36 600q0 15 10.5 25.5t25.5 10.5t25.5 -10.5t10.5 -25.5t-10.5 -25.5t-25.5 -10.5t-25.5 10.5t-10.5 25.5zM446 500q0 23 15.5 38.5
-t38.5 15.5t38.5 -15.5t15.5 -38.5t-15.5 -38.5t-38.5 -15.5t-38.5 15.5t-15.5 38.5zM246 500q0 23 15.5 38.5t38.5 15.5t38.5 -15.5t15.5 -38.5t-15.5 -38.5t-38.5 -15.5t-38.5 15.5t-15.5 38.5zM46 500q0 23 15.5 38.5t38.5 15.5t38.5 -15.5t15.5 -38.5t-15.5 -38.5
-t-38.5 -15.5t-38.5 15.5t-15.5 38.5zM364 400q0 15 10.5 25.5t25.5 10.5t25.5 -10.5t10.5 -25.5t-10.5 -25.5t-25.5 -10.5t-25.5 10.5t-10.5 25.5zM164 400q0 15 10.5 25.5t25.5 10.5t25.5 -10.5t10.5 -25.5t-10.5 -25.5t-25.5 -10.5t-25.5 10.5t-10.5 25.5zM-36 400
-q0 15 10.5 25.5t25.5 10.5t25.5 -10.5t10.5 -25.5t-10.5 -25.5t-25.5 -10.5t-25.5 10.5t-10.5 25.5zM446 300q0 23 15.5 38.5t38.5 15.5t38.5 -15.5t15.5 -38.5t-15.5 -38.5t-38.5 -15.5t-38.5 15.5t-15.5 38.5zM246 300q0 23 15.5 38.5t38.5 15.5t38.5 -15.5t15.5 -38.5
-t-15.5 -38.5t-38.5 -15.5t-38.5 15.5t-15.5 38.5zM46 300q0 23 15.5 38.5t38.5 15.5t38.5 -15.5t15.5 -38.5t-15.5 -38.5t-38.5 -15.5t-38.5 15.5t-15.5 38.5zM364 200q0 15 10.5 25.5t25.5 10.5t25.5 -10.5t10.5 -25.5t-10.5 -25.5t-25.5 -10.5t-25.5 10.5t-10.5 25.5z
-M164 200q0 15 10.5 25.5t25.5 10.5t25.5 -10.5t10.5 -25.5t-10.5 -25.5t-25.5 -10.5t-25.5 10.5t-10.5 25.5zM-36 200q0 15 10.5 25.5t25.5 10.5t25.5 -10.5t10.5 -25.5t-10.5 -25.5t-25.5 -10.5t-25.5 10.5t-10.5 25.5zM446 100q0 23 15.5 38.5t38.5 15.5t38.5 -15.5
-t15.5 -38.5t-15.5 -38.5t-38.5 -15.5t-38.5 15.5t-15.5 38.5zM246 100q0 23 15.5 38.5t38.5 15.5t38.5 -15.5t15.5 -38.5t-15.5 -38.5t-38.5 -15.5t-38.5 15.5t-15.5 38.5zM46 100q0 23 15.5 38.5t38.5 15.5t38.5 -15.5t15.5 -38.5t-15.5 -38.5t-38.5 -15.5t-38.5 15.5
-t-15.5 38.5zM364 0q0 15 10.5 25.5t25.5 10.5t25.5 -10.5t10.5 -25.5t-10.5 -25.5t-25.5 -10.5t-25.5 10.5t-10.5 25.5zM164 0q0 15 10.5 25.5t25.5 10.5t25.5 -10.5t10.5 -25.5t-10.5 -25.5t-25.5 -10.5t-25.5 10.5t-10.5 25.5zM-36 0q0 15 10.5 25.5t25.5 10.5t25.5 -10.5
-t10.5 -25.5t-10.5 -25.5t-25.5 -10.5t-25.5 10.5t-10.5 25.5zM446 -100q0 23 15.5 38.5t38.5 15.5t38.5 -15.5t15.5 -38.5t-15.5 -38.5t-38.5 -15.5t-38.5 15.5t-15.5 38.5zM246 -100q0 23 15.5 38.5t38.5 15.5t38.5 -15.5t15.5 -38.5t-15.5 -38.5t-38.5 -15.5t-38.5 15.5
-t-15.5 38.5zM46 -100q0 23 15.5 38.5t38.5 15.5t38.5 -15.5t15.5 -38.5t-15.5 -38.5t-38.5 -15.5t-38.5 15.5t-15.5 38.5zM364 -200q0 15 10.5 25.5t25.5 10.5t25.5 -10.5t10.5 -25.5t-10.5 -25.5t-25.5 -10.5t-25.5 10.5t-10.5 25.5zM164 -200q0 15 10.5 25.5t25.5 10.5
-t25.5 -10.5t10.5 -25.5t-10.5 -25.5t-25.5 -10.5t-25.5 10.5t-10.5 25.5zM-36 -200q0 15 10.5 25.5t25.5 10.5t25.5 -10.5t10.5 -25.5t-10.5 -25.5t-25.5 -10.5t-25.5 10.5t-10.5 25.5zM446 -300q0 23 15.5 38.5t38.5 15.5t38.5 -15.5t15.5 -38.5t-15.5 -38.5t-38.5 -15.5
-t-38.5 15.5t-15.5 38.5zM246 -300q0 23 15.5 38.5t38.5 15.5t38.5 -15.5t15.5 -38.5t-15.5 -38.5t-38.5 -15.5t-38.5 15.5t-15.5 38.5zM46 -300q0 23 15.5 38.5t38.5 15.5t38.5 -15.5t15.5 -38.5t-15.5 -38.5t-38.5 -15.5t-38.5 15.5t-15.5 38.5zM364 -400q0 15 10.5 25.5
-t25.5 10.5t25.5 -10.5t10.5 -25.5t-10.5 -25.5t-25.5 -10.5t-25.5 10.5t-10.5 25.5zM164 -400q0 15 10.5 25.5t25.5 10.5t25.5 -10.5t10.5 -25.5t-10.5 -25.5t-25.5 -10.5t-25.5 10.5t-10.5 25.5zM-36 -400q0 15 10.5 25.5t25.5 10.5t25.5 -10.5t10.5 -25.5t-10.5 -25.5
-t-25.5 -10.5t-25.5 10.5t-10.5 25.5z" />
-    <glyph glyph-name="uni2593" unicode="&#x2593;" 
-d="M419 900q0 34 23.5 57.5t57.5 23.5t57.5 -23.5t23.5 -57.5t-23.5 -57.5t-57.5 -23.5t-57.5 23.5t-23.5 57.5zM219 900q0 34 23.5 57.5t57.5 23.5t57.5 -23.5t23.5 -57.5t-23.5 -57.5t-57.5 -23.5t-57.5 23.5t-23.5 57.5zM19 900q0 34 23.5 57.5t57.5 23.5t57.5 -23.5
-t23.5 -57.5t-23.5 -57.5t-57.5 -23.5t-57.5 23.5t-23.5 57.5zM346 800q0 23 15.5 38.5t38.5 15.5t38.5 -15.5t15.5 -38.5t-15.5 -38.5t-38.5 -15.5t-38.5 15.5t-15.5 38.5zM146 800q0 23 15.5 38.5t38.5 15.5t38.5 -15.5t15.5 -38.5t-15.5 -38.5t-38.5 -15.5t-38.5 15.5
-t-15.5 38.5zM-54 800q0 23 15.5 38.5t38.5 15.5t38.5 -15.5t15.5 -38.5t-15.5 -38.5t-38.5 -15.5t-38.5 15.5t-15.5 38.5zM419 700q0 34 23.5 57.5t57.5 23.5t57.5 -23.5t23.5 -57.5t-23.5 -57.5t-57.5 -23.5t-57.5 23.5t-23.5 57.5zM219 700q0 34 23.5 57.5t57.5 23.5
-t57.5 -23.5t23.5 -57.5t-23.5 -57.5t-57.5 -23.5t-57.5 23.5t-23.5 57.5zM19 700q0 34 23.5 57.5t57.5 23.5t57.5 -23.5t23.5 -57.5t-23.5 -57.5t-57.5 -23.5t-57.5 23.5t-23.5 57.5zM346 600q0 23 15.5 38.5t38.5 15.5t38.5 -15.5t15.5 -38.5t-15.5 -38.5t-38.5 -15.5
-t-38.5 15.5t-15.5 38.5zM146 600q0 23 15.5 38.5t38.5 15.5t38.5 -15.5t15.5 -38.5t-15.5 -38.5t-38.5 -15.5t-38.5 15.5t-15.5 38.5zM-54 600q0 23 15.5 38.5t38.5 15.5t38.5 -15.5t15.5 -38.5t-15.5 -38.5t-38.5 -15.5t-38.5 15.5t-15.5 38.5zM419 500q0 34 23.5 57.5
-t57.5 23.5t57.5 -23.5t23.5 -57.5t-23.5 -57.5t-57.5 -23.5t-57.5 23.5t-23.5 57.5zM219 500q0 34 23.5 57.5t57.5 23.5t57.5 -23.5t23.5 -57.5t-23.5 -57.5t-57.5 -23.5t-57.5 23.5t-23.5 57.5zM19 500q0 34 23.5 57.5t57.5 23.5t57.5 -23.5t23.5 -57.5t-23.5 -57.5
-t-57.5 -23.5t-57.5 23.5t-23.5 57.5zM346 400q0 23 15.5 38.5t38.5 15.5t38.5 -15.5t15.5 -38.5t-15.5 -38.5t-38.5 -15.5t-38.5 15.5t-15.5 38.5zM146 400q0 23 15.5 38.5t38.5 15.5t38.5 -15.5t15.5 -38.5t-15.5 -38.5t-38.5 -15.5t-38.5 15.5t-15.5 38.5zM-54 400
-q0 23 15.5 38.5t38.5 15.5t38.5 -15.5t15.5 -38.5t-15.5 -38.5t-38.5 -15.5t-38.5 15.5t-15.5 38.5zM419 300q0 34 23.5 57.5t57.5 23.5t57.5 -23.5t23.5 -57.5t-23.5 -57.5t-57.5 -23.5t-57.5 23.5t-23.5 57.5zM219 300q0 34 23.5 57.5t57.5 23.5t57.5 -23.5t23.5 -57.5
-t-23.5 -57.5t-57.5 -23.5t-57.5 23.5t-23.5 57.5zM19 300q0 34 23.5 57.5t57.5 23.5t57.5 -23.5t23.5 -57.5t-23.5 -57.5t-57.5 -23.5t-57.5 23.5t-23.5 57.5zM346 200q0 23 15.5 38.5t38.5 15.5t38.5 -15.5t15.5 -38.5t-15.5 -38.5t-38.5 -15.5t-38.5 15.5t-15.5 38.5z
-M146 200q0 23 15.5 38.5t38.5 15.5t38.5 -15.5t15.5 -38.5t-15.5 -38.5t-38.5 -15.5t-38.5 15.5t-15.5 38.5zM-54 200q0 23 15.5 38.5t38.5 15.5t38.5 -15.5t15.5 -38.5t-15.5 -38.5t-38.5 -15.5t-38.5 15.5t-15.5 38.5zM419 100q0 34 23.5 57.5t57.5 23.5t57.5 -23.5
-t23.5 -57.5t-23.5 -57.5t-57.5 -23.5t-57.5 23.5t-23.5 57.5zM219 100q0 34 23.5 57.5t57.5 23.5t57.5 -23.5t23.5 -57.5t-23.5 -57.5t-57.5 -23.5t-57.5 23.5t-23.5 57.5zM19 100q0 34 23.5 57.5t57.5 23.5t57.5 -23.5t23.5 -57.5t-23.5 -57.5t-57.5 -23.5t-57.5 23.5
-t-23.5 57.5zM346 0q0 23 15.5 38.5t38.5 15.5t38.5 -15.5t15.5 -38.5t-15.5 -38.5t-38.5 -15.5t-38.5 15.5t-15.5 38.5zM146 0q0 23 15.5 38.5t38.5 15.5t38.5 -15.5t15.5 -38.5t-15.5 -38.5t-38.5 -15.5t-38.5 15.5t-15.5 38.5zM-54 0q0 23 15.5 38.5t38.5 15.5t38.5 -15.5
-t15.5 -38.5t-15.5 -38.5t-38.5 -15.5t-38.5 15.5t-15.5 38.5zM419 -100q0 34 23.5 57.5t57.5 23.5t57.5 -23.5t23.5 -57.5t-23.5 -57.5t-57.5 -23.5t-57.5 23.5t-23.5 57.5zM219 -100q0 34 23.5 57.5t57.5 23.5t57.5 -23.5t23.5 -57.5t-23.5 -57.5t-57.5 -23.5t-57.5 23.5
-t-23.5 57.5zM19 -100q0 34 23.5 57.5t57.5 23.5t57.5 -23.5t23.5 -57.5t-23.5 -57.5t-57.5 -23.5t-57.5 23.5t-23.5 57.5zM346 -200q0 23 15.5 38.5t38.5 15.5t38.5 -15.5t15.5 -38.5t-15.5 -38.5t-38.5 -15.5t-38.5 15.5t-15.5 38.5zM146 -200q0 23 15.5 38.5t38.5 15.5
-t38.5 -15.5t15.5 -38.5t-15.5 -38.5t-38.5 -15.5t-38.5 15.5t-15.5 38.5zM-54 -200q0 23 15.5 38.5t38.5 15.5t38.5 -15.5t15.5 -38.5t-15.5 -38.5t-38.5 -15.5t-38.5 15.5t-15.5 38.5zM419 -300q0 34 23.5 57.5t57.5 23.5t57.5 -23.5t23.5 -57.5t-23.5 -57.5t-57.5 -23.5
-t-57.5 23.5t-23.5 57.5zM219 -300q0 34 23.5 57.5t57.5 23.5t57.5 -23.5t23.5 -57.5t-23.5 -57.5t-57.5 -23.5t-57.5 23.5t-23.5 57.5zM19 -300q0 34 23.5 57.5t57.5 23.5t57.5 -23.5t23.5 -57.5t-23.5 -57.5t-57.5 -23.5t-57.5 23.5t-23.5 57.5zM346 -400q0 23 15.5 38.5
-t38.5 15.5t38.5 -15.5t15.5 -38.5t-15.5 -38.5t-38.5 -15.5t-38.5 15.5t-15.5 38.5zM146 -400q0 23 15.5 38.5t38.5 15.5t38.5 -15.5t15.5 -38.5t-15.5 -38.5t-38.5 -15.5t-38.5 15.5t-15.5 38.5zM-54 -400q0 23 15.5 38.5t38.5 15.5t38.5 -15.5t15.5 -38.5t-15.5 -38.5
-t-38.5 -15.5t-38.5 15.5t-15.5 38.5z" />
-    <glyph glyph-name="uni2594" unicode="&#x2594;" 
-d="M0 825v175h600v-175h-600z" />
-    <glyph glyph-name="uni2595" unicode="&#x2595;" 
-d="M525 -400v1400h75v-1400h-75z" />
-    <glyph glyph-name="uni2596" unicode="&#x2596;" 
-d="M0 -400v700h300v-700h-300z" />
-    <glyph glyph-name="uni2597" unicode="&#x2597;" 
-d="M300 -400v700h300v-700h-300z" />
-    <glyph glyph-name="uni2598" unicode="&#x2598;" 
-d="M0 300v700h300v-700h-300z" />
-    <glyph glyph-name="uni2599" unicode="&#x2599;" 
-d="M0 -400v1400h300v-700h300v-700h-600z" />
-    <glyph glyph-name="uni259A" unicode="&#x259a;" 
-d="M0 300v700h300v-700h-300zM300 -400v700h300v-700h-300z" />
-    <glyph glyph-name="uni259B" unicode="&#x259b;" 
-d="M600 300h-300v-700h-300v1400h600v-700z" />
-    <glyph glyph-name="uni259C" unicode="&#x259c;" 
-d="M600 -400h-300v700h-300v700h600v-1400z" />
-    <glyph glyph-name="uni259D" unicode="&#x259d;" 
-d="M300 300v700h300v-700h-300z" />
-    <glyph glyph-name="uni259E" unicode="&#x259e;" 
-d="M300 1000h300v-700h-300v700zM0 300h300v-700h-300v700z" />
-    <glyph glyph-name="uni259F" unicode="&#x259f;" 
-d="M600 -400h-600v700h300v700h300v-1400z" />
-    <glyph glyph-name="uni202F" unicode="&#x202f;" 
- />
-    <glyph glyph-name="uniFEFF" unicode="&#xfeff;" 
- />
-    <glyph glyph-name="uniFE0E" unicode="&#xfe0e;" 
-d="M300 583q-8 0 -14 6t-6 15q0 8 6 14t14 6q9 0 14.5 -6t5.5 -14q0 -9 -5.5 -15t-14.5 -6zM300 33q-8 0 -14 6t-6 15q0 8 6 14t14 6q9 0 14.5 -6t5.5 -14q0 -9 -5.5 -15t-14.5 -6zM250 583q-8 0 -14 6t-6 15q0 8 6 14t14 6q9 0 14.5 -6t5.5 -14q0 -9 -5.5 -15t-14.5 -6z
-M250 33q-8 0 -14 6t-6 15q0 8 6 14t14 6q9 0 14.5 -6t5.5 -14q0 -9 -5.5 -15t-14.5 -6zM200 583q-8 0 -14 6t-6 15q0 8 6 14t14 6q9 0 14.5 -6t5.5 -14q0 -9 -5.5 -15t-14.5 -6zM150 583q-8 0 -14 6t-6 15q0 8 6 14t14 6q9 0 14.5 -6t5.5 -14q0 -9 -5.5 -15t-14.5 -6z
-M100 583q-8 0 -14 6t-6 15q0 8 6 14t14 6q9 0 14.5 -6t5.5 -14q0 -9 -5.5 -15t-14.5 -6zM50 583q-8 0 -14 6t-6 15q0 8 6 14t14 6q9 0 14.5 -6t5.5 -14q0 -9 -5.5 -15t-14.5 -6zM50 533q-8 0 -14 6t-6 15q0 8 6 14t14 6q9 0 14.5 -6t5.5 -14q0 -9 -5.5 -15t-14.5 -6zM50 483
-q-8 0 -14 6t-6 15q0 8 6 14t14 6q9 0 14.5 -6t5.5 -14q0 -9 -5.5 -15t-14.5 -6zM50 433q-8 0 -14 6t-6 15q0 8 6 14t14 6q9 0 14.5 -6t5.5 -14q0 -9 -5.5 -15t-14.5 -6zM150 383q-8 0 -14 6t-6 15q0 8 6 14t14 6q9 0 14.5 -6t5.5 -14q0 -9 -5.5 -15t-14.5 -6zM100 383
-q-8 0 -14 6t-6 15q0 8 6 14t14 6q9 0 14.5 -6t5.5 -14q0 -9 -5.5 -15t-14.5 -6zM50 383q-8 0 -14 6t-6 15q0 8 6 14t14 6q9 0 14.5 -6t5.5 -14q0 -9 -5.5 -15t-14.5 -6zM200 383q-8 0 -14 6t-6 15q0 8 6 14t14 6q9 0 14.5 -6t5.5 -14q0 -9 -5.5 -15t-14.5 -6zM200 333
-q-8 0 -14 6t-6 15q0 8 6 14t14 6q9 0 14.5 -6t5.5 -14q0 -9 -5.5 -15t-14.5 -6zM200 283q-8 0 -14 6t-6 15q0 8 6 14t14 6q9 0 14.5 -6t5.5 -14q0 -9 -5.5 -15t-14.5 -6zM200 233q-8 0 -14 6t-6 15q0 8 6 14t14 6q9 0 14.5 -6t5.5 -14q0 -9 -5.5 -15t-14.5 -6zM200 183
-q-8 0 -14 6t-6 15q0 8 6 14t14 6q9 0 14.5 -6t5.5 -14q0 -9 -5.5 -15t-14.5 -6zM200 133q-8 0 -14 6t-6 15q0 8 6 14t14 6q9 0 14.5 -6t5.5 -14q0 -9 -5.5 -15t-14.5 -6zM200 83q-8 0 -14 6t-6 15q0 8 6 14t14 6q9 0 14.5 -6t5.5 -14q0 -9 -5.5 -15t-14.5 -6zM200 33
-q-8 0 -14 6t-6 15q0 8 6 14t14 6q9 0 14.5 -6t5.5 -14q0 -9 -5.5 -15t-14.5 -6zM350 583q-9 0 -14.5 6t-5.5 15q0 8 5.5 14t14.5 6q8 0 14 -6t6 -14q0 -9 -6 -15t-14 -6zM350 33q-9 0 -14.5 6t-5.5 15q0 8 5.5 14t14.5 6q8 0 14 -6t6 -14q0 -9 -6 -15t-14 -6zM400 583
-q-9 0 -14.5 6t-5.5 15q0 8 5.5 14t14.5 6q8 0 14 -6t6 -14q0 -9 -6 -15t-14 -6zM450 583q-9 0 -14.5 6t-5.5 15q0 8 5.5 14t14.5 6q8 0 14 -6t6 -14q0 -9 -6 -15t-14 -6zM500 583q-9 0 -14.5 6t-5.5 15q0 8 5.5 14t14.5 6q8 0 14 -6t6 -14q0 -9 -6 -15t-14 -6zM550 583
-q-9 0 -14.5 6t-5.5 15q0 8 5.5 14t14.5 6q8 0 14 -6t6 -14q0 -9 -6 -15t-14 -6zM550 533q-9 0 -14.5 6t-5.5 15q0 8 5.5 14t14.5 6q8 0 14 -6t6 -14q0 -9 -6 -15t-14 -6zM550 483q-9 0 -14.5 6t-5.5 15q0 8 5.5 14t14.5 6q8 0 14 -6t6 -14q0 -9 -6 -15t-14 -6zM550 433
-q-9 0 -14.5 6t-5.5 15q0 8 5.5 14t14.5 6q8 0 14 -6t6 -14q0 -9 -6 -15t-14 -6zM450 383q-9 0 -14.5 6t-5.5 15q0 8 5.5 14t14.5 6q8 0 14 -6t6 -14q0 -9 -6 -15t-14 -6zM500 383q-9 0 -14.5 6t-5.5 15q0 8 5.5 14t14.5 6q8 0 14 -6t6 -14q0 -9 -6 -15t-14 -6zM550 383
-q-9 0 -14.5 6t-5.5 15q0 8 5.5 14t14.5 6q8 0 14 -6t6 -14q0 -9 -6 -15t-14 -6zM400 383q-9 0 -14.5 6t-5.5 15q0 8 5.5 14t14.5 6q8 0 14 -6t6 -14q0 -9 -6 -15t-14 -6zM400 333q-9 0 -14.5 6t-5.5 15q0 8 5.5 14t14.5 6q8 0 14 -6t6 -14q0 -9 -6 -15t-14 -6zM400 283
-q-9 0 -14.5 6t-5.5 15q0 8 5.5 14t14.5 6q8 0 14 -6t6 -14q0 -9 -6 -15t-14 -6zM400 233q-9 0 -14.5 6t-5.5 15q0 8 5.5 14t14.5 6q8 0 14 -6t6 -14q0 -9 -6 -15t-14 -6zM400 183q-9 0 -14.5 6t-5.5 15q0 8 5.5 14t14.5 6q8 0 14 -6t6 -14q0 -9 -6 -15t-14 -6zM400 133
-q-9 0 -14.5 6t-5.5 15q0 8 5.5 14t14.5 6q8 0 14 -6t6 -14q0 -9 -6 -15t-14 -6zM400 83q-9 0 -14.5 6t-5.5 15q0 8 5.5 14t14.5 6q8 0 14 -6t6 -14q0 -9 -6 -15t-14 -6zM400 33q-9 0 -14.5 6t-5.5 15q0 8 5.5 14t14.5 6q8 0 14 -6t6 -14q0 -9 -6 -15t-14 -6z" />
-    <glyph glyph-name="uniFE0F" unicode="&#xfe0f;" 
-d="M300 579q-20 0 -20 20t20 20t20 -20t-20 -20zM41 372q-20 0 -20 20t20 20t20 -20t-20 -20zM58 431q-20 0 -20 20t20 20t20 -20t-20 -20zM91 481q-8 0 -14 6.5t-6 15.5q0 8 6 14t14 6q9 0 14.5 -6t5.5 -14q0 -9 -5.5 -15.5t-14.5 -6.5zM134 524q-8 0 -14 6.5t-6 15.5
-t6 14.5t14 5.5q20 0 20 -20q0 -9 -5 -15.5t-15 -6.5zM186 554q-9 0 -14.5 6.5t-5.5 15.5q0 20 20 20t20 -20q0 -9 -5.5 -15.5t-14.5 -6.5zM242 572q-8 0 -14 6.5t-6 15.5t6 14.5t14 5.5q20 0 20 -20q0 -9 -5 -15.5t-15 -6.5zM565 308q-9 0 -14.5 6.5t-5.5 15.5q0 20 20 20
-t20 -20q0 -9 -5.5 -15.5t-14.5 -6.5zM559 372q-20 0 -20 20t20 20t20 -20t-20 -20zM542 431q-20 0 -20 20t20 20t20 -20t-20 -20zM509 481q-9 0 -14.5 6.5t-5.5 15.5q0 8 5.5 14t14.5 6q8 0 14 -6t6 -14q0 -9 -6 -15.5t-14 -6.5zM466 524q-10 0 -15 6.5t-5 15.5q0 20 20 20
-q8 0 14 -5.5t6 -14.5t-6 -15.5t-14 -6.5zM414 554q-9 0 -14.5 6.5t-5.5 15.5q0 20 20 20t20 -20q0 -9 -5.5 -15.5t-14.5 -6.5zM358 572q-10 0 -15 6.5t-5 15.5q0 20 20 20q8 0 14 -5.5t6 -14.5t-6 -15.5t-14 -6.5zM300 81q9 0 14.5 -6.5t5.5 -15.5q0 -8 -5.5 -14t-14.5 -6
-t-14.5 6t-5.5 14q0 9 5.5 15.5t14.5 6.5zM35 350q20 0 20 -22q0 -8 -5.5 -14t-14.5 -6t-14.5 6t-5.5 14q0 22 20 22zM41 288q9 0 14.5 -6.5t5.5 -15.5q0 -8 -5.5 -14t-14.5 -6t-14.5 6t-5.5 14q0 9 5.5 15.5t14.5 6.5zM58 229q9 0 14.5 -6.5t5.5 -15.5q0 -8 -5.5 -14
-t-14.5 -6t-14.5 6t-5.5 14q0 9 5.5 15.5t14.5 6.5zM91 177q20 0 20 -20t-20 -20q-8 0 -14 5.5t-6 14.5t6 14.5t14 5.5zM134 134q20 0 20 -22q0 -8 -5 -14t-15 -6q-8 0 -14 6t-6 14q0 11 6 16.5t14 5.5zM186 104q20 0 20 -22q0 -8 -5.5 -14t-14.5 -6t-14.5 6t-5.5 14
-q0 22 20 22zM242 86q20 0 20 -22q0 -8 -5 -14t-15 -6q-8 0 -14 6t-6 14q0 11 6 16.5t14 5.5zM559 288q9 0 14.5 -6.5t5.5 -15.5q0 -8 -5.5 -14t-14.5 -6t-14.5 6t-5.5 14q0 9 5.5 15.5t14.5 6.5zM542 229q9 0 14.5 -6.5t5.5 -15.5q0 -8 -5.5 -14t-14.5 -6t-14.5 6t-5.5 14
-q0 9 5.5 15.5t14.5 6.5zM509 177q8 0 14 -5.5t6 -14.5t-6 -14.5t-14 -5.5q-20 0 -20 20t20 20zM466 134q8 0 14 -5.5t6 -16.5q0 -8 -6 -14t-14 -6q-10 0 -15 6t-5 14q0 22 20 22zM414 104q20 0 20 -22q0 -8 -5.5 -14t-14.5 -6t-14.5 6t-5.5 14q0 22 20 22zM358 86
-q8 0 14 -5.5t6 -16.5q0 -8 -6 -14t-14 -6q-10 0 -15 6t-5 14q0 22 20 22zM300 207q9 0 14.5 -6.5t5.5 -15.5q0 -8 -5.5 -14t-14.5 -6t-14.5 6t-5.5 14q0 9 5.5 15.5t14.5 6.5zM444 288q9 0 14.5 -6.5t5.5 -15.5q0 -8 -5.5 -14t-14.5 -6t-14.5 6t-5.5 14q0 9 5.5 15.5
-t14.5 6.5zM409 240q9 0 14.5 -6.5t5.5 -15.5q0 -8 -5.5 -14t-14.5 -6t-14.5 6t-5.5 14q0 9 5.5 15.5t14.5 6.5zM358 213q8 0 14 -5.5t6 -14.5t-6 -14.5t-14 -5.5q-20 0 -20 20t20 20zM156 288q9 0 14.5 -6.5t5.5 -15.5q0 -8 -5.5 -14t-14.5 -6t-14.5 6t-5.5 14q0 9 5.5 15.5
-t14.5 6.5zM191 240q9 0 14.5 -6.5t5.5 -15.5q0 -8 -5.5 -14t-14.5 -6t-14.5 6t-5.5 14q0 9 5.5 15.5t14.5 6.5zM242 213q20 0 20 -20t-20 -20q-8 0 -14 5.5t-6 14.5t6 14.5t14 5.5zM222 366q20 0 20 -20t-20 -20t-20 20t20 20zM262 396q9 0 14.5 -6.5t5.5 -15.5
-q0 -8 -5.5 -14t-14.5 -6t-14.5 6t-5.5 14q0 9 5.5 15.5t14.5 6.5zM222 435q-20 0 -20 20t20 20t20 -20t-20 -20zM262 404q-9 0 -14.5 6.5t-5.5 15.5q0 8 5.5 14t14.5 6t14.5 -6t5.5 -14q0 -9 -5.5 -15.5t-14.5 -6.5zM182 396q9 0 14.5 -6.5t5.5 -15.5q0 -8 -5.5 -14
-t-14.5 -6t-14.5 6t-5.5 14q0 9 5.5 15.5t14.5 6.5zM182 404q-9 0 -14.5 6.5t-5.5 15.5q0 8 5.5 14t14.5 6t14.5 -6t5.5 -14q0 -9 -5.5 -15.5t-14.5 -6.5zM378 366q20 0 20 -20t-20 -20t-20 20t20 20zM338 396q9 0 14.5 -6.5t5.5 -15.5q0 -8 -5.5 -14t-14.5 -6t-14.5 6
-t-5.5 14q0 9 5.5 15.5t14.5 6.5zM378 435q-20 0 -20 20t20 20t20 -20t-20 -20zM338 404q-9 0 -14.5 6.5t-5.5 15.5q0 8 5.5 14t14.5 6t14.5 -6t5.5 -14q0 -9 -5.5 -15.5t-14.5 -6.5zM418 396q9 0 14.5 -6.5t5.5 -15.5q0 -8 -5.5 -14t-14.5 -6t-14.5 6t-5.5 14q0 9 5.5 15.5
-t14.5 6.5zM418 404q-9 0 -14.5 6.5t-5.5 15.5q0 8 5.5 14t14.5 6t14.5 -6t5.5 -14q0 -9 -5.5 -15.5t-14.5 -6.5z" />
-    <glyph glyph-name="u1F3B5" unicode="&#x1f3b5;" 
-d="M178 -24q-41 0 -71 19t-30 57q0 23 11.5 44t32 37.5t49.5 26t64 9.5q20 0 37 -3.5t24 -8.5v537h50q4 -10 8 -17.5t11.5 -15t19.5 -17t31 -22.5q34 -24 56 -47t35 -46.5t18 -49t5 -53.5q0 -39 -10.5 -73.5t-21.5 -57.5l-35 13q8 24 10.5 44.5t2.5 47.5q0 48 -32.5 89.5
-t-92.5 60.5v-407q0 -41 -14 -72.5t-37.5 -52.5t-55 -31.5t-65.5 -10.5z" />
-    <glyph glyph-name="u1F3B6" unicode="&#x1f3b6;" 
-d="M104 -24q-40 0 -70 19t-30 57q0 23 11 44t30.5 37.5t47.5 26t61 9.5q20 0 37 -3.5t24 -8.5v517l378 60v-539q0 -41 -13.5 -72t-36.5 -52t-53.5 -31.5t-63.5 -10.5q-40 0 -69.5 19t-29.5 57q0 23 11 44t30.5 37.5t47 26t60.5 9.5q20 0 37 -3.5t24 -8.5v363l-267 -42v-388
-q0 -41 -13.5 -72.5t-36.5 -52.5t-53 -31.5t-63 -10.5z" />
-    <glyph glyph-name="f_i" unicode="&#xfb01;" 
-d="M118 0v419h-66v62l66 5v77q0 75 34.5 118t107.5 43q23 0 43.5 -4.5t37.5 -11.5l-17 -63q-29 12 -55 12q-69 0 -69 -94v-77h103v-67h-103v-419h-82zM414 0v486h82v-486h-82zM456 588q-28 0 -47 17.5t-19 46.5t19 46.5t47 17.5t47 -17.5t19 -46.5t-19 -46.5t-47 -17.5z" />
-    <glyph glyph-name="f_l" unicode="&#xfb02;" 
-d="M123 0v419h-66v62l66 5v77q0 75 34.5 118t107.5 43q23 0 43.5 -4.5t37.5 -11.5l-18 -63q-27 12 -55 12q-68 0 -68 -94v-77h103v-67h-103v-419h-82zM488 -12q-47 0 -67 28t-20 82v614h82v-620q0 -20 7 -28t16 -8h7.5t10.5 2l11 -62q-9 -4 -20 -6t-27 -2z" />
-    <glyph glyph-name="uniE0A0" unicode="&#xe0a0;" 
-d="M180 -280h-81v281q0 59 13.5 100t35.5 70.5t50.5 50t58 38.5t58 37t50.5 45t35.5 62t13.5 89v225h-116l158 197l156 -197h-117v-243q0 -60 -13.5 -101.5t-35.5 -71t-50.5 -50t-58 -38.5t-58 -37t-50.5 -44.5t-35.5 -61.5t-13.5 -88v-263zM180 384l-81 -51v727h81v-676z
-" />
-    <glyph glyph-name="uniE0A1" unicode="&#xe0a1;" 
-d="M83 440v480h74v-418h224v-62h-298zM195 -166v478h82l180 -391h4l-18 215v176h74v-478h-84l-179 387h-4l19 -199v-188h-74z" />
-    <glyph glyph-name="uniE0A2" unicode="&#xe0a2;" 
-d="M85 -70l-40 36v518l40 36h46v153q0 88 44 135.5t125 47.5t125 -47.5t44 -135.5v-153h46l40 -36v-518l-40 -36h-430zM246 59l44 -20h20l44 20l-26 169q29 11 42.5 31.5t13.5 47.5q0 35 -24.5 59t-59.5 24t-59.5 -24t-24.5 -59q0 -27 13.5 -47.5t42.5 -31.5zM199 520h202
-v145q0 60 -25 93t-76 33t-76 -33t-25 -93v-145z" />
-    <glyph glyph-name="uniE0B0" unicode="&#xe0b0;" 
-d="M0 -280v1320l600 -660z" />
-    <glyph glyph-name="uniE0B1" unicode="&#xe0b1;" 
-d="M42 -225l-49 48l529 557l-529 557l49 48l569 -605z" />
-    <glyph glyph-name="uniE0B2" unicode="&#xe0b2;" 
-d="M613 -280l-613 660l613 660v-1320z" />
-    <glyph glyph-name="uniE0B3" unicode="&#xe0b3;" 
-d="M558 -225l-569 605l569 605l49 -48l-529 -557l529 -557z" />
-  </font>
-</defs></svg>
diff --git a/other/arrowHudExample.svg b/other/arrowHudExample.svg
deleted file mode 100644
--- a/other/arrowHudExample.svg
+++ /dev/null
@@ -1,5443 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
-    "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
-<svg xmlns="http://www.w3.org/2000/svg" height="400.0000" stroke-opacity="1" viewBox="0 0 600 400" font-size="1" width="600.0000" xmlns:xlink="http://www.w3.org/1999/xlink" stroke="rgb(0,0,0)" version="1.1">
-  <defs>
-  </defs>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 528.7361,23.6880 l -1.2130,1.2130 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 529.5938,22.8302 l -3.1348,1.5973 l 1.1730,0.3646 l 0.3646,1.1729 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 527.6320,24.7921 l -0.1089,0.1089 l -0.2071,-0.2071 l 0.3159,0.0982 l -0.1089,0.1089 l 0.2071,0.2071 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 528.7361,39.1011 l -1.1438,1.2784 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 529.5449,38.1971 l -3.0414,1.7687 l 1.1914,0.2990 l 0.4291,1.1509 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 527.6949,40.2648 l -0.1027,0.1147 l -0.2182,-0.1953 l 0.3209,0.0805 l -0.1027,0.1147 l 0.2182,0.1953 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 528.7361,54.5142 l -1.0630,1.3464 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 529.4877,53.5621 l -2.9267,1.9526 l 1.2075,0.2251 l 0.4992,1.1223 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 527.7685,55.7398 l -0.0954,0.1208 l -0.2299,-0.1815 l 0.3253,0.0606 l -0.0954,0.1208 l 0.2299,0.1815 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 528.7361,69.9273 l -0.9687,1.4158 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 529.4211,68.9261 l -2.7868,2.1476 l 1.2201,0.1422 l 0.5745,1.0857 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 527.8543,71.2160 l -0.0869,0.1271 l -0.2417,-0.1654 l 0.3286,0.0383 l -0.0869,0.1271 l 0.2417,0.1654 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 528.7361,85.3404 l -0.7547,1.3036 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 529.4487,84.1096 l -2.6174,2.3511 l 1.2273,0.0501 l 0.6545,1.0394 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 528.0585,86.5107 l -0.0771,0.1332 l -0.2534,-0.1467 l 0.3306,0.0135 l -0.0771,0.1332 l 0.2534,0.1467 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 528.7361,100.7535 l -0.3275,0.6913 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 529.6623,98.7982 l -2.4150,2.5586 l 1.2272,-0.0511 l 0.7379,0.9820 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 528.4745,101.3056 l -0.0659,0.1391 l -0.2647,-0.1254 l 0.3306,-0.0138 l -0.0659,0.1391 l 0.2647,0.1254 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 528.7361,116.1666 l 0.1550,-0.4208 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 529.9035,112.9979 l -2.1770,2.7639 l 1.2178,-0.1605 l 0.8226,0.9122 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 528.9443,115.6013 l -0.0532,0.1445 l -0.2748,-0.1012 l 0.3280,-0.0432 l -0.0532,0.1445 l 0.2748,0.1012 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 528.7361,131.5797 l 0.6892,-2.6191 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 530.1706,126.1286 l -1.9030,2.9592 l 1.1969,-0.2761 l 0.9059,0.8295 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 529.4645,128.8117 l -0.0392,0.1489 l -0.2832,-0.0745 l 0.3224,-0.0744 l -0.0392,0.1489 l 0.2832,0.0745 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 528.7361,146.9928 l 1.2663,-8.0199 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 530.4592,136.0803 l -1.5958,3.1356 l 1.1631,-0.3950 l 0.9848,0.7342 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 530.0265,138.8208 l -0.0240,0.1521 l -0.2893,-0.0457 l 0.3133,-0.1064 l -0.0240,0.1521 l 0.2893,0.0457 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 528.7361,162.4059 l 1.7439,-33.1321 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 530.6980,125.1323 l -1.8158,4.7270 l 1.6059,-0.7393 l 1.5194,0.9038 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 530.4881,129.1200 l -0.0081,0.1537 l -0.2924,-0.0154 l 0.3005,-0.1384 l -0.0081,0.1537 l 0.2924,0.0154 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 528.7361,177.8190 l 1.7439,33.1318 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 530.6980,215.0922 l 1.3095,-4.8915 l -1.5194,0.9038 l -1.6059,-0.7393 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 530.4881,211.1045 l -0.0081,-0.1537 l 0.2924,-0.0154 l -0.2844,0.1691 l -0.0081,-0.1537 l -0.2924,0.0154 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 528.7361,193.2321 l 1.2663,8.0195 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 530.4592,204.1442 l 0.5520,-3.4747 l -0.9848,0.7342 l -1.1631,-0.3950 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 530.0264,201.4036 l -0.0240,-0.1521 l 0.2893,-0.0457 l -0.2653,0.1978 l -0.0240,-0.1521 l -0.2893,0.0457 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 528.7361,208.6452 l 0.6892,2.6187 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 530.1706,214.0959 l 0.1998,-3.5126 l -0.9059,0.8295 l -1.1969,-0.2761 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 529.4645,211.4128 l -0.0392,-0.1489 l 0.2832,-0.0745 l -0.2440,0.2234 l -0.0392,-0.1489 l -0.2832,0.0745 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 528.7361,224.0583 l 0.1549,0.4204 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 529.9035,227.2266 l -0.1367,-3.5157 l -0.8226,0.9122 l -1.2178,-0.1605 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 528.9442,224.6232 l -0.0532,-0.1445 l 0.2748,-0.1012 l -0.2216,0.2457 l -0.0532,-0.1445 l -0.2748,0.1012 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 528.7361,239.4714 l -0.3276,-0.6916 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 529.6622,241.4263 l -0.4500,-3.4894 l -0.7378,0.9820 l -1.2272,-0.0511 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 528.4744,238.9189 l -0.0659,-0.1391 l 0.2647,-0.1254 l -0.1987,0.2645 l -0.0659,-0.1391 l -0.2647,0.1254 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 528.7361,254.8845 l -0.7549,-1.3038 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 529.4486,256.1150 l -0.7358,-3.4405 l -0.6545,1.0394 l -1.2273,0.0501 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 528.0583,253.7139 l -0.0771,-0.1332 l 0.2534,-0.1467 l -0.1763,0.2800 l -0.0771,-0.1332 l -0.2534,0.1467 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 528.7361,270.2976 l -0.9688,-1.4157 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 529.4211,271.2987 l -0.9924,-3.3755 l -0.5745,1.0857 l -1.2200,0.1423 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 527.8543,269.0089 l -0.0869,-0.1271 l 0.2417,-0.1654 l -0.1547,0.2924 l -0.0869,-0.1271 l -0.2417,0.1654 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 528.7361,285.7107 l -1.0631,-1.3464 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 529.4878,286.6627 l -1.2203,-3.2999 l -0.4991,1.1223 l -1.2075,0.2251 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 527.7684,284.4852 l -0.0954,-0.1208 l 0.2298,-0.1815 l -0.1344,0.3023 l -0.0954,-0.1208 l -0.2298,0.1815 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 528.7361,301.1238 l -1.1439,-1.2784 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 529.5450,302.0277 l -1.4211,-3.2185 l -0.4290,1.1509 l -1.1913,0.2991 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 527.6948,299.9602 l -0.1027,-0.1147 l 0.2182,-0.1953 l -0.1156,0.3100 l -0.1027,-0.1147 l -0.2182,0.1953 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 528.7361,316.5369 l -1.2131,-1.2129 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 529.5939,317.3946 l -1.5975,-3.1347 l -0.3645,1.1730 l -1.1729,0.3647 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 527.6319,315.4328 l -0.1089,-0.1089 l 0.2071,-0.2071 l -0.0982,0.3159 l -0.1089,-0.1089 l -0.2071,0.2071 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 513.3230,23.6880 l -1.2784,1.1439 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 514.2270,22.8791 l -3.2186,1.4210 l 1.1509,0.4291 l 0.2990,1.1914 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 512.1593,24.7292 l -0.1147,0.1027 l -0.1953,-0.2182 l 0.3100,0.1156 l -0.1147,0.1027 l 0.1953,0.2182 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 513.3230,39.1011 l -1.2130,1.2130 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 514.1807,38.2433 l -3.1348,1.5973 l 1.1730,0.3646 l 0.3646,1.1729 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 512.2189,40.2052 l -0.1089,0.1089 l -0.2071,-0.2071 l 0.3159,0.0982 l -0.1089,0.1089 l 0.2071,0.2071 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 513.3230,54.5142 l -1.1350,1.2863 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 514.1256,53.6046 l -3.0291,1.7897 l 1.1934,0.2907 l 0.4371,1.1479 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 512.2899,55.6850 l -0.1019,0.1154 l -0.2196,-0.1938 l 0.3215,0.0783 l -0.1019,0.1154 l 0.2196,0.1938 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 513.3230,69.9273 l -1.0420,1.3627 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 514.0598,68.9637 l -2.8962,1.9976 l 1.2109,0.2064 l 0.5164,1.1145 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 512.3745,71.1677 l -0.0935,0.1223 l -0.2326,-0.1779 l 0.3261,0.0556 l -0.0935,0.1223 l 0.2326,0.1779 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 513.3230,85.3404 l -0.7455,1.1522 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 514.1684,84.0339 l -2.7306,2.2187 l 1.2233,0.1107 l 0.6023,1.0705 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 512.6611,86.3633 l -0.0836,0.1293 l -0.2459,-0.1591 l 0.3295,0.0298 l -0.0836,0.1293 l 0.2459,0.1591 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 513.3230,100.7535 l -0.3041,0.5745 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 514.3891,98.7398 l -2.5265,2.4485 l 1.2283,0.0035 l 0.6934,1.0139 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 513.0909,101.1919 l -0.0720,0.1361 l -0.2588,-0.1370 l 0.3309,0.0010 l -0.0720,0.1361 l 0.2588,0.1370 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 513.3230,116.1666 l 0.2062,-0.5008 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 514.6442,112.9579 l -2.2794,2.6801 l 1.2230,-0.1146 l 0.7877,0.9425 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 513.5878,115.5234 l -0.0586,0.1424 l -0.2708,-0.1115 l 0.3294,-0.0309 l -0.0586,0.1424 l 0.2708,0.1115 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 513.3230,131.5797 l 0.7836,-2.6642 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 514.9329,126.1060 l -1.9872,2.9034 l 1.2043,-0.2416 l 0.8818,0.8551 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 514.1500,128.7678 l -0.0434,0.1477 l -0.2809,-0.0826 l 0.3244,-0.0651 l -0.0434,0.1477 l 0.2809,0.0826 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 513.3230,146.9928 l 1.4184,-8.0373 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 515.2503,136.0715 l -1.6522,3.1062 l 1.1700,-0.3739 l 0.9713,0.7518 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 514.7682,138.8038 l -0.0268,0.1516 l -0.2884,-0.0509 l 0.3151,-0.1007 l -0.0268,0.1516 l 0.2884,0.0509 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 513.3230,162.4059 l 1.9490,-33.1321 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 515.5157,125.1323 l -1.8456,4.7174 l 1.6110,-0.7296 l 1.5143,0.9135 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 515.2811,129.1201 l -0.0090,0.1537 l -0.2923,-0.0172 l 0.3014,-0.1365 l -0.0090,0.1537 l 0.2923,0.0172 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 513.3230,177.8190 l 1.9490,33.1318 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 515.5157,215.0922 l 1.2797,-4.9012 l -1.5143,0.9135 l -1.6110,-0.7296 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 515.2811,211.1045 l -0.0090,-0.1537 l 0.2923,-0.0172 l -0.2833,0.1709 l -0.0090,-0.1537 l -0.2923,0.0172 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 513.3230,193.2321 l 1.4184,8.0369 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 515.2503,204.1529 l 0.4891,-3.4841 l -0.9713,0.7518 l -1.1700,-0.3739 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 514.7681,201.4206 l -0.0268,-0.1516 l 0.2884,-0.0509 l -0.2616,0.2025 l -0.0268,-0.1516 l -0.2884,0.0509 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 513.3230,208.6452 l 0.7835,2.6638 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 514.9329,214.1185 l 0.0988,-3.5169 l -0.8817,0.8552 l -1.2043,-0.2416 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 514.1500,211.4567 l -0.0434,-0.1477 l 0.2809,-0.0826 l -0.2375,0.2303 l -0.0434,-0.1477 l -0.2809,0.0826 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 513.3230,224.0583 l 0.2061,0.5005 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 514.6442,227.2666 l -0.2688,-3.5080 l -0.7877,0.9425 l -1.2230,-0.1145 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 513.5877,224.7011 l -0.0586,-0.1424 l 0.2708,-0.1115 l -0.2122,0.2539 l -0.0586,-0.1424 l -0.2708,0.1115 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 513.3230,239.4714 l -0.3043,-0.5748 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 514.3890,241.4847 l -0.6049,-3.4659 l -0.6934,1.0139 l -1.2283,0.0036 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 513.0907,239.0327 l -0.0720,-0.1361 l 0.2588,-0.1370 l -0.1868,0.2731 l -0.0720,-0.1361 l -0.2588,0.1370 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 513.3230,254.8845 l -0.7457,-1.1524 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 514.1683,256.1907 l -0.9051,-3.3999 l -0.6022,1.0705 l -1.2233,0.1108 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 512.6609,253.8613 l -0.0836,-0.1293 l 0.2459,-0.1591 l -0.1622,0.2884 l -0.0836,-0.1293 l -0.2459,0.1591 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 513.3230,270.2976 l -1.0421,-1.3626 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 514.0599,271.2611 l -1.1691,-3.3184 l -0.5164,1.1145 l -1.2108,0.2065 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 512.3744,269.0572 l -0.0935,-0.1223 l 0.2326,-0.1779 l -0.1391,0.3002 l -0.0935,-0.1223 l -0.2326,0.1779 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 513.3230,285.7107 l -1.1351,-1.2862 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 514.1256,286.6202 l -1.3988,-3.2283 l -0.4370,1.1479 l -1.1934,0.2908 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 512.2898,284.5399 l -0.1019,-0.1154 l 0.2196,-0.1938 l -0.1177,0.3092 l -0.1019,-0.1154 l -0.2196,0.1938 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 513.3230,301.1238 l -1.2131,-1.2129 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 514.1808,301.9815 l -1.5975,-3.1347 l -0.3645,1.1730 l -1.1729,0.3647 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 512.2188,300.0197 l -0.1089,-0.1089 l 0.2071,-0.2071 l -0.0982,0.3159 l -0.1089,-0.1089 l -0.2071,0.2071 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 513.3230,316.5369 l -1.2785,-1.1438 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 514.2271,317.3457 l -1.7689,-3.0413 l -0.2989,1.1914 l -1.1509,0.4292 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 512.1592,315.4958 l -0.1147,-0.1027 l 0.1953,-0.2183 l -0.0805,0.3209 l -0.1147,-0.1027 l -0.1953,0.2183 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 497.9099,23.6880 l -1.3464,1.0630 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 498.8620,22.9363 l -3.3000,1.2201 l 1.1223,0.4991 l 0.2251,1.2075 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 496.6843,24.6556 l -0.1208,0.0954 l -0.1815,-0.2298 l 0.3023,0.1344 l -0.1208,0.0954 l 0.1815,0.2298 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 497.9099,39.1011 l -1.2863,1.1350 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 498.8195,38.2985 l -3.2283,1.3987 l 1.1479,0.4370 l 0.2908,1.1934 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 496.7390,40.1342 l -0.1154,0.1019 l -0.1938,-0.2196 l 0.3092,0.1177 l -0.1154,0.1019 l 0.1938,0.2196 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 497.9099,54.5142 l -1.2130,1.2130 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 498.7676,53.6564 l -3.1348,1.5973 l 1.1730,0.3646 l 0.3646,1.1729 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 496.8058,55.6183 l -0.1089,0.1089 l -0.2071,-0.2071 l 0.3159,0.0982 l -0.1089,0.1089 l 0.2071,0.2071 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 497.9099,69.9273 l -1.0748,1.2401 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 498.7531,68.9544 l -3.0131,1.8166 l 1.1959,0.2801 l 0.4473,1.1440 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 496.9360,71.0510 l -0.1008,0.1163 l -0.2213,-0.1918 l 0.3221,0.0754 l -0.1008,0.1163 l 0.2213,0.1918 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 497.9099,85.3404 l -0.7025,0.9579 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 498.9392,83.9367 l -2.8555,2.0554 l 1.2148,0.1820 l 0.5387,1.1039 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 497.2985,86.1741 l -0.0910,0.1242 l -0.2362,-0.1732 l 0.3272,0.0490 l -0.0910,0.1242 l 0.2362,0.1732 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 497.9099,100.7535 l -0.2523,0.4205 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 499.1643,98.6628 l -2.6538,2.3099 l 1.2264,0.0692 l 0.6382,1.0495 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 497.7368,101.0419 l -0.0792,0.1320 l -0.2511,-0.1507 l 0.3303,0.0187 l -0.0792,0.1320 l 0.2511,0.1507 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 497.9099,116.1666 l 0.2843,-0.6091 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 499.4326,112.9037 l -2.4003,2.5724 l 1.2269,-0.0582 l 0.7435,0.9777 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 498.2593,115.4179 l -0.0651,0.1395 l -0.2654,-0.1238 l 0.3305,-0.0157 l -0.0651,0.1395 l 0.2654,0.1238 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 497.9099,131.5797 l 0.9089,-2.7268 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 499.7449,126.0747 l -2.0896,2.8306 l 1.2122,-0.1984 l 0.8507,0.8861 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 498.8675,128.7068 l -0.0487,0.1461 l -0.2778,-0.0926 l 0.3265,-0.0535 l -0.0487,0.1461 l 0.2778,0.0926 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 497.9099,146.9928 l 1.6124,-8.0619 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 500.0967,136.0592 l -1.7224,3.0679 l 1.1782,-0.3473 l 0.9540,0.7737 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 499.5525,138.7799 l -0.0302,0.1510 l -0.2872,-0.0574 l 0.3174,-0.0935 l -0.0302,0.1510 l 0.2872,0.0574 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 497.9099,162.4059 l 2.2089,-33.1321 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 500.3949,125.1323 l -1.8833,4.7053 l 1.6175,-0.7174 l 1.5079,0.9257 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 500.1290,129.1202 l -0.0102,0.1536 l -0.2922,-0.0195 l 0.3024,-0.1341 l -0.0102,0.1536 l 0.2922,0.0195 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 497.9099,177.8190 l 2.2089,33.1318 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 500.3949,215.0922 l 1.2420,-4.9136 l -1.5079,0.9257 l -1.6174,-0.7174 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 500.1290,211.1044 l -0.0102,-0.1536 l 0.2922,-0.0195 l -0.2820,0.1731 l -0.0102,-0.1536 l -0.2922,0.0195 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 497.9099,193.2321 l 1.6124,8.0616 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 500.0967,204.1652 l 0.4098,-3.4944 l -0.9540,0.7737 l -1.1782,-0.3473 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 499.5525,201.4446 l -0.0302,-0.1510 l 0.2872,-0.0574 l -0.2570,0.2084 l -0.0302,-0.1510 l -0.2872,0.0574 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 497.9099,208.6452 l 0.9089,2.7264 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 499.7449,214.1498 l -0.0268,-3.5182 l -0.8507,0.8861 l -1.2122,-0.1984 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 498.8674,211.5177 l -0.0487,-0.1461 l 0.2778,-0.0926 l -0.2291,0.2387 l -0.0487,-0.1461 l -0.2778,0.0926 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 497.9099,224.0583 l 0.2841,0.6088 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 499.4325,227.3208 l -0.4299,-3.4919 l -0.7435,0.9778 l -1.2269,-0.0582 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 498.2591,224.8066 l -0.0651,-0.1395 l 0.2654,-0.1238 l -0.2003,0.2634 l -0.0651,-0.1395 l -0.2654,0.1238 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 497.9099,239.4714 l -0.2525,-0.4207 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 499.1642,241.5617 l -0.7894,-3.4286 l -0.6382,1.0495 l -1.2264,0.0693 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 497.7366,239.1827 l -0.0792,-0.1320 l 0.2511,-0.1507 l -0.1719,0.2827 l -0.0792,-0.1320 l -0.2511,0.1507 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 497.9099,254.8845 l -0.7027,-0.9581 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 498.9391,256.2878 l -1.1022,-3.3412 l -0.5387,1.1039 l -1.2147,0.1821 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 497.2982,254.0505 l -0.0911,-0.1241 l 0.2361,-0.1732 l -0.1451,0.2973 l -0.0911,-0.1241 l -0.2361,0.1732 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 497.9099,270.2976 l -1.0750,-1.2403 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 498.7529,271.2702 l -1.3700,-3.2406 l -0.4472,1.1440 l -1.1959,0.2802 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 496.9357,269.1736 l -0.1008,-0.1163 l 0.2213,-0.1918 l -0.1205,0.3081 l -0.1008,-0.1163 l -0.2213,0.1918 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 497.9099,285.7107 l -1.2131,-1.2129 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 498.7677,286.5684 l -1.5975,-3.1347 l -0.3645,1.1730 l -1.1729,0.3647 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 496.8057,284.6066 l -0.1089,-0.1089 l 0.2071,-0.2071 l -0.0982,0.3159 l -0.1089,-0.1089 l -0.2071,0.2071 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 497.9099,301.1238 l -1.2864,-1.1349 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 498.8195,301.9263 l -1.7899,-3.0290 l -0.2907,1.1934 l -1.1479,0.4371 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 496.7390,300.0907 l -0.1155,-0.1019 l 0.1937,-0.2196 l -0.0783,0.3215 l -0.1155,-0.1019 l -0.1937,0.2196 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 497.9099,316.5369 l -1.3465,-1.0629 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 498.8620,317.2885 l -1.9528,-2.9266 l -0.2250,1.2075 l -1.1223,0.4992 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 496.6842,315.5694 l -0.1208,-0.0954 l 0.1814,-0.2299 l -0.0606,0.3253 l -0.1208,-0.0954 l -0.1814,0.2299 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 482.4968,23.6880 l -1.4158,0.9687 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 483.4979,23.0030 l -3.3755,0.9923 l 1.0857,0.5745 l 0.1422,1.2201 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 481.2081,24.5697 l -0.1271,0.0869 l -0.1654,-0.2417 l 0.2924,0.1547 l -0.1271,0.0869 l 0.1654,0.2417 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 482.4968,39.1011 l -1.3627,1.0421 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 483.4604,38.3642 l -3.3184,1.1690 l 1.1145,0.5164 l 0.2064,1.2108 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 481.2564,40.0496 l -0.1223,0.0935 l -0.1779,-0.2326 l 0.3002,0.1391 l -0.1223,0.0935 l 0.1779,0.2326 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 482.4968,54.5142 l -1.2401,1.0748 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 483.4697,53.6710 l -3.2407,1.3699 l 1.1440,0.4472 l 0.2801,1.1959 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 481.3730,55.4881 l -0.1163,0.1008 l -0.1918,-0.2213 l 0.3081,0.1205 l -0.1163,0.1008 l 0.1918,0.2213 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 482.4968,69.9273 l -0.9556,0.9556 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 483.6119,68.8121 l -3.1348,1.5973 l 1.1730,0.3646 l 0.3646,1.1729 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 481.6501,70.7740 l -0.1089,0.1089 l -0.2071,-0.2071 l 0.3159,0.0982 l -0.1089,0.1089 l 0.2071,0.2071 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 482.4968,85.3404 l -0.5974,0.7060 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 483.7911,83.8108 l -2.9914,1.8521 l 1.1992,0.2659 l 0.4608,1.1386 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 481.9989,85.9288 l -0.0994,0.1175 l -0.2236,-0.1892 l 0.3230,0.0716 l -0.0994,0.1175 l 0.2236,0.1892 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 482.4968,100.7535 l -0.1480,0.2137 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 484.0158,98.5594 l -2.7985,2.1323 l 1.2193,0.1489 l 0.5686,1.0888 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 482.4365,100.8406 l -0.0876,0.1266 l -0.2408,-0.1667 l 0.3284,0.0401 l -0.0876,0.1266 l 0.2408,0.1667 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 482.4968,116.1666 l 0.4091,-0.7597 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 484.2943,112.8284 l -2.5437,2.4307 l 1.2283,0.0122 l 0.6863,1.0187 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 482.9789,115.2713 l -0.0730,0.1356 l -0.2578,-0.1388 l 0.3308,0.0033 l -0.0730,0.1356 l 0.2578,0.1388 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 482.4968,131.5797 l 1.0833,-2.8166 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 484.6314,126.0298 l -2.2159,2.7328 l 1.2199,-0.1432 l 0.8096,0.9238 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 483.6354,128.6194 l -0.0553,0.1437 l -0.2733,-0.1051 l 0.3286,-0.0386 l -0.0553,0.1437 l 0.2733,0.1051 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 482.4968,146.9928 l 1.8689,-8.0982 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 485.0242,136.0411 l -1.8118,3.0159 l 1.1879,-0.3125 l 0.9308,0.8014 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 484.4003,138.7446 l -0.0346,0.1500 l -0.2853,-0.0659 l 0.3200,-0.0842 l -0.0346,0.1500 l 0.2853,0.0659 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 482.4968,162.4059 l 2.5487,-33.1321 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 485.3641,125.1323 l -1.9327,4.6894 l 1.6259,-0.7014 l 1.4995,0.9418 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 485.0573,129.1203 l -0.0118,0.1535 l -0.2920,-0.0225 l 0.3038,-0.1310 l -0.0118,0.1535 l 0.2920,0.0225 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 482.4968,177.8190 l 2.5487,33.1318 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 485.3641,215.0922 l 1.1927,-4.9297 l -1.4995,0.9418 l -1.6259,-0.7014 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 485.0573,211.1043 l -0.0118,-0.1535 l 0.2920,-0.0225 l -0.2802,0.1760 l -0.0118,-0.1535 l -0.2920,0.0225 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 482.4968,193.2321 l 1.8688,8.0978 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 485.0241,204.1834 l 0.3069,-3.5049 l -0.9308,0.8014 l -1.1879,-0.3125 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 484.4002,201.4799 l -0.0346,-0.1500 l 0.2853,-0.0659 l -0.2507,0.2159 l -0.0346,-0.1500 l -0.2853,0.0659 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 482.4968,208.6452 l 1.0832,2.8163 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 484.6314,214.1947 l -0.1865,-3.5134 l -0.8095,0.9238 l -1.2199,-0.1432 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 483.6353,211.6051 l -0.0553,-0.1437 l 0.2733,-0.1051 l -0.2181,0.2488 l -0.0553,-0.1437 l -0.2733,0.1051 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 482.4968,224.0583 l 0.4089,0.7594 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 484.2942,227.3961 l -0.6292,-3.4616 l -0.6862,1.0187 l -1.2283,0.0122 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 482.9787,224.9532 l -0.0730,-0.1356 l 0.2578,-0.1388 l -0.1848,0.2744 l -0.0730,-0.1356 l -0.2578,0.1388 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 482.4968,239.4714 l -0.1481,-0.2140 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 484.0157,241.6651 l -1.0109,-3.3700 l -0.5685,1.0888 l -1.2192,0.1489 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 482.4363,239.3840 l -0.0876,-0.1266 l 0.2408,-0.1667 l -0.1531,0.2933 l -0.0876,-0.1266 l -0.2408,0.1667 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 482.4968,254.8845 l -0.5976,-0.7062 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 483.7909,256.4138 l -1.3316,-3.2566 l -0.4607,1.1386 l -1.1992,0.2660 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 481.9987,254.2958 l -0.0995,-0.1175 l 0.2235,-0.1892 l -0.1241,0.3067 l -0.0995,-0.1175 l -0.2235,0.1892 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 482.4968,270.2976 l -0.9558,-0.9557 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 483.6118,271.4125 l -1.5974,-3.1348 l -0.3646,1.1730 l -1.1729,0.3647 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 481.6498,269.4507 l -0.1089,-0.1089 l 0.2071,-0.2071 l -0.0982,0.3159 l -0.1089,-0.1089 l -0.2071,0.2071 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 482.4968,285.7107 l -1.2404,-1.0749 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 483.4695,286.5536 l -1.8167,-3.0130 l -0.2800,1.1960 l -1.1440,0.4473 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 481.3728,284.7366 l -0.1164,-0.1008 l 0.1918,-0.2213 l -0.0754,0.3221 l -0.1164,-0.1008 l -0.1918,0.2213 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 482.4968,301.1238 l -1.3627,-1.0420 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 483.4604,301.8606 l -1.9977,-2.8961 l -0.2063,1.2109 l -1.1144,0.5165 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 481.2564,300.1753 l -0.1223,-0.0935 l 0.1779,-0.2326 l -0.0556,0.3262 l -0.1223,-0.0935 l -0.1779,0.2326 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 482.4968,316.5369 l -1.4158,-0.9686 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 483.4980,317.2218 l -2.1478,-2.7867 l -0.1421,1.2201 l -1.0856,0.5746 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 481.2080,315.6552 l -0.1271,-0.0869 l 0.1654,-0.2417 l -0.0383,0.3286 l -0.1271,-0.0869 l -0.1654,0.2417 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 467.0837,23.6880 l -1.3036,0.7548 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 468.3144,22.9754 l -3.4405,0.7357 l 1.0394,0.6545 l 0.0501,1.2273 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 465.9133,24.3656 l -0.1332,0.0771 l -0.1467,-0.2534 l 0.2800,0.1763 l -0.1332,0.0771 l 0.1467,0.2534 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 467.0837,39.1011 l -1.1522,0.7455 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 468.3902,38.2557 l -3.3999,0.9051 l 1.0705,0.6023 l 0.1108,1.2233 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 466.0608,39.7630 l -0.1293,0.0836 l -0.1591,-0.2459 l 0.2884,0.1622 l -0.1293,0.0836 l 0.1591,0.2459 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 467.0837,54.5142 l -0.9579,0.7025 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 468.4873,53.4848 l -3.3412,1.1021 l 1.1039,0.5387 l 0.1820,1.2147 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 466.2499,55.1256 l -0.1242,0.0910 l -0.1732,-0.2362 l 0.2973,0.1451 l -0.1242,0.0910 l 0.1732,0.2362 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 467.0837,69.9273 l -0.7060,0.5974 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 468.6133,68.6330 l -3.2566,1.3315 l 1.1386,0.4607 l 0.2660,1.1992 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 466.4952,70.4252 l -0.1175,0.0995 l -0.1892,-0.2236 l 0.3067,0.1241 l -0.1175,0.0995 l 0.1892,0.2236 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 467.0837,85.3404 l -0.3764,0.3764 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 468.7781,83.6460 l -3.1348,1.5973 l 1.1730,0.3646 l 0.3646,1.1729 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 466.8162,85.6079 l -0.1089,0.1089 l -0.2071,-0.2071 l 0.3159,0.0982 l -0.1089,0.1089 l 0.2071,0.2071 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 467.0837,100.7535 l 0.0563,-0.0688 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 468.9944,98.4182 l -2.9603,1.9013 l 1.2034,0.2461 l 0.4795,1.1308 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 467.2375,100.5655 l -0.0975,0.1192 l -0.2267,-0.1854 l 0.3241,0.0663 l -0.0975,0.1192 l 0.2267,0.1854 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 467.0837,116.1666 l 0.6206,-0.9753 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 469.2766,112.7206 l -2.7137,2.2393 l 1.2241,0.1015 l 0.6104,1.0659 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 467.7870,115.0614 l -0.0827,0.1299 l -0.2471,-0.1572 l 0.3297,0.0273 l -0.0827,0.1299 l 0.2471,0.1572 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 467.0837,131.5797 l 1.3415,-2.9512 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 469.6370,125.9625 l -2.3744,2.5963 l 1.2263,-0.0705 l 0.7532,0.9702 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 468.4889,128.4883 l -0.0637,0.1402 l -0.2666,-0.1212 l 0.3303,-0.0190 l -0.0637,0.1402 l 0.2666,0.1212 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 467.0837,146.9928 l 2.2240,-8.1546 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 470.0783,136.0129 l -1.9293,2.9421 l 1.1993,-0.2654 l 0.8985,0.8375 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 469.3482,138.6897 l -0.0405,0.1485 l -0.2825,-0.0771 l 0.3230,-0.0715 l -0.0405,0.1485 l 0.2825,0.0771 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 467.0837,162.4059 l 3.0121,-33.1321 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 470.4723,125.1323 l -2.0001,4.6677 l 1.6375,-0.6795 l 1.4881,0.9637 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 470.1097,129.1204 l -0.0139,0.1533 l -0.2916,-0.0265 l 0.3056,-0.1268 l -0.0139,0.1533 l 0.2916,0.0265 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 467.0837,177.8190 l 3.0121,33.1318 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 470.4723,215.0922 l 1.1255,-4.9518 l -1.4881,0.9637 l -1.6375,-0.6795 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 470.1097,211.1041 l -0.0139,-0.1533 l 0.2916,-0.0265 l -0.2777,0.1798 l -0.0139,-0.1533 l -0.2916,0.0265 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 467.0837,193.2321 l 2.2240,8.1542 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 470.0782,204.2116 l 0.1684,-3.5143 l -0.8985,0.8375 l -1.1993,-0.2654 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 469.3482,201.5348 l -0.0405,-0.1485 l 0.2825,-0.0771 l -0.2420,0.2256 l -0.0405,-0.1485 l -0.2825,0.0771 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 467.0837,208.6452 l 1.3414,2.9508 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 469.6369,214.2620 l -0.3949,-3.4961 l -0.7532,0.9703 l -1.2263,-0.0704 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 468.4888,211.7362 l -0.0637,-0.1402 l 0.2666,-0.1212 l -0.2029,0.2613 l -0.0637,-0.1402 l -0.2666,0.1212 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 467.0837,224.0583 l 0.6205,0.9750 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 469.2765,227.5039 l -0.8793,-3.4067 l -0.6103,1.0659 l -1.2241,0.1015 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 467.7869,225.1632 l -0.0827,-0.1299 l 0.2471,-0.1572 l -0.1644,0.2871 l -0.0827,-0.1299 l -0.2471,0.1572 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 467.0837,239.4714 l 0.0561,0.0686 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 468.9943,241.8064 l -1.2775,-3.2782 l -0.4795,1.1309 l -1.2034,0.2461 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 467.2373,239.6591 l -0.0975,-0.1192 l 0.2266,-0.1855 l -0.1291,0.3046 l -0.0975,-0.1192 l -0.2266,0.1855 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 467.0837,254.8845 l -0.3766,-0.3765 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 468.7780,256.5786 l -1.5974,-3.1348 l -0.3646,1.1730 l -1.1729,0.3647 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 466.8160,254.6168 l -0.1089,-0.1089 l 0.2071,-0.2071 l -0.0982,0.3159 l -0.1089,-0.1089 l -0.2071,0.2071 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 467.0837,270.2976 l -0.7062,-0.5975 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 468.6132,271.5916 l -1.8522,-2.9913 l -0.2659,1.1992 l -1.1386,0.4608 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 466.4950,269.7995 l -0.1175,-0.0994 l 0.1892,-0.2236 l -0.0716,0.3230 l -0.1175,-0.0994 l -0.1892,0.2236 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 467.0837,285.7107 l -0.9581,-0.7026 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 468.4872,286.7398 l -2.0555,-2.8554 l -0.1820,1.2148 l -1.1038,0.5388 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 466.2497,285.0992 l -0.1242,-0.0910 l 0.1732,-0.2362 l -0.0490,0.3272 l -0.1242,-0.0910 l -0.1732,0.2362 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 467.0837,301.1238 l -1.1524,-0.7456 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 468.3901,301.9690 l -2.2188,-2.7305 l -0.1107,1.2233 l -1.0705,0.6023 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 466.0606,300.4618 l -0.1293,-0.0836 l 0.1591,-0.2459 l -0.0298,0.3295 l -0.1293,-0.0836 l -0.1591,0.2459 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 467.0837,316.5369 l -1.3038,-0.7548 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 468.3143,317.2493 l -2.3512,-2.6173 l -0.0500,1.2273 l -1.0394,0.6546 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 465.9131,315.8593 l -0.1332,-0.0771 l 0.1467,-0.2534 l -0.0135,0.3306 l -0.1332,-0.0771 l -0.1467,0.2534 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 451.6706,23.6880 l -0.6913,0.3275 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 453.6258,22.7617 l -3.4894,0.4499 l 0.9820,0.7378 l -0.0511,1.2272 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 451.1184,23.9495 l -0.1391,0.0659 l -0.1254,-0.2647 l 0.2645,0.1987 l -0.1391,0.0659 l 0.1254,0.2647 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 451.6706,39.1011 l -0.5745,0.3042 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 453.6842,38.0350 l -3.4659,0.6048 l 1.0139,0.6934 l 0.0036,1.2283 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 451.2322,39.3332 l -0.1361,0.0720 l -0.1370,-0.2588 l 0.2731,0.1868 l -0.1361,0.0720 l 0.1370,0.2588 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 451.6706,54.5142 l -0.4205,0.2523 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 453.7612,53.2597 l -3.4286,0.7893 l 1.0495,0.6382 l 0.0693,1.2264 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 451.3821,54.6872 l -0.1320,0.0792 l -0.1507,-0.2511 l 0.2827,0.1719 l -0.1320,0.0792 l 0.1507,0.2511 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 451.6706,69.9273 l -0.2137,0.1480 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 453.8646,68.4083 l -3.3700,1.0108 l 1.0888,0.5685 l 0.1489,1.2193 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 451.5834,69.9876 l -0.1266,0.0876 l -0.1667,-0.2408 l 0.2933,0.1531 l -0.1266,0.0876 l 0.1667,0.2408 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 451.6706,85.3404 l 0.0688,-0.0563 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 454.0059,83.4296 l -3.2782,1.2775 l 1.1309,0.4795 l 0.2461,1.2034 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 451.8585,85.1866 l -0.1192,0.0975 l -0.1854,-0.2267 l 0.3046,0.1292 l -0.1192,0.0975 l 0.1854,0.2267 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 451.6706,100.7535 l 0.4603,-0.4603 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 454.2016,98.2224 l -3.1348,1.5973 l 1.1730,0.3646 l 0.3646,1.1729 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 452.2398,100.1843 l -0.1089,0.1089 l -0.2071,-0.2071 l 0.3159,0.0982 l -0.1089,0.1089 l 0.2071,0.2071 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 451.6706,116.1666 l 1.0060,-1.2934 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 454.4745,112.5616 l -2.9125,1.9738 l 1.2091,0.2163 l 0.5073,1.1187 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 452.7711,114.7517 l -0.0945,0.1215 l -0.2312,-0.1798 l 0.3257,0.0583 l -0.0945,0.1215 l 0.2312,0.1798 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 451.6706,131.5797 l 1.7574,-3.1633 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 454.8502,125.8565 l -2.5754,2.3970 l 1.2280,0.0283 l 0.6728,1.0277 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 453.5027,128.2818 l -0.0748,0.1346 l -0.2560,-0.1422 l 0.3308,0.0076 l -0.0748,0.1346 l 0.2560,0.1422 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 451.6706,146.9928 l 2.7496,-8.2488 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 455.3463,135.9658 l -2.0896,2.8306 l 1.2122,-0.1984 l 0.8507,0.8861 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 454.4689,138.5980 l -0.0487,0.1461 l -0.2778,-0.0926 l 0.3265,-0.0535 l -0.0487,0.1461 l 0.2778,0.0926 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 451.6706,162.4059 l 3.6814,-33.1321 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 455.8122,125.1323 l -2.0974,4.6365 l 1.6542,-0.6480 l 1.4716,0.9953 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 455.3690,129.1208 l -0.0170,0.1530 l -0.2911,-0.0323 l 0.3081,-0.1207 l -0.0170,0.1530 l 0.2911,0.0323 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 451.6706,177.8190 l 3.6814,33.1318 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 455.8122,215.0922 l 1.0284,-4.9838 l -1.4716,0.9953 l -1.6542,-0.6480 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 455.3690,211.1038 l -0.0170,-0.1530 l 0.2911,-0.0323 l -0.2741,0.1854 l -0.0170,-0.1530 l -0.2911,0.0323 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 451.6706,193.2321 l 2.7496,8.2484 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 455.3463,204.2587 l -0.0268,-3.5182 l -0.8507,0.8861 l -1.2122,-0.1984 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 454.4689,201.6265 l -0.0487,-0.1461 l 0.2778,-0.0926 l -0.2291,0.2387 l -0.0487,-0.1461 l -0.2778,0.0926 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 451.6706,208.6452 l 1.7573,3.1629 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 454.8501,214.3680 l -0.6747,-3.4530 l -0.6728,1.0277 l -1.2280,0.0284 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 453.5026,211.9427 l -0.0748,-0.1346 l 0.2560,-0.1422 l -0.1812,0.2768 l -0.0748,-0.1346 l -0.2560,0.1422 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 451.6706,224.0583 l 1.0058,1.2931 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 454.4744,227.6629 l -1.1962,-3.3087 l -0.5072,1.1187 l -1.2091,0.2163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 452.7709,225.4729 l -0.0945,-0.1215 l 0.2312,-0.1798 l -0.1366,0.3013 l -0.0945,-0.1215 l -0.2312,0.1798 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 451.6706,239.4714 l 0.4601,0.4601 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 454.2015,242.0022 l -1.5974,-3.1348 l -0.3646,1.1730 l -1.1729,0.3646 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 452.2396,240.0403 l -0.1089,-0.1089 l 0.2071,-0.2071 l -0.0982,0.3159 l -0.1089,-0.1089 l -0.2071,0.2071 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 451.6706,254.8845 l 0.0686,0.0561 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 454.0058,256.7949 l -1.9014,-2.9603 l -0.2460,1.2034 l -1.1308,0.4796 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 451.8583,255.0381 l -0.1192,-0.0975 l 0.1854,-0.2267 l -0.0663,0.3241 l -0.1192,-0.0975 l -0.1854,0.2267 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 451.6706,270.2976 l -0.2139,-0.1481 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 453.8645,271.8163 l -2.1324,-2.7985 l -0.1489,1.2193 l -1.0888,0.5686 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 451.5833,270.2371 l -0.1266,-0.0876 l 0.1667,-0.2408 l -0.0401,0.3284 l -0.1266,-0.0876 l -0.1667,0.2408 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 451.6706,285.7107 l -0.4207,-0.2524 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 453.7611,286.9649 l -2.3100,-2.6537 l -0.0692,1.2264 l -1.0495,0.6382 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 451.3819,285.5375 l -0.1320,-0.0792 l 0.1507,-0.2511 l -0.0186,0.3303 l -0.1320,-0.0792 l -0.1507,0.2511 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 451.6706,301.1238 l -0.5747,-0.3042 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 453.6841,302.1897 l -2.4487,-2.5264 l -0.0035,1.2283 l -1.0138,0.6935 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 451.2320,300.8916 l -0.1361,-0.0720 l 0.1370,-0.2588 l -0.0009,0.3309 l -0.1361,-0.0720 l -0.1370,0.2588 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 451.6706,316.5369 l -0.6915,-0.3275 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 453.6257,317.4629 l -2.5587,-2.4149 l 0.0512,1.2272 l -0.9820,0.7379 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 451.1182,316.2753 l -0.1391,-0.0659 l 0.1254,-0.2647 l 0.0138,0.3306 l -0.1391,-0.0659 l -0.1254,0.2647 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 436.2575,23.6880 l 0.4207,-0.1550 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 439.4261,22.5205 l -3.5157,0.1367 l 0.9122,0.8226 l -0.1605,1.2178 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 436.8227,23.4797 l -0.1445,0.0532 l -0.1012,-0.2748 l 0.2457,0.2216 l -0.1445,0.0532 l 0.1012,0.2748 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 436.2575,39.1011 l 0.5008,-0.2062 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 439.4661,37.7798 l -3.5080,0.2688 l 0.9425,0.7877 l -0.1145,1.2230 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 436.9006,38.8362 l -0.1424,0.0586 l -0.1115,-0.2708 l 0.2539,0.2122 l -0.1424,0.0586 l 0.1115,0.2708 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 436.2575,54.5142 l 0.6091,-0.2843 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 439.5203,52.9914 l -3.4920,0.4299 l 0.9777,0.7435 l -0.0582,1.2269 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 437.0061,54.1648 l -0.1395,0.0651 l -0.1238,-0.2654 l 0.2634,0.2003 l -0.1395,0.0651 l 0.1238,0.2654 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 436.2575,69.9273 l 0.7597,-0.4091 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 439.5956,68.1297 l -3.4616,0.6292 l 1.0187,0.6863 l 0.0122,1.2283 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 437.1527,69.4452 l -0.1356,0.0730 l -0.1388,-0.2578 l 0.2744,0.1848 l -0.1356,0.0730 l 0.1388,0.2578 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 436.2575,85.3404 l 0.9753,-0.6207 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 439.7034,83.1475 l -3.4067,0.8792 l 1.0659,0.6104 l 0.1015,1.2241 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 437.3627,84.6371 l -0.1299,0.0827 l -0.1572,-0.2471 l 0.2871,0.1644 l -0.1299,0.0827 l 0.1572,0.2471 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 436.2575,100.7535 l 1.2934,-1.0060 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 439.8624,97.9496 l -3.3087,1.1962 l 1.1187,0.5073 l 0.2163,1.2091 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 437.6724,99.6530 l -0.1215,0.0945 l -0.1798,-0.2312 l 0.3013,0.1366 l -0.1215,0.0945 l 0.1798,0.2312 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 436.2575,116.1666 l 1.7751,-1.7751 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 440.1033,112.3207 l -3.1348,1.5973 l 1.1730,0.3646 l 0.3646,1.1729 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 438.1414,114.2826 l -0.1089,0.1089 l -0.2071,-0.2071 l 0.3159,0.0982 l -0.1089,0.1089 l 0.2071,0.2071 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 436.2575,131.5797 l 2.5122,-3.5172 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 440.4719,125.6795 l -2.8296,2.0909 l 1.2169,0.1668 l 0.5525,1.0970 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 438.8592,127.9372 l -0.0895,0.1253 l -0.2383,-0.1702 l 0.3278,0.0449 l -0.0895,0.1253 l 0.2383,0.1702 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 436.2575,146.9928 l 3.6094,-8.4218 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 441.0204,135.8793 l -2.3174,2.6473 l 1.2245,-0.0971 l 0.7742,0.9536 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 439.9275,138.4295 l -0.0606,0.1415 l -0.2692,-0.1154 l 0.3298,-0.0262 l -0.0606,0.1415 l 0.2692,0.1154 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 436.2575,162.4059 l 4.7332,-33.1321 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 441.5824,125.1323 l -2.2504,4.5876 l 1.6806,-0.5985 l 1.4458,1.0451 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 441.0125,129.1214 l -0.0218,0.1524 l -0.2899,-0.0414 l 0.3117,-0.1110 l -0.0218,0.1524 l 0.2899,0.0414 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 436.2575,177.8190 l 4.7332,33.1318 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 441.5824,215.0922 l 0.8759,-5.0342 l -1.4457,1.0451 l -1.6805,-0.5985 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 441.0125,211.1032 l -0.0218,-0.1524 l 0.2899,-0.0414 l -0.2681,0.1938 l -0.0218,-0.1524 l -0.2899,0.0414 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 436.2575,193.2321 l 3.6093,8.4214 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 441.0204,204.3452 l -0.3188,-3.5038 l -0.7741,0.9537 l -1.2245,-0.0971 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 439.9274,201.7950 l -0.0606,-0.1415 l 0.2692,-0.1154 l -0.2085,0.2569 l -0.0606,-0.1415 l -0.2692,0.1154 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 436.2575,208.6452 l 2.5121,3.5168 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 440.4718,214.5450 l -1.0603,-3.3548 l -0.5525,1.0971 l -1.2169,0.1668 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 438.8591,212.2873 l -0.0895,-0.1253 l 0.2383,-0.1702 l -0.1488,0.2955 l -0.0895,-0.1253 l -0.2383,0.1702 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 436.2575,224.0583 l 1.7749,1.7748 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 440.1032,227.9038 l -1.5974,-3.1348 l -0.3646,1.1730 l -1.1729,0.3646 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 438.1413,225.9420 l -0.1089,-0.1089 l 0.2071,-0.2071 l -0.0982,0.3159 l -0.1089,-0.1089 l -0.2071,0.2071 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 436.2575,239.4714 l 1.2932,1.0058 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 439.8624,242.2750 l -1.9739,-2.9125 l -0.2163,1.2091 l -1.1187,0.5073 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 437.6722,240.5717 l -0.1215,-0.0945 l 0.1798,-0.2312 l -0.0583,0.3257 l -0.1215,-0.0945 l -0.1798,0.2312 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 436.2575,254.8845 l 0.9751,0.6205 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 439.7033,257.0771 l -2.2394,-2.7136 l -0.1014,1.2241 l -1.0659,0.6104 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 437.3625,255.5876 l -0.1299,-0.0827 l 0.1572,-0.2471 l -0.0273,0.3297 l -0.1299,-0.0827 l -0.1572,0.2471 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 436.2575,270.2976 l 0.7595,0.4090 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 439.5955,272.0948 l -2.4308,-2.5436 l -0.0121,1.2283 l -1.0187,0.6863 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 437.1526,270.7795 l -0.1356,-0.0730 l 0.1388,-0.2578 l -0.0033,0.3308 l -0.1356,-0.0730 l -0.1388,0.2578 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 436.2575,285.7107 l 0.6090,0.2842 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 439.5202,287.2332 l -2.5725,-2.4002 l 0.0582,1.2269 l -0.9777,0.7435 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 437.0060,286.0599 l -0.1395,-0.0651 l 0.1238,-0.2654 l 0.0157,0.3305 l -0.1395,-0.0651 l -0.1238,0.2654 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 436.2575,301.1238 l 0.5006,0.2061 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 439.4661,302.4448 l -2.6802,-2.2793 l 0.1146,1.2230 l -0.9425,0.7877 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 436.9005,301.3885 l -0.1424,-0.0586 l 0.1115,-0.2708 l 0.0309,0.3294 l -0.1424,-0.0586 l -0.1115,0.2708 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 436.2575,316.5369 l 0.4206,0.1549 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 439.4261,317.7041 l -2.7640,-2.1769 l 0.1605,1.2178 l -0.9122,0.8226 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 436.8226,316.7451 l -0.1445,-0.0532 l 0.1012,-0.2748 l 0.0432,0.3280 l -0.1445,-0.0532 l -0.1012,0.2748 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 420.8444,23.6880 l 2.6190,-0.6893 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 426.2954,22.2534 l -3.5126,-0.1998 l 0.8295,0.9059 l -0.2761,1.1969 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 423.6123,22.9595 l -0.1489,0.0392 l -0.0745,-0.2832 l 0.2234,0.2440 l -0.1489,0.0392 l 0.0745,0.2832 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 420.8444,39.1011 l 2.6642,-0.7836 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 426.3180,37.4911 l -3.5169,-0.0988 l 0.8552,0.8817 l -0.2416,1.2043 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 423.6562,38.2740 l -0.1477,0.0434 l -0.0826,-0.2809 l 0.2303,0.2375 l -0.1477,0.0434 l 0.0826,0.2809 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 420.8444,54.5142 l 2.7267,-0.9090 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 426.3493,52.6791 l -3.5182,0.0268 l 0.8861,0.8507 l -0.1984,1.2122 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 423.7172,53.5565 l -0.1461,0.0487 l -0.0926,-0.2778 l 0.2387,0.2291 l -0.1461,0.0487 l 0.0926,0.2778 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 420.8444,69.9273 l 2.8166,-1.0833 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 426.3942,67.7926 l -3.5134,0.1865 l 0.9238,0.8095 l -0.1432,1.2199 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 423.8046,68.7887 l -0.1437,0.0553 l -0.1051,-0.2733 l 0.2488,0.2181 l -0.1437,0.0553 l 0.1051,0.2733 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 420.8444,85.3404 l 2.9511,-1.3415 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 426.4615,82.7870 l -3.4961,0.3949 l 0.9703,0.7532 l -0.0704,1.2263 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 423.9357,83.9352 l -0.1402,0.0637 l -0.1212,-0.2666 l 0.2613,0.2029 l -0.1402,0.0637 l 0.1212,0.2666 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 420.8444,100.7535 l 3.1632,-1.7574 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 426.5676,97.5738 l -3.4530,0.6747 l 1.0277,0.6728 l 0.0284,1.2280 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 424.1422,98.9213 l -0.1346,0.0748 l -0.1422,-0.2560 l 0.2768,0.1812 l -0.1346,0.0748 l 0.1422,0.2560 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 420.8444,116.1666 l 3.5171,-2.5123 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 426.7445,111.9521 l -3.3548,1.0602 l 1.0971,0.5525 l 0.1668,1.2169 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 424.4868,113.5648 l -0.1253,0.0895 l -0.1702,-0.2383 l 0.2955,0.1488 l -0.1253,0.0895 l 0.1702,0.2383 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 420.8444,131.5797 l 4.1416,-4.1417 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 427.0567,125.3673 l -3.1348,1.5973 l 1.1730,0.3646 l 0.3646,1.1729 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 425.0949,127.3292 l -0.1089,0.1089 l -0.2071,-0.2071 l 0.3159,0.0982 l -0.1089,0.1089 l 0.2071,0.2071 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 420.8444,146.9928 l 5.2697,-8.7829 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 427.6208,135.6988 l -2.6538,2.3099 l 1.2264,0.0692 l 0.6382,1.0495 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 426.1933,138.0779 l -0.0792,0.1320 l -0.2511,-0.1507 l 0.3303,0.0187 l -0.0792,0.1320 l 0.2511,0.1507 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 420.8444,162.4059 l 6.6265,-33.1321 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 428.2992,125.1323 l -2.5263,4.4999 l 1.7281,-0.5093 l 1.3993,1.1348 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 427.5011,129.1228 l -0.0302,0.1510 l -0.2872,-0.0574 l 0.3174,-0.0935 l -0.0302,0.1510 l 0.2872,0.0574 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 420.8444,177.8190 l 6.6265,33.1318 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 428.2992,215.0922 l 0.6012,-5.1253 l -1.3993,1.1348 l -1.7281,-0.5093 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 427.5011,211.1017 l -0.0302,-0.1510 l 0.2872,-0.0574 l -0.2570,0.2084 l -0.0302,-0.1510 l -0.2872,0.0574 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 420.8444,193.2321 l 5.2697,8.7825 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 427.6208,204.5257 l -0.7893,-3.4286 l -0.6382,1.0495 l -1.2264,0.0693 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 426.1933,202.1466 l -0.0792,-0.1320 l 0.2511,-0.1507 l -0.1719,0.2827 l -0.0792,-0.1320 l -0.2511,0.1507 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 420.8444,208.6452 l 4.1415,4.1414 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 427.0567,214.8573 l -1.5973,-3.1348 l -0.3646,1.1730 l -1.1729,0.3646 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 425.0948,212.8954 l -0.1089,-0.1089 l 0.2071,-0.2071 l -0.0982,0.3159 l -0.1089,-0.1089 l -0.2071,0.2071 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 420.8444,224.0583 l 3.5170,2.5120 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 426.7444,228.2724 l -2.0910,-2.8295 l -0.1668,1.2169 l -1.0970,0.5525 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 424.4867,226.6598 l -0.1253,-0.0895 l 0.1702,-0.2383 l -0.0449,0.3278 l -0.1253,-0.0895 l -0.1702,0.2383 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 420.8444,239.4714 l 3.1631,1.7572 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 426.5675,242.6507 l -2.3971,-2.5754 l -0.0283,1.2280 l -1.0276,0.6728 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 424.1421,241.3033 l -0.1346,-0.0748 l 0.1422,-0.2560 l -0.0076,0.3308 l -0.1346,-0.0748 l -0.1422,0.2560 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 420.8444,254.8845 l 2.9511,1.3413 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 426.4615,257.4375 l -2.5964,-2.3743 l 0.0705,1.2263 l -0.9702,0.7533 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 423.9356,256.2895 l -0.1402,-0.0637 l 0.1212,-0.2666 l 0.0190,0.3303 l -0.1402,-0.0637 l -0.1212,0.2666 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 420.8444,270.2976 l 2.8165,1.0832 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 426.3942,272.4320 l -2.7328,-2.2159 l 0.1432,1.2199 l -0.9238,0.8096 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 423.8046,271.4360 l -0.1437,-0.0553 l 0.1051,-0.2733 l 0.0386,0.3286 l -0.1437,-0.0553 l -0.1051,0.2733 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 420.8444,285.7107 l 2.7266,0.9088 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 426.3493,287.5455 l -2.8306,-2.0895 l 0.1985,1.2122 l -0.8860,0.8507 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 423.7171,286.6682 l -0.1461,-0.0487 l 0.0926,-0.2778 l 0.0535,0.3265 l -0.1461,-0.0487 l -0.0926,0.2778 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 420.8444,301.1238 l 2.6641,0.7835 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 426.3180,302.7335 l -2.9034,-1.9871 l 0.2416,1.2043 l -0.8551,0.8818 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 423.6562,301.9507 l -0.1477,-0.0434 l 0.0826,-0.2810 l 0.0651,0.3244 l -0.1477,-0.0434 l -0.0826,0.2810 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 420.8444,316.5369 l 2.6189,0.6891 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 426.2954,317.9712 l -2.9593,-1.9029 l 0.2761,1.1969 l -0.8294,0.9060 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 423.6122,317.2652 l -0.1489,-0.0392 l 0.0745,-0.2832 l 0.0744,0.3224 l -0.1489,-0.0392 l -0.0745,0.2832 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 405.4313,23.6880 l 8.0198,-1.2664 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 416.3437,21.9648 l -3.4747,-0.5520 l 0.7342,0.9848 l -0.3950,1.1631 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 413.6032,22.3976 l -0.1521,0.0240 l -0.0457,-0.2893 l 0.1978,0.2653 l -0.1521,0.0240 l 0.0457,0.2893 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 405.4313,39.1011 l 8.0373,-1.4184 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 416.3525,37.1737 l -3.4841,-0.4891 l 0.7518,0.9713 l -0.3739,1.1700 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 413.6202,37.6559 l -0.1516,0.0268 l -0.0509,-0.2884 l 0.2025,0.2616 l -0.1516,0.0268 l 0.0509,0.2884 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 405.4313,54.5142 l 8.0619,-1.6125 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 416.3648,52.3273 l -3.4944,-0.4098 l 0.7737,0.9540 l -0.3472,1.1782 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 413.6441,52.8715 l -0.1510,0.0302 l -0.0574,-0.2872 l 0.2084,0.2570 l -0.1510,0.0302 l 0.0574,0.2872 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 405.4313,69.9273 l 8.0981,-1.8689 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 416.3829,67.3998 l -3.5049,-0.3069 l 0.8014,0.9308 l -0.3125,1.1879 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 413.6794,68.0238 l -0.1500,0.0346 l -0.0659,-0.2853 l 0.2159,0.2507 l -0.1500,0.0346 l 0.0659,0.2853 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 405.4313,85.3404 l 8.1545,-2.2241 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 416.4111,82.3457 l -3.5143,-0.1685 l 0.8375,0.8985 l -0.2654,1.1993 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 413.7343,83.0758 l -0.1485,0.0405 l -0.0771,-0.2825 l 0.2256,0.2420 l -0.1485,0.0405 l 0.0771,0.2825 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 405.4313,100.7535 l 8.2487,-2.7497 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 416.4582,97.0777 l -3.5182,0.0267 l 0.8861,0.8507 l -0.1984,1.2122 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 413.8260,97.9551 l -0.1461,0.0487 l -0.0926,-0.2778 l 0.2387,0.2291 l -0.1461,0.0487 l 0.0926,0.2778 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 405.4313,116.1666 l 8.4217,-3.6094 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 416.5447,111.4036 l -3.5038,0.3188 l 0.9537,0.7741 l -0.0971,1.2245 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 413.9945,112.4965 l -0.1415,0.0606 l -0.1154,-0.2692 l 0.2569,0.2085 l -0.1415,0.0606 l 0.1154,0.2692 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 405.4313,131.5797 l 8.7828,-5.2698 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 416.7252,124.8032 l -3.4286,0.7893 l 1.0495,0.6382 l 0.0692,1.2264 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 414.3461,126.2307 l -0.1320,0.0792 l -0.1507,-0.2511 l 0.2827,0.1719 l -0.1320,0.0792 l 0.1507,0.2511 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 405.4313,146.9928 l 9.6636,-9.6637 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 417.1656,135.2584 l -3.1348,1.5973 l 1.1730,0.3646 l 0.3646,1.1729 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 415.2038,137.2203 l -0.1089,0.1089 l -0.2071,-0.2071 l 0.3159,0.0982 l -0.1089,0.1089 l 0.2071,0.2071 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 405.4313,162.4059 l 11.0441,-33.1321 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 417.8559,125.1323 l -3.1718,4.2967 l 1.8400,-0.3012 l 1.2913,1.3450 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 416.5241,129.1277 l -0.0487,0.1461 l -0.2778,-0.0926 l 0.3265,-0.0535 l -0.0487,0.1461 l 0.2778,0.0926 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 405.4313,177.8190 l 11.0441,33.1318 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 417.8559,215.0922 l -0.0406,-5.3404 l -1.2913,1.3450 l -1.8400,-0.3012 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 416.5241,211.0968 l -0.0487,-0.1461 l 0.2778,-0.0926 l -0.2291,0.2387 l -0.0487,-0.1461 l -0.2778,0.0926 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 405.4313,193.2321 l 9.6635,9.6633 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 417.1656,204.9661 l -1.5973,-3.1348 l -0.3646,1.1730 l -1.1729,0.3646 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 415.2037,203.0043 l -0.1089,-0.1089 l 0.2071,-0.2071 l -0.0982,0.3159 l -0.1089,-0.1089 l -0.2071,0.2071 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 405.4313,208.6452 l 8.7827,5.2695 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 416.7252,215.4213 l -2.3099,-2.6538 l -0.0692,1.2264 l -1.0495,0.6382 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 414.3460,213.9939 l -0.1320,-0.0792 l 0.1507,-0.2511 l -0.0186,0.3303 l -0.1320,-0.0792 l -0.1507,0.2511 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 405.4313,224.0583 l 8.4217,3.6091 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 416.5447,228.8210 l -2.6473,-2.3174 l 0.0971,1.2245 l -0.9536,0.7742 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 413.9945,227.7281 l -0.1415,-0.0606 l 0.1154,-0.2692 l 0.0262,0.3298 l -0.1415,-0.0606 l -0.1154,0.2692 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 405.4313,239.4714 l 8.2487,2.7494 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 416.4582,243.1468 l -2.8306,-2.0895 l 0.1985,1.2122 l -0.8860,0.8507 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 413.8260,242.2695 l -0.1461,-0.0487 l 0.0926,-0.2778 l 0.0535,0.3265 l -0.1461,-0.0487 l -0.0926,0.2778 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 405.4313,254.8845 l 8.1545,2.2238 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 416.4111,257.8788 l -2.9422,-1.9293 l 0.2654,1.1993 l -0.8375,0.8985 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 413.7343,257.1488 l -0.1485,-0.0405 l 0.0770,-0.2825 l 0.0715,0.3230 l -0.1485,-0.0405 l -0.0770,0.2825 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 405.4313,270.2976 l 8.0981,1.8687 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 416.3829,272.8247 l -3.0160,-1.8117 l 0.3125,1.1879 l -0.8014,0.9309 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 413.6794,272.2009 l -0.1500,-0.0346 l 0.0658,-0.2854 l 0.0842,0.3200 l -0.1500,-0.0346 l -0.0658,0.2854 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 405.4313,285.7107 l 8.0618,1.6122 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 416.3648,287.8972 l -3.0679,-1.7223 l 0.3473,1.1782 l -0.7737,0.9540 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 413.6441,287.3531 l -0.1510,-0.0302 l 0.0574,-0.2872 l 0.0935,0.3174 l -0.1510,-0.0302 l -0.0574,0.2872 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 405.4313,301.1238 l 8.0372,1.4182 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 416.3524,303.0509 l -3.1063,-1.6521 l 0.3740,1.1700 l -0.7518,0.9714 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 413.6201,302.5687 l -0.1516,-0.0268 l 0.0509,-0.2884 l 0.1007,0.3151 l -0.1516,-0.0268 l -0.0509,0.2884 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 405.4313,316.5369 l 8.0198,1.2662 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 416.3437,318.2597 l -3.1356,-1.5957 l 0.3950,1.1631 l -0.7341,0.9848 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 413.6031,317.8271 l -0.1521,-0.0240 l 0.0457,-0.2893 l 0.1064,0.3133 l -0.1521,-0.0240 l -0.0457,0.2893 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 390.0182,23.6880 l 33.1320,-1.7439 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 427.2917,21.7260 l -4.8915,-1.3095 l 0.9038,1.5194 l -0.7393,1.6059 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 423.3040,21.9359 l -0.1537,0.0081 l -0.0154,-0.2924 l 0.1691,0.2844 l -0.1537,0.0081 l 0.0154,0.2924 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 390.0182,39.1011 l 33.1320,-1.9491 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 427.2917,36.9083 l -4.9013,-1.2797 l 0.9135,1.5143 l -0.7296,1.6110 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 423.3039,37.1429 l -0.1537,0.0090 l -0.0172,-0.2923 l 0.1709,0.2833 l -0.1537,0.0090 l 0.0172,0.2923 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 390.0182,54.5142 l 33.1320,-2.2089 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 427.2917,52.0291 l -4.9136,-1.2420 l 0.9257,1.5079 l -0.7174,1.6175 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 423.3038,52.2950 l -0.1536,0.0102 l -0.0195,-0.2922 l 0.1731,0.2820 l -0.1536,0.0102 l 0.0195,0.2922 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 390.0182,69.9273 l 33.1320,-2.5488 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 427.2917,67.0599 l -4.9298,-1.1927 l 0.9418,1.4995 l -0.7014,1.6259 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 423.3037,67.3667 l -0.1535,0.0118 l -0.0225,-0.2920 l 0.1760,0.2802 l -0.1535,0.0118 l 0.0225,0.2920 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 390.0182,85.3404 l 33.1320,-3.0121 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 427.2917,81.9517 l -4.9519,-1.1255 l 0.9637,1.4881 l -0.6795,1.6375 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 423.3036,82.3143 l -0.1533,0.0139 l -0.0265,-0.2916 l 0.1798,0.2777 l -0.1533,0.0139 l 0.0265,0.2916 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 390.0182,100.7535 l 33.1320,-3.6815 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 427.2917,96.6118 l -4.9838,-1.0284 l 0.9953,1.4716 l -0.6480,1.6542 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 423.3032,97.0550 l -0.1530,0.0170 l -0.0323,-0.2911 l 0.1854,0.2741 l -0.1530,0.0170 l 0.0323,0.2911 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 390.0182,116.1666 l 33.1320,-4.7333 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 427.2917,110.8416 l -5.0342,-0.8759 l 1.0451,1.4458 l -0.5985,1.6806 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 423.3026,111.4115 l -0.1524,0.0218 l -0.0414,-0.2899 l 0.1938,0.2681 l -0.1524,0.0218 l 0.0414,0.2899 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 390.0182,131.5797 l 33.1320,-6.6265 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 427.2917,124.1248 l -5.1254,-0.6012 l 1.1348,1.3993 l -0.5093,1.7281 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 423.3012,124.9229 l -0.1510,0.0302 l -0.0574,-0.2872 l 0.2084,0.2570 l -0.1510,0.0302 l 0.0574,0.2872 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 390.0182,146.9928 l 33.1320,-11.0441 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 427.2917,134.5681 l -5.3404,0.0406 l 1.3450,1.2913 l -0.3012,1.8400 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 423.2963,135.9000 l -0.1461,0.0487 l -0.0926,-0.2778 l 0.2387,0.2291 l -0.1461,0.0487 l 0.0926,0.2778 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 390.0182,162.4059 l 33.1320,-33.1321 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 427.2917,125.1323 l -6.4436,3.2832 l 2.4110,0.7494 l 0.7495,2.4110 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 423.2591,129.1649 l -0.1089,0.1089 l -0.2071,-0.2071 l 0.3159,0.0982 l -0.1089,0.1089 l 0.2071,0.2071 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 390.0182,177.8190 l 33.1320,33.1318 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 427.2917,215.0922 l -3.2832,-6.4436 l -0.7494,2.4110 l -2.4110,0.7495 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 423.2591,211.0596 l -0.1089,-0.1089 l 0.2071,-0.2071 l -0.0982,0.3159 l -0.1089,-0.1089 l -0.2071,0.2071 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 390.0182,193.2321 l 33.1320,11.0438 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 427.2917,205.6564 l -4.2967,-3.1718 l 0.3012,1.8400 l -1.3450,1.2913 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 423.2963,204.3246 l -0.1461,-0.0487 l 0.0926,-0.2778 l 0.0535,0.3265 l -0.1461,-0.0487 l -0.0926,0.2778 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 390.0182,208.6452 l 33.1320,6.6262 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 427.2917,216.0997 l -4.4999,-2.5262 l 0.5094,1.7281 l -1.1348,1.3993 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 423.3012,215.3016 l -0.1510,-0.0302 l 0.0574,-0.2872 l 0.0935,0.3174 l -0.1510,-0.0302 l -0.0574,0.2872 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 390.0182,224.0583 l 33.1320,4.7330 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 427.2917,229.3829 l -4.5876,-2.2504 l 0.5985,1.6805 l -1.0451,1.4458 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 423.3026,228.8130 l -0.1524,-0.0218 l 0.0414,-0.2899 l 0.1110,0.3117 l -0.1524,-0.0218 l -0.0414,0.2899 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 390.0182,239.4714 l 33.1320,3.6812 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 427.2917,243.6127 l -4.6365,-2.0974 l 0.6480,1.6542 l -0.9953,1.4716 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 423.3032,243.1696 l -0.1530,-0.0170 l 0.0323,-0.2911 l 0.1207,0.3081 l -0.1530,-0.0170 l -0.0323,0.2911 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 390.0182,254.8845 l 33.1320,3.0118 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 427.2917,258.2728 l -4.6677,-2.0000 l 0.6795,1.6375 l -0.9637,1.4881 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 423.3036,257.9103 l -0.1533,-0.0139 l 0.0265,-0.2916 l 0.1268,0.3056 l -0.1533,-0.0139 l -0.0265,0.2916 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 390.0182,270.2976 l 33.1320,2.5485 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 427.2917,273.1646 l -4.6894,-1.9327 l 0.7014,1.6259 l -0.9418,1.4995 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 423.3037,272.8578 l -0.1535,-0.0118 l 0.0225,-0.2920 l 0.1310,0.3038 l -0.1535,-0.0118 l -0.0225,0.2920 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 390.0182,285.7107 l 33.1320,2.2086 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 427.2917,288.1954 l -4.7053,-1.8833 l 0.7174,1.6174 l -0.9257,1.5079 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 423.3038,287.9296 l -0.1536,-0.0102 l 0.0195,-0.2922 l 0.1341,0.3024 l -0.1536,-0.0102 l -0.0195,0.2922 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 390.0182,301.1238 l 33.1320,1.9488 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 427.2917,303.3162 l -4.7174,-1.8455 l 0.7296,1.6110 l -0.9134,1.5143 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 423.3039,303.0816 l -0.1537,-0.0090 l 0.0172,-0.2923 l 0.1365,0.3014 l -0.1537,-0.0090 l -0.0172,0.2923 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 390.0182,316.5369 l 33.1320,1.7436 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 427.2917,318.4985 l -4.7270,-1.8157 l 0.7393,1.6059 l -0.9038,1.5194 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 423.3040,318.2886 l -0.1537,-0.0081 l 0.0154,-0.2924 l 0.1384,0.3005 l -0.1537,-0.0081 l -0.0154,0.2924 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 374.6051,23.6880 l -33.1318,-1.7439 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 337.3318,21.7260 l 4.7270,1.8158 l -0.7393,-1.6059 l 0.9038,-1.5194 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 341.3195,21.9359 l 0.1537,0.0081 l -0.0154,0.2924 l -0.1384,-0.3005 l 0.1537,0.0081 l 0.0154,-0.2924 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 374.6051,39.1011 l -33.1318,-1.9491 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 337.3318,36.9083 l 4.7174,1.8456 l -0.7296,-1.6110 l 0.9135,-1.5143 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 341.3195,37.1429 l 0.1537,0.0090 l -0.0172,0.2923 l -0.1365,-0.3014 l 0.1537,0.0090 l 0.0172,-0.2923 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 374.6051,54.5142 l -33.1318,-2.2089 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 337.3318,52.0291 l 4.7052,1.8833 l -0.7174,-1.6174 l 0.9257,-1.5079 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 341.3196,52.2950 l 0.1536,0.0102 l -0.0195,0.2922 l -0.1341,-0.3024 l 0.1536,0.0102 l 0.0195,-0.2922 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 374.6051,69.9273 l -33.1318,-2.5488 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 337.3318,67.0599 l 4.6893,1.9327 l -0.7014,-1.6259 l 0.9418,-1.4995 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 341.3197,67.3667 l 0.1535,0.0118 l -0.0225,0.2920 l -0.1310,-0.3038 l 0.1535,0.0118 l 0.0225,-0.2920 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 374.6051,85.3404 l -33.1318,-3.0121 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 337.3318,81.9517 l 4.6677,2.0001 l -0.6795,-1.6375 l 0.9637,-1.4881 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 341.3199,82.3143 l 0.1533,0.0139 l -0.0265,0.2916 l -0.1268,-0.3056 l 0.1533,0.0139 l 0.0265,-0.2916 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 374.6051,100.7535 l -33.1318,-3.6815 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 337.3318,96.6118 l 4.6365,2.0974 l -0.6480,-1.6542 l 0.9953,-1.4716 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 341.3202,97.0550 l 0.1530,0.0170 l -0.0323,0.2911 l -0.1207,-0.3081 l 0.1530,0.0170 l 0.0323,-0.2911 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 374.6051,116.1666 l -33.1318,-4.7333 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 337.3318,110.8416 l 4.5875,2.2504 l -0.5985,-1.6805 l 1.0451,-1.4457 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 341.3208,111.4115 l 0.1524,0.0218 l -0.0414,0.2899 l -0.1110,-0.3117 l 0.1524,0.0218 l 0.0414,-0.2899 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 374.6051,131.5797 l -33.1318,-6.6265 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 337.3318,124.1248 l 4.4999,2.5263 l -0.5093,-1.7281 l 1.1348,-1.3993 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 341.3223,124.9229 l 0.1510,0.0302 l -0.0574,0.2872 l -0.0935,-0.3174 l 0.1510,0.0302 l 0.0574,-0.2872 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 374.6051,146.9928 l -33.1318,-11.0441 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 337.3318,134.5681 l 4.2966,3.1718 l -0.3012,-1.8400 l 1.3450,-1.2913 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 341.3272,135.9000 l 0.1461,0.0487 l -0.0926,0.2778 l -0.0535,-0.3265 l 0.1461,0.0487 l 0.0926,-0.2778 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 374.6051,162.4059 l -33.1318,-33.1321 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 337.3318,125.1323 l 3.2832,6.4436 l 0.7495,-2.4110 l 2.4110,-0.7494 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 341.3644,129.1649 l 0.1089,0.1089 l -0.2071,0.2071 l 0.0982,-0.3159 l 0.1089,0.1089 l 0.2071,-0.2071 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 374.6051,177.8190 l -33.1318,33.1318 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 337.3318,215.0922 l 6.4436,-3.2832 l -2.4110,-0.7494 l -0.7494,-2.4110 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 341.3644,211.0596 l 0.1089,-0.1089 l 0.2071,0.2071 l -0.3159,-0.0982 l 0.1089,-0.1089 l -0.2071,-0.2071 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 374.6051,193.2321 l -33.1318,11.0438 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 337.3318,205.6564 l 5.3404,-0.0405 l -1.3450,-1.2913 l 0.3012,-1.8400 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 341.3272,204.3246 l 0.1461,-0.0487 l 0.0926,0.2778 l -0.2387,-0.2291 l 0.1461,-0.0487 l -0.0926,-0.2778 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 374.6051,208.6452 l -33.1318,6.6262 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 337.3318,216.0997 l 5.1253,0.6012 l -1.1348,-1.3993 l 0.5094,-1.7281 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 341.3223,215.3016 l 0.1510,-0.0302 l 0.0574,0.2872 l -0.2084,-0.2570 l 0.1510,-0.0302 l -0.0574,-0.2872 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 374.6051,224.0583 l -33.1318,4.7330 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 337.3318,229.3829 l 5.0342,0.8759 l -1.0451,-1.4457 l 0.5985,-1.6805 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 341.3208,228.8130 l 0.1524,-0.0218 l 0.0414,0.2899 l -0.1938,-0.2681 l 0.1524,-0.0218 l -0.0414,-0.2899 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 374.6051,239.4714 l -33.1318,3.6812 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 337.3318,243.6127 l 4.9838,1.0285 l -0.9953,-1.4716 l 0.6480,-1.6542 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 341.3202,243.1696 l 0.1530,-0.0170 l 0.0323,0.2911 l -0.1854,-0.2741 l 0.1530,-0.0170 l -0.0323,-0.2911 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 374.6051,254.8845 l -33.1318,3.0118 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 337.3318,258.2728 l 4.9518,1.1256 l -0.9637,-1.4881 l 0.6795,-1.6375 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 341.3199,257.9103 l 0.1533,-0.0139 l 0.0265,0.2916 l -0.1798,-0.2777 l 0.1533,-0.0139 l -0.0265,-0.2916 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 374.6051,270.2976 l -33.1318,2.5485 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 337.3318,273.1646 l 4.9297,1.1928 l -0.9418,-1.4995 l 0.7014,-1.6259 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 341.3197,272.8578 l 0.1535,-0.0118 l 0.0225,0.2920 l -0.1760,-0.2802 l 0.1535,-0.0118 l -0.0225,-0.2920 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 374.6051,285.7107 l -33.1318,2.2086 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 337.3318,288.1954 l 4.9136,1.2421 l -0.9257,-1.5079 l 0.7174,-1.6174 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 341.3196,287.9296 l 0.1536,-0.0102 l 0.0195,0.2922 l -0.1731,-0.2820 l 0.1536,-0.0102 l -0.0195,-0.2922 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 374.6051,301.1238 l -33.1318,1.9488 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 337.3318,303.3162 l 4.9012,1.2798 l -0.9134,-1.5143 l 0.7296,-1.6110 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 341.3195,303.0816 l 0.1537,-0.0090 l 0.0172,0.2923 l -0.1709,-0.2833 l 0.1537,-0.0090 l -0.0172,-0.2923 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 374.6051,316.5369 l -33.1318,1.7436 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 337.3318,318.4985 l 4.8915,1.3095 l -0.9038,-1.5194 l 0.7393,-1.6059 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 341.3195,318.2886 l 0.1537,-0.0081 l 0.0154,0.2924 l -0.1691,-0.2844 l 0.1537,-0.0081 l -0.0154,-0.2924 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 359.1920,23.6880 l -8.0196,-1.2664 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 348.2798,21.9648 l 3.1356,1.5958 l -0.3950,-1.1631 l 0.7342,-0.9848 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 351.0203,22.3976 l 0.1521,0.0240 l -0.0457,0.2893 l -0.1064,-0.3133 l 0.1521,0.0240 l 0.0457,-0.2893 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 359.1920,39.1011 l -8.0370,-1.4184 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 348.2710,37.1737 l 3.1062,1.6522 l -0.3739,-1.1700 l 0.7518,-0.9713 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 351.0033,37.6559 l 0.1516,0.0268 l -0.0509,0.2884 l -0.1007,-0.3152 l 0.1516,0.0268 l 0.0509,-0.2884 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 359.1920,54.5142 l -8.0616,-1.6125 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 348.2587,52.3273 l 3.0679,1.7224 l -0.3472,-1.1782 l 0.7737,-0.9540 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 350.9794,52.8715 l 0.1510,0.0302 l -0.0574,0.2872 l -0.0935,-0.3174 l 0.1510,0.0302 l 0.0574,-0.2872 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 359.1920,69.9273 l -8.0979,-1.8689 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 348.2406,67.3999 l 3.0159,1.8118 l -0.3125,-1.1879 l 0.8014,-0.9308 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 350.9441,68.0238 l 0.1500,0.0346 l -0.0659,0.2853 l -0.0842,-0.3200 l 0.1500,0.0346 l 0.0659,-0.2853 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 359.1920,85.3404 l -8.1543,-2.2240 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 348.2124,82.3458 l 2.9421,1.9294 l -0.2654,-1.1993 l 0.8375,-0.8985 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 350.8892,83.0758 l 0.1485,0.0405 l -0.0771,0.2825 l -0.0715,-0.3230 l 0.1485,0.0405 l 0.0771,-0.2825 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 359.1920,100.7535 l -8.2485,-2.7496 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 348.1653,97.0777 l 2.8306,2.0896 l -0.1984,-1.2122 l 0.8861,-0.8507 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 350.7975,97.9552 l 0.1461,0.0487 l -0.0926,0.2778 l -0.0534,-0.3265 l 0.1461,0.0487 l 0.0926,-0.2778 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 359.1920,116.1666 l -8.4215,-3.6094 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 348.0788,111.4036 l 2.6473,2.3174 l -0.0971,-1.2245 l 0.9537,-0.7741 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 350.6290,112.4966 l 0.1415,0.0606 l -0.1154,0.2692 l -0.0261,-0.3298 l 0.1415,0.0606 l 0.1154,-0.2692 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 359.1920,131.5797 l -8.7826,-5.2697 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 347.8983,124.8032 l 2.3099,2.6539 l 0.0693,-1.2264 l 1.0495,-0.6382 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 350.2774,126.2307 l 0.1320,0.0792 l -0.1507,0.2511 l 0.0187,-0.3303 l 0.1320,0.0792 l 0.1507,-0.2511 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 359.1920,146.9928 l -9.6634,-9.6636 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 347.4579,135.2584 l 1.5972,3.1349 l 0.3646,-1.1729 l 1.1730,-0.3646 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 349.4197,137.2203 l 0.1089,0.1089 l -0.2071,0.2071 l 0.0982,-0.3159 l 0.1089,0.1089 l 0.2071,-0.2071 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 359.1920,162.4059 l -11.0439,-33.1321 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 346.7676,125.1323 l 0.0405,5.3404 l 1.2913,-1.3450 l 1.8400,0.3012 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 348.0994,129.1277 l 0.0487,0.1461 l -0.2778,0.0926 l 0.2291,-0.2387 l 0.0487,0.1461 l 0.2778,-0.0926 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 359.1920,177.8190 l -11.0439,33.1318 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 346.7676,215.0922 l 3.1718,-4.2966 l -1.8400,0.3012 l -1.2913,-1.3450 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 348.0994,211.0968 l 0.0487,-0.1461 l 0.2778,0.0926 l -0.3265,0.0535 l 0.0487,-0.1461 l -0.2778,-0.0926 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 359.1920,193.2321 l -9.6633,9.6633 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 347.4579,204.9661 l 3.1348,-1.5973 l -1.1729,-0.3646 l -0.3646,-1.1730 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 349.4198,203.0042 l 0.1089,-0.1089 l 0.2071,0.2071 l -0.3159,-0.0982 l 0.1089,-0.1089 l -0.2071,-0.2071 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 359.1920,208.6452 l -8.7825,5.2694 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 347.8983,215.4213 l 3.4286,-0.7893 l -1.0495,-0.6382 l -0.0692,-1.2264 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 350.2774,213.9938 l 0.1320,-0.0792 l 0.1507,0.2511 l -0.2827,-0.1719 l 0.1320,-0.0792 l -0.1507,-0.2511 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 359.1920,224.0583 l -8.4214,3.6091 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 348.0788,228.8209 l 3.5038,-0.3188 l -0.9536,-0.7742 l 0.0971,-1.2245 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 350.6290,227.7280 l 0.1415,-0.0606 l 0.1154,0.2692 l -0.2569,-0.2085 l 0.1415,-0.0606 l -0.1154,-0.2692 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 359.1920,239.4714 l -8.2484,2.7494 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 348.1653,243.1468 l 3.5182,-0.0267 l -0.8861,-0.8507 l 0.1985,-1.2122 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 350.7975,242.2694 l 0.1461,-0.0487 l 0.0926,0.2778 l -0.2387,-0.2291 l 0.1461,-0.0487 l -0.0926,-0.2778 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 359.1920,254.8845 l -8.1542,2.2238 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 348.2124,257.8788 l 3.5143,0.1685 l -0.8375,-0.8985 l 0.2654,-1.1993 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 350.8892,257.1488 l 0.1485,-0.0405 l 0.0771,0.2825 l -0.2256,-0.2420 l 0.1485,-0.0405 l -0.0771,-0.2825 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 359.1920,270.2976 l -8.0979,1.8686 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 348.2406,272.8247 l 3.5049,0.3070 l -0.8014,-0.9309 l 0.3125,-1.1879 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 350.9441,272.2008 l 0.1500,-0.0346 l 0.0658,0.2854 l -0.2159,-0.2507 l 0.1500,-0.0346 l -0.0658,-0.2854 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 359.1920,285.7107 l -8.0616,1.6122 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 348.2588,287.8972 l 3.4944,0.4099 l -0.7737,-0.9540 l 0.3473,-1.1782 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 350.9794,287.3531 l 0.1510,-0.0302 l 0.0574,0.2872 l -0.2084,-0.2570 l 0.1510,-0.0302 l -0.0574,-0.2872 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 359.1920,301.1238 l -8.0370,1.4182 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 348.2711,303.0509 l 3.4841,0.4892 l -0.7518,-0.9714 l 0.3740,-1.1700 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 351.0034,302.5687 l 0.1516,-0.0268 l 0.0509,0.2884 l -0.2025,-0.2616 l 0.1516,-0.0268 l -0.0509,-0.2884 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 359.1920,316.5369 l -8.0195,1.2661 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 348.2798,318.2597 l 3.4747,0.5521 l -0.7341,-0.9848 l 0.3950,-1.1631 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 351.0204,317.8270 l 0.1521,-0.0240 l 0.0457,0.2893 l -0.1977,-0.2653 l 0.1521,-0.0240 l -0.0457,-0.2893 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 343.7789,23.6880 l -2.6188,-0.6892 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 338.3281,22.2534 l 2.9592,1.9031 l -0.2760,-1.1969 l 0.8295,-0.9059 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 341.0112,22.9596 l 0.1489,0.0392 l -0.0745,0.2832 l -0.0744,-0.3224 l 0.1489,0.0392 l 0.0745,-0.2832 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 343.7789,39.1011 l -2.6639,-0.7836 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 338.3055,37.4911 l 2.9033,1.9873 l -0.2416,-1.2043 l 0.8552,-0.8817 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 340.9673,38.2740 l 0.1477,0.0434 l -0.0826,0.2809 l -0.0651,-0.3244 l 0.1477,0.0434 l 0.0826,-0.2809 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 343.7789,54.5142 l -2.7265,-0.9089 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 338.2742,52.6791 l 2.8305,2.0896 l -0.1984,-1.2122 l 0.8861,-0.8507 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 340.9063,53.5566 l 0.1461,0.0487 l -0.0926,0.2778 l -0.0534,-0.3265 l 0.1461,0.0487 l 0.0926,-0.2778 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 343.7789,69.9273 l -2.8163,-1.0833 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 338.2293,67.7926 l 2.7327,2.2160 l -0.1432,-1.2199 l 0.9238,-0.8095 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 340.8189,68.7887 l 0.1437,0.0553 l -0.1051,0.2733 l -0.0386,-0.3286 l 0.1437,0.0553 l 0.1051,-0.2733 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 343.7789,85.3404 l -2.9509,-1.3414 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 338.1620,82.7871 l 2.5962,2.3745 l -0.0704,-1.2263 l 0.9703,-0.7532 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 340.6878,83.9352 l 0.1402,0.0637 l -0.1212,0.2666 l -0.0190,-0.3303 l 0.1402,0.0637 l 0.1212,-0.2666 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 343.7789,100.7535 l -3.1630,-1.7573 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 338.0559,97.5739 l 2.3970,2.5755 l 0.0284,-1.2280 l 1.0277,-0.6728 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 340.4813,98.9214 l 0.1346,0.0748 l -0.1422,0.2560 l 0.0076,-0.3308 l 0.1346,0.0748 l 0.1422,-0.2560 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 343.7789,116.1666 l -3.5169,-2.5122 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 337.8790,111.9522 l 2.0908,2.8296 l 0.1668,-1.2169 l 1.0971,-0.5525 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 340.1367,113.5649 l 0.1253,0.0895 l -0.1702,0.2383 l 0.0449,-0.3278 l 0.1253,0.0895 l 0.1702,-0.2383 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 343.7789,131.5797 l -4.1414,-4.1416 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 337.5667,125.3673 l 1.5972,3.1349 l 0.3646,-1.1729 l 1.1730,-0.3646 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 339.5286,127.3292 l 0.1089,0.1089 l -0.2071,0.2071 l 0.0982,-0.3159 l 0.1089,0.1089 l 0.2071,-0.2071 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 343.7789,146.9928 l -5.2695,-8.7828 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 337.0027,135.6988 l 0.7892,3.4286 l 0.6382,-1.0495 l 1.2264,-0.0692 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 338.4301,138.0779 l 0.0792,0.1320 l -0.2511,0.1507 l 0.1719,-0.2827 l 0.0792,0.1320 l 0.2511,-0.1507 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 343.7789,162.4059 l -6.6263,-33.1321 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 336.3243,125.1323 l -0.6012,5.1254 l 1.3993,-1.1348 l 1.7281,0.5094 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 337.1224,129.1228 l 0.0302,0.1510 l -0.2872,0.0574 l 0.2570,-0.2084 l 0.0302,0.1510 l 0.2872,-0.0574 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 343.7789,177.8190 l -6.6263,33.1318 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 336.3243,215.0922 l 2.5262,-4.4999 l -1.7281,0.5094 l -1.3993,-1.1348 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 337.1224,211.1017 l 0.0302,-0.1510 l 0.2872,0.0574 l -0.3174,0.0935 l 0.0302,-0.1510 l -0.2872,-0.0574 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 343.7789,193.2321 l -5.2695,8.7825 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 337.0027,204.5257 l 2.6538,-2.3099 l -1.2264,-0.0692 l -0.6382,-1.0495 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 338.4302,202.1466 l 0.0792,-0.1320 l 0.2511,0.1507 l -0.3303,-0.0186 l 0.0792,-0.1320 l -0.2511,-0.1507 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 343.7789,208.6452 l -4.1413,4.1413 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 337.5668,214.8572 l 3.1348,-1.5973 l -1.1729,-0.3646 l -0.3646,-1.1730 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 339.5287,212.8953 l 0.1089,-0.1089 l 0.2071,0.2071 l -0.3159,-0.0982 l 0.1089,-0.1089 l -0.2071,-0.2071 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 343.7789,224.0583 l -3.5168,2.5120 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 337.8790,228.2724 l 3.3548,-1.0602 l -1.0970,-0.5525 l -0.1668,-1.2169 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 340.1368,226.6597 l 0.1253,-0.0895 l 0.1702,0.2383 l -0.2955,-0.1488 l 0.1253,-0.0895 l -0.1702,-0.2383 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 343.7789,239.4714 l -3.1629,1.7571 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 338.0560,242.6507 l 3.4530,-0.6746 l -1.0276,-0.6728 l -0.0283,-1.2280 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 340.4814,241.3033 l 0.1346,-0.0748 l 0.1422,0.2560 l -0.2768,-0.1812 l 0.1346,-0.0748 l -0.1422,-0.2560 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 343.7789,254.8845 l -2.9508,1.3412 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 338.1620,257.4375 l 3.4961,-0.3948 l -0.9702,-0.7533 l 0.0705,-1.2263 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 340.6879,256.2894 l 0.1402,-0.0637 l 0.1212,0.2666 l -0.2613,-0.2029 l 0.1402,-0.0637 l -0.1212,-0.2666 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 343.7789,270.2976 l -2.8162,1.0831 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 338.2293,272.4319 l 3.5134,-0.1864 l -0.9238,-0.8096 l 0.1432,-1.2199 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 340.8189,271.4360 l 0.1437,-0.0553 l 0.1051,0.2733 l -0.2488,-0.2181 l 0.1437,-0.0553 l -0.1051,-0.2733 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 343.7789,285.7107 l -2.7264,0.9088 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 338.2742,287.5455 l 3.5182,-0.0267 l -0.8860,-0.8507 l 0.1985,-1.2122 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 340.9064,286.6681 l 0.1461,-0.0487 l 0.0926,0.2778 l -0.2387,-0.2291 l 0.1461,-0.0487 l -0.0926,-0.2778 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 343.7789,301.1238 l -2.6639,0.7834 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 338.3055,302.7335 l 3.5169,0.0989 l -0.8551,-0.8818 l 0.2416,-1.2043 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 340.9673,301.9507 l 0.1477,-0.0434 l 0.0826,0.2810 l -0.2303,-0.2375 l 0.1477,-0.0434 l -0.0826,-0.2810 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 343.7789,316.5369 l -2.6187,0.6891 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 338.3281,317.9712 l 3.5126,0.1999 l -0.8294,-0.9060 l 0.2761,-1.1969 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 341.0113,317.2651 l 0.1489,-0.0392 l 0.0745,0.2832 l -0.2234,-0.2440 l 0.1489,-0.0392 l -0.0745,-0.2832 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 328.3658,23.6880 l -0.4205,-0.1549 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 325.1974,22.5205 l 2.7639,2.1771 l -0.1604,-1.2178 l 0.9122,-0.8226 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 327.8008,23.4798 l 0.1445,0.0532 l -0.1012,0.2748 l -0.0432,-0.3280 l 0.1445,0.0532 l 0.1012,-0.2748 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 328.3658,39.1011 l -0.5006,-0.2061 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 325.1574,37.7798 l 2.6800,2.2795 l -0.1145,-1.2230 l 0.9425,-0.7877 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 327.7229,38.8363 l 0.1424,0.0586 l -0.1115,0.2708 l -0.0308,-0.3294 l 0.1424,0.0586 l 0.1115,-0.2708 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 328.3658,54.5142 l -0.6089,-0.2842 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 325.1032,52.9915 l 2.5723,2.4003 l -0.0581,-1.2269 l 0.9778,-0.7435 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 327.6174,54.1649 l 0.1395,0.0651 l -0.1239,0.2654 l -0.0157,-0.3305 l 0.1395,0.0651 l 0.1239,-0.2654 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 328.3658,69.9273 l -0.7595,-0.4090 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 325.0279,68.1298 l 2.4306,2.5437 l 0.0122,-1.2283 l 1.0187,-0.6862 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 327.4707,69.4453 l 0.1356,0.0730 l -0.1388,0.2578 l 0.0033,-0.3308 l 0.1356,0.0730 l 0.1388,-0.2578 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 328.3658,85.3404 l -0.9751,-0.6206 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 324.9201,83.1475 l 2.2392,2.7138 l 0.1015,-1.2241 l 1.0659,-0.6103 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 327.2608,84.6371 l 0.1299,0.0827 l -0.1572,0.2471 l 0.0273,-0.3297 l 0.1299,0.0827 l 0.1572,-0.2471 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 328.3658,100.7535 l -1.2932,-1.0059 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 324.7610,97.9496 l 1.9737,2.9126 l 0.2163,-1.2091 l 1.1187,-0.5072 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 326.9511,99.6531 l 0.1215,0.0945 l -0.1798,0.2312 l 0.0583,-0.3257 l 0.1215,0.0945 l 0.1798,-0.2312 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 328.3658,116.1666 l -1.7749,-1.7750 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 324.5202,112.3208 l 1.5972,3.1349 l 0.3646,-1.1729 l 1.1730,-0.3646 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 326.4820,114.2827 l 0.1089,0.1089 l -0.2071,0.2071 l 0.0982,-0.3159 l 0.1089,0.1089 l 0.2071,-0.2071 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 328.3658,131.5797 l -2.5121,-3.5171 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 324.1516,125.6795 l 1.0601,3.3548 l 0.5525,-1.0970 l 1.2169,-0.1668 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 325.7642,127.9373 l 0.0895,0.1253 l -0.2383,0.1702 l 0.1488,-0.2955 l 0.0895,0.1253 l 0.2383,-0.1702 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 328.3658,146.9928 l -3.6092,-8.4217 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 323.6030,135.8793 l 0.3187,3.5038 l 0.7742,-0.9536 l 1.2245,0.0971 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 324.6959,138.4295 l 0.0606,0.1415 l -0.2692,0.1154 l 0.2085,-0.2569 l 0.0606,0.1415 l 0.2692,-0.1154 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 328.3658,162.4059 l -4.7330,-33.1321 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 323.0411,125.1323 l -0.8759,5.0342 l 1.4458,-1.0451 l 1.6806,0.5985 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 323.6110,129.1214 l 0.0218,0.1524 l -0.2899,0.0414 l 0.2681,-0.1938 l 0.0218,0.1524 l 0.2899,-0.0414 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 328.3658,177.8190 l -4.7330,33.1318 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 323.0411,215.0922 l 2.2504,-4.5876 l -1.6805,0.5985 l -1.4457,-1.0451 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 323.6110,211.1032 l 0.0218,-0.1524 l 0.2899,0.0414 l -0.3117,0.1110 l 0.0218,-0.1524 l -0.2899,-0.0414 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 328.3658,193.2321 l -3.6091,8.4214 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 323.6031,204.3452 l 2.3174,-2.6473 l -1.2245,0.0971 l -0.7742,-0.9536 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 324.6960,201.7950 l 0.0606,-0.1415 l 0.2692,0.1154 l -0.3298,0.0262 l 0.0606,-0.1415 l -0.2692,-0.1154 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 328.3658,208.6452 l -2.5120,3.5168 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 324.1516,214.5450 l 2.8296,-2.0909 l -1.2169,-0.1668 l -0.5525,-1.0971 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 325.7643,212.2872 l 0.0895,-0.1253 l 0.2383,0.1702 l -0.3278,-0.0449 l 0.0895,-0.1253 l -0.2383,-0.1702 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 328.3658,224.0583 l -1.7748,1.7747 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 324.5202,227.9038 l 3.1348,-1.5973 l -1.1729,-0.3646 l -0.3646,-1.1730 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 326.4821,225.9419 l 0.1089,-0.1089 l 0.2071,0.2071 l -0.3159,-0.0982 l 0.1089,-0.1089 l -0.2071,-0.2071 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 328.3658,239.4714 l -1.2930,1.0057 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 324.7611,242.2750 l 3.3088,-1.1961 l -1.1187,-0.5073 l -0.2163,-1.2091 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 326.9512,240.5716 l 0.1215,-0.0945 l 0.1798,0.2312 l -0.3013,-0.1366 l 0.1215,-0.0945 l -0.1798,-0.2312 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 328.3658,254.8845 l -0.9749,0.6204 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 324.9202,257.0771 l 3.4067,-0.8792 l -1.0659,-0.6104 l -0.1015,-1.2241 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 327.2609,255.5875 l 0.1299,-0.0827 l 0.1572,0.2471 l -0.2871,-0.1644 l 0.1299,-0.0827 l -0.1572,-0.2471 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 328.3658,270.2976 l -0.7594,0.4089 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 325.0280,272.0948 l 3.4616,-0.6291 l -1.0187,-0.6863 l -0.0122,-1.2283 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 327.4709,270.7794 l 0.1356,-0.0730 l 0.1388,0.2578 l -0.2744,-0.1849 l 0.1356,-0.0730 l -0.1388,-0.2578 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 328.3658,285.7107 l -0.6088,0.2841 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 325.1033,287.2331 l 3.4920,-0.4297 l -0.9777,-0.7435 l 0.0582,-1.2269 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 327.6175,286.0599 l 0.1395,-0.0651 l 0.1238,0.2654 l -0.2634,-0.2003 l 0.1395,-0.0651 l -0.1238,-0.2654 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 328.3658,301.1238 l -0.5004,0.2060 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 325.1574,302.4448 l 3.5080,-0.2686 l -0.9425,-0.7877 l 0.1146,-1.2230 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 327.7230,301.3884 l 0.1424,-0.0586 l 0.1115,0.2708 l -0.2539,-0.2122 l 0.1424,-0.0586 l -0.1115,-0.2708 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 328.3658,316.5369 l -0.4204,0.1549 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 325.1974,317.7041 l 3.5157,-0.1365 l -0.9122,-0.8226 l 0.1605,-1.2178 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 327.8009,316.7450 l 0.1445,-0.0532 l 0.1012,0.2748 l -0.2457,-0.2216 l 0.1445,-0.0532 l -0.1012,-0.2748 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 312.9527,23.6880 l 0.6915,0.3276 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 310.9977,22.7618 l 2.5585,2.4151 l -0.0511,-1.2273 l 0.9820,-0.7378 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 313.5051,23.9497 l 0.1391,0.0659 l -0.1254,0.2647 l -0.0138,-0.3306 l 0.1391,0.0659 l 0.1254,-0.2647 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 312.9527,39.1011 l 0.5747,0.3043 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 310.9392,38.0350 l 2.4484,2.5266 l 0.0036,-1.2283 l 1.0139,-0.6934 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 313.3913,39.3333 l 0.1361,0.0720 l -0.1370,0.2588 l 0.0010,-0.3309 l 0.1361,0.0720 l 0.1370,-0.2588 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 312.9527,54.5142 l 0.4207,0.2524 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 310.8622,53.2598 l 2.3098,2.6539 l 0.0693,-1.2264 l 1.0495,-0.6382 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 313.2413,54.6874 l 0.1320,0.0792 l -0.1507,0.2511 l 0.0187,-0.3303 l 0.1320,0.0792 l 0.1507,-0.2511 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 312.9527,69.9273 l 0.2139,0.1481 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 310.7589,68.4083 l 2.1322,2.7986 l 0.1490,-1.2192 l 1.0888,-0.5685 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 313.0400,69.9877 l 0.1266,0.0876 l -0.1667,0.2408 l 0.0401,-0.3284 l 0.1266,0.0876 l 0.1667,-0.2408 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 312.9527,85.3404 l -0.0686,-0.0562 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 310.6176,83.4297 l 1.9012,2.9604 l 0.2461,-1.2034 l 1.1309,-0.4795 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 312.7649,85.1867 l 0.1192,0.0975 l -0.1855,0.2266 l 0.0663,-0.3241 l 0.1192,0.0975 l 0.1855,-0.2266 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 312.9527,100.7535 l -0.4602,-0.4602 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 310.4218,98.2224 l 1.5972,3.1349 l 0.3646,-1.1729 l 1.1730,-0.3646 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 312.3836,100.1844 l 0.1089,0.1089 l -0.2071,0.2071 l 0.0982,-0.3159 l 0.1089,0.1089 l 0.2071,-0.2071 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 312.9527,116.1666 l -1.0058,-1.2933 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 310.1490,112.5616 l 1.1960,3.3088 l 0.5073,-1.1187 l 1.2091,-0.2163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 311.8523,114.7518 l 0.0945,0.1215 l -0.2312,0.1798 l 0.1366,-0.3013 l 0.0945,0.1215 l 0.2312,-0.1798 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 312.9527,131.5797 l -1.7572,-3.1632 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 309.7733,125.8565 l 0.6745,3.4530 l 0.6728,-1.0276 l 1.2280,-0.0283 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 311.1207,128.2819 l 0.0748,0.1346 l -0.2560,0.1422 l 0.1812,-0.2768 l 0.0748,0.1346 l 0.2560,-0.1422 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 312.9527,146.9928 l -2.7495,-8.2487 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 309.2772,135.9658 l 0.0267,3.5182 l 0.8507,-0.8861 l 1.2122,0.1985 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 310.1545,138.5980 l 0.0487,0.1461 l -0.2778,0.0926 l 0.2291,-0.2387 l 0.0487,0.1461 l 0.2778,-0.0926 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 312.9527,162.4059 l -3.6812,-33.1321 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 308.8113,125.1323 l -1.0285,4.9838 l 1.4716,-0.9953 l 1.6542,0.6480 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 309.2544,129.1208 l 0.0170,0.1530 l -0.2911,0.0323 l 0.2741,-0.1854 l 0.0170,0.1530 l 0.2911,-0.0323 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 312.9527,177.8190 l -3.6812,33.1318 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 308.8113,215.0922 l 2.0974,-4.6365 l -1.6542,0.6480 l -1.4716,-0.9953 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 309.2544,211.1038 l 0.0170,-0.1530 l 0.2911,0.0323 l -0.3081,0.1207 l 0.0170,-0.1530 l -0.2911,-0.0323 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 312.9527,193.2321 l -2.7494,8.2484 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 309.2772,204.2587 l 2.0895,-2.8306 l -1.2122,0.1984 l -0.8507,-0.8861 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 310.1546,201.6265 l 0.0487,-0.1461 l 0.2778,0.0926 l -0.3265,0.0535 l 0.0487,-0.1461 l -0.2778,-0.0926 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 312.9527,208.6452 l -1.7571,3.1629 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 309.7733,214.3680 l 2.5754,-2.3970 l -1.2280,-0.0283 l -0.6728,-1.0277 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 311.1208,211.9426 l 0.0748,-0.1346 l 0.2560,0.1422 l -0.3308,-0.0076 l 0.0748,-0.1346 l -0.2560,-0.1422 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 312.9527,224.0583 l -1.0057,1.2930 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 310.1491,227.6629 l 2.9125,-1.9738 l -1.2091,-0.2163 l -0.5073,-1.1187 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 311.8525,225.4728 l 0.0945,-0.1215 l 0.2312,0.1798 l -0.3257,-0.0583 l 0.0945,-0.1215 l -0.2312,-0.1798 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 312.9527,239.4714 l -0.4600,0.4600 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 310.4219,242.0021 l 3.1349,-1.5973 l -1.1729,-0.3646 l -0.3646,-1.1730 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 312.3838,240.0402 l 0.1089,-0.1089 l 0.2071,0.2071 l -0.3159,-0.0982 l 0.1089,-0.1089 l -0.2071,-0.2071 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 312.9527,254.8845 l -0.0684,0.0560 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 310.6177,256.7949 l 3.2782,-1.2774 l -1.1308,-0.4795 l -0.2461,-1.2034 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 312.7651,255.0380 l 0.1192,-0.0975 l 0.1854,0.2267 l -0.3046,-0.1292 l 0.1192,-0.0975 l -0.1854,-0.2267 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 312.9527,270.2976 l 0.2141,-0.1482 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 310.7589,271.8163 l 3.3700,-1.0107 l -1.0888,-0.5686 l -0.1489,-1.2193 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 313.0402,270.2370 l 0.1266,-0.0876 l 0.1667,0.2408 l -0.2933,-0.1531 l 0.1266,-0.0876 l -0.1667,-0.2408 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 312.9527,285.7107 l 0.4208,-0.2525 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 310.8623,286.9648 l 3.4287,-0.7892 l -1.0495,-0.6382 l -0.0692,-1.2264 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 313.2415,285.5374 l 0.1320,-0.0792 l 0.1507,0.2511 l -0.2827,-0.1719 l 0.1320,-0.0792 l -0.1507,-0.2511 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 312.9527,301.1238 l 0.5748,-0.3043 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 310.9393,302.1896 l 3.4660,-0.6047 l -1.0138,-0.6935 l -0.0035,-1.2283 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 313.3915,300.8915 l 0.1361,-0.0720 l 0.1370,0.2588 l -0.2731,-0.1868 l 0.1361,-0.0720 l -0.1370,-0.2588 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 312.9527,316.5369 l 0.6917,-0.3276 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 310.9978,317.4628 l 3.4894,-0.4498 l -0.9820,-0.7379 l 0.0512,-1.2272 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 313.5052,316.2752 l 0.1391,-0.0659 l 0.1254,0.2647 l -0.2645,-0.1988 l 0.1391,-0.0659 l -0.1254,-0.2647 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 297.5396,23.6880 l 1.3038,0.7549 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 296.3090,22.9755 l 2.3509,2.6176 l 0.0501,-1.2273 l 1.0394,-0.6545 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 298.7101,24.3657 l 0.1332,0.0771 l -0.1467,0.2534 l 0.0135,-0.3306 l 0.1332,0.0771 l 0.1467,-0.2534 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 297.5396,39.1011 l 1.1523,0.7457 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 296.2333,38.2557 l 2.2185,2.7307 l 0.1108,-1.2233 l 1.0705,-0.6022 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 298.5626,39.7631 l 0.1293,0.0836 l -0.1591,0.2459 l 0.0298,-0.3295 l 0.1293,0.0836 l 0.1591,-0.2459 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 297.5396,54.5142 l 0.9581,0.7026 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 296.1362,53.4849 l 2.0552,2.8556 l 0.1821,-1.2147 l 1.1039,-0.5387 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 298.3735,55.1258 l 0.1241,0.0911 l -0.1732,0.2361 l 0.0490,-0.3272 l 0.1241,0.0911 l 0.1732,-0.2361 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 297.5396,69.9273 l 0.7061,0.5975 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 296.0102,68.6330 l 1.8520,2.9914 l 0.2660,-1.1992 l 1.1386,-0.4607 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 298.1281,70.4253 l 0.1175,0.0995 l -0.1892,0.2235 l 0.0716,-0.3230 l 0.1175,0.0995 l 0.1892,-0.2235 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 297.5396,85.3404 l 0.3765,0.3765 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 295.8454,83.6460 l 1.5971,3.1349 l 0.3647,-1.1729 l 1.1730,-0.3646 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 297.8072,85.6080 l 0.1089,0.1089 l -0.2071,0.2071 l 0.0982,-0.3159 l 0.1089,0.1089 l 0.2071,-0.2071 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 297.5396,100.7535 l -0.0562,-0.0687 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 295.6291,98.4182 l 1.2773,3.2783 l 0.4796,-1.1308 l 1.2034,-0.2460 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 297.3859,100.5656 l 0.0975,0.1192 l -0.2267,0.1854 l 0.1292,-0.3046 l 0.0975,0.1192 l 0.2267,-0.1854 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 297.5396,116.1666 l -0.6205,-0.9752 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 295.3469,112.7207 l 0.8791,3.4067 l 0.6104,-1.0659 l 1.2241,-0.1014 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 296.8364,115.0615 l 0.0827,0.1299 l -0.2471,0.1572 l 0.1644,-0.2871 l 0.0827,0.1299 l 0.2471,-0.1572 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 297.5396,131.5797 l -1.3413,-2.9511 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 294.9865,125.9625 l 0.3948,3.4961 l 0.7533,-0.9702 l 1.2263,0.0705 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 296.1345,128.4884 l 0.0637,0.1402 l -0.2666,0.1212 l 0.2029,-0.2613 l 0.0637,0.1402 l 0.2666,-0.1212 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 297.5396,146.9928 l -2.2239,-8.1546 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 294.5452,136.0129 l -0.1685,3.5143 l 0.8985,-0.8375 l 1.1993,0.2654 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 295.2752,138.6897 l 0.0405,0.1485 l -0.2825,0.0771 l 0.2420,-0.2256 l 0.0405,0.1485 l 0.2825,-0.0771 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 297.5396,162.4059 l -3.0119,-33.1321 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 294.1512,125.1323 l -1.1256,4.9519 l 1.4881,-0.9637 l 1.6375,0.6795 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 294.5137,129.1204 l 0.0139,0.1533 l -0.2916,0.0265 l 0.2777,-0.1798 l 0.0139,0.1533 l 0.2916,-0.0265 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 297.5396,177.8190 l -3.0119,33.1318 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 294.1512,215.0922 l 2.0000,-4.6677 l -1.6375,0.6795 l -1.4881,-0.9637 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 294.5137,211.1041 l 0.0139,-0.1533 l 0.2916,0.0265 l -0.3056,0.1268 l 0.0139,-0.1533 l -0.2916,-0.0265 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 297.5396,193.2321 l -2.2238,8.1542 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 294.5452,204.2116 l 1.9293,-2.9422 l -1.1993,0.2654 l -0.8985,-0.8375 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 295.2752,201.5348 l 0.0405,-0.1485 l 0.2825,0.0771 l -0.3230,0.0715 l 0.0405,-0.1485 l -0.2825,-0.0771 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 297.5396,208.6452 l -1.3413,2.9508 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 294.9865,214.2620 l 2.3744,-2.5963 l -1.2263,0.0705 l -0.7532,-0.9702 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 296.1346,211.7361 l 0.0637,-0.1402 l 0.2666,0.1212 l -0.3303,0.0190 l 0.0637,-0.1402 l -0.2666,-0.1212 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 297.5396,224.0583 l -0.6204,0.9749 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 295.3469,227.5039 l 2.7137,-2.2393 l -1.2241,-0.1015 l -0.6104,-1.0659 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 296.8365,225.1631 l 0.0827,-0.1299 l 0.2471,0.1572 l -0.3297,-0.0273 l 0.0827,-0.1299 l -0.2471,-0.1572 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 297.5396,239.4714 l -0.0560,0.0684 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 295.6291,241.8063 l 2.9604,-1.9013 l -1.2034,-0.2461 l -0.4795,-1.1309 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 297.3861,239.6590 l 0.0975,-0.1192 l 0.2267,0.1854 l -0.3241,-0.0663 l 0.0975,-0.1192 l -0.2267,-0.1854 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 297.5396,254.8845 l 0.3767,-0.3767 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 295.8455,256.5785 l 3.1349,-1.5973 l -1.1729,-0.3646 l -0.3646,-1.1730 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 297.8074,254.6167 l 0.1089,-0.1089 l 0.2071,0.2071 l -0.3159,-0.0982 l 0.1089,-0.1089 l -0.2071,-0.2071 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 297.5396,270.2976 l 0.7063,-0.5976 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 296.0103,271.5916 l 3.2567,-1.3314 l -1.1386,-0.4608 l -0.2659,-1.1992 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 298.1284,269.7994 l 0.1175,-0.0994 l 0.1892,0.2236 l -0.3067,-0.1241 l 0.1175,-0.0994 l -0.1892,-0.2236 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 297.5396,285.7107 l 0.9583,-0.7027 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 296.1363,286.7397 l 3.3413,-1.1020 l -1.1039,-0.5387 l -0.1820,-1.2148 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 298.3737,285.0990 l 0.1242,-0.0910 l 0.1732,0.2362 l -0.2973,-0.1451 l 0.1242,-0.0910 l -0.1732,-0.2362 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 297.5396,301.1238 l 1.1525,-0.7457 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 296.2334,301.9689 l 3.3999,-0.9049 l -1.0705,-0.6023 l -0.1107,-1.2233 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 298.5629,300.4617 l 0.1293,-0.0836 l 0.1591,0.2459 l -0.2883,-0.1622 l 0.1293,-0.0836 l -0.1591,-0.2459 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 297.5396,316.5369 l 1.3040,-0.7549 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 296.3091,317.2492 l 3.4406,-0.7355 l -1.0394,-0.6545 l -0.0500,-1.2273 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 298.7103,315.8591 l 0.1332,-0.0771 l 0.1467,0.2534 l -0.2800,-0.1763 l 0.1332,-0.0771 l -0.1467,-0.2534 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 282.1265,23.6880 l 1.4157,0.9688 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 281.1254,23.0029 l 2.1475,2.7869 l 0.1423,-1.2200 l 1.0857,-0.5745 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 283.4151,24.5698 l 0.1271,0.0869 l -0.1654,0.2417 l 0.0383,-0.3286 l 0.1271,0.0869 l 0.1654,-0.2417 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 282.1265,39.1011 l 1.3626,1.0421 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 281.1629,38.3642 l 1.9974,2.8964 l 0.2065,-1.2108 l 1.1145,-0.5164 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 283.3668,40.0497 l 0.1223,0.0935 l -0.1779,0.2326 l 0.0556,-0.3261 l 0.1223,0.0935 l 0.1779,-0.2326 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 282.1265,54.5142 l 1.2402,1.0750 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 281.1538,53.6711 l 1.8164,3.0132 l 0.2802,-1.1959 l 1.1440,-0.4472 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 283.2503,55.4883 l 0.1163,0.1008 l -0.1918,0.2213 l 0.0755,-0.3221 l 0.1163,0.1008 l 0.1918,-0.2213 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 282.1265,69.9273 l 0.9557,0.9558 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 281.0115,68.8122 l 1.5971,3.1349 l 0.3647,-1.1729 l 1.1730,-0.3646 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 282.9733,70.7742 l 0.1089,0.1089 l -0.2071,0.2071 l 0.0982,-0.3159 l 0.1089,0.1089 l 0.2071,-0.2071 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 282.1265,85.3404 l 0.5974,0.7061 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 280.8324,83.8108 l 1.3313,3.2567 l 0.4608,-1.1386 l 1.1992,-0.2659 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 282.6245,85.9290 l 0.0994,0.1175 l -0.2236,0.1892 l 0.1241,-0.3067 l 0.0994,0.1175 l 0.2236,-0.1892 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 282.1265,100.7535 l 0.1480,0.2138 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 280.6077,98.5595 l 1.0106,3.3700 l 0.5686,-1.0888 l 1.2193,-0.1489 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 282.1869,100.8407 l 0.0876,0.1266 l -0.2408,0.1667 l 0.1532,-0.2933 l 0.0876,0.1266 l 0.2408,-0.1667 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 282.1265,116.1666 l -0.4090,-0.7596 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 280.3292,112.8285 l 0.6290,3.4616 l 0.6863,-1.0187 l 1.2283,-0.0121 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 281.6445,115.2714 l 0.0730,0.1356 l -0.2578,0.1388 l 0.1849,-0.2744 l 0.0730,0.1356 l 0.2578,-0.1388 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 282.1265,131.5797 l -1.0832,-2.8165 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 279.9920,126.0298 l 0.1864,3.5134 l 0.8096,-0.9238 l 1.2199,0.1432 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 280.9880,128.6194 l 0.0553,0.1437 l -0.2733,0.1051 l 0.2181,-0.2488 l 0.0553,0.1437 l 0.2733,-0.1051 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 282.1265,146.9928 l -1.8687,-8.0982 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 279.5993,136.0411 l -0.3070,3.5049 l 0.9309,-0.8014 l 1.1879,0.3125 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 280.2231,138.7446 l 0.0346,0.1500 l -0.2854,0.0658 l 0.2507,-0.2159 l 0.0346,0.1500 l 0.2854,-0.0658 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 282.1265,162.4059 l -2.5485,-33.1321 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 279.2594,125.1323 l -1.1928,4.9298 l 1.4995,-0.9418 l 1.6259,0.7014 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 279.5662,129.1203 l 0.0118,0.1535 l -0.2920,0.0225 l 0.2802,-0.1760 l 0.0118,0.1535 l 0.2920,-0.0225 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 282.1265,177.8190 l -2.5485,33.1318 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 279.2594,215.0922 l 1.9327,-4.6893 l -1.6259,0.7014 l -1.4995,-0.9418 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 279.5662,211.1043 l 0.0118,-0.1535 l 0.2920,0.0225 l -0.3038,0.1310 l 0.0118,-0.1535 l -0.2920,-0.0225 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 282.1265,193.2321 l -1.8687,8.0978 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 279.5993,204.1834 l 1.8118,-3.0160 l -1.1879,0.3125 l -0.9309,-0.8014 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 280.2232,201.4799 l 0.0346,-0.1500 l 0.2853,0.0658 l -0.3200,0.0842 l 0.0346,-0.1500 l -0.2853,-0.0658 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 282.1265,208.6452 l -1.0831,2.8162 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 279.9921,214.1947 l 2.2159,-2.7328 l -1.2199,0.1432 l -0.8096,-0.9238 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 280.9881,211.6051 l 0.0553,-0.1437 l 0.2733,0.1051 l -0.3286,0.0386 l 0.0553,-0.1437 l -0.2733,-0.1051 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 282.1265,224.0583 l -0.4089,0.7593 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 280.3292,227.3961 l 2.5437,-2.4307 l -1.2283,-0.0122 l -0.6863,-1.0187 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 281.6446,224.9532 l 0.0730,-0.1356 l 0.2578,0.1388 l -0.3308,-0.0033 l 0.0730,-0.1356 l -0.2578,-0.1388 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 282.1265,239.4714 l 0.1482,-0.2141 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 280.6078,241.6651 l 2.7985,-2.1323 l -1.2193,-0.1489 l -0.5685,-1.0888 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 282.1871,239.3839 l 0.0876,-0.1266 l 0.2408,0.1667 l -0.3284,-0.0401 l 0.0876,-0.1266 l -0.2408,-0.1667 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 282.1265,254.8845 l 0.5977,-0.7063 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 280.8325,256.4137 l 2.9914,-1.8521 l -1.1992,-0.2659 l -0.4608,-1.1386 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 282.6247,254.2957 l 0.0994,-0.1175 l 0.2236,0.1892 l -0.3230,-0.0716 l 0.0994,-0.1175 l -0.2236,-0.1892 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 282.1265,270.2976 l 0.9559,-0.9559 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 281.0116,271.4124 l 3.1349,-1.5972 l -1.1729,-0.3646 l -0.3646,-1.1730 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 282.9735,269.4506 l 0.1089,-0.1089 l 0.2071,0.2071 l -0.3159,-0.0982 l 0.1089,-0.1089 l -0.2071,-0.2071 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 282.1265,285.7107 l 1.2405,-1.0750 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 281.1539,286.5536 l 3.2407,-1.3698 l -1.1440,-0.4473 l -0.2801,-1.1960 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 283.2506,284.7365 l 0.1163,-0.1008 l 0.1918,0.2213 l -0.3081,-0.1205 l 0.1163,-0.1008 l -0.1918,-0.2213 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 282.1265,301.1238 l 1.3627,-1.0420 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 281.1629,301.8606 l 3.3185,-1.1689 l -1.1145,-0.5165 l -0.2064,-1.2109 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 283.3669,300.1753 l 0.1223,-0.0935 l 0.1779,0.2326 l -0.3002,-0.1391 l 0.1223,-0.0935 l -0.1779,-0.2326 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 282.1265,316.5369 l 1.4158,-0.9687 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 281.1253,317.2218 l 3.3755,-0.9921 l -1.0857,-0.5745 l -0.1422,-1.2201 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 283.4152,315.6552 l 0.1271,-0.0869 l 0.1654,0.2417 l -0.2924,-0.1548 l 0.1271,-0.0869 l -0.1654,-0.2417 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 266.7134,23.6880 l 1.3464,1.0631 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 265.7613,22.9363 l 1.9524,2.9269 l 0.2251,-1.2075 l 1.1223,-0.4991 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 267.9389,24.6556 l 0.1208,0.0954 l -0.1815,0.2298 l 0.0606,-0.3252 l 0.1208,0.0954 l 0.1815,-0.2298 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 266.7134,39.1011 l 1.2862,1.1351 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 265.8038,38.2984 l 1.7895,3.0292 l 0.2908,-1.1934 l 1.1479,-0.4370 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 267.8842,40.1343 l 0.1154,0.1019 l -0.1938,0.2196 l 0.0783,-0.3214 l 0.1154,0.1019 l 0.1938,-0.2196 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 266.7134,54.5142 l 1.2129,1.2131 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 265.8557,53.6564 l 1.5971,3.1349 l 0.3647,-1.1729 l 1.1730,-0.3645 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 267.8175,55.6184 l 0.1089,0.1089 l -0.2071,0.2071 l 0.0982,-0.3159 l 0.1089,0.1089 l 0.2071,-0.2071 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 266.7134,69.9273 l 1.0748,1.2403 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 265.8703,68.9544 l 1.3697,3.2407 l 0.4473,-1.1440 l 1.1960,-0.2801 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 267.6874,71.0512 l 0.1008,0.1164 l -0.2213,0.1918 l 0.1205,-0.3081 l 0.1008,0.1164 l 0.2213,-0.1918 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 266.7134,85.3404 l 0.7025,0.9581 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 265.6842,83.9368 l 1.1019,3.3413 l 0.5388,-1.1038 l 1.2148,-0.1820 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 267.3248,86.1743 l 0.0910,0.1242 l -0.2362,0.1732 l 0.1451,-0.2973 l 0.0910,0.1242 l 0.2362,-0.1732 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 266.7134,100.7535 l 0.2523,0.4206 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 265.4591,98.6628 l 0.7891,3.4287 l 0.6382,-1.0495 l 1.2264,-0.0692 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 266.8865,101.0420 l 0.0792,0.1320 l -0.2511,0.1507 l 0.1719,-0.2827 l 0.0792,0.1320 l 0.2511,-0.1507 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 266.7134,116.1666 l -0.2842,-0.6090 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 265.1908,112.9037 l 0.4297,3.4920 l 0.7435,-0.9777 l 1.2269,0.0582 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 266.3641,115.4180 l 0.0651,0.1395 l -0.2654,0.1238 l 0.2003,-0.2634 l 0.0651,0.1395 l 0.2654,-0.1238 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 266.7134,131.5797 l -0.9088,-2.7267 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 264.8785,126.0747 l 0.0266,3.5182 l 0.8507,-0.8860 l 1.2122,0.1985 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 265.7558,128.7069 l 0.0487,0.1461 l -0.2778,0.0926 l 0.2291,-0.2387 l 0.0487,0.1461 l 0.2778,-0.0926 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 266.7134,146.9928 l -1.6123,-8.0619 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 264.5268,136.0592 l -0.4099,3.4944 l 0.9540,-0.7737 l 1.1782,0.3473 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 265.0709,138.7799 l 0.0302,0.1510 l -0.2872,0.0574 l 0.2570,-0.2084 l 0.0302,0.1510 l 0.2872,-0.0574 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 266.7134,162.4059 l -2.2087,-33.1321 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 264.2286,125.1323 l -1.2421,4.9136 l 1.5079,-0.9257 l 1.6175,0.7174 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 264.4944,129.1202 l 0.0102,0.1536 l -0.2922,0.0195 l 0.2820,-0.1731 l 0.0102,0.1536 l 0.2922,-0.0195 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 266.7134,177.8190 l -2.2087,33.1318 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 264.2286,215.0922 l 1.8833,-4.7052 l -1.6174,0.7174 l -1.5079,-0.9257 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 264.4944,211.1044 l 0.0102,-0.1536 l 0.2922,0.0195 l -0.3024,0.1341 l 0.0102,-0.1536 l -0.2922,-0.0195 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 266.7134,193.2321 l -1.6123,8.0615 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 264.5268,204.1652 l 1.7223,-3.0679 l -1.1782,0.3473 l -0.9540,-0.7737 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 265.0709,201.4446 l 0.0302,-0.1510 l 0.2872,0.0574 l -0.3174,0.0935 l 0.0302,-0.1510 l -0.2872,-0.0574 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 266.7134,208.6452 l -0.9088,2.7264 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 264.8786,214.1498 l 2.0895,-2.8306 l -1.2122,0.1985 l -0.8507,-0.8861 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 265.7559,211.5176 l 0.0487,-0.1461 l 0.2778,0.0926 l -0.3265,0.0535 l 0.0487,-0.1461 l -0.2778,-0.0926 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 266.7134,224.0583 l -0.2841,0.6087 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 265.1909,227.3208 l 2.4002,-2.5724 l -1.2269,0.0582 l -0.7435,-0.9777 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 266.3642,224.8065 l 0.0651,-0.1395 l 0.2654,0.1238 l -0.3305,0.0157 l 0.0651,-0.1395 l -0.2654,-0.1238 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 266.7134,239.4714 l 0.2525,-0.4209 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 265.4592,241.5617 l 2.6538,-2.3099 l -1.2264,-0.0692 l -0.6382,-1.0495 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 266.8867,239.1825 l 0.0792,-0.1320 l 0.2511,0.1507 l -0.3303,-0.0186 l 0.0792,-0.1320 l -0.2511,-0.1507 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 266.7134,254.8845 l 0.7027,-0.9583 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 265.6843,256.2877 l 2.8555,-2.0554 l -1.2148,-0.1820 l -0.5387,-1.1039 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 267.3251,254.0504 l 0.0910,-0.1242 l 0.2362,0.1732 l -0.3272,-0.0490 l 0.0910,-0.1242 l -0.2362,-0.1732 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 266.7134,270.2976 l 1.0751,-1.2405 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 265.8705,271.2701 l 3.0131,-1.8165 l -1.1959,-0.2801 l -0.4472,-1.1440 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 267.6876,269.1735 l 0.1008,-0.1163 l 0.2213,0.1918 l -0.3221,-0.0755 l 0.1008,-0.1163 l -0.2213,-0.1918 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 266.7134,285.7107 l 1.2130,-1.2130 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 265.8556,286.5684 l 3.1349,-1.5972 l -1.1729,-0.3646 l -0.3646,-1.1730 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 267.8175,284.6066 l 0.1089,-0.1089 l 0.2071,0.2071 l -0.3159,-0.0982 l 0.1089,-0.1089 l -0.2071,-0.2071 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 266.7134,301.1238 l 1.2863,-1.1350 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 265.8038,301.9263 l 3.2284,-1.3986 l -1.1479,-0.4371 l -0.2907,-1.1934 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 267.8843,300.0907 l 0.1154,-0.1019 l 0.1938,0.2196 l -0.3092,-0.1177 l 0.1154,-0.1019 l -0.1938,-0.2196 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 266.7134,316.5369 l 1.3465,-1.0629 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 265.7613,317.2885 l 3.3000,-1.2200 l -1.1223,-0.4992 l -0.2250,-1.2075 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 267.9390,315.5693 l 0.1208,-0.0954 l 0.1815,0.2299 l -0.3023,-0.1345 l 0.1208,-0.0954 l -0.1815,-0.2299 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 251.3003,23.6880 l 1.2783,1.1439 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 250.3963,22.8791 l 1.7685,3.0415 l 0.2991,-1.1913 l 1.1509,-0.4290 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 252.4639,24.7292 l 0.1147,0.1027 l -0.1953,0.2182 l 0.0806,-0.3209 l 0.1147,0.1027 l 0.1953,-0.2182 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 251.3003,39.1011 l 1.2129,1.2131 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 250.4426,38.2433 l 1.5971,3.1349 l 0.3647,-1.1729 l 1.1730,-0.3645 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 252.4043,40.2053 l 0.1089,0.1089 l -0.2071,0.2071 l 0.0982,-0.3159 l 0.1089,0.1089 l 0.2071,-0.2071 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 251.3003,54.5142 l 1.1349,1.2864 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 250.4978,53.6045 l 1.3984,3.2285 l 0.4371,-1.1479 l 1.1934,-0.2907 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 252.3333,55.6851 l 0.1019,0.1155 l -0.2196,0.1937 l 0.1177,-0.3092 l 0.1019,0.1155 l 0.2196,-0.1937 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 251.3003,69.9273 l 1.0420,1.3627 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 250.5635,68.9636 l 1.1688,3.3185 l 0.5165,-1.1144 l 1.2109,-0.2063 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 252.2487,71.1677 l 0.0935,0.1223 l -0.2326,0.1779 l 0.1391,-0.3002 l 0.0935,0.1223 l 0.2326,-0.1779 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 251.3003,85.3404 l 0.7455,1.1523 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 250.4550,84.0339 l 0.9048,3.4000 l 0.6023,-1.0705 l 1.2233,-0.1107 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 251.9622,86.3634 l 0.0836,0.1293 l -0.2459,0.1591 l 0.1622,-0.2883 l 0.0836,0.1293 l 0.2459,-0.1591 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 251.3003,100.7535 l 0.3042,0.5746 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 250.2343,98.7398 l 0.6046,3.4660 l 0.6935,-1.0138 l 1.2283,-0.0035 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 251.5324,101.1920 l 0.0720,0.1361 l -0.2588,0.1370 l 0.1868,-0.2731 l 0.0720,0.1361 l 0.2588,-0.1370 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 251.3003,116.1666 l -0.2062,-0.5007 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 249.9792,112.9579 l 0.2686,3.5080 l 0.7877,-0.9425 l 1.2230,0.1146 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 251.0355,115.5235 l 0.0586,0.1424 l -0.2708,0.1115 l 0.2122,-0.2539 l 0.0586,0.1424 l 0.2708,-0.1115 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 251.3003,131.5797 l -0.7835,-2.6642 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 249.6905,126.1060 l -0.0989,3.5169 l 0.8818,-0.8551 l 1.2043,0.2416 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 250.4733,128.7678 l 0.0434,0.1477 l -0.2810,0.0826 l 0.2375,-0.2303 l 0.0434,0.1477 l 0.2810,-0.0826 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 251.3003,146.9928 l -1.4183,-8.0373 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 249.3731,136.0715 l -0.4892,3.4841 l 0.9714,-0.7518 l 1.1700,0.3740 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 249.8553,138.8039 l 0.0268,0.1516 l -0.2884,0.0509 l 0.2616,-0.2025 l 0.0268,0.1516 l 0.2884,-0.0509 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 251.3003,162.4059 l -1.9488,-33.1321 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 249.1078,125.1323 l -1.2798,4.9013 l 1.5143,-0.9135 l 1.6110,0.7296 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 249.3424,129.1201 l 0.0090,0.1537 l -0.2923,0.0172 l 0.2833,-0.1709 l 0.0090,0.1537 l 0.2923,-0.0172 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 251.3003,177.8190 l -1.9488,33.1318 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 249.1078,215.0922 l 1.8455,-4.7174 l -1.6110,0.7296 l -1.5143,-0.9134 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 249.3424,211.1045 l 0.0090,-0.1537 l 0.2923,0.0172 l -0.3014,0.1365 l 0.0090,-0.1537 l -0.2923,-0.0172 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 251.3003,193.2321 l -1.4182,8.0369 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 249.3731,204.1529 l 1.6522,-3.1063 l -1.1700,0.3740 l -0.9713,-0.7518 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 249.8553,201.4206 l 0.0268,-0.1516 l 0.2884,0.0509 l -0.3151,0.1007 l 0.0268,-0.1516 l -0.2884,-0.0509 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 251.3003,208.6452 l -0.7834,2.6638 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 249.6905,214.1185 l 1.9872,-2.9034 l -1.2043,0.2416 l -0.8818,-0.8551 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 250.4734,211.4567 l 0.0434,-0.1477 l 0.2809,0.0826 l -0.3244,0.0651 l 0.0434,-0.1477 l -0.2809,-0.0826 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 251.3003,224.0583 l -0.2060,0.5004 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 249.9792,227.2666 l 2.2793,-2.6801 l -1.2230,0.1146 l -0.7877,-0.9425 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 251.0356,224.7010 l 0.0586,-0.1424 l 0.2708,0.1115 l -0.3294,0.0309 l 0.0586,-0.1424 l -0.2708,-0.1115 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 251.3003,239.4714 l 0.3043,-0.5749 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 250.2344,241.4847 l 2.5265,-2.4486 l -1.2283,-0.0035 l -0.6934,-1.0139 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 251.5326,239.0326 l 0.0720,-0.1361 l 0.2588,0.1370 l -0.3309,-0.0010 l 0.0720,-0.1361 l -0.2588,-0.1370 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 251.3003,254.8845 l 0.7458,-1.1525 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 250.4551,256.1906 l 2.7306,-2.2187 l -1.2233,-0.1107 l -0.6023,-1.0705 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 251.9624,253.8612 l 0.0836,-0.1293 l 0.2459,0.1591 l -0.3295,-0.0298 l 0.0836,-0.1293 l -0.2459,-0.1591 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 251.3003,270.2976 l 1.0421,-1.3627 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 250.5634,271.2612 l 2.8962,-1.9976 l -1.2108,-0.2064 l -0.5164,-1.1145 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 252.2488,269.0572 l 0.0935,-0.1223 l 0.2326,0.1779 l -0.3261,-0.0556 l 0.0935,-0.1223 l -0.2326,-0.1779 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 251.3003,285.7107 l 1.1350,-1.2863 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 250.4977,286.6203 l 3.0291,-1.7897 l -1.1934,-0.2907 l -0.4371,-1.1479 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 252.3334,284.5398 l 0.1019,-0.1154 l 0.2196,0.1938 l -0.3215,-0.0783 l 0.1019,-0.1154 l -0.2196,-0.1938 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 251.3003,301.1238 l 1.2130,-1.2130 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 250.4425,301.9815 l 3.1349,-1.5972 l -1.1729,-0.3646 l -0.3646,-1.1730 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 252.4044,300.0197 l 0.1089,-0.1089 l 0.2071,0.2071 l -0.3159,-0.0982 l 0.1089,-0.1089 l -0.2071,-0.2071 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 251.3003,316.5369 l 1.2784,-1.1438 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 250.3963,317.3457 l 3.2186,-1.4209 l -1.1509,-0.4291 l -0.2990,-1.1914 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 252.4640,315.4957 l 0.1147,-0.1027 l 0.1953,0.2182 l -0.3100,-0.1156 l 0.1147,-0.1027 l -0.1953,-0.2182 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 235.8872,23.6880 l 1.2129,1.2131 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 235.0295,22.8302 l 1.5971,3.1350 l 0.3647,-1.1729 l 1.1730,-0.3645 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 236.9912,24.7922 l 0.1089,0.1089 l -0.2071,0.2071 l 0.0982,-0.3159 l 0.1089,0.1089 l 0.2071,-0.2071 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 235.8872,39.1011 l 1.1438,1.2785 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 235.0784,38.1970 l 1.4207,3.2187 l 0.4292,-1.1509 l 1.1914,-0.2989 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 236.9283,40.2648 l 0.1027,0.1147 l -0.2183,0.1953 l 0.1156,-0.3100 l 0.1027,0.1147 l 0.2183,-0.1953 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 235.8872,54.5142 l 1.0629,1.3465 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 235.1356,53.5620 l 1.2199,3.3001 l 0.4992,-1.1223 l 1.2075,-0.2250 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 236.8547,55.7398 l 0.0954,0.1208 l -0.2299,0.1814 l 0.1345,-0.3023 l 0.0954,0.1208 l 0.2299,-0.1814 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 235.8872,69.9273 l 0.9686,1.4158 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 235.2022,68.9261 l 0.9920,3.3756 l 0.5746,-1.0856 l 1.2201,-0.1421 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 236.7689,71.2160 l 0.0869,0.1271 l -0.2417,0.1654 l 0.1548,-0.2924 l 0.0869,0.1271 l 0.2417,-0.1654 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 235.8872,85.3404 l 0.7547,1.3037 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 235.1747,84.1096 l 0.7355,3.4406 l 0.6546,-1.0394 l 1.2273,-0.0500 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 236.5648,86.5109 l 0.0771,0.1332 l -0.2534,0.1467 l 0.1763,-0.2800 l 0.0771,0.1332 l 0.2534,-0.1467 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 235.8872,100.7535 l 0.3275,0.6914 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 234.9611,98.7983 l 0.4497,3.4895 l 0.7379,-0.9820 l 1.2272,0.0512 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 236.1487,101.3057 l 0.0659,0.1391 l -0.2647,0.1254 l 0.1988,-0.2645 l 0.0659,0.1391 l 0.2647,-0.1254 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 235.8872,116.1666 l -0.1550,-0.4207 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 234.7199,112.9979 l 0.1365,3.5157 l 0.8226,-0.9122 l 1.2178,0.1605 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 235.6790,115.6014 l 0.0532,0.1445 l -0.2748,0.1012 l 0.2216,-0.2457 l 0.0532,0.1445 l 0.2748,-0.1012 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 235.8872,131.5797 l -0.6892,-2.6190 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 234.4528,126.1286 l -0.1999,3.5126 l 0.9060,-0.8294 l 1.1969,0.2761 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 235.1588,128.8118 l 0.0392,0.1489 l -0.2832,0.0745 l 0.2440,-0.2234 l 0.0392,0.1489 l 0.2832,-0.0745 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 235.8872,146.9928 l -1.2662,-8.0199 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 234.1643,136.0803 l -0.5521,3.4747 l 0.9848,-0.7341 l 1.1631,0.3950 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 234.5970,138.8208 l 0.0240,0.1521 l -0.2893,0.0457 l 0.2653,-0.1977 l 0.0240,0.1521 l 0.2893,-0.0457 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 235.8872,162.4059 l -1.7437,-33.1321 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 233.9255,125.1323 l -1.3095,4.8915 l 1.5194,-0.9038 l 1.6059,0.7393 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 234.1354,129.1200 l 0.0081,0.1537 l -0.2924,0.0154 l 0.2844,-0.1691 l 0.0081,0.1537 l 0.2924,-0.0154 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 235.8872,177.8190 l -1.7437,33.1318 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 233.9255,215.0922 l 1.8157,-4.7270 l -1.6059,0.7393 l -1.5194,-0.9038 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 234.1354,211.1045 l 0.0081,-0.1537 l 0.2924,0.0154 l -0.3005,0.1384 l 0.0081,-0.1537 l -0.2924,-0.0154 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 235.8872,193.2321 l -1.2662,8.0195 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 234.1643,204.1442 l 1.5958,-3.1356 l -1.1631,0.3950 l -0.9848,-0.7341 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 234.5970,201.4036 l 0.0240,-0.1521 l 0.2893,0.0457 l -0.3133,0.1064 l 0.0240,-0.1521 l -0.2893,-0.0457 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 235.8872,208.6452 l -0.6891,2.6186 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 234.4528,214.0959 l 1.9030,-2.9593 l -1.1969,0.2761 l -0.9060,-0.8294 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 235.1589,211.4127 l 0.0392,-0.1489 l 0.2832,0.0745 l -0.3224,0.0744 l 0.0392,-0.1489 l -0.2832,-0.0745 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 235.8872,224.0583 l -0.1549,0.4204 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 234.7199,227.2266 l 2.1769,-2.7640 l -1.2178,0.1605 l -0.8226,-0.9122 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 235.6791,224.6231 l 0.0532,-0.1445 l 0.2748,0.1012 l -0.3280,0.0432 l 0.0532,-0.1445 l -0.2748,-0.1012 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 235.8872,239.4714 l 0.3277,-0.6917 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 234.9612,241.4263 l 2.4150,-2.5586 l -1.2272,0.0511 l -0.7379,-0.9820 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 236.1489,238.9188 l 0.0659,-0.1391 l 0.2647,0.1254 l -0.3306,0.0138 l 0.0659,-0.1391 l -0.2647,-0.1254 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 235.8872,254.8845 l 0.7549,-1.3040 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 235.1748,256.1149 l 2.6174,-2.3511 l -1.2273,-0.0501 l -0.6545,-1.0394 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 236.5650,253.7137 l 0.0771,-0.1332 l 0.2534,0.1467 l -0.3306,-0.0135 l 0.0771,-0.1332 l -0.2534,-0.1467 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 235.8872,270.2976 l 0.9687,-1.4158 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 235.2022,271.2987 l 2.7868,-2.1476 l -1.2201,-0.1422 l -0.5745,-1.0857 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 236.7689,269.0089 l 0.0869,-0.1271 l 0.2417,0.1654 l -0.3286,-0.0383 l 0.0869,-0.1271 l -0.2417,-0.1654 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 235.8872,285.7107 l 1.0630,-1.3464 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 235.1355,286.6628 l 2.9268,-1.9526 l -1.2075,-0.2251 l -0.4992,-1.1223 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 236.8547,284.4851 l 0.0954,-0.1208 l 0.2299,0.1815 l -0.3253,-0.0606 l 0.0954,-0.1208 l -0.2299,-0.1815 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 235.8872,301.1238 l 1.1439,-1.2784 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 235.0783,302.0278 l 3.0414,-1.7687 l -1.1914,-0.2990 l -0.4291,-1.1509 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 236.9284,299.9601 l 0.1027,-0.1147 l 0.2182,0.1953 l -0.3209,-0.0805 l 0.1027,-0.1147 l -0.2182,-0.1953 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(93,165,218)" stroke-width="0.5856978443390839" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 235.8872,316.5369 l 1.2130,-1.2130 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.5" stroke="rgb(93,165,218)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 235.0294,317.3946 l 3.1349,-1.5972 l -1.1729,-0.3646 l -0.3646,-1.1730 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 236.9913,315.4328 l 0.1089,-0.1089 l 0.2071,0.2071 l -0.3159,-0.0982 l 0.1089,-0.1089 l -0.2071,-0.2071 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 121.4067,40.1461 l -50.2529,0.0000 l -0.0000,276.3908 l 50.2529,0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" font-size="45.68443185844855px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(31,119,180)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(0.0000,-1.0000,1.0000,0.0000,96.2802,316.5369)" stroke="none" text-anchor="start">Arrow Chart
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.1" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 186.5011,316.5369 l -0.0000,-292.8489 h -5.8570 l -0.0000,292.8489 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 173.3229,35.5659 l -0.0000,-20.1012 h -30.1517 l -0.0000,20.1012 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="18.273772743379418px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,158.2471,25.5153)" stroke="none" text-anchor="middle">0.5
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.2801841513785788" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 177.7157,23.6880 h 8.7855 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 173.3229,64.8508 l -0.0000,-20.1012 h -30.1517 l -0.0000,20.1012 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="18.273772743379418px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,158.2471,54.8002)" stroke="none" text-anchor="middle">0.4
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.2801841513785788" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 177.7157,52.9729 h 8.7855 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 173.3229,94.1357 l -0.0000,-20.1012 h -30.1517 l -0.0000,20.1012 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="18.273772743379418px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,158.2471,84.0851)" stroke="none" text-anchor="middle">0.3
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.2801841513785788" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 177.7157,82.2577 h 8.7855 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 173.3229,123.4206 l -0.0000,-20.1012 h -30.1517 l -0.0000,20.1012 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="18.273772743379418px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,158.2471,113.3700)" stroke="none" text-anchor="middle">0.2
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.2801841513785788" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 177.7157,111.5426 h 8.7855 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 173.3229,152.7055 l -0.0000,-20.1012 h -30.1517 l -0.0000,20.1012 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="18.273772743379418px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,158.2471,142.6549)" stroke="none" text-anchor="middle">0.1
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.2801841513785788" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 177.7157,140.8275 h 8.7855 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 173.3229,181.9904 l -0.0000,-20.1012 h -30.1517 l -0.0000,20.1012 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="18.273772743379418px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,158.2471,171.9398)" stroke="none" text-anchor="middle">0.0
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.2801841513785788" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 177.7157,170.1124 h 8.7855 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 173.3229,211.2753 l -0.0000,-20.1012 h -40.2023 l -0.0000,20.1012 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="18.273772743379418px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,153.2218,201.2247)" stroke="none" text-anchor="middle">-0.1
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.2801841513785788" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 177.7157,199.3973 h 8.7855 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 173.3229,240.5602 l -0.0000,-20.1012 h -40.2023 l -0.0000,20.1012 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="18.273772743379418px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,153.2218,230.5096)" stroke="none" text-anchor="middle">-0.2
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.2801841513785788" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 177.7157,228.6822 h 8.7855 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 173.3229,269.8451 l -0.0000,-20.1012 h -40.2023 l -0.0000,20.1012 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="18.273772743379418px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,153.2218,259.7945)" stroke="none" text-anchor="middle">-0.3
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.2801841513785788" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 177.7157,257.9671 h 8.7855 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 173.3229,299.1299 l -0.0000,-20.1012 h -40.2023 l -0.0000,20.1012 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="18.273772743379418px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,153.2218,289.0794)" stroke="none" text-anchor="middle">-0.4
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.2801841513785788" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 177.7157,287.2520 h 8.7855 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 173.3229,328.4148 l -0.0000,-20.1012 h -40.2023 l -0.0000,20.1012 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="18.273772743379418px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,153.2218,318.3643)" stroke="none" text-anchor="middle">-0.5
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.2801841513785788" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 177.7157,316.5369 h 8.7855 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.1" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 528.7361,351.6788 l -0.0000,-5.8570 h -292.8489 l -0.0000,5.8570 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 543.8120,379.1011 l -0.0000,-20.1012 h -30.1517 l -0.0000,20.1012 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="18.273772743379418px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,528.7361,369.0506)" stroke="none" text-anchor="middle">0.5
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.2801841513785788" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 528.7361,345.8218 v 8.7855 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 514.5271,379.1011 l -0.0000,-20.1012 h -30.1517 l -0.0000,20.1012 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="18.273772743379418px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,499.4512,369.0506)" stroke="none" text-anchor="middle">0.4
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.2801841513785788" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 499.4512,345.8218 v 8.7855 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 485.2422,379.1011 l -0.0000,-20.1012 h -30.1517 l -0.0000,20.1012 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="18.273772743379418px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,470.1663,369.0506)" stroke="none" text-anchor="middle">0.3
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.2801841513785788" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 470.1663,345.8218 v 8.7855 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 455.9573,379.1011 l -0.0000,-20.1012 h -30.1517 l -0.0000,20.1012 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="18.273772743379418px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,440.8814,369.0506)" stroke="none" text-anchor="middle">0.2
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.2801841513785788" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 440.8814,345.8218 v 8.7855 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 426.6724,379.1011 l -0.0000,-20.1012 h -30.1517 l -0.0000,20.1012 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="18.273772743379418px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,411.5965,369.0506)" stroke="none" text-anchor="middle">0.1
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.2801841513785788" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 411.5965,345.8218 v 8.7855 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 397.3875,379.1011 l -0.0000,-20.1012 h -30.1517 l -0.0000,20.1012 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="18.273772743379418px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,382.3116,369.0506)" stroke="none" text-anchor="middle">0.0
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.2801841513785788" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 382.3116,345.8218 v 8.7855 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 373.1279,379.1011 l -0.0000,-20.1012 h -40.2023 l -0.0000,20.1012 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="18.273772743379418px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,353.0267,369.0506)" stroke="none" text-anchor="middle">-0.1
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.2801841513785788" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 353.0267,345.8218 v 8.7855 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 343.8430,379.1011 l -0.0000,-20.1012 h -40.2023 l -0.0000,20.1012 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="18.273772743379418px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,323.7418,369.0506)" stroke="none" text-anchor="middle">-0.2
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.2801841513785788" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 323.7418,345.8218 v 8.7855 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 314.5581,379.1011 l -0.0000,-20.1012 h -40.2023 l -0.0000,20.1012 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="18.273772743379418px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,294.4570,369.0506)" stroke="none" text-anchor="middle">-0.3
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.2801841513785788" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 294.4570,345.8218 v 8.7855 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 285.2732,379.1011 l -0.0000,-20.1012 h -40.2023 l -0.0000,20.1012 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="18.273772743379418px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,265.1721,369.0506)" stroke="none" text-anchor="middle">-0.4
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.2801841513785788" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 265.1721,345.8218 v 8.7855 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 255.9883,379.1011 l -0.0000,-20.1012 h -40.2023 l -0.0000,20.1012 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="18.273772743379418px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,235.8872,369.0506)" stroke="none" text-anchor="middle">-0.5
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.2801841513785788" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 235.8872,345.8218 v 8.7855 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 528.7361,316.5369 l -0.0000,-292.8489 h -292.8489 l -0.0000,292.8489 Z"/>
-  </g>
-</svg>
diff --git a/other/barExample.svg b/other/barExample.svg
--- a/other/barExample.svg
+++ b/other/barExample.svg
@@ -117,34 +117,34 @@
   <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 510.3403,338.5795 l -0.0000,-280.4538 h -420.6807 l -0.0000,280.4538 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.8604638074350364" fill="rgb(31,119,180)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.8604638074350364" fill="rgb(20,86,131)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 506.1335,295.4328 l -0.0000,-21.5734 h -33.6545 l -0.0000,21.5734 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.8604638074350364" fill="rgb(31,119,180)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.8604638074350364" fill="rgb(20,86,131)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 464.0655,295.4328 l -0.0000,-43.1467 h -33.6545 l -0.0000,43.1467 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.8604638074350364" fill="rgb(31,119,180)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.8604638074350364" fill="rgb(20,86,131)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 421.9974,295.4328 l -0.0000,-237.3070 h -33.6545 l -0.0000,237.3070 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.8604638074350364" fill="rgb(31,119,180)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.8604638074350364" fill="rgb(20,86,131)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 379.9293,338.5795 l -0.0000,-43.1467 h -33.6545 l -0.0000,43.1467 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.8604638074350364" fill="rgb(31,119,180)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.8604638074350364" fill="rgb(20,86,131)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 337.8613,295.4328 l -0.0000,-0.0000 h -33.6545 l -0.0000,0.0000 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.8604638074350364" fill="rgb(31,119,180)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.8604638074350364" fill="rgb(20,86,131)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 295.7932,295.4328 l -0.0000,-172.5869 h -33.6545 l -0.0000,172.5869 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.8604638074350364" fill="rgb(31,119,180)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.8604638074350364" fill="rgb(20,86,131)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 253.7251,295.4328 l -0.0000,-107.8668 h -33.6545 l -0.0000,107.8668 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.8604638074350364" fill="rgb(31,119,180)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.8604638074350364" fill="rgb(20,86,131)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 211.6571,295.4328 l -0.0000,-64.7201 h -33.6545 l -0.0000,64.7201 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.8604638074350364" fill="rgb(31,119,180)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.8604638074350364" fill="rgb(20,86,131)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 169.5890,295.4328 l -0.0000,-43.1467 h -33.6545 l -0.0000,43.1467 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.8604638074350364" fill="rgb(31,119,180)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.8604638074350364" fill="rgb(20,86,131)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 127.5209,295.4328 l -0.0000,-21.5734 h -33.6545 l -0.0000,21.5734 Z"/>
   </g>
 </svg>
diff --git a/other/clippingExample.svg b/other/clippingExample.svg
deleted file mode 100644
--- a/other/clippingExample.svg
+++ /dev/null
@@ -1,34157 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
-    "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
-<svg xmlns="http://www.w3.org/2000/svg" height="600.0000" stroke-opacity="1" viewBox="0 0 600 600" font-size="1" width="600.0000" xmlns:xlink="http://www.w3.org/1999/xlink" stroke="rgb(0,0,0)" version="1.1">
-  <defs>
-  </defs>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1">
-        <path d="M 565.6754,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1)">
-      <path d="M 183.6783,354.9047 l -0.0000,-24.0505 h -96.2018 l -0.0000,24.0505 Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="21.86404754438049px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2">
-        <path d="M 565.6754,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2)">
-      <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,135.5774,342.8795)" stroke="none" text-anchor="middle">y = -2.0
-      </text>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3">
-        <path d="M 565.6754,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3)">
-      <path d="M 376.3902,495.0588 l -0.0000,-24.0505 h -96.2018 l -0.0000,24.0505 Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="21.86404754438049px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip4">
-        <path d="M 565.6754,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip4)">
-      <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,328.2893,483.0336)" stroke="none" text-anchor="middle">x = -1.0
-      </text>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="8.96475407629383" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip5">
-        <path d="M 565.6754,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip5)">
-      <path d="M 333.5451,340.6931 c 0.0000,-2.9027 -2.3531,-5.2558 -5.2558 -5.2558c -2.9027,-0.0000 -5.2558,2.3531 -5.2558 5.2558c -0.0000,2.9027 2.3531,5.2558 5.2558 5.2558c 2.9027,0.0000 5.2558,-2.3531 5.2558 -5.2558Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(51,51,51)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip6">
-        <path d="M 565.6754,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip6)">
-      <path d="M 328.2893,445.8087 v -105.1156 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(51,51,51)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip7">
-        <path d="M 565.6754,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip7)">
-      <path d="M 188.1352,340.6931 h 140.1542 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(153,153,153)" stroke-width="5.97650271752922" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip8">
-        <path d="M 565.6754,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip8)">
-      <path d="M 258.2123,60.3848 l 4.2046,24.7232 l 4.2046,23.7141 l 4.2046,22.7050 l 4.2046,21.6959 l 4.2046,20.6868 l 4.2046,19.6776 l 4.2046,18.6685 l 4.2046,17.6594 l 4.2046,16.6503 l 4.2046,15.6412 l 4.2046,14.6321 l 4.2046,13.6230 l 4.2046,12.6139 l 4.2046,11.6048 l 4.2046,10.5957 l 4.2046,9.5865 l 4.2046,8.5774 l 4.2046,7.5683 l 4.2046,6.5592 l 4.2046,5.5501 l 4.2046,4.5410 l 4.2046,3.5319 l 4.2046,2.5228 l 4.2046,1.5137 l 4.2046,0.5046 l 4.2046,-0.5046 l 4.2046,-1.5137 l 4.2046,-2.5228 l 4.2046,-3.5319 l 4.2046,-4.5410 l 4.2046,-5.5501 l 4.2046,-6.5592 l 4.2046,-7.5683 l 4.2046,-8.5774 l 4.2046,-9.5865 l 4.2046,-10.5957 l 4.2046,-11.6048 l 4.2046,-12.6139 l 4.2046,-13.6230 l 4.2046,-14.6321 l 4.2046,-15.6412 l 4.2046,-16.6503 l 4.2046,-17.6594 l 4.2046,-18.6685 l 4.2046,-19.6776 l 4.2046,-20.6868 l 4.2046,-21.6959 l 4.2046,-22.7050 l 4.2046,-23.7141 l 4.2046,-24.7232 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip9">
-        <path d="M 565.6754,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip9)">
-      <path d="M 453.5171,81.4079 l -0.0000,-36.0757 h -180.3784 l -0.0000,36.0757 Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="32.79607131657073px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip10">
-        <path d="M 565.6754,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip10)">
-      <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,363.3279,63.3700)" stroke="none" text-anchor="middle">y = x² - 3
-      </text>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip11">
-        <path d="M 565.6754,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip11)">
-      <path d="M 538.5206,445.8087 l -0.0000,-350.3854 h -350.3854 l -0.0000,350.3854 Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip12">
-        <path d="M 565.6754,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip12)">
-      <path d="M 188.1352,95.4233 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip13">
-        <path d="M 565.6754,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip13)">
-      <path d="M 188.1352,102.4310 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip14">
-        <path d="M 565.6754,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip14)">
-      <path d="M 188.1352,109.4387 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip15">
-        <path d="M 565.6754,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip15)">
-      <path d="M 188.1352,116.4464 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip16">
-        <path d="M 565.6754,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip16)">
-      <path d="M 188.1352,123.4541 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip17">
-        <path d="M 565.6754,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip17)">
-      <path d="M 188.1352,130.4618 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip18">
-        <path d="M 565.6754,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip18)">
-      <path d="M 188.1352,137.4695 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip19">
-        <path d="M 565.6754,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip19)">
-      <path d="M 188.1352,144.4773 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip20">
-        <path d="M 565.6754,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip20)">
-      <path d="M 188.1352,151.4850 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip21">
-        <path d="M 565.6754,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip21)">
-      <path d="M 188.1352,158.4927 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip22">
-        <path d="M 565.6754,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip22)">
-      <path d="M 188.1352,165.5004 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip23">
-        <path d="M 565.6754,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip23)">
-      <path d="M 188.1352,172.5081 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip24">
-        <path d="M 565.6754,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip24)">
-      <path d="M 188.1352,179.5158 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip25">
-        <path d="M 565.6754,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip25)">
-      <path d="M 188.1352,186.5235 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip26">
-        <path d="M 565.6754,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip26)">
-      <path d="M 188.1352,193.5312 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip27">
-        <path d="M 565.6754,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip27)">
-      <path d="M 188.1352,200.5389 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip28">
-        <path d="M 565.6754,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip28)">
-      <path d="M 188.1352,207.5466 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip29">
-        <path d="M 565.6754,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip29)">
-      <path d="M 188.1352,214.5543 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip30">
-        <path d="M 565.6754,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip30)">
-      <path d="M 188.1352,221.5620 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip31">
-        <path d="M 565.6754,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip31)">
-      <path d="M 188.1352,228.5697 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip32">
-        <path d="M 565.6754,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip32)">
-      <path d="M 188.1352,235.5775 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip33">
-        <path d="M 565.6754,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip33)">
-      <path d="M 188.1352,242.5852 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip34">
-        <path d="M 565.6754,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip34)">
-      <path d="M 188.1352,249.5929 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip35">
-        <path d="M 565.6754,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip35)">
-      <path d="M 188.1352,256.6006 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip36">
-        <path d="M 565.6754,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip36)">
-      <path d="M 188.1352,263.6083 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip37">
-        <path d="M 565.6754,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip37)">
-      <path d="M 188.1352,270.6160 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip38">
-        <path d="M 565.6754,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip38)">
-      <path d="M 188.1352,277.6237 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip39">
-        <path d="M 565.6754,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip39)">
-      <path d="M 188.1352,284.6314 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip40">
-        <path d="M 565.6754,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip40)">
-      <path d="M 188.1352,291.6391 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip41">
-        <path d="M 565.6754,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip41)">
-      <path d="M 188.1352,298.6468 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip42">
-        <path d="M 565.6754,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip42)">
-      <path d="M 188.1352,305.6545 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip43">
-        <path d="M 565.6754,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip43)">
-      <path d="M 188.1352,312.6622 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip44">
-        <path d="M 565.6754,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip44)">
-      <path d="M 188.1352,319.6699 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip45">
-        <path d="M 565.6754,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip45)">
-      <path d="M 188.1352,326.6777 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip46">
-        <path d="M 565.6754,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip46)">
-      <path d="M 188.1352,333.6854 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip47">
-        <path d="M 565.6754,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip47)">
-      <path d="M 188.1352,340.6931 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip48">
-        <path d="M 565.6754,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip48)">
-      <path d="M 188.1352,347.7008 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip49">
-        <path d="M 565.6754,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip49)">
-      <path d="M 188.1352,354.7085 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip50">
-        <path d="M 565.6754,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip50)">
-      <path d="M 188.1352,361.7162 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip51">
-        <path d="M 565.6754,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip51)">
-      <path d="M 188.1352,368.7239 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip52">
-        <path d="M 565.6754,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip52)">
-      <path d="M 188.1352,375.7316 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip53">
-        <path d="M 565.6754,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip53)">
-      <path d="M 188.1352,382.7393 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip54">
-        <path d="M 565.6754,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip54)">
-      <path d="M 188.1352,389.7470 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip55">
-        <path d="M 565.6754,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip55)">
-      <path d="M 188.1352,396.7547 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip56">
-        <path d="M 565.6754,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip56)">
-      <path d="M 188.1352,403.7624 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip57">
-        <path d="M 565.6754,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip57)">
-      <path d="M 188.1352,410.7701 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip58">
-        <path d="M 565.6754,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip58)">
-      <path d="M 188.1352,417.7779 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip59">
-        <path d="M 565.6754,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip59)">
-      <path d="M 188.1352,424.7856 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip60">
-        <path d="M 565.6754,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip60)">
-      <path d="M 188.1352,431.7933 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip61">
-        <path d="M 565.6754,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip61)">
-      <path d="M 188.1352,438.8010 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip62">
-        <path d="M 565.6754,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip62)">
-      <path d="M 188.1352,445.8087 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip63">
-        <path d="M 565.6754,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip63)">
-      <path d="M 538.5206,445.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip64">
-        <path d="M 565.6754,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip64)">
-      <path d="M 531.5128,445.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip65">
-        <path d="M 565.6754,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip65)">
-      <path d="M 524.5051,445.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip66">
-        <path d="M 565.6754,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip66)">
-      <path d="M 517.4974,445.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip67">
-        <path d="M 565.6754,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip67)">
-      <path d="M 510.4897,445.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip68">
-        <path d="M 565.6754,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip68)">
-      <path d="M 503.4820,445.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip69">
-        <path d="M 565.6754,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip69)">
-      <path d="M 496.4743,445.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip70">
-        <path d="M 565.6754,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip70)">
-      <path d="M 489.4666,445.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip71">
-        <path d="M 565.6754,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip71)">
-      <path d="M 482.4589,445.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip72">
-        <path d="M 565.6754,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip72)">
-      <path d="M 475.4512,445.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip73">
-        <path d="M 565.6754,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip73)">
-      <path d="M 468.4435,445.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip74">
-        <path d="M 565.6754,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip74)">
-      <path d="M 461.4358,445.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip75">
-        <path d="M 565.6754,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip75)">
-      <path d="M 454.4281,445.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip76">
-        <path d="M 565.6754,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip76)">
-      <path d="M 447.4204,445.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip77">
-        <path d="M 565.6754,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip77)">
-      <path d="M 440.4127,445.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip78">
-        <path d="M 565.6754,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip78)">
-      <path d="M 433.4049,445.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip79">
-        <path d="M 565.6754,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip79)">
-      <path d="M 426.3972,445.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip80">
-        <path d="M 565.6754,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip80)">
-      <path d="M 419.3895,445.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip81">
-        <path d="M 565.6754,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip81)">
-      <path d="M 412.3818,445.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip82">
-        <path d="M 565.6754,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip82)">
-      <path d="M 405.3741,445.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip83">
-        <path d="M 565.6754,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip83)">
-      <path d="M 398.3664,445.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip84">
-        <path d="M 565.6754,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip84)">
-      <path d="M 391.3587,445.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip85">
-        <path d="M 565.6754,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip85)">
-      <path d="M 384.3510,445.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip86">
-        <path d="M 565.6754,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip86)">
-      <path d="M 377.3433,445.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip87">
-        <path d="M 565.6754,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip87)">
-      <path d="M 370.3356,445.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip88">
-        <path d="M 565.6754,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip88)">
-      <path d="M 363.3279,445.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip89">
-        <path d="M 565.6754,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip89)">
-      <path d="M 356.3202,445.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip90">
-        <path d="M 565.6754,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip90)">
-      <path d="M 349.3125,445.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip91">
-        <path d="M 565.6754,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip91)">
-      <path d="M 342.3047,445.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip92">
-        <path d="M 565.6754,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip92)">
-      <path d="M 335.2970,445.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip93">
-        <path d="M 565.6754,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip93)">
-      <path d="M 328.2893,445.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip94">
-        <path d="M 565.6754,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip94)">
-      <path d="M 321.2816,445.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip95">
-        <path d="M 565.6754,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip95)">
-      <path d="M 314.2739,445.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip96">
-        <path d="M 565.6754,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip96)">
-      <path d="M 307.2662,445.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip97">
-        <path d="M 565.6754,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip97)">
-      <path d="M 300.2585,445.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip98">
-        <path d="M 565.6754,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip98)">
-      <path d="M 293.2508,445.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip99">
-        <path d="M 565.6754,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip99)">
-      <path d="M 286.2431,445.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip100">
-        <path d="M 565.6754,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip100)">
-      <path d="M 279.2354,445.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip101">
-        <path d="M 565.6754,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip101)">
-      <path d="M 272.2277,445.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip102">
-        <path d="M 565.6754,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip102)">
-      <path d="M 265.2200,445.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip103">
-        <path d="M 565.6754,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip103)">
-      <path d="M 258.2123,445.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip104">
-        <path d="M 565.6754,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip104)">
-      <path d="M 251.2045,445.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip105">
-        <path d="M 565.6754,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip105)">
-      <path d="M 244.1968,445.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip106">
-        <path d="M 565.6754,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip106)">
-      <path d="M 237.1891,445.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip107">
-        <path d="M 565.6754,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip107)">
-      <path d="M 230.1814,445.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip108">
-        <path d="M 565.6754,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip108)">
-      <path d="M 223.1737,445.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip109">
-        <path d="M 565.6754,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip109)">
-      <path d="M 216.1660,445.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip110">
-        <path d="M 565.6754,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip110)">
-      <path d="M 209.1583,445.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip111">
-        <path d="M 565.6754,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip111)">
-      <path d="M 202.1506,445.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip112">
-        <path d="M 565.6754,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip112)">
-      <path d="M 195.1429,445.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip113">
-        <path d="M 565.6754,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip113)">
-      <path d="M 188.1352,445.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip114">
-        <path d="M 565.6754,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip114)">
-      <path d="M 188.1352,95.4233 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip115">
-        <path d="M 565.6754,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip115)">
-      <path d="M 188.1352,130.4618 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip116">
-        <path d="M 565.6754,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip116)">
-      <path d="M 188.1352,165.5004 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip117">
-        <path d="M 565.6754,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip117)">
-      <path d="M 188.1352,200.5389 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip118">
-        <path d="M 565.6754,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip118)">
-      <path d="M 188.1352,235.5775 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip119">
-        <path d="M 565.6754,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip119)">
-      <path d="M 188.1352,270.6160 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip120">
-        <path d="M 565.6754,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip120)">
-      <path d="M 188.1352,305.6545 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip121">
-        <path d="M 565.6754,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip121)">
-      <path d="M 188.1352,340.6931 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip122">
-        <path d="M 565.6754,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip122)">
-      <path d="M 188.1352,375.7316 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip123">
-        <path d="M 565.6754,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip123)">
-      <path d="M 188.1352,410.7701 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip124">
-        <path d="M 565.6754,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip124)">
-      <path d="M 188.1352,445.8087 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip125">
-        <path d="M 565.6754,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip125)">
-      <path d="M 538.5206,445.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip126">
-        <path d="M 565.6754,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip126)">
-      <path d="M 503.4820,445.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip127">
-        <path d="M 565.6754,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip127)">
-      <path d="M 468.4435,445.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip128">
-        <path d="M 565.6754,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip128)">
-      <path d="M 433.4049,445.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip129">
-        <path d="M 565.6754,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip129)">
-      <path d="M 398.3664,445.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip130">
-        <path d="M 565.6754,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip130)">
-      <path d="M 363.3279,445.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip131">
-        <path d="M 565.6754,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip131)">
-      <path d="M 328.2893,445.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip132">
-        <path d="M 565.6754,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip132)">
-      <path d="M 293.2508,445.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip133">
-        <path d="M 565.6754,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip133)">
-      <path d="M 258.2123,445.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip134">
-        <path d="M 565.6754,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip134)">
-      <path d="M 223.1737,445.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip135">
-        <path d="M 565.6754,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip135)">
-      <path d="M 188.1352,445.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.1" stroke="rgb(102,102,102)" stroke-width="2.98825135876461" fill="rgb(255,255,255)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip136">
-        <path d="M 565.6754,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip136)">
-      <path d="M 565.6754,506.2810 l -0.0000,-495.8678 h -491.9915 l -0.0000,495.8678 Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.1" stroke="rgb(102,102,102)" stroke-width="2.98825135876461" fill="rgb(76,76,76)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 565.6754,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip137">
-        <path d="M 457.4373,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip137)">
-      <path d="M 75.4401,255.7311 l -0.0000,-24.0505 h -96.2018 l -0.0000,24.0505 Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="21.86404754438049px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip138">
-        <path d="M 457.4373,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip138)">
-      <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,27.3392,243.7059)" stroke="none" text-anchor="middle">y = -2.0
-      </text>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip139">
-        <path d="M 457.4373,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip139)">
-      <path d="M 268.1521,395.8853 l -0.0000,-24.0505 h -96.2018 l -0.0000,24.0505 Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="21.86404754438049px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip140">
-        <path d="M 457.4373,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip140)">
-      <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,220.0512,383.8601)" stroke="none" text-anchor="middle">x = -1.0
-      </text>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="8.96475407629383" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip141">
-        <path d="M 457.4373,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip141)">
-      <path d="M 225.3070,241.5195 c 0.0000,-2.9027 -2.3531,-5.2558 -5.2558 -5.2558c -2.9027,-0.0000 -5.2558,2.3531 -5.2558 5.2558c -0.0000,2.9027 2.3531,5.2558 5.2558 5.2558c 2.9027,0.0000 5.2558,-2.3531 5.2558 -5.2558Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(51,51,51)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip142">
-        <path d="M 457.4373,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip142)">
-      <path d="M 220.0512,346.6351 v -105.1156 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(51,51,51)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip143">
-        <path d="M 457.4373,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip143)">
-      <path d="M 79.8970,241.5195 h 140.1542 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(153,153,153)" stroke-width="5.97650271752922" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip144">
-        <path d="M 457.4373,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip144)">
-      <path d="M 149.9741,-38.7888 l 4.2046,24.7232 l 4.2046,23.7141 l 4.2046,22.7050 l 4.2046,21.6959 l 4.2046,20.6868 l 4.2046,19.6776 l 4.2046,18.6685 l 4.2046,17.6594 l 4.2046,16.6503 l 4.2046,15.6412 l 4.2046,14.6321 l 4.2046,13.6230 l 4.2046,12.6139 l 4.2046,11.6048 l 4.2046,10.5957 l 4.2046,9.5865 l 4.2046,8.5774 l 4.2046,7.5683 l 4.2046,6.5592 l 4.2046,5.5501 l 4.2046,4.5410 l 4.2046,3.5319 l 4.2046,2.5228 l 4.2046,1.5137 l 4.2046,0.5046 l 4.2046,-0.5046 l 4.2046,-1.5137 l 4.2046,-2.5228 l 4.2046,-3.5319 l 4.2046,-4.5410 l 4.2046,-5.5501 l 4.2046,-6.5592 l 4.2046,-7.5683 l 4.2046,-8.5774 l 4.2046,-9.5865 l 4.2046,-10.5957 l 4.2046,-11.6048 l 4.2046,-12.6139 l 4.2046,-13.6230 l 4.2046,-14.6321 l 4.2046,-15.6412 l 4.2046,-16.6503 l 4.2046,-17.6594 l 4.2046,-18.6685 l 4.2046,-19.6776 l 4.2046,-20.6868 l 4.2046,-21.6959 l 4.2046,-22.7050 l 4.2046,-23.7141 l 4.2046,-24.7232 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip145">
-        <path d="M 457.4373,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip145)">
-      <path d="M 345.2789,-17.7657 l -0.0000,-36.0757 h -180.3784 l -0.0000,36.0757 Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="32.79607131657073px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip146">
-        <path d="M 457.4373,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip146)">
-      <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,255.0897,-35.8035)" stroke="none" text-anchor="middle">y = x² - 3
-      </text>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip147">
-        <path d="M 457.4373,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip147)">
-      <path d="M 430.2824,346.6351 l -0.0000,-350.3854 h -350.3854 l -0.0000,350.3854 Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip148">
-        <path d="M 457.4373,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip148)">
-      <path d="M 79.8970,-3.7503 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip149">
-        <path d="M 457.4373,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip149)">
-      <path d="M 79.8970,3.2575 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip150">
-        <path d="M 457.4373,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip150)">
-      <path d="M 79.8970,10.2652 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip151">
-        <path d="M 457.4373,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip151)">
-      <path d="M 79.8970,17.2729 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip152">
-        <path d="M 457.4373,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip152)">
-      <path d="M 79.8970,24.2806 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip153">
-        <path d="M 457.4373,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip153)">
-      <path d="M 79.8970,31.2883 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip154">
-        <path d="M 457.4373,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip154)">
-      <path d="M 79.8970,38.2960 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip155">
-        <path d="M 457.4373,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip155)">
-      <path d="M 79.8970,45.3037 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip156">
-        <path d="M 457.4373,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip156)">
-      <path d="M 79.8970,52.3114 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip157">
-        <path d="M 457.4373,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip157)">
-      <path d="M 79.8970,59.3191 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip158">
-        <path d="M 457.4373,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip158)">
-      <path d="M 79.8970,66.3268 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip159">
-        <path d="M 457.4373,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip159)">
-      <path d="M 79.8970,73.3345 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip160">
-        <path d="M 457.4373,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip160)">
-      <path d="M 79.8970,80.3422 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip161">
-        <path d="M 457.4373,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip161)">
-      <path d="M 79.8970,87.3499 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip162">
-        <path d="M 457.4373,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip162)">
-      <path d="M 79.8970,94.3577 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip163">
-        <path d="M 457.4373,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip163)">
-      <path d="M 79.8970,101.3654 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip164">
-        <path d="M 457.4373,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip164)">
-      <path d="M 79.8970,108.3731 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip165">
-        <path d="M 457.4373,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip165)">
-      <path d="M 79.8970,115.3808 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip166">
-        <path d="M 457.4373,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip166)">
-      <path d="M 79.8970,122.3885 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip167">
-        <path d="M 457.4373,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip167)">
-      <path d="M 79.8970,129.3962 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip168">
-        <path d="M 457.4373,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip168)">
-      <path d="M 79.8970,136.4039 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip169">
-        <path d="M 457.4373,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip169)">
-      <path d="M 79.8970,143.4116 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip170">
-        <path d="M 457.4373,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip170)">
-      <path d="M 79.8970,150.4193 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip171">
-        <path d="M 457.4373,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip171)">
-      <path d="M 79.8970,157.4270 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip172">
-        <path d="M 457.4373,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip172)">
-      <path d="M 79.8970,164.4347 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip173">
-        <path d="M 457.4373,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip173)">
-      <path d="M 79.8970,171.4424 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip174">
-        <path d="M 457.4373,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip174)">
-      <path d="M 79.8970,178.4501 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip175">
-        <path d="M 457.4373,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip175)">
-      <path d="M 79.8970,185.4579 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip176">
-        <path d="M 457.4373,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip176)">
-      <path d="M 79.8970,192.4656 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip177">
-        <path d="M 457.4373,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip177)">
-      <path d="M 79.8970,199.4733 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip178">
-        <path d="M 457.4373,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip178)">
-      <path d="M 79.8970,206.4810 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip179">
-        <path d="M 457.4373,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip179)">
-      <path d="M 79.8970,213.4887 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip180">
-        <path d="M 457.4373,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip180)">
-      <path d="M 79.8970,220.4964 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip181">
-        <path d="M 457.4373,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip181)">
-      <path d="M 79.8970,227.5041 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip182">
-        <path d="M 457.4373,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip182)">
-      <path d="M 79.8970,234.5118 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip183">
-        <path d="M 457.4373,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip183)">
-      <path d="M 79.8970,241.5195 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip184">
-        <path d="M 457.4373,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip184)">
-      <path d="M 79.8970,248.5272 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip185">
-        <path d="M 457.4373,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip185)">
-      <path d="M 79.8970,255.5349 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip186">
-        <path d="M 457.4373,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip186)">
-      <path d="M 79.8970,262.5426 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip187">
-        <path d="M 457.4373,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip187)">
-      <path d="M 79.8970,269.5503 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip188">
-        <path d="M 457.4373,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip188)">
-      <path d="M 79.8970,276.5581 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip189">
-        <path d="M 457.4373,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip189)">
-      <path d="M 79.8970,283.5658 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip190">
-        <path d="M 457.4373,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip190)">
-      <path d="M 79.8970,290.5735 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip191">
-        <path d="M 457.4373,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip191)">
-      <path d="M 79.8970,297.5812 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip192">
-        <path d="M 457.4373,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip192)">
-      <path d="M 79.8970,304.5889 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip193">
-        <path d="M 457.4373,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip193)">
-      <path d="M 79.8970,311.5966 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip194">
-        <path d="M 457.4373,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip194)">
-      <path d="M 79.8970,318.6043 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip195">
-        <path d="M 457.4373,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip195)">
-      <path d="M 79.8970,325.6120 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip196">
-        <path d="M 457.4373,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip196)">
-      <path d="M 79.8970,332.6197 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip197">
-        <path d="M 457.4373,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip197)">
-      <path d="M 79.8970,339.6274 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip198">
-        <path d="M 457.4373,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip198)">
-      <path d="M 79.8970,346.6351 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip199">
-        <path d="M 457.4373,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip199)">
-      <path d="M 430.2824,346.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip200">
-        <path d="M 457.4373,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip200)">
-      <path d="M 423.2747,346.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip201">
-        <path d="M 457.4373,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip201)">
-      <path d="M 416.2670,346.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip202">
-        <path d="M 457.4373,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip202)">
-      <path d="M 409.2593,346.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip203">
-        <path d="M 457.4373,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip203)">
-      <path d="M 402.2516,346.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip204">
-        <path d="M 457.4373,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip204)">
-      <path d="M 395.2439,346.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip205">
-        <path d="M 457.4373,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip205)">
-      <path d="M 388.2362,346.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip206">
-        <path d="M 457.4373,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip206)">
-      <path d="M 381.2285,346.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip207">
-        <path d="M 457.4373,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip207)">
-      <path d="M 374.2208,346.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip208">
-        <path d="M 457.4373,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip208)">
-      <path d="M 367.2131,346.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip209">
-        <path d="M 457.4373,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip209)">
-      <path d="M 360.2053,346.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip210">
-        <path d="M 457.4373,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip210)">
-      <path d="M 353.1976,346.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip211">
-        <path d="M 457.4373,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip211)">
-      <path d="M 346.1899,346.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip212">
-        <path d="M 457.4373,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip212)">
-      <path d="M 339.1822,346.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip213">
-        <path d="M 457.4373,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip213)">
-      <path d="M 332.1745,346.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip214">
-        <path d="M 457.4373,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip214)">
-      <path d="M 325.1668,346.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip215">
-        <path d="M 457.4373,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip215)">
-      <path d="M 318.1591,346.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip216">
-        <path d="M 457.4373,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip216)">
-      <path d="M 311.1514,346.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip217">
-        <path d="M 457.4373,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip217)">
-      <path d="M 304.1437,346.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip218">
-        <path d="M 457.4373,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip218)">
-      <path d="M 297.1360,346.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip219">
-        <path d="M 457.4373,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip219)">
-      <path d="M 290.1283,346.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip220">
-        <path d="M 457.4373,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip220)">
-      <path d="M 283.1206,346.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip221">
-        <path d="M 457.4373,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip221)">
-      <path d="M 276.1129,346.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip222">
-        <path d="M 457.4373,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip222)">
-      <path d="M 269.1051,346.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip223">
-        <path d="M 457.4373,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip223)">
-      <path d="M 262.0974,346.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip224">
-        <path d="M 457.4373,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip224)">
-      <path d="M 255.0897,346.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip225">
-        <path d="M 457.4373,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip225)">
-      <path d="M 248.0820,346.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip226">
-        <path d="M 457.4373,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip226)">
-      <path d="M 241.0743,346.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip227">
-        <path d="M 457.4373,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip227)">
-      <path d="M 234.0666,346.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip228">
-        <path d="M 457.4373,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip228)">
-      <path d="M 227.0589,346.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip229">
-        <path d="M 457.4373,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip229)">
-      <path d="M 220.0512,346.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip230">
-        <path d="M 457.4373,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip230)">
-      <path d="M 213.0435,346.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip231">
-        <path d="M 457.4373,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip231)">
-      <path d="M 206.0358,346.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip232">
-        <path d="M 457.4373,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip232)">
-      <path d="M 199.0281,346.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip233">
-        <path d="M 457.4373,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip233)">
-      <path d="M 192.0204,346.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip234">
-        <path d="M 457.4373,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip234)">
-      <path d="M 185.0127,346.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip235">
-        <path d="M 457.4373,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip235)">
-      <path d="M 178.0049,346.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip236">
-        <path d="M 457.4373,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip236)">
-      <path d="M 170.9972,346.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip237">
-        <path d="M 457.4373,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip237)">
-      <path d="M 163.9895,346.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip238">
-        <path d="M 457.4373,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip238)">
-      <path d="M 156.9818,346.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip239">
-        <path d="M 457.4373,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip239)">
-      <path d="M 149.9741,346.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip240">
-        <path d="M 457.4373,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip240)">
-      <path d="M 142.9664,346.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip241">
-        <path d="M 457.4373,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip241)">
-      <path d="M 135.9587,346.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip242">
-        <path d="M 457.4373,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip242)">
-      <path d="M 128.9510,346.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip243">
-        <path d="M 457.4373,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip243)">
-      <path d="M 121.9433,346.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip244">
-        <path d="M 457.4373,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip244)">
-      <path d="M 114.9356,346.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip245">
-        <path d="M 457.4373,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip245)">
-      <path d="M 107.9279,346.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip246">
-        <path d="M 457.4373,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip246)">
-      <path d="M 100.9202,346.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip247">
-        <path d="M 457.4373,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip247)">
-      <path d="M 93.9125,346.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip248">
-        <path d="M 457.4373,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip248)">
-      <path d="M 86.9048,346.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip249">
-        <path d="M 457.4373,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip249)">
-      <path d="M 79.8970,346.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip250">
-        <path d="M 457.4373,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip250)">
-      <path d="M 79.8970,-3.7503 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip251">
-        <path d="M 457.4373,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip251)">
-      <path d="M 79.8970,31.2883 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip252">
-        <path d="M 457.4373,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip252)">
-      <path d="M 79.8970,66.3268 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip253">
-        <path d="M 457.4373,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip253)">
-      <path d="M 79.8970,101.3654 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip254">
-        <path d="M 457.4373,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip254)">
-      <path d="M 79.8970,136.4039 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip255">
-        <path d="M 457.4373,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip255)">
-      <path d="M 79.8970,171.4424 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip256">
-        <path d="M 457.4373,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip256)">
-      <path d="M 79.8970,206.4810 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip257">
-        <path d="M 457.4373,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip257)">
-      <path d="M 79.8970,241.5195 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip258">
-        <path d="M 457.4373,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip258)">
-      <path d="M 79.8970,276.5581 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip259">
-        <path d="M 457.4373,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip259)">
-      <path d="M 79.8970,311.5966 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip260">
-        <path d="M 457.4373,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip260)">
-      <path d="M 79.8970,346.6351 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip261">
-        <path d="M 457.4373,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip261)">
-      <path d="M 430.2824,346.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip262">
-        <path d="M 457.4373,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip262)">
-      <path d="M 395.2439,346.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip263">
-        <path d="M 457.4373,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip263)">
-      <path d="M 360.2053,346.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip264">
-        <path d="M 457.4373,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip264)">
-      <path d="M 325.1668,346.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip265">
-        <path d="M 457.4373,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip265)">
-      <path d="M 290.1283,346.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip266">
-        <path d="M 457.4373,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip266)">
-      <path d="M 255.0897,346.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip267">
-        <path d="M 457.4373,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip267)">
-      <path d="M 220.0512,346.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip268">
-        <path d="M 457.4373,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip268)">
-      <path d="M 185.0127,346.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip269">
-        <path d="M 457.4373,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip269)">
-      <path d="M 149.9741,346.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip270">
-        <path d="M 457.4373,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip270)">
-      <path d="M 114.9356,346.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip271">
-        <path d="M 457.4373,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip271)">
-      <path d="M 79.8970,346.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.1" stroke="rgb(102,102,102)" stroke-width="2.98825135876461" fill="rgb(255,255,255)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip272">
-        <path d="M 457.4373,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip272)">
-      <path d="M 457.4373,407.1074 l -0.0000,-495.8678 h -491.9915 l -0.0000,495.8678 Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.1" stroke="rgb(102,102,102)" stroke-width="2.98825135876461" fill="rgb(76,76,76)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 457.4373,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip273">
-        <path d="M 349.1992,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip273)">
-      <path d="M -32.7980,156.5576 l -0.0000,-24.0505 h -96.2018 l -0.0000,24.0505 Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="21.86404754438049px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip274">
-        <path d="M 349.1992,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip274)">
-      <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,-80.8989,144.5324)" stroke="none" text-anchor="middle">y = -2.0
-      </text>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip275">
-        <path d="M 349.1992,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip275)">
-      <path d="M 159.9140,296.7117 l -0.0000,-24.0505 h -96.2018 l -0.0000,24.0505 Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="21.86404754438049px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip276">
-        <path d="M 349.1992,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip276)">
-      <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,111.8131,284.6865)" stroke="none" text-anchor="middle">x = -1.0
-      </text>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="8.96475407629383" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip277">
-        <path d="M 349.1992,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip277)">
-      <path d="M 117.0688,142.3460 c 0.0000,-2.9027 -2.3531,-5.2558 -5.2558 -5.2558c -2.9027,-0.0000 -5.2558,2.3531 -5.2558 5.2558c -0.0000,2.9027 2.3531,5.2558 5.2558 5.2558c 2.9027,0.0000 5.2558,-2.3531 5.2558 -5.2558Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(51,51,51)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip278">
-        <path d="M 349.1992,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip278)">
-      <path d="M 111.8131,247.4616 v -105.1156 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(51,51,51)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip279">
-        <path d="M 349.1992,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip279)">
-      <path d="M -28.3411,142.3460 h 140.1542 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(153,153,153)" stroke-width="5.97650271752922" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip280">
-        <path d="M 349.1992,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip280)">
-      <path d="M 41.7360,-137.9623 l 4.2046,24.7232 l 4.2046,23.7141 l 4.2046,22.7050 l 4.2046,21.6959 l 4.2046,20.6868 l 4.2046,19.6776 l 4.2046,18.6685 l 4.2046,17.6594 l 4.2046,16.6503 l 4.2046,15.6412 l 4.2046,14.6321 l 4.2046,13.6230 l 4.2046,12.6139 l 4.2046,11.6048 l 4.2046,10.5957 l 4.2046,9.5865 l 4.2046,8.5774 l 4.2046,7.5683 l 4.2046,6.5592 l 4.2046,5.5501 l 4.2046,4.5410 l 4.2046,3.5319 l 4.2046,2.5228 l 4.2046,1.5137 l 4.2046,0.5046 l 4.2046,-0.5046 l 4.2046,-1.5137 l 4.2046,-2.5228 l 4.2046,-3.5319 l 4.2046,-4.5410 l 4.2046,-5.5501 l 4.2046,-6.5592 l 4.2046,-7.5683 l 4.2046,-8.5774 l 4.2046,-9.5865 l 4.2046,-10.5957 l 4.2046,-11.6048 l 4.2046,-12.6139 l 4.2046,-13.6230 l 4.2046,-14.6321 l 4.2046,-15.6412 l 4.2046,-16.6503 l 4.2046,-17.6594 l 4.2046,-18.6685 l 4.2046,-19.6776 l 4.2046,-20.6868 l 4.2046,-21.6959 l 4.2046,-22.7050 l 4.2046,-23.7141 l 4.2046,-24.7232 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip281">
-        <path d="M 349.1992,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip281)">
-      <path d="M 237.0408,-116.9392 l -0.0000,-36.0757 h -180.3784 l -0.0000,36.0757 Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="32.79607131657073px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip282">
-        <path d="M 349.1992,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip282)">
-      <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,146.8516,-134.9771)" stroke="none" text-anchor="middle">y = x² - 3
-      </text>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip283">
-        <path d="M 349.1992,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip283)">
-      <path d="M 322.0443,247.4616 l -0.0000,-350.3854 h -350.3854 l -0.0000,350.3854 Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip284">
-        <path d="M 349.1992,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip284)">
-      <path d="M -28.3411,-102.9238 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip285">
-        <path d="M 349.1992,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip285)">
-      <path d="M -28.3411,-95.9161 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip286">
-        <path d="M 349.1992,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip286)">
-      <path d="M -28.3411,-88.9084 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip287">
-        <path d="M 349.1992,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip287)">
-      <path d="M -28.3411,-81.9007 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip288">
-        <path d="M 349.1992,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip288)">
-      <path d="M -28.3411,-74.8930 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip289">
-        <path d="M 349.1992,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip289)">
-      <path d="M -28.3411,-67.8853 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip290">
-        <path d="M 349.1992,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip290)">
-      <path d="M -28.3411,-60.8776 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip291">
-        <path d="M 349.1992,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip291)">
-      <path d="M -28.3411,-53.8699 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip292">
-        <path d="M 349.1992,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip292)">
-      <path d="M -28.3411,-46.8621 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip293">
-        <path d="M 349.1992,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip293)">
-      <path d="M -28.3411,-39.8544 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip294">
-        <path d="M 349.1992,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip294)">
-      <path d="M -28.3411,-32.8467 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip295">
-        <path d="M 349.1992,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip295)">
-      <path d="M -28.3411,-25.8390 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip296">
-        <path d="M 349.1992,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip296)">
-      <path d="M -28.3411,-18.8313 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip297">
-        <path d="M 349.1992,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip297)">
-      <path d="M -28.3411,-11.8236 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip298">
-        <path d="M 349.1992,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip298)">
-      <path d="M -28.3411,-4.8159 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip299">
-        <path d="M 349.1992,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip299)">
-      <path d="M -28.3411,2.1918 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip300">
-        <path d="M 349.1992,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip300)">
-      <path d="M -28.3411,9.1995 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip301">
-        <path d="M 349.1992,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip301)">
-      <path d="M -28.3411,16.2072 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip302">
-        <path d="M 349.1992,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip302)">
-      <path d="M -28.3411,23.2149 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip303">
-        <path d="M 349.1992,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip303)">
-      <path d="M -28.3411,30.2226 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip304">
-        <path d="M 349.1992,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip304)">
-      <path d="M -28.3411,37.2303 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip305">
-        <path d="M 349.1992,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip305)">
-      <path d="M -28.3411,44.2381 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip306">
-        <path d="M 349.1992,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip306)">
-      <path d="M -28.3411,51.2458 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip307">
-        <path d="M 349.1992,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip307)">
-      <path d="M -28.3411,58.2535 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip308">
-        <path d="M 349.1992,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip308)">
-      <path d="M -28.3411,65.2612 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip309">
-        <path d="M 349.1992,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip309)">
-      <path d="M -28.3411,72.2689 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip310">
-        <path d="M 349.1992,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip310)">
-      <path d="M -28.3411,79.2766 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip311">
-        <path d="M 349.1992,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip311)">
-      <path d="M -28.3411,86.2843 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip312">
-        <path d="M 349.1992,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip312)">
-      <path d="M -28.3411,93.2920 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip313">
-        <path d="M 349.1992,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip313)">
-      <path d="M -28.3411,100.2997 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip314">
-        <path d="M 349.1992,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip314)">
-      <path d="M -28.3411,107.3074 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip315">
-        <path d="M 349.1992,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip315)">
-      <path d="M -28.3411,114.3151 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip316">
-        <path d="M 349.1992,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip316)">
-      <path d="M -28.3411,121.3228 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip317">
-        <path d="M 349.1992,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip317)">
-      <path d="M -28.3411,128.3305 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip318">
-        <path d="M 349.1992,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip318)">
-      <path d="M -28.3411,135.3383 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip319">
-        <path d="M 349.1992,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip319)">
-      <path d="M -28.3411,142.3460 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip320">
-        <path d="M 349.1992,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip320)">
-      <path d="M -28.3411,149.3537 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip321">
-        <path d="M 349.1992,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip321)">
-      <path d="M -28.3411,156.3614 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip322">
-        <path d="M 349.1992,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip322)">
-      <path d="M -28.3411,163.3691 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip323">
-        <path d="M 349.1992,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip323)">
-      <path d="M -28.3411,170.3768 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip324">
-        <path d="M 349.1992,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip324)">
-      <path d="M -28.3411,177.3845 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip325">
-        <path d="M 349.1992,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip325)">
-      <path d="M -28.3411,184.3922 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip326">
-        <path d="M 349.1992,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip326)">
-      <path d="M -28.3411,191.3999 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip327">
-        <path d="M 349.1992,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip327)">
-      <path d="M -28.3411,198.4076 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip328">
-        <path d="M 349.1992,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip328)">
-      <path d="M -28.3411,205.4153 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip329">
-        <path d="M 349.1992,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip329)">
-      <path d="M -28.3411,212.4230 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip330">
-        <path d="M 349.1992,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip330)">
-      <path d="M -28.3411,219.4307 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip331">
-        <path d="M 349.1992,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip331)">
-      <path d="M -28.3411,226.4385 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip332">
-        <path d="M 349.1992,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip332)">
-      <path d="M -28.3411,233.4462 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip333">
-        <path d="M 349.1992,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip333)">
-      <path d="M -28.3411,240.4539 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip334">
-        <path d="M 349.1992,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip334)">
-      <path d="M -28.3411,247.4616 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip335">
-        <path d="M 349.1992,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip335)">
-      <path d="M 322.0443,247.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip336">
-        <path d="M 349.1992,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip336)">
-      <path d="M 315.0366,247.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip337">
-        <path d="M 349.1992,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip337)">
-      <path d="M 308.0289,247.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip338">
-        <path d="M 349.1992,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip338)">
-      <path d="M 301.0212,247.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip339">
-        <path d="M 349.1992,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip339)">
-      <path d="M 294.0135,247.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip340">
-        <path d="M 349.1992,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip340)">
-      <path d="M 287.0057,247.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip341">
-        <path d="M 349.1992,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip341)">
-      <path d="M 279.9980,247.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip342">
-        <path d="M 349.1992,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip342)">
-      <path d="M 272.9903,247.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip343">
-        <path d="M 349.1992,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip343)">
-      <path d="M 265.9826,247.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip344">
-        <path d="M 349.1992,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip344)">
-      <path d="M 258.9749,247.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip345">
-        <path d="M 349.1992,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip345)">
-      <path d="M 251.9672,247.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip346">
-        <path d="M 349.1992,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip346)">
-      <path d="M 244.9595,247.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip347">
-        <path d="M 349.1992,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip347)">
-      <path d="M 237.9518,247.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip348">
-        <path d="M 349.1992,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip348)">
-      <path d="M 230.9441,247.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip349">
-        <path d="M 349.1992,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip349)">
-      <path d="M 223.9364,247.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip350">
-        <path d="M 349.1992,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip350)">
-      <path d="M 216.9287,247.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip351">
-        <path d="M 349.1992,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip351)">
-      <path d="M 209.9210,247.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip352">
-        <path d="M 349.1992,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip352)">
-      <path d="M 202.9133,247.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip353">
-        <path d="M 349.1992,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip353)">
-      <path d="M 195.9055,247.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip354">
-        <path d="M 349.1992,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip354)">
-      <path d="M 188.8978,247.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip355">
-        <path d="M 349.1992,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip355)">
-      <path d="M 181.8901,247.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip356">
-        <path d="M 349.1992,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip356)">
-      <path d="M 174.8824,247.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip357">
-        <path d="M 349.1992,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip357)">
-      <path d="M 167.8747,247.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip358">
-        <path d="M 349.1992,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip358)">
-      <path d="M 160.8670,247.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip359">
-        <path d="M 349.1992,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip359)">
-      <path d="M 153.8593,247.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip360">
-        <path d="M 349.1992,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip360)">
-      <path d="M 146.8516,247.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip361">
-        <path d="M 349.1992,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip361)">
-      <path d="M 139.8439,247.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip362">
-        <path d="M 349.1992,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip362)">
-      <path d="M 132.8362,247.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip363">
-        <path d="M 349.1992,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip363)">
-      <path d="M 125.8285,247.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip364">
-        <path d="M 349.1992,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip364)">
-      <path d="M 118.8208,247.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip365">
-        <path d="M 349.1992,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip365)">
-      <path d="M 111.8131,247.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip366">
-        <path d="M 349.1992,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip366)">
-      <path d="M 104.8054,247.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip367">
-        <path d="M 349.1992,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip367)">
-      <path d="M 97.7976,247.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip368">
-        <path d="M 349.1992,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip368)">
-      <path d="M 90.7899,247.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip369">
-        <path d="M 349.1992,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip369)">
-      <path d="M 83.7822,247.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip370">
-        <path d="M 349.1992,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip370)">
-      <path d="M 76.7745,247.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip371">
-        <path d="M 349.1992,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip371)">
-      <path d="M 69.7668,247.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip372">
-        <path d="M 349.1992,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip372)">
-      <path d="M 62.7591,247.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip373">
-        <path d="M 349.1992,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip373)">
-      <path d="M 55.7514,247.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip374">
-        <path d="M 349.1992,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip374)">
-      <path d="M 48.7437,247.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip375">
-        <path d="M 349.1992,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip375)">
-      <path d="M 41.7360,247.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip376">
-        <path d="M 349.1992,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip376)">
-      <path d="M 34.7283,247.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip377">
-        <path d="M 349.1992,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip377)">
-      <path d="M 27.7206,247.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip378">
-        <path d="M 349.1992,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip378)">
-      <path d="M 20.7129,247.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip379">
-        <path d="M 349.1992,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip379)">
-      <path d="M 13.7052,247.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip380">
-        <path d="M 349.1992,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip380)">
-      <path d="M 6.6974,247.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip381">
-        <path d="M 349.1992,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip381)">
-      <path d="M -0.3103,247.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip382">
-        <path d="M 349.1992,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip382)">
-      <path d="M -7.3180,247.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip383">
-        <path d="M 349.1992,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip383)">
-      <path d="M -14.3257,247.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip384">
-        <path d="M 349.1992,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip384)">
-      <path d="M -21.3334,247.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip385">
-        <path d="M 349.1992,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip385)">
-      <path d="M -28.3411,247.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip386">
-        <path d="M 349.1992,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip386)">
-      <path d="M -28.3411,-102.9238 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip387">
-        <path d="M 349.1992,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip387)">
-      <path d="M -28.3411,-67.8853 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip388">
-        <path d="M 349.1992,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip388)">
-      <path d="M -28.3411,-32.8467 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip389">
-        <path d="M 349.1992,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip389)">
-      <path d="M -28.3411,2.1918 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip390">
-        <path d="M 349.1992,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip390)">
-      <path d="M -28.3411,37.2303 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip391">
-        <path d="M 349.1992,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip391)">
-      <path d="M -28.3411,72.2689 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip392">
-        <path d="M 349.1992,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip392)">
-      <path d="M -28.3411,107.3074 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip393">
-        <path d="M 349.1992,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip393)">
-      <path d="M -28.3411,142.3460 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip394">
-        <path d="M 349.1992,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip394)">
-      <path d="M -28.3411,177.3845 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip395">
-        <path d="M 349.1992,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip395)">
-      <path d="M -28.3411,212.4230 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip396">
-        <path d="M 349.1992,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip396)">
-      <path d="M -28.3411,247.4616 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip397">
-        <path d="M 349.1992,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip397)">
-      <path d="M 322.0443,247.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip398">
-        <path d="M 349.1992,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip398)">
-      <path d="M 287.0057,247.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip399">
-        <path d="M 349.1992,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip399)">
-      <path d="M 251.9672,247.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip400">
-        <path d="M 349.1992,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip400)">
-      <path d="M 216.9287,247.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip401">
-        <path d="M 349.1992,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip401)">
-      <path d="M 181.8901,247.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip402">
-        <path d="M 349.1992,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip402)">
-      <path d="M 146.8516,247.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip403">
-        <path d="M 349.1992,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip403)">
-      <path d="M 111.8131,247.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip404">
-        <path d="M 349.1992,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip404)">
-      <path d="M 76.7745,247.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip405">
-        <path d="M 349.1992,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip405)">
-      <path d="M 41.7360,247.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip406">
-        <path d="M 349.1992,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip406)">
-      <path d="M 6.6974,247.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip407">
-        <path d="M 349.1992,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip407)">
-      <path d="M -28.3411,247.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.1" stroke="rgb(102,102,102)" stroke-width="2.98825135876461" fill="rgb(255,255,255)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip408">
-        <path d="M 349.1992,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip408)">
-      <path d="M 349.1992,307.9339 l -0.0000,-495.8678 h -491.9915 l -0.0000,495.8678 Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.1" stroke="rgb(102,102,102)" stroke-width="2.98825135876461" fill="rgb(76,76,76)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 349.1992,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip409">
-        <path d="M 240.9610,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip409)">
-      <path d="M -141.0361,57.3840 l -0.0000,-24.0505 h -96.2018 l -0.0000,24.0505 Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="21.86404754438049px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip410">
-        <path d="M 240.9610,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip410)">
-      <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,-189.1370,45.3588)" stroke="none" text-anchor="middle">y = -2.0
-      </text>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip411">
-        <path d="M 240.9610,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip411)">
-      <path d="M 51.6758,197.5382 l -0.0000,-24.0505 h -96.2018 l -0.0000,24.0505 Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="21.86404754438049px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip412">
-        <path d="M 240.9610,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip412)">
-      <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,3.5749,185.5130)" stroke="none" text-anchor="middle">x = -1.0
-      </text>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="8.96475407629383" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip413">
-        <path d="M 240.9610,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip413)">
-      <path d="M 8.8307,43.1724 c 0.0000,-2.9027 -2.3531,-5.2558 -5.2558 -5.2558c -2.9027,-0.0000 -5.2558,2.3531 -5.2558 5.2558c -0.0000,2.9027 2.3531,5.2558 5.2558 5.2558c 2.9027,0.0000 5.2558,-2.3531 5.2558 -5.2558Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(51,51,51)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip414">
-        <path d="M 240.9610,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip414)">
-      <path d="M 3.5749,148.2880 v -105.1156 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(51,51,51)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip415">
-        <path d="M 240.9610,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip415)">
-      <path d="M -136.5792,43.1724 h 140.1542 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(153,153,153)" stroke-width="5.97650271752922" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip416">
-        <path d="M 240.9610,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip416)">
-      <path d="M -66.5022,-237.1359 l 4.2046,24.7232 l 4.2046,23.7141 l 4.2046,22.7050 l 4.2046,21.6959 l 4.2046,20.6868 l 4.2046,19.6776 l 4.2046,18.6685 l 4.2046,17.6594 l 4.2046,16.6503 l 4.2046,15.6412 l 4.2046,14.6321 l 4.2046,13.6230 l 4.2046,12.6139 l 4.2046,11.6048 l 4.2046,10.5957 l 4.2046,9.5865 l 4.2046,8.5774 l 4.2046,7.5683 l 4.2046,6.5592 l 4.2046,5.5501 l 4.2046,4.5410 l 4.2046,3.5319 l 4.2046,2.5228 l 4.2046,1.5137 l 4.2046,0.5046 l 4.2046,-0.5046 l 4.2046,-1.5137 l 4.2046,-2.5228 l 4.2046,-3.5319 l 4.2046,-4.5410 l 4.2046,-5.5501 l 4.2046,-6.5592 l 4.2046,-7.5683 l 4.2046,-8.5774 l 4.2046,-9.5865 l 4.2046,-10.5957 l 4.2046,-11.6048 l 4.2046,-12.6139 l 4.2046,-13.6230 l 4.2046,-14.6321 l 4.2046,-15.6412 l 4.2046,-16.6503 l 4.2046,-17.6594 l 4.2046,-18.6685 l 4.2046,-19.6776 l 4.2046,-20.6868 l 4.2046,-21.6959 l 4.2046,-22.7050 l 4.2046,-23.7141 l 4.2046,-24.7232 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip417">
-        <path d="M 240.9610,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip417)">
-      <path d="M 128.8027,-216.1128 l -0.0000,-36.0757 h -180.3784 l -0.0000,36.0757 Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="32.79607131657073px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip418">
-        <path d="M 240.9610,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip418)">
-      <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,38.6135,-234.1506)" stroke="none" text-anchor="middle">y = x² - 3
-      </text>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip419">
-        <path d="M 240.9610,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip419)">
-      <path d="M 213.8062,148.2880 l -0.0000,-350.3854 h -350.3854 l -0.0000,350.3854 Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip420">
-        <path d="M 240.9610,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip420)">
-      <path d="M -136.5792,-202.0974 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip421">
-        <path d="M 240.9610,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip421)">
-      <path d="M -136.5792,-195.0897 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip422">
-        <path d="M 240.9610,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip422)">
-      <path d="M -136.5792,-188.0819 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip423">
-        <path d="M 240.9610,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip423)">
-      <path d="M -136.5792,-181.0742 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip424">
-        <path d="M 240.9610,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip424)">
-      <path d="M -136.5792,-174.0665 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip425">
-        <path d="M 240.9610,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip425)">
-      <path d="M -136.5792,-167.0588 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip426">
-        <path d="M 240.9610,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip426)">
-      <path d="M -136.5792,-160.0511 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip427">
-        <path d="M 240.9610,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip427)">
-      <path d="M -136.5792,-153.0434 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip428">
-        <path d="M 240.9610,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip428)">
-      <path d="M -136.5792,-146.0357 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip429">
-        <path d="M 240.9610,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip429)">
-      <path d="M -136.5792,-139.0280 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip430">
-        <path d="M 240.9610,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip430)">
-      <path d="M -136.5792,-132.0203 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip431">
-        <path d="M 240.9610,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip431)">
-      <path d="M -136.5792,-125.0126 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip432">
-        <path d="M 240.9610,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip432)">
-      <path d="M -136.5792,-118.0049 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip433">
-        <path d="M 240.9610,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip433)">
-      <path d="M -136.5792,-110.9972 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip434">
-        <path d="M 240.9610,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip434)">
-      <path d="M -136.5792,-103.9895 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip435">
-        <path d="M 240.9610,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip435)">
-      <path d="M -136.5792,-96.9817 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip436">
-        <path d="M 240.9610,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip436)">
-      <path d="M -136.5792,-89.9740 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip437">
-        <path d="M 240.9610,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip437)">
-      <path d="M -136.5792,-82.9663 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip438">
-        <path d="M 240.9610,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip438)">
-      <path d="M -136.5792,-75.9586 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip439">
-        <path d="M 240.9610,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip439)">
-      <path d="M -136.5792,-68.9509 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip440">
-        <path d="M 240.9610,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip440)">
-      <path d="M -136.5792,-61.9432 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip441">
-        <path d="M 240.9610,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip441)">
-      <path d="M -136.5792,-54.9355 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip442">
-        <path d="M 240.9610,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip442)">
-      <path d="M -136.5792,-47.9278 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip443">
-        <path d="M 240.9610,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip443)">
-      <path d="M -136.5792,-40.9201 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip444">
-        <path d="M 240.9610,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip444)">
-      <path d="M -136.5792,-33.9124 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip445">
-        <path d="M 240.9610,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip445)">
-      <path d="M -136.5792,-26.9047 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip446">
-        <path d="M 240.9610,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip446)">
-      <path d="M -136.5792,-19.8970 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip447">
-        <path d="M 240.9610,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip447)">
-      <path d="M -136.5792,-12.8893 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip448">
-        <path d="M 240.9610,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip448)">
-      <path d="M -136.5792,-5.8815 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip449">
-        <path d="M 240.9610,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip449)">
-      <path d="M -136.5792,1.1262 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip450">
-        <path d="M 240.9610,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip450)">
-      <path d="M -136.5792,8.1339 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip451">
-        <path d="M 240.9610,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip451)">
-      <path d="M -136.5792,15.1416 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip452">
-        <path d="M 240.9610,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip452)">
-      <path d="M -136.5792,22.1493 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip453">
-        <path d="M 240.9610,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip453)">
-      <path d="M -136.5792,29.1570 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip454">
-        <path d="M 240.9610,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip454)">
-      <path d="M -136.5792,36.1647 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip455">
-        <path d="M 240.9610,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip455)">
-      <path d="M -136.5792,43.1724 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip456">
-        <path d="M 240.9610,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip456)">
-      <path d="M -136.5792,50.1801 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip457">
-        <path d="M 240.9610,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip457)">
-      <path d="M -136.5792,57.1878 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip458">
-        <path d="M 240.9610,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip458)">
-      <path d="M -136.5792,64.1955 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip459">
-        <path d="M 240.9610,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip459)">
-      <path d="M -136.5792,71.2032 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip460">
-        <path d="M 240.9610,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip460)">
-      <path d="M -136.5792,78.2109 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip461">
-        <path d="M 240.9610,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip461)">
-      <path d="M -136.5792,85.2187 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip462">
-        <path d="M 240.9610,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip462)">
-      <path d="M -136.5792,92.2264 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip463">
-        <path d="M 240.9610,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip463)">
-      <path d="M -136.5792,99.2341 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip464">
-        <path d="M 240.9610,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip464)">
-      <path d="M -136.5792,106.2418 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip465">
-        <path d="M 240.9610,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip465)">
-      <path d="M -136.5792,113.2495 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip466">
-        <path d="M 240.9610,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip466)">
-      <path d="M -136.5792,120.2572 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip467">
-        <path d="M 240.9610,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip467)">
-      <path d="M -136.5792,127.2649 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip468">
-        <path d="M 240.9610,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip468)">
-      <path d="M -136.5792,134.2726 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip469">
-        <path d="M 240.9610,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip469)">
-      <path d="M -136.5792,141.2803 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip470">
-        <path d="M 240.9610,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip470)">
-      <path d="M -136.5792,148.2880 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip471">
-        <path d="M 240.9610,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip471)">
-      <path d="M 213.8062,148.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip472">
-        <path d="M 240.9610,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip472)">
-      <path d="M 206.7984,148.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip473">
-        <path d="M 240.9610,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip473)">
-      <path d="M 199.7907,148.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip474">
-        <path d="M 240.9610,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip474)">
-      <path d="M 192.7830,148.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip475">
-        <path d="M 240.9610,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip475)">
-      <path d="M 185.7753,148.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip476">
-        <path d="M 240.9610,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip476)">
-      <path d="M 178.7676,148.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip477">
-        <path d="M 240.9610,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip477)">
-      <path d="M 171.7599,148.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip478">
-        <path d="M 240.9610,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip478)">
-      <path d="M 164.7522,148.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip479">
-        <path d="M 240.9610,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip479)">
-      <path d="M 157.7445,148.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip480">
-        <path d="M 240.9610,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip480)">
-      <path d="M 150.7368,148.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip481">
-        <path d="M 240.9610,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip481)">
-      <path d="M 143.7291,148.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip482">
-        <path d="M 240.9610,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip482)">
-      <path d="M 136.7214,148.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip483">
-        <path d="M 240.9610,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip483)">
-      <path d="M 129.7137,148.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip484">
-        <path d="M 240.9610,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip484)">
-      <path d="M 122.7060,148.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip485">
-        <path d="M 240.9610,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip485)">
-      <path d="M 115.6982,148.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip486">
-        <path d="M 240.9610,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip486)">
-      <path d="M 108.6905,148.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip487">
-        <path d="M 240.9610,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip487)">
-      <path d="M 101.6828,148.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip488">
-        <path d="M 240.9610,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip488)">
-      <path d="M 94.6751,148.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip489">
-        <path d="M 240.9610,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip489)">
-      <path d="M 87.6674,148.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip490">
-        <path d="M 240.9610,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip490)">
-      <path d="M 80.6597,148.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip491">
-        <path d="M 240.9610,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip491)">
-      <path d="M 73.6520,148.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip492">
-        <path d="M 240.9610,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip492)">
-      <path d="M 66.6443,148.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip493">
-        <path d="M 240.9610,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip493)">
-      <path d="M 59.6366,148.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip494">
-        <path d="M 240.9610,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip494)">
-      <path d="M 52.6289,148.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip495">
-        <path d="M 240.9610,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip495)">
-      <path d="M 45.6212,148.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip496">
-        <path d="M 240.9610,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip496)">
-      <path d="M 38.6135,148.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip497">
-        <path d="M 240.9610,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip497)">
-      <path d="M 31.6058,148.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip498">
-        <path d="M 240.9610,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip498)">
-      <path d="M 24.5980,148.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip499">
-        <path d="M 240.9610,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip499)">
-      <path d="M 17.5903,148.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip500">
-        <path d="M 240.9610,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip500)">
-      <path d="M 10.5826,148.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip501">
-        <path d="M 240.9610,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip501)">
-      <path d="M 3.5749,148.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip502">
-        <path d="M 240.9610,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip502)">
-      <path d="M -3.4328,148.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip503">
-        <path d="M 240.9610,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip503)">
-      <path d="M -10.4405,148.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip504">
-        <path d="M 240.9610,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip504)">
-      <path d="M -17.4482,148.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip505">
-        <path d="M 240.9610,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip505)">
-      <path d="M -24.4559,148.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip506">
-        <path d="M 240.9610,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip506)">
-      <path d="M -31.4636,148.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip507">
-        <path d="M 240.9610,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip507)">
-      <path d="M -38.4713,148.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip508">
-        <path d="M 240.9610,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip508)">
-      <path d="M -45.4790,148.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip509">
-        <path d="M 240.9610,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip509)">
-      <path d="M -52.4867,148.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip510">
-        <path d="M 240.9610,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip510)">
-      <path d="M -59.4944,148.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip511">
-        <path d="M 240.9610,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip511)">
-      <path d="M -66.5022,148.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip512">
-        <path d="M 240.9610,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip512)">
-      <path d="M -73.5099,148.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip513">
-        <path d="M 240.9610,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip513)">
-      <path d="M -80.5176,148.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip514">
-        <path d="M 240.9610,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip514)">
-      <path d="M -87.5253,148.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip515">
-        <path d="M 240.9610,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip515)">
-      <path d="M -94.5330,148.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip516">
-        <path d="M 240.9610,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip516)">
-      <path d="M -101.5407,148.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip517">
-        <path d="M 240.9610,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip517)">
-      <path d="M -108.5484,148.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip518">
-        <path d="M 240.9610,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip518)">
-      <path d="M -115.5561,148.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip519">
-        <path d="M 240.9610,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip519)">
-      <path d="M -122.5638,148.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip520">
-        <path d="M 240.9610,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip520)">
-      <path d="M -129.5715,148.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip521">
-        <path d="M 240.9610,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip521)">
-      <path d="M -136.5792,148.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip522">
-        <path d="M 240.9610,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip522)">
-      <path d="M -136.5792,-202.0974 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip523">
-        <path d="M 240.9610,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip523)">
-      <path d="M -136.5792,-167.0588 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip524">
-        <path d="M 240.9610,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip524)">
-      <path d="M -136.5792,-132.0203 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip525">
-        <path d="M 240.9610,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip525)">
-      <path d="M -136.5792,-96.9817 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip526">
-        <path d="M 240.9610,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip526)">
-      <path d="M -136.5792,-61.9432 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip527">
-        <path d="M 240.9610,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip527)">
-      <path d="M -136.5792,-26.9047 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip528">
-        <path d="M 240.9610,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip528)">
-      <path d="M -136.5792,8.1339 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip529">
-        <path d="M 240.9610,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip529)">
-      <path d="M -136.5792,43.1724 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip530">
-        <path d="M 240.9610,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip530)">
-      <path d="M -136.5792,78.2109 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip531">
-        <path d="M 240.9610,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip531)">
-      <path d="M -136.5792,113.2495 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip532">
-        <path d="M 240.9610,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip532)">
-      <path d="M -136.5792,148.2880 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip533">
-        <path d="M 240.9610,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip533)">
-      <path d="M 213.8062,148.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip534">
-        <path d="M 240.9610,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip534)">
-      <path d="M 178.7676,148.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip535">
-        <path d="M 240.9610,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip535)">
-      <path d="M 143.7291,148.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip536">
-        <path d="M 240.9610,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip536)">
-      <path d="M 108.6905,148.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip537">
-        <path d="M 240.9610,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip537)">
-      <path d="M 73.6520,148.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip538">
-        <path d="M 240.9610,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip538)">
-      <path d="M 38.6135,148.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip539">
-        <path d="M 240.9610,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip539)">
-      <path d="M 3.5749,148.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip540">
-        <path d="M 240.9610,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip540)">
-      <path d="M -31.4636,148.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip541">
-        <path d="M 240.9610,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip541)">
-      <path d="M -66.5022,148.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip542">
-        <path d="M 240.9610,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip542)">
-      <path d="M -101.5407,148.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip543">
-        <path d="M 240.9610,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip543)">
-      <path d="M -136.5792,148.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.1" stroke="rgb(102,102,102)" stroke-width="2.98825135876461" fill="rgb(255,255,255)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip544">
-        <path d="M 240.9610,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip544)">
-      <path d="M 240.9610,208.7603 l -0.0000,-495.8678 h -491.9915 l -0.0000,495.8678 Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.1" stroke="rgb(102,102,102)" stroke-width="2.98825135876461" fill="rgb(76,76,76)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 240.9610,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip545">
-        <path d="M 132.7229,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip545)">
-      <path d="M -249.2743,-41.7895 l -0.0000,-24.0505 h -96.2018 l -0.0000,24.0505 Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="21.86404754438049px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip546">
-        <path d="M 132.7229,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip546)">
-      <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,-297.3752,-53.8147)" stroke="none" text-anchor="middle">y = -2.0
-      </text>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip547">
-        <path d="M 132.7229,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip547)">
-      <path d="M -56.5623,98.3646 l -0.0000,-24.0505 h -96.2018 l -0.0000,24.0505 Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="21.86404754438049px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip548">
-        <path d="M 132.7229,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip548)">
-      <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,-104.6632,86.3394)" stroke="none" text-anchor="middle">x = -1.0
-      </text>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="8.96475407629383" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip549">
-        <path d="M 132.7229,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip549)">
-      <path d="M -99.4074,-56.0011 c 0.0000,-2.9027 -2.3531,-5.2558 -5.2558 -5.2558c -2.9027,-0.0000 -5.2558,2.3531 -5.2558 5.2558c -0.0000,2.9027 2.3531,5.2558 5.2558 5.2558c 2.9027,0.0000 5.2558,-2.3531 5.2558 -5.2558Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(51,51,51)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip550">
-        <path d="M 132.7229,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip550)">
-      <path d="M -104.6632,49.1145 v -105.1156 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(51,51,51)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip551">
-        <path d="M 132.7229,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip551)">
-      <path d="M -244.8174,-56.0011 h 140.1542 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(153,153,153)" stroke-width="5.97650271752922" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip552">
-        <path d="M 132.7229,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip552)">
-      <path d="M -174.7403,-336.3094 l 4.2046,24.7232 l 4.2046,23.7141 l 4.2046,22.7050 l 4.2046,21.6959 l 4.2046,20.6868 l 4.2046,19.6776 l 4.2046,18.6685 l 4.2046,17.6594 l 4.2046,16.6503 l 4.2046,15.6412 l 4.2046,14.6321 l 4.2046,13.6230 l 4.2046,12.6139 l 4.2046,11.6048 l 4.2046,10.5957 l 4.2046,9.5865 l 4.2046,8.5774 l 4.2046,7.5683 l 4.2046,6.5592 l 4.2046,5.5501 l 4.2046,4.5410 l 4.2046,3.5319 l 4.2046,2.5228 l 4.2046,1.5137 l 4.2046,0.5046 l 4.2046,-0.5046 l 4.2046,-1.5137 l 4.2046,-2.5228 l 4.2046,-3.5319 l 4.2046,-4.5410 l 4.2046,-5.5501 l 4.2046,-6.5592 l 4.2046,-7.5683 l 4.2046,-8.5774 l 4.2046,-9.5865 l 4.2046,-10.5957 l 4.2046,-11.6048 l 4.2046,-12.6139 l 4.2046,-13.6230 l 4.2046,-14.6321 l 4.2046,-15.6412 l 4.2046,-16.6503 l 4.2046,-17.6594 l 4.2046,-18.6685 l 4.2046,-19.6776 l 4.2046,-20.6868 l 4.2046,-21.6959 l 4.2046,-22.7050 l 4.2046,-23.7141 l 4.2046,-24.7232 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip553">
-        <path d="M 132.7229,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip553)">
-      <path d="M 20.5645,-315.2863 l -0.0000,-36.0757 h -180.3784 l -0.0000,36.0757 Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="32.79607131657073px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip554">
-        <path d="M 132.7229,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip554)">
-      <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,-69.6247,-333.3242)" stroke="none" text-anchor="middle">y = x² - 3
-      </text>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip555">
-        <path d="M 132.7229,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip555)">
-      <path d="M 105.5680,49.1145 l -0.0000,-350.3854 h -350.3854 l -0.0000,350.3854 Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip556">
-        <path d="M 132.7229,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip556)">
-      <path d="M -244.8174,-301.2709 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip557">
-        <path d="M 132.7229,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip557)">
-      <path d="M -244.8174,-294.2632 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip558">
-        <path d="M 132.7229,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip558)">
-      <path d="M -244.8174,-287.2555 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip559">
-        <path d="M 132.7229,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip559)">
-      <path d="M -244.8174,-280.2478 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip560">
-        <path d="M 132.7229,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip560)">
-      <path d="M -244.8174,-273.2401 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip561">
-        <path d="M 132.7229,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip561)">
-      <path d="M -244.8174,-266.2324 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip562">
-        <path d="M 132.7229,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip562)">
-      <path d="M -244.8174,-259.2247 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip563">
-        <path d="M 132.7229,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip563)">
-      <path d="M -244.8174,-252.2170 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip564">
-        <path d="M 132.7229,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip564)">
-      <path d="M -244.8174,-245.2093 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip565">
-        <path d="M 132.7229,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip565)">
-      <path d="M -244.8174,-238.2015 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip566">
-        <path d="M 132.7229,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip566)">
-      <path d="M -244.8174,-231.1938 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip567">
-        <path d="M 132.7229,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip567)">
-      <path d="M -244.8174,-224.1861 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip568">
-        <path d="M 132.7229,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip568)">
-      <path d="M -244.8174,-217.1784 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip569">
-        <path d="M 132.7229,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip569)">
-      <path d="M -244.8174,-210.1707 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip570">
-        <path d="M 132.7229,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip570)">
-      <path d="M -244.8174,-203.1630 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip571">
-        <path d="M 132.7229,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip571)">
-      <path d="M -244.8174,-196.1553 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip572">
-        <path d="M 132.7229,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip572)">
-      <path d="M -244.8174,-189.1476 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip573">
-        <path d="M 132.7229,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip573)">
-      <path d="M -244.8174,-182.1399 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip574">
-        <path d="M 132.7229,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip574)">
-      <path d="M -244.8174,-175.1322 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip575">
-        <path d="M 132.7229,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip575)">
-      <path d="M -244.8174,-168.1245 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip576">
-        <path d="M 132.7229,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip576)">
-      <path d="M -244.8174,-161.1168 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip577">
-        <path d="M 132.7229,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip577)">
-      <path d="M -244.8174,-154.1091 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip578">
-        <path d="M 132.7229,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip578)">
-      <path d="M -244.8174,-147.1013 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip579">
-        <path d="M 132.7229,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip579)">
-      <path d="M -244.8174,-140.0936 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip580">
-        <path d="M 132.7229,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip580)">
-      <path d="M -244.8174,-133.0859 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip581">
-        <path d="M 132.7229,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip581)">
-      <path d="M -244.8174,-126.0782 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip582">
-        <path d="M 132.7229,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip582)">
-      <path d="M -244.8174,-119.0705 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip583">
-        <path d="M 132.7229,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip583)">
-      <path d="M -244.8174,-112.0628 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip584">
-        <path d="M 132.7229,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip584)">
-      <path d="M -244.8174,-105.0551 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip585">
-        <path d="M 132.7229,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip585)">
-      <path d="M -244.8174,-98.0474 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip586">
-        <path d="M 132.7229,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip586)">
-      <path d="M -244.8174,-91.0397 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip587">
-        <path d="M 132.7229,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip587)">
-      <path d="M -244.8174,-84.0320 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip588">
-        <path d="M 132.7229,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip588)">
-      <path d="M -244.8174,-77.0243 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip589">
-        <path d="M 132.7229,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip589)">
-      <path d="M -244.8174,-70.0166 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip590">
-        <path d="M 132.7229,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip590)">
-      <path d="M -244.8174,-63.0089 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip591">
-        <path d="M 132.7229,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip591)">
-      <path d="M -244.8174,-56.0011 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip592">
-        <path d="M 132.7229,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip592)">
-      <path d="M -244.8174,-48.9934 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip593">
-        <path d="M 132.7229,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip593)">
-      <path d="M -244.8174,-41.9857 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip594">
-        <path d="M 132.7229,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip594)">
-      <path d="M -244.8174,-34.9780 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip595">
-        <path d="M 132.7229,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip595)">
-      <path d="M -244.8174,-27.9703 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip596">
-        <path d="M 132.7229,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip596)">
-      <path d="M -244.8174,-20.9626 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip597">
-        <path d="M 132.7229,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip597)">
-      <path d="M -244.8174,-13.9549 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip598">
-        <path d="M 132.7229,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip598)">
-      <path d="M -244.8174,-6.9472 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip599">
-        <path d="M 132.7229,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip599)">
-      <path d="M -244.8174,0.0605 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip600">
-        <path d="M 132.7229,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip600)">
-      <path d="M -244.8174,7.0682 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip601">
-        <path d="M 132.7229,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip601)">
-      <path d="M -244.8174,14.0759 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip602">
-        <path d="M 132.7229,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip602)">
-      <path d="M -244.8174,21.0836 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip603">
-        <path d="M 132.7229,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip603)">
-      <path d="M -244.8174,28.0913 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip604">
-        <path d="M 132.7229,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip604)">
-      <path d="M -244.8174,35.0991 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip605">
-        <path d="M 132.7229,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip605)">
-      <path d="M -244.8174,42.1068 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip606">
-        <path d="M 132.7229,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip606)">
-      <path d="M -244.8174,49.1145 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip607">
-        <path d="M 132.7229,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip607)">
-      <path d="M 105.5680,49.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip608">
-        <path d="M 132.7229,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip608)">
-      <path d="M 98.5603,49.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip609">
-        <path d="M 132.7229,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip609)">
-      <path d="M 91.5526,49.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip610">
-        <path d="M 132.7229,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip610)">
-      <path d="M 84.5449,49.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip611">
-        <path d="M 132.7229,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip611)">
-      <path d="M 77.5372,49.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip612">
-        <path d="M 132.7229,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip612)">
-      <path d="M 70.5295,49.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip613">
-        <path d="M 132.7229,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip613)">
-      <path d="M 63.5218,49.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip614">
-        <path d="M 132.7229,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip614)">
-      <path d="M 56.5141,49.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip615">
-        <path d="M 132.7229,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip615)">
-      <path d="M 49.5064,49.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip616">
-        <path d="M 132.7229,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip616)">
-      <path d="M 42.4986,49.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip617">
-        <path d="M 132.7229,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip617)">
-      <path d="M 35.4909,49.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip618">
-        <path d="M 132.7229,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip618)">
-      <path d="M 28.4832,49.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip619">
-        <path d="M 132.7229,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip619)">
-      <path d="M 21.4755,49.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip620">
-        <path d="M 132.7229,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip620)">
-      <path d="M 14.4678,49.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip621">
-        <path d="M 132.7229,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip621)">
-      <path d="M 7.4601,49.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip622">
-        <path d="M 132.7229,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip622)">
-      <path d="M 0.4524,49.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip623">
-        <path d="M 132.7229,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip623)">
-      <path d="M -6.5553,49.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip624">
-        <path d="M 132.7229,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip624)">
-      <path d="M -13.5630,49.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip625">
-        <path d="M 132.7229,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip625)">
-      <path d="M -20.5707,49.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip626">
-        <path d="M 132.7229,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip626)">
-      <path d="M -27.5784,49.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip627">
-        <path d="M 132.7229,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip627)">
-      <path d="M -34.5861,49.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip628">
-        <path d="M 132.7229,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip628)">
-      <path d="M -41.5938,49.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip629">
-        <path d="M 132.7229,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip629)">
-      <path d="M -48.6016,49.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip630">
-        <path d="M 132.7229,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip630)">
-      <path d="M -55.6093,49.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip631">
-        <path d="M 132.7229,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip631)">
-      <path d="M -62.6170,49.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip632">
-        <path d="M 132.7229,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip632)">
-      <path d="M -69.6247,49.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip633">
-        <path d="M 132.7229,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip633)">
-      <path d="M -76.6324,49.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip634">
-        <path d="M 132.7229,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip634)">
-      <path d="M -83.6401,49.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip635">
-        <path d="M 132.7229,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip635)">
-      <path d="M -90.6478,49.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip636">
-        <path d="M 132.7229,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip636)">
-      <path d="M -97.6555,49.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip637">
-        <path d="M 132.7229,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip637)">
-      <path d="M -104.6632,49.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip638">
-        <path d="M 132.7229,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip638)">
-      <path d="M -111.6709,49.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip639">
-        <path d="M 132.7229,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip639)">
-      <path d="M -118.6786,49.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip640">
-        <path d="M 132.7229,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip640)">
-      <path d="M -125.6863,49.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip641">
-        <path d="M 132.7229,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip641)">
-      <path d="M -132.6940,49.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip642">
-        <path d="M 132.7229,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip642)">
-      <path d="M -139.7017,49.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip643">
-        <path d="M 132.7229,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip643)">
-      <path d="M -146.7095,49.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip644">
-        <path d="M 132.7229,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip644)">
-      <path d="M -153.7172,49.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip645">
-        <path d="M 132.7229,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip645)">
-      <path d="M -160.7249,49.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip646">
-        <path d="M 132.7229,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip646)">
-      <path d="M -167.7326,49.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip647">
-        <path d="M 132.7229,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip647)">
-      <path d="M -174.7403,49.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip648">
-        <path d="M 132.7229,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip648)">
-      <path d="M -181.7480,49.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip649">
-        <path d="M 132.7229,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip649)">
-      <path d="M -188.7557,49.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip650">
-        <path d="M 132.7229,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip650)">
-      <path d="M -195.7634,49.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip651">
-        <path d="M 132.7229,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip651)">
-      <path d="M -202.7711,49.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip652">
-        <path d="M 132.7229,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip652)">
-      <path d="M -209.7788,49.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip653">
-        <path d="M 132.7229,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip653)">
-      <path d="M -216.7865,49.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip654">
-        <path d="M 132.7229,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip654)">
-      <path d="M -223.7942,49.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip655">
-        <path d="M 132.7229,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip655)">
-      <path d="M -230.8019,49.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip656">
-        <path d="M 132.7229,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip656)">
-      <path d="M -237.8097,49.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip657">
-        <path d="M 132.7229,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip657)">
-      <path d="M -244.8174,49.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip658">
-        <path d="M 132.7229,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip658)">
-      <path d="M -244.8174,-301.2709 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip659">
-        <path d="M 132.7229,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip659)">
-      <path d="M -244.8174,-266.2324 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip660">
-        <path d="M 132.7229,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip660)">
-      <path d="M -244.8174,-231.1938 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip661">
-        <path d="M 132.7229,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip661)">
-      <path d="M -244.8174,-196.1553 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip662">
-        <path d="M 132.7229,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip662)">
-      <path d="M -244.8174,-161.1168 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip663">
-        <path d="M 132.7229,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip663)">
-      <path d="M -244.8174,-126.0782 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip664">
-        <path d="M 132.7229,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip664)">
-      <path d="M -244.8174,-91.0397 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip665">
-        <path d="M 132.7229,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip665)">
-      <path d="M -244.8174,-56.0011 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip666">
-        <path d="M 132.7229,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip666)">
-      <path d="M -244.8174,-20.9626 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip667">
-        <path d="M 132.7229,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip667)">
-      <path d="M -244.8174,14.0759 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip668">
-        <path d="M 132.7229,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip668)">
-      <path d="M -244.8174,49.1145 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip669">
-        <path d="M 132.7229,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip669)">
-      <path d="M 105.5680,49.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip670">
-        <path d="M 132.7229,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip670)">
-      <path d="M 70.5295,49.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip671">
-        <path d="M 132.7229,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip671)">
-      <path d="M 35.4909,49.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip672">
-        <path d="M 132.7229,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip672)">
-      <path d="M 0.4524,49.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip673">
-        <path d="M 132.7229,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip673)">
-      <path d="M -34.5861,49.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip674">
-        <path d="M 132.7229,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip674)">
-      <path d="M -69.6247,49.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip675">
-        <path d="M 132.7229,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip675)">
-      <path d="M -104.6632,49.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip676">
-        <path d="M 132.7229,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip676)">
-      <path d="M -139.7017,49.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip677">
-        <path d="M 132.7229,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip677)">
-      <path d="M -174.7403,49.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip678">
-        <path d="M 132.7229,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip678)">
-      <path d="M -209.7788,49.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip679">
-        <path d="M 132.7229,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip679)">
-      <path d="M -244.8174,49.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.1" stroke="rgb(102,102,102)" stroke-width="2.98825135876461" fill="rgb(255,255,255)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip680">
-        <path d="M 132.7229,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip680)">
-      <path d="M 132.7229,109.5868 l -0.0000,-495.8678 h -491.9915 l -0.0000,495.8678 Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.1" stroke="rgb(102,102,102)" stroke-width="2.98825135876461" fill="rgb(76,76,76)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 132.7229,109.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip681">
-        <path d="M 565.6754,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip681)">
-      <path d="M 282.0766,474.9047 l -0.0000,-24.0505 h -96.2018 l -0.0000,24.0505 Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="21.86404754438049px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip682">
-        <path d="M 565.6754,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip682)">
-      <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,233.9757,462.8795)" stroke="none" text-anchor="middle">y = -2.0
-      </text>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip683">
-        <path d="M 565.6754,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip683)">
-      <path d="M 474.7885,615.0588 l -0.0000,-24.0505 h -96.2018 l -0.0000,24.0505 Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="21.86404754438049px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip684">
-        <path d="M 565.6754,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip684)">
-      <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,426.6876,603.0336)" stroke="none" text-anchor="middle">x = -1.0
-      </text>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="8.96475407629383" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip685">
-        <path d="M 565.6754,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip685)">
-      <path d="M 431.9434,460.6931 c 0.0000,-2.9027 -2.3531,-5.2558 -5.2558 -5.2558c -2.9027,-0.0000 -5.2558,2.3531 -5.2558 5.2558c -0.0000,2.9027 2.3531,5.2558 5.2558 5.2558c 2.9027,0.0000 5.2558,-2.3531 5.2558 -5.2558Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(51,51,51)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip686">
-        <path d="M 565.6754,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip686)">
-      <path d="M 426.6876,565.8087 v -105.1156 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(51,51,51)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip687">
-        <path d="M 565.6754,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip687)">
-      <path d="M 286.5335,460.6931 h 140.1542 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(153,153,153)" stroke-width="5.97650271752922" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip688">
-        <path d="M 565.6754,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip688)">
-      <path d="M 356.6106,180.3848 l 4.2046,24.7232 l 4.2046,23.7141 l 4.2046,22.7050 l 4.2046,21.6959 l 4.2046,20.6868 l 4.2046,19.6776 l 4.2046,18.6685 l 4.2046,17.6594 l 4.2046,16.6503 l 4.2046,15.6412 l 4.2046,14.6321 l 4.2046,13.6230 l 4.2046,12.6139 l 4.2046,11.6048 l 4.2046,10.5957 l 4.2046,9.5865 l 4.2046,8.5774 l 4.2046,7.5683 l 4.2046,6.5592 l 4.2046,5.5501 l 4.2046,4.5410 l 4.2046,3.5319 l 4.2046,2.5228 l 4.2046,1.5137 l 4.2046,0.5046 l 4.2046,-0.5046 l 4.2046,-1.5137 l 4.2046,-2.5228 l 4.2046,-3.5319 l 4.2046,-4.5410 l 4.2046,-5.5501 l 4.2046,-6.5592 l 4.2046,-7.5683 l 4.2046,-8.5774 l 4.2046,-9.5865 l 4.2046,-10.5957 l 4.2046,-11.6048 l 4.2046,-12.6139 l 4.2046,-13.6230 l 4.2046,-14.6321 l 4.2046,-15.6412 l 4.2046,-16.6503 l 4.2046,-17.6594 l 4.2046,-18.6685 l 4.2046,-19.6776 l 4.2046,-20.6868 l 4.2046,-21.6959 l 4.2046,-22.7050 l 4.2046,-23.7141 l 4.2046,-24.7232 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip689">
-        <path d="M 565.6754,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip689)">
-      <path d="M 551.9154,201.4079 l -0.0000,-36.0757 h -180.3784 l -0.0000,36.0757 Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="32.79607131657073px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip690">
-        <path d="M 565.6754,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip690)">
-      <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,461.7262,183.3700)" stroke="none" text-anchor="middle">y = x² - 3
-      </text>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip691">
-        <path d="M 565.6754,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip691)">
-      <path d="M 636.9189,565.8087 l -0.0000,-350.3854 h -350.3854 l -0.0000,350.3854 Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip692">
-        <path d="M 565.6754,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip692)">
-      <path d="M 286.5335,215.4233 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip693">
-        <path d="M 565.6754,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip693)">
-      <path d="M 286.5335,222.4310 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip694">
-        <path d="M 565.6754,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip694)">
-      <path d="M 286.5335,229.4387 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip695">
-        <path d="M 565.6754,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip695)">
-      <path d="M 286.5335,236.4464 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip696">
-        <path d="M 565.6754,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip696)">
-      <path d="M 286.5335,243.4541 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip697">
-        <path d="M 565.6754,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip697)">
-      <path d="M 286.5335,250.4618 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip698">
-        <path d="M 565.6754,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip698)">
-      <path d="M 286.5335,257.4695 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip699">
-        <path d="M 565.6754,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip699)">
-      <path d="M 286.5335,264.4773 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip700">
-        <path d="M 565.6754,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip700)">
-      <path d="M 286.5335,271.4850 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip701">
-        <path d="M 565.6754,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip701)">
-      <path d="M 286.5335,278.4927 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip702">
-        <path d="M 565.6754,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip702)">
-      <path d="M 286.5335,285.5004 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip703">
-        <path d="M 565.6754,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip703)">
-      <path d="M 286.5335,292.5081 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip704">
-        <path d="M 565.6754,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip704)">
-      <path d="M 286.5335,299.5158 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip705">
-        <path d="M 565.6754,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip705)">
-      <path d="M 286.5335,306.5235 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip706">
-        <path d="M 565.6754,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip706)">
-      <path d="M 286.5335,313.5312 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip707">
-        <path d="M 565.6754,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip707)">
-      <path d="M 286.5335,320.5389 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip708">
-        <path d="M 565.6754,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip708)">
-      <path d="M 286.5335,327.5466 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip709">
-        <path d="M 565.6754,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip709)">
-      <path d="M 286.5335,334.5543 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip710">
-        <path d="M 565.6754,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip710)">
-      <path d="M 286.5335,341.5620 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip711">
-        <path d="M 565.6754,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip711)">
-      <path d="M 286.5335,348.5697 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip712">
-        <path d="M 565.6754,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip712)">
-      <path d="M 286.5335,355.5775 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip713">
-        <path d="M 565.6754,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip713)">
-      <path d="M 286.5335,362.5852 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip714">
-        <path d="M 565.6754,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip714)">
-      <path d="M 286.5335,369.5929 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip715">
-        <path d="M 565.6754,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip715)">
-      <path d="M 286.5335,376.6006 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip716">
-        <path d="M 565.6754,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip716)">
-      <path d="M 286.5335,383.6083 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip717">
-        <path d="M 565.6754,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip717)">
-      <path d="M 286.5335,390.6160 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip718">
-        <path d="M 565.6754,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip718)">
-      <path d="M 286.5335,397.6237 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip719">
-        <path d="M 565.6754,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip719)">
-      <path d="M 286.5335,404.6314 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip720">
-        <path d="M 565.6754,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip720)">
-      <path d="M 286.5335,411.6391 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip721">
-        <path d="M 565.6754,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip721)">
-      <path d="M 286.5335,418.6468 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip722">
-        <path d="M 565.6754,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip722)">
-      <path d="M 286.5335,425.6545 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip723">
-        <path d="M 565.6754,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip723)">
-      <path d="M 286.5335,432.6622 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip724">
-        <path d="M 565.6754,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip724)">
-      <path d="M 286.5335,439.6699 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip725">
-        <path d="M 565.6754,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip725)">
-      <path d="M 286.5335,446.6777 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip726">
-        <path d="M 565.6754,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip726)">
-      <path d="M 286.5335,453.6854 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip727">
-        <path d="M 565.6754,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip727)">
-      <path d="M 286.5335,460.6931 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip728">
-        <path d="M 565.6754,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip728)">
-      <path d="M 286.5335,467.7008 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip729">
-        <path d="M 565.6754,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip729)">
-      <path d="M 286.5335,474.7085 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip730">
-        <path d="M 565.6754,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip730)">
-      <path d="M 286.5335,481.7162 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip731">
-        <path d="M 565.6754,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip731)">
-      <path d="M 286.5335,488.7239 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip732">
-        <path d="M 565.6754,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip732)">
-      <path d="M 286.5335,495.7316 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip733">
-        <path d="M 565.6754,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip733)">
-      <path d="M 286.5335,502.7393 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip734">
-        <path d="M 565.6754,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip734)">
-      <path d="M 286.5335,509.7470 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip735">
-        <path d="M 565.6754,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip735)">
-      <path d="M 286.5335,516.7547 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip736">
-        <path d="M 565.6754,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip736)">
-      <path d="M 286.5335,523.7624 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip737">
-        <path d="M 565.6754,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip737)">
-      <path d="M 286.5335,530.7701 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip738">
-        <path d="M 565.6754,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip738)">
-      <path d="M 286.5335,537.7779 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip739">
-        <path d="M 565.6754,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip739)">
-      <path d="M 286.5335,544.7856 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip740">
-        <path d="M 565.6754,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip740)">
-      <path d="M 286.5335,551.7933 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip741">
-        <path d="M 565.6754,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip741)">
-      <path d="M 286.5335,558.8010 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip742">
-        <path d="M 565.6754,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip742)">
-      <path d="M 286.5335,565.8087 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip743">
-        <path d="M 565.6754,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip743)">
-      <path d="M 636.9189,565.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip744">
-        <path d="M 565.6754,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip744)">
-      <path d="M 629.9112,565.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip745">
-        <path d="M 565.6754,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip745)">
-      <path d="M 622.9034,565.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip746">
-        <path d="M 565.6754,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip746)">
-      <path d="M 615.8957,565.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip747">
-        <path d="M 565.6754,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip747)">
-      <path d="M 608.8880,565.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip748">
-        <path d="M 565.6754,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip748)">
-      <path d="M 601.8803,565.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip749">
-        <path d="M 565.6754,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip749)">
-      <path d="M 594.8726,565.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip750">
-        <path d="M 565.6754,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip750)">
-      <path d="M 587.8649,565.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip751">
-        <path d="M 565.6754,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip751)">
-      <path d="M 580.8572,565.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip752">
-        <path d="M 565.6754,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip752)">
-      <path d="M 573.8495,565.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip753">
-        <path d="M 565.6754,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip753)">
-      <path d="M 566.8418,565.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip754">
-        <path d="M 565.6754,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip754)">
-      <path d="M 559.8341,565.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip755">
-        <path d="M 565.6754,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip755)">
-      <path d="M 552.8264,565.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip756">
-        <path d="M 565.6754,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip756)">
-      <path d="M 545.8187,565.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip757">
-        <path d="M 565.6754,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip757)">
-      <path d="M 538.8110,565.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip758">
-        <path d="M 565.6754,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip758)">
-      <path d="M 531.8032,565.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip759">
-        <path d="M 565.6754,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip759)">
-      <path d="M 524.7955,565.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip760">
-        <path d="M 565.6754,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip760)">
-      <path d="M 517.7878,565.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip761">
-        <path d="M 565.6754,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip761)">
-      <path d="M 510.7801,565.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip762">
-        <path d="M 565.6754,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip762)">
-      <path d="M 503.7724,565.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip763">
-        <path d="M 565.6754,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip763)">
-      <path d="M 496.7647,565.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip764">
-        <path d="M 565.6754,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip764)">
-      <path d="M 489.7570,565.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip765">
-        <path d="M 565.6754,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip765)">
-      <path d="M 482.7493,565.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip766">
-        <path d="M 565.6754,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip766)">
-      <path d="M 475.7416,565.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip767">
-        <path d="M 565.6754,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip767)">
-      <path d="M 468.7339,565.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip768">
-        <path d="M 565.6754,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip768)">
-      <path d="M 461.7262,565.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip769">
-        <path d="M 565.6754,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip769)">
-      <path d="M 454.7185,565.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip770">
-        <path d="M 565.6754,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip770)">
-      <path d="M 447.7108,565.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip771">
-        <path d="M 565.6754,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip771)">
-      <path d="M 440.7031,565.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip772">
-        <path d="M 565.6754,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip772)">
-      <path d="M 433.6953,565.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip773">
-        <path d="M 565.6754,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip773)">
-      <path d="M 426.6876,565.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip774">
-        <path d="M 565.6754,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip774)">
-      <path d="M 419.6799,565.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip775">
-        <path d="M 565.6754,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip775)">
-      <path d="M 412.6722,565.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip776">
-        <path d="M 565.6754,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip776)">
-      <path d="M 405.6645,565.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip777">
-        <path d="M 565.6754,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip777)">
-      <path d="M 398.6568,565.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip778">
-        <path d="M 565.6754,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip778)">
-      <path d="M 391.6491,565.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip779">
-        <path d="M 565.6754,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip779)">
-      <path d="M 384.6414,565.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip780">
-        <path d="M 565.6754,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip780)">
-      <path d="M 377.6337,565.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip781">
-        <path d="M 565.6754,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip781)">
-      <path d="M 370.6260,565.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip782">
-        <path d="M 565.6754,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip782)">
-      <path d="M 363.6183,565.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip783">
-        <path d="M 565.6754,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip783)">
-      <path d="M 356.6106,565.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip784">
-        <path d="M 565.6754,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip784)">
-      <path d="M 349.6029,565.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip785">
-        <path d="M 565.6754,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip785)">
-      <path d="M 342.5951,565.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip786">
-        <path d="M 565.6754,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip786)">
-      <path d="M 335.5874,565.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip787">
-        <path d="M 565.6754,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip787)">
-      <path d="M 328.5797,565.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip788">
-        <path d="M 565.6754,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip788)">
-      <path d="M 321.5720,565.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip789">
-        <path d="M 565.6754,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip789)">
-      <path d="M 314.5643,565.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip790">
-        <path d="M 565.6754,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip790)">
-      <path d="M 307.5566,565.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip791">
-        <path d="M 565.6754,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip791)">
-      <path d="M 300.5489,565.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip792">
-        <path d="M 565.6754,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip792)">
-      <path d="M 293.5412,565.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip793">
-        <path d="M 565.6754,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip793)">
-      <path d="M 286.5335,565.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip794">
-        <path d="M 565.6754,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip794)">
-      <path d="M 286.5335,215.4233 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip795">
-        <path d="M 565.6754,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip795)">
-      <path d="M 286.5335,250.4618 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip796">
-        <path d="M 565.6754,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip796)">
-      <path d="M 286.5335,285.5004 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip797">
-        <path d="M 565.6754,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip797)">
-      <path d="M 286.5335,320.5389 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip798">
-        <path d="M 565.6754,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip798)">
-      <path d="M 286.5335,355.5775 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip799">
-        <path d="M 565.6754,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip799)">
-      <path d="M 286.5335,390.6160 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip800">
-        <path d="M 565.6754,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip800)">
-      <path d="M 286.5335,425.6545 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip801">
-        <path d="M 565.6754,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip801)">
-      <path d="M 286.5335,460.6931 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip802">
-        <path d="M 565.6754,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip802)">
-      <path d="M 286.5335,495.7316 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip803">
-        <path d="M 565.6754,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip803)">
-      <path d="M 286.5335,530.7701 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip804">
-        <path d="M 565.6754,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip804)">
-      <path d="M 286.5335,565.8087 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip805">
-        <path d="M 565.6754,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip805)">
-      <path d="M 636.9189,565.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip806">
-        <path d="M 565.6754,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip806)">
-      <path d="M 601.8803,565.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip807">
-        <path d="M 565.6754,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip807)">
-      <path d="M 566.8418,565.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip808">
-        <path d="M 565.6754,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip808)">
-      <path d="M 531.8032,565.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip809">
-        <path d="M 565.6754,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip809)">
-      <path d="M 496.7647,565.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip810">
-        <path d="M 565.6754,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip810)">
-      <path d="M 461.7262,565.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip811">
-        <path d="M 565.6754,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip811)">
-      <path d="M 426.6876,565.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip812">
-        <path d="M 565.6754,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip812)">
-      <path d="M 391.6491,565.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip813">
-        <path d="M 565.6754,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip813)">
-      <path d="M 356.6106,565.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip814">
-        <path d="M 565.6754,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip814)">
-      <path d="M 321.5720,565.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip815">
-        <path d="M 565.6754,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip815)">
-      <path d="M 286.5335,565.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.1" stroke="rgb(102,102,102)" stroke-width="2.98825135876461" fill="rgb(255,255,255)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip816">
-        <path d="M 565.6754,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip816)">
-      <path d="M 664.0737,626.2810 l -0.0000,-495.8678 h -491.9915 l -0.0000,495.8678 Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.1" stroke="rgb(102,102,102)" stroke-width="2.98825135876461" fill="rgb(76,76,76)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 565.6754,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip817">
-        <path d="M 457.4373,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip817)">
-      <path d="M 173.8384,375.7311 l -0.0000,-24.0505 h -96.2018 l -0.0000,24.0505 Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="21.86404754438049px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip818">
-        <path d="M 457.4373,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip818)">
-      <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,125.7375,363.7059)" stroke="none" text-anchor="middle">y = -2.0
-      </text>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip819">
-        <path d="M 457.4373,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip819)">
-      <path d="M 366.5504,515.8853 l -0.0000,-24.0505 h -96.2018 l -0.0000,24.0505 Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="21.86404754438049px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip820">
-        <path d="M 457.4373,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip820)">
-      <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,318.4495,503.8601)" stroke="none" text-anchor="middle">x = -1.0
-      </text>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="8.96475407629383" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip821">
-        <path d="M 457.4373,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip821)">
-      <path d="M 323.7053,361.5195 c 0.0000,-2.9027 -2.3531,-5.2558 -5.2558 -5.2558c -2.9027,-0.0000 -5.2558,2.3531 -5.2558 5.2558c -0.0000,2.9027 2.3531,5.2558 5.2558 5.2558c 2.9027,0.0000 5.2558,-2.3531 5.2558 -5.2558Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(51,51,51)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip822">
-        <path d="M 457.4373,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip822)">
-      <path d="M 318.4495,466.6351 v -105.1156 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(51,51,51)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip823">
-        <path d="M 457.4373,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip823)">
-      <path d="M 178.2953,361.5195 h 140.1542 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(153,153,153)" stroke-width="5.97650271752922" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip824">
-        <path d="M 457.4373,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip824)">
-      <path d="M 248.3724,81.2112 l 4.2046,24.7232 l 4.2046,23.7141 l 4.2046,22.7050 l 4.2046,21.6959 l 4.2046,20.6868 l 4.2046,19.6776 l 4.2046,18.6685 l 4.2046,17.6594 l 4.2046,16.6503 l 4.2046,15.6412 l 4.2046,14.6321 l 4.2046,13.6230 l 4.2046,12.6139 l 4.2046,11.6048 l 4.2046,10.5957 l 4.2046,9.5865 l 4.2046,8.5774 l 4.2046,7.5683 l 4.2046,6.5592 l 4.2046,5.5501 l 4.2046,4.5410 l 4.2046,3.5319 l 4.2046,2.5228 l 4.2046,1.5137 l 4.2046,0.5046 l 4.2046,-0.5046 l 4.2046,-1.5137 l 4.2046,-2.5228 l 4.2046,-3.5319 l 4.2046,-4.5410 l 4.2046,-5.5501 l 4.2046,-6.5592 l 4.2046,-7.5683 l 4.2046,-8.5774 l 4.2046,-9.5865 l 4.2046,-10.5957 l 4.2046,-11.6048 l 4.2046,-12.6139 l 4.2046,-13.6230 l 4.2046,-14.6321 l 4.2046,-15.6412 l 4.2046,-16.6503 l 4.2046,-17.6594 l 4.2046,-18.6685 l 4.2046,-19.6776 l 4.2046,-20.6868 l 4.2046,-21.6959 l 4.2046,-22.7050 l 4.2046,-23.7141 l 4.2046,-24.7232 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip825">
-        <path d="M 457.4373,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip825)">
-      <path d="M 443.6772,102.2343 l -0.0000,-36.0757 h -180.3784 l -0.0000,36.0757 Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="32.79607131657073px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip826">
-        <path d="M 457.4373,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip826)">
-      <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,353.4880,84.1965)" stroke="none" text-anchor="middle">y = x² - 3
-      </text>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip827">
-        <path d="M 457.4373,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip827)">
-      <path d="M 528.6807,466.6351 l -0.0000,-350.3854 h -350.3854 l -0.0000,350.3854 Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip828">
-        <path d="M 457.4373,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip828)">
-      <path d="M 178.2953,116.2497 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip829">
-        <path d="M 457.4373,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip829)">
-      <path d="M 178.2953,123.2575 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip830">
-        <path d="M 457.4373,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip830)">
-      <path d="M 178.2953,130.2652 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip831">
-        <path d="M 457.4373,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip831)">
-      <path d="M 178.2953,137.2729 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip832">
-        <path d="M 457.4373,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip832)">
-      <path d="M 178.2953,144.2806 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip833">
-        <path d="M 457.4373,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip833)">
-      <path d="M 178.2953,151.2883 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip834">
-        <path d="M 457.4373,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip834)">
-      <path d="M 178.2953,158.2960 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip835">
-        <path d="M 457.4373,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip835)">
-      <path d="M 178.2953,165.3037 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip836">
-        <path d="M 457.4373,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip836)">
-      <path d="M 178.2953,172.3114 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip837">
-        <path d="M 457.4373,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip837)">
-      <path d="M 178.2953,179.3191 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip838">
-        <path d="M 457.4373,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip838)">
-      <path d="M 178.2953,186.3268 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip839">
-        <path d="M 457.4373,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip839)">
-      <path d="M 178.2953,193.3345 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip840">
-        <path d="M 457.4373,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip840)">
-      <path d="M 178.2953,200.3422 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip841">
-        <path d="M 457.4373,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip841)">
-      <path d="M 178.2953,207.3499 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip842">
-        <path d="M 457.4373,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip842)">
-      <path d="M 178.2953,214.3577 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip843">
-        <path d="M 457.4373,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip843)">
-      <path d="M 178.2953,221.3654 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip844">
-        <path d="M 457.4373,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip844)">
-      <path d="M 178.2953,228.3731 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip845">
-        <path d="M 457.4373,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip845)">
-      <path d="M 178.2953,235.3808 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip846">
-        <path d="M 457.4373,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip846)">
-      <path d="M 178.2953,242.3885 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip847">
-        <path d="M 457.4373,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip847)">
-      <path d="M 178.2953,249.3962 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip848">
-        <path d="M 457.4373,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip848)">
-      <path d="M 178.2953,256.4039 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip849">
-        <path d="M 457.4373,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip849)">
-      <path d="M 178.2953,263.4116 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip850">
-        <path d="M 457.4373,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip850)">
-      <path d="M 178.2953,270.4193 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip851">
-        <path d="M 457.4373,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip851)">
-      <path d="M 178.2953,277.4270 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip852">
-        <path d="M 457.4373,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip852)">
-      <path d="M 178.2953,284.4347 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip853">
-        <path d="M 457.4373,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip853)">
-      <path d="M 178.2953,291.4424 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip854">
-        <path d="M 457.4373,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip854)">
-      <path d="M 178.2953,298.4501 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip855">
-        <path d="M 457.4373,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip855)">
-      <path d="M 178.2953,305.4579 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip856">
-        <path d="M 457.4373,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip856)">
-      <path d="M 178.2953,312.4656 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip857">
-        <path d="M 457.4373,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip857)">
-      <path d="M 178.2953,319.4733 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip858">
-        <path d="M 457.4373,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip858)">
-      <path d="M 178.2953,326.4810 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip859">
-        <path d="M 457.4373,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip859)">
-      <path d="M 178.2953,333.4887 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip860">
-        <path d="M 457.4373,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip860)">
-      <path d="M 178.2953,340.4964 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip861">
-        <path d="M 457.4373,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip861)">
-      <path d="M 178.2953,347.5041 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip862">
-        <path d="M 457.4373,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip862)">
-      <path d="M 178.2953,354.5118 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip863">
-        <path d="M 457.4373,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip863)">
-      <path d="M 178.2953,361.5195 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip864">
-        <path d="M 457.4373,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip864)">
-      <path d="M 178.2953,368.5272 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip865">
-        <path d="M 457.4373,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip865)">
-      <path d="M 178.2953,375.5349 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip866">
-        <path d="M 457.4373,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip866)">
-      <path d="M 178.2953,382.5426 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip867">
-        <path d="M 457.4373,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip867)">
-      <path d="M 178.2953,389.5503 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip868">
-        <path d="M 457.4373,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip868)">
-      <path d="M 178.2953,396.5581 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip869">
-        <path d="M 457.4373,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip869)">
-      <path d="M 178.2953,403.5658 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip870">
-        <path d="M 457.4373,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip870)">
-      <path d="M 178.2953,410.5735 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip871">
-        <path d="M 457.4373,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip871)">
-      <path d="M 178.2953,417.5812 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip872">
-        <path d="M 457.4373,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip872)">
-      <path d="M 178.2953,424.5889 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip873">
-        <path d="M 457.4373,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip873)">
-      <path d="M 178.2953,431.5966 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip874">
-        <path d="M 457.4373,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip874)">
-      <path d="M 178.2953,438.6043 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip875">
-        <path d="M 457.4373,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip875)">
-      <path d="M 178.2953,445.6120 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip876">
-        <path d="M 457.4373,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip876)">
-      <path d="M 178.2953,452.6197 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip877">
-        <path d="M 457.4373,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip877)">
-      <path d="M 178.2953,459.6274 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip878">
-        <path d="M 457.4373,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip878)">
-      <path d="M 178.2953,466.6351 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip879">
-        <path d="M 457.4373,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip879)">
-      <path d="M 528.6807,466.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip880">
-        <path d="M 457.4373,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip880)">
-      <path d="M 521.6730,466.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip881">
-        <path d="M 457.4373,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip881)">
-      <path d="M 514.6653,466.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip882">
-        <path d="M 457.4373,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip882)">
-      <path d="M 507.6576,466.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip883">
-        <path d="M 457.4373,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip883)">
-      <path d="M 500.6499,466.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip884">
-        <path d="M 457.4373,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip884)">
-      <path d="M 493.6422,466.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip885">
-        <path d="M 457.4373,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip885)">
-      <path d="M 486.6345,466.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip886">
-        <path d="M 457.4373,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip886)">
-      <path d="M 479.6268,466.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip887">
-        <path d="M 457.4373,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip887)">
-      <path d="M 472.6191,466.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip888">
-        <path d="M 457.4373,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip888)">
-      <path d="M 465.6114,466.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip889">
-        <path d="M 457.4373,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip889)">
-      <path d="M 458.6037,466.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip890">
-        <path d="M 457.4373,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip890)">
-      <path d="M 451.5959,466.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip891">
-        <path d="M 457.4373,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip891)">
-      <path d="M 444.5882,466.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip892">
-        <path d="M 457.4373,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip892)">
-      <path d="M 437.5805,466.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip893">
-        <path d="M 457.4373,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip893)">
-      <path d="M 430.5728,466.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip894">
-        <path d="M 457.4373,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip894)">
-      <path d="M 423.5651,466.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip895">
-        <path d="M 457.4373,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip895)">
-      <path d="M 416.5574,466.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip896">
-        <path d="M 457.4373,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip896)">
-      <path d="M 409.5497,466.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip897">
-        <path d="M 457.4373,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip897)">
-      <path d="M 402.5420,466.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip898">
-        <path d="M 457.4373,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip898)">
-      <path d="M 395.5343,466.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip899">
-        <path d="M 457.4373,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip899)">
-      <path d="M 388.5266,466.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip900">
-        <path d="M 457.4373,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip900)">
-      <path d="M 381.5189,466.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip901">
-        <path d="M 457.4373,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip901)">
-      <path d="M 374.5112,466.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip902">
-        <path d="M 457.4373,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip902)">
-      <path d="M 367.5035,466.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip903">
-        <path d="M 457.4373,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip903)">
-      <path d="M 360.4957,466.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip904">
-        <path d="M 457.4373,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip904)">
-      <path d="M 353.4880,466.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip905">
-        <path d="M 457.4373,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip905)">
-      <path d="M 346.4803,466.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip906">
-        <path d="M 457.4373,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip906)">
-      <path d="M 339.4726,466.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip907">
-        <path d="M 457.4373,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip907)">
-      <path d="M 332.4649,466.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip908">
-        <path d="M 457.4373,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip908)">
-      <path d="M 325.4572,466.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip909">
-        <path d="M 457.4373,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip909)">
-      <path d="M 318.4495,466.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip910">
-        <path d="M 457.4373,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip910)">
-      <path d="M 311.4418,466.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip911">
-        <path d="M 457.4373,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip911)">
-      <path d="M 304.4341,466.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip912">
-        <path d="M 457.4373,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip912)">
-      <path d="M 297.4264,466.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip913">
-        <path d="M 457.4373,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip913)">
-      <path d="M 290.4187,466.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip914">
-        <path d="M 457.4373,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip914)">
-      <path d="M 283.4110,466.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip915">
-        <path d="M 457.4373,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip915)">
-      <path d="M 276.4033,466.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip916">
-        <path d="M 457.4373,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip916)">
-      <path d="M 269.3955,466.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip917">
-        <path d="M 457.4373,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip917)">
-      <path d="M 262.3878,466.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip918">
-        <path d="M 457.4373,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip918)">
-      <path d="M 255.3801,466.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip919">
-        <path d="M 457.4373,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip919)">
-      <path d="M 248.3724,466.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip920">
-        <path d="M 457.4373,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip920)">
-      <path d="M 241.3647,466.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip921">
-        <path d="M 457.4373,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip921)">
-      <path d="M 234.3570,466.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip922">
-        <path d="M 457.4373,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip922)">
-      <path d="M 227.3493,466.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip923">
-        <path d="M 457.4373,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip923)">
-      <path d="M 220.3416,466.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip924">
-        <path d="M 457.4373,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip924)">
-      <path d="M 213.3339,466.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip925">
-        <path d="M 457.4373,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip925)">
-      <path d="M 206.3262,466.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip926">
-        <path d="M 457.4373,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip926)">
-      <path d="M 199.3185,466.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip927">
-        <path d="M 457.4373,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip927)">
-      <path d="M 192.3108,466.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip928">
-        <path d="M 457.4373,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip928)">
-      <path d="M 185.3031,466.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip929">
-        <path d="M 457.4373,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip929)">
-      <path d="M 178.2953,466.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip930">
-        <path d="M 457.4373,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip930)">
-      <path d="M 178.2953,116.2497 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip931">
-        <path d="M 457.4373,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip931)">
-      <path d="M 178.2953,151.2883 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip932">
-        <path d="M 457.4373,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip932)">
-      <path d="M 178.2953,186.3268 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip933">
-        <path d="M 457.4373,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip933)">
-      <path d="M 178.2953,221.3654 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip934">
-        <path d="M 457.4373,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip934)">
-      <path d="M 178.2953,256.4039 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip935">
-        <path d="M 457.4373,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip935)">
-      <path d="M 178.2953,291.4424 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip936">
-        <path d="M 457.4373,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip936)">
-      <path d="M 178.2953,326.4810 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip937">
-        <path d="M 457.4373,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip937)">
-      <path d="M 178.2953,361.5195 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip938">
-        <path d="M 457.4373,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip938)">
-      <path d="M 178.2953,396.5581 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip939">
-        <path d="M 457.4373,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip939)">
-      <path d="M 178.2953,431.5966 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip940">
-        <path d="M 457.4373,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip940)">
-      <path d="M 178.2953,466.6351 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip941">
-        <path d="M 457.4373,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip941)">
-      <path d="M 528.6807,466.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip942">
-        <path d="M 457.4373,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip942)">
-      <path d="M 493.6422,466.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip943">
-        <path d="M 457.4373,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip943)">
-      <path d="M 458.6037,466.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip944">
-        <path d="M 457.4373,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip944)">
-      <path d="M 423.5651,466.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip945">
-        <path d="M 457.4373,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip945)">
-      <path d="M 388.5266,466.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip946">
-        <path d="M 457.4373,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip946)">
-      <path d="M 353.4880,466.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip947">
-        <path d="M 457.4373,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip947)">
-      <path d="M 318.4495,466.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip948">
-        <path d="M 457.4373,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip948)">
-      <path d="M 283.4110,466.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip949">
-        <path d="M 457.4373,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip949)">
-      <path d="M 248.3724,466.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip950">
-        <path d="M 457.4373,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip950)">
-      <path d="M 213.3339,466.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip951">
-        <path d="M 457.4373,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip951)">
-      <path d="M 178.2953,466.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.1" stroke="rgb(102,102,102)" stroke-width="2.98825135876461" fill="rgb(255,255,255)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip952">
-        <path d="M 457.4373,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip952)">
-      <path d="M 555.8356,527.1074 l -0.0000,-495.8678 h -491.9915 l -0.0000,495.8678 Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.1" stroke="rgb(102,102,102)" stroke-width="2.98825135876461" fill="rgb(76,76,76)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 457.4373,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip953">
-        <path d="M 349.1992,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip953)">
-      <path d="M 65.6003,276.5576 l -0.0000,-24.0505 h -96.2018 l -0.0000,24.0505 Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="21.86404754438049px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip954">
-        <path d="M 349.1992,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip954)">
-      <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,17.4994,264.5324)" stroke="none" text-anchor="middle">y = -2.0
-      </text>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip955">
-        <path d="M 349.1992,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip955)">
-      <path d="M 258.3123,416.7117 l -0.0000,-24.0505 h -96.2018 l -0.0000,24.0505 Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="21.86404754438049px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip956">
-        <path d="M 349.1992,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip956)">
-      <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,210.2114,404.6865)" stroke="none" text-anchor="middle">x = -1.0
-      </text>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="8.96475407629383" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip957">
-        <path d="M 349.1992,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip957)">
-      <path d="M 215.4671,262.3460 c 0.0000,-2.9027 -2.3531,-5.2558 -5.2558 -5.2558c -2.9027,-0.0000 -5.2558,2.3531 -5.2558 5.2558c -0.0000,2.9027 2.3531,5.2558 5.2558 5.2558c 2.9027,0.0000 5.2558,-2.3531 5.2558 -5.2558Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(51,51,51)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip958">
-        <path d="M 349.1992,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip958)">
-      <path d="M 210.2114,367.4616 v -105.1156 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(51,51,51)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip959">
-        <path d="M 349.1992,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip959)">
-      <path d="M 70.0572,262.3460 h 140.1542 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(153,153,153)" stroke-width="5.97650271752922" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip960">
-        <path d="M 349.1992,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip960)">
-      <path d="M 140.1343,-17.9623 l 4.2046,24.7232 l 4.2046,23.7141 l 4.2046,22.7050 l 4.2046,21.6959 l 4.2046,20.6868 l 4.2046,19.6776 l 4.2046,18.6685 l 4.2046,17.6594 l 4.2046,16.6503 l 4.2046,15.6412 l 4.2046,14.6321 l 4.2046,13.6230 l 4.2046,12.6139 l 4.2046,11.6048 l 4.2046,10.5957 l 4.2046,9.5865 l 4.2046,8.5774 l 4.2046,7.5683 l 4.2046,6.5592 l 4.2046,5.5501 l 4.2046,4.5410 l 4.2046,3.5319 l 4.2046,2.5228 l 4.2046,1.5137 l 4.2046,0.5046 l 4.2046,-0.5046 l 4.2046,-1.5137 l 4.2046,-2.5228 l 4.2046,-3.5319 l 4.2046,-4.5410 l 4.2046,-5.5501 l 4.2046,-6.5592 l 4.2046,-7.5683 l 4.2046,-8.5774 l 4.2046,-9.5865 l 4.2046,-10.5957 l 4.2046,-11.6048 l 4.2046,-12.6139 l 4.2046,-13.6230 l 4.2046,-14.6321 l 4.2046,-15.6412 l 4.2046,-16.6503 l 4.2046,-17.6594 l 4.2046,-18.6685 l 4.2046,-19.6776 l 4.2046,-20.6868 l 4.2046,-21.6959 l 4.2046,-22.7050 l 4.2046,-23.7141 l 4.2046,-24.7232 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip961">
-        <path d="M 349.1992,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip961)">
-      <path d="M 335.4391,3.0608 l -0.0000,-36.0757 h -180.3784 l -0.0000,36.0757 Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="32.79607131657073px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip962">
-        <path d="M 349.1992,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip962)">
-      <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,245.2499,-14.9771)" stroke="none" text-anchor="middle">y = x² - 3
-      </text>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip963">
-        <path d="M 349.1992,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip963)">
-      <path d="M 420.4426,367.4616 l -0.0000,-350.3854 h -350.3854 l -0.0000,350.3854 Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip964">
-        <path d="M 349.1992,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip964)">
-      <path d="M 70.0572,17.0762 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip965">
-        <path d="M 349.1992,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip965)">
-      <path d="M 70.0572,24.0839 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip966">
-        <path d="M 349.1992,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip966)">
-      <path d="M 70.0572,31.0916 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip967">
-        <path d="M 349.1992,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip967)">
-      <path d="M 70.0572,38.0993 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip968">
-        <path d="M 349.1992,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip968)">
-      <path d="M 70.0572,45.1070 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip969">
-        <path d="M 349.1992,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip969)">
-      <path d="M 70.0572,52.1147 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip970">
-        <path d="M 349.1992,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip970)">
-      <path d="M 70.0572,59.1224 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip971">
-        <path d="M 349.1992,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip971)">
-      <path d="M 70.0572,66.1301 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip972">
-        <path d="M 349.1992,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip972)">
-      <path d="M 70.0572,73.1379 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip973">
-        <path d="M 349.1992,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip973)">
-      <path d="M 70.0572,80.1456 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip974">
-        <path d="M 349.1992,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip974)">
-      <path d="M 70.0572,87.1533 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip975">
-        <path d="M 349.1992,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip975)">
-      <path d="M 70.0572,94.1610 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip976">
-        <path d="M 349.1992,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip976)">
-      <path d="M 70.0572,101.1687 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip977">
-        <path d="M 349.1992,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip977)">
-      <path d="M 70.0572,108.1764 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip978">
-        <path d="M 349.1992,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip978)">
-      <path d="M 70.0572,115.1841 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip979">
-        <path d="M 349.1992,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip979)">
-      <path d="M 70.0572,122.1918 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip980">
-        <path d="M 349.1992,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip980)">
-      <path d="M 70.0572,129.1995 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip981">
-        <path d="M 349.1992,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip981)">
-      <path d="M 70.0572,136.2072 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip982">
-        <path d="M 349.1992,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip982)">
-      <path d="M 70.0572,143.2149 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip983">
-        <path d="M 349.1992,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip983)">
-      <path d="M 70.0572,150.2226 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip984">
-        <path d="M 349.1992,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip984)">
-      <path d="M 70.0572,157.2303 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip985">
-        <path d="M 349.1992,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip985)">
-      <path d="M 70.0572,164.2381 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip986">
-        <path d="M 349.1992,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip986)">
-      <path d="M 70.0572,171.2458 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip987">
-        <path d="M 349.1992,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip987)">
-      <path d="M 70.0572,178.2535 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip988">
-        <path d="M 349.1992,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip988)">
-      <path d="M 70.0572,185.2612 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip989">
-        <path d="M 349.1992,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip989)">
-      <path d="M 70.0572,192.2689 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip990">
-        <path d="M 349.1992,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip990)">
-      <path d="M 70.0572,199.2766 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip991">
-        <path d="M 349.1992,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip991)">
-      <path d="M 70.0572,206.2843 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip992">
-        <path d="M 349.1992,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip992)">
-      <path d="M 70.0572,213.2920 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip993">
-        <path d="M 349.1992,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip993)">
-      <path d="M 70.0572,220.2997 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip994">
-        <path d="M 349.1992,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip994)">
-      <path d="M 70.0572,227.3074 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip995">
-        <path d="M 349.1992,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip995)">
-      <path d="M 70.0572,234.3151 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip996">
-        <path d="M 349.1992,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip996)">
-      <path d="M 70.0572,241.3228 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip997">
-        <path d="M 349.1992,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip997)">
-      <path d="M 70.0572,248.3305 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip998">
-        <path d="M 349.1992,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip998)">
-      <path d="M 70.0572,255.3383 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip999">
-        <path d="M 349.1992,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip999)">
-      <path d="M 70.0572,262.3460 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1000">
-        <path d="M 349.1992,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1000)">
-      <path d="M 70.0572,269.3537 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1001">
-        <path d="M 349.1992,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1001)">
-      <path d="M 70.0572,276.3614 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1002">
-        <path d="M 349.1992,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1002)">
-      <path d="M 70.0572,283.3691 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1003">
-        <path d="M 349.1992,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1003)">
-      <path d="M 70.0572,290.3768 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1004">
-        <path d="M 349.1992,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1004)">
-      <path d="M 70.0572,297.3845 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1005">
-        <path d="M 349.1992,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1005)">
-      <path d="M 70.0572,304.3922 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1006">
-        <path d="M 349.1992,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1006)">
-      <path d="M 70.0572,311.3999 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1007">
-        <path d="M 349.1992,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1007)">
-      <path d="M 70.0572,318.4076 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1008">
-        <path d="M 349.1992,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1008)">
-      <path d="M 70.0572,325.4153 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1009">
-        <path d="M 349.1992,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1009)">
-      <path d="M 70.0572,332.4230 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1010">
-        <path d="M 349.1992,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1010)">
-      <path d="M 70.0572,339.4307 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1011">
-        <path d="M 349.1992,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1011)">
-      <path d="M 70.0572,346.4385 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1012">
-        <path d="M 349.1992,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1012)">
-      <path d="M 70.0572,353.4462 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1013">
-        <path d="M 349.1992,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1013)">
-      <path d="M 70.0572,360.4539 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1014">
-        <path d="M 349.1992,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1014)">
-      <path d="M 70.0572,367.4616 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1015">
-        <path d="M 349.1992,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1015)">
-      <path d="M 420.4426,367.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1016">
-        <path d="M 349.1992,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1016)">
-      <path d="M 413.4349,367.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1017">
-        <path d="M 349.1992,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1017)">
-      <path d="M 406.4272,367.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1018">
-        <path d="M 349.1992,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1018)">
-      <path d="M 399.4195,367.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1019">
-        <path d="M 349.1992,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1019)">
-      <path d="M 392.4118,367.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1020">
-        <path d="M 349.1992,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1020)">
-      <path d="M 385.4041,367.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1021">
-        <path d="M 349.1992,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1021)">
-      <path d="M 378.3963,367.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1022">
-        <path d="M 349.1992,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1022)">
-      <path d="M 371.3886,367.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1023">
-        <path d="M 349.1992,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1023)">
-      <path d="M 364.3809,367.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1024">
-        <path d="M 349.1992,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1024)">
-      <path d="M 357.3732,367.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1025">
-        <path d="M 349.1992,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1025)">
-      <path d="M 350.3655,367.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1026">
-        <path d="M 349.1992,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1026)">
-      <path d="M 343.3578,367.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1027">
-        <path d="M 349.1992,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1027)">
-      <path d="M 336.3501,367.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1028">
-        <path d="M 349.1992,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1028)">
-      <path d="M 329.3424,367.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1029">
-        <path d="M 349.1992,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1029)">
-      <path d="M 322.3347,367.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1030">
-        <path d="M 349.1992,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1030)">
-      <path d="M 315.3270,367.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1031">
-        <path d="M 349.1992,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1031)">
-      <path d="M 308.3193,367.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1032">
-        <path d="M 349.1992,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1032)">
-      <path d="M 301.3116,367.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1033">
-        <path d="M 349.1992,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1033)">
-      <path d="M 294.3039,367.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1034">
-        <path d="M 349.1992,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1034)">
-      <path d="M 287.2961,367.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1035">
-        <path d="M 349.1992,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1035)">
-      <path d="M 280.2884,367.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1036">
-        <path d="M 349.1992,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1036)">
-      <path d="M 273.2807,367.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1037">
-        <path d="M 349.1992,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1037)">
-      <path d="M 266.2730,367.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1038">
-        <path d="M 349.1992,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1038)">
-      <path d="M 259.2653,367.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1039">
-        <path d="M 349.1992,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1039)">
-      <path d="M 252.2576,367.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1040">
-        <path d="M 349.1992,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1040)">
-      <path d="M 245.2499,367.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1041">
-        <path d="M 349.1992,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1041)">
-      <path d="M 238.2422,367.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1042">
-        <path d="M 349.1992,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1042)">
-      <path d="M 231.2345,367.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1043">
-        <path d="M 349.1992,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1043)">
-      <path d="M 224.2268,367.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1044">
-        <path d="M 349.1992,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1044)">
-      <path d="M 217.2191,367.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1045">
-        <path d="M 349.1992,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1045)">
-      <path d="M 210.2114,367.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1046">
-        <path d="M 349.1992,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1046)">
-      <path d="M 203.2037,367.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1047">
-        <path d="M 349.1992,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1047)">
-      <path d="M 196.1959,367.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1048">
-        <path d="M 349.1992,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1048)">
-      <path d="M 189.1882,367.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1049">
-        <path d="M 349.1992,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1049)">
-      <path d="M 182.1805,367.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1050">
-        <path d="M 349.1992,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1050)">
-      <path d="M 175.1728,367.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1051">
-        <path d="M 349.1992,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1051)">
-      <path d="M 168.1651,367.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1052">
-        <path d="M 349.1992,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1052)">
-      <path d="M 161.1574,367.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1053">
-        <path d="M 349.1992,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1053)">
-      <path d="M 154.1497,367.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1054">
-        <path d="M 349.1992,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1054)">
-      <path d="M 147.1420,367.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1055">
-        <path d="M 349.1992,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1055)">
-      <path d="M 140.1343,367.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1056">
-        <path d="M 349.1992,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1056)">
-      <path d="M 133.1266,367.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1057">
-        <path d="M 349.1992,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1057)">
-      <path d="M 126.1189,367.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1058">
-        <path d="M 349.1992,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1058)">
-      <path d="M 119.1112,367.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1059">
-        <path d="M 349.1992,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1059)">
-      <path d="M 112.1035,367.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1060">
-        <path d="M 349.1992,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1060)">
-      <path d="M 105.0958,367.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1061">
-        <path d="M 349.1992,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1061)">
-      <path d="M 98.0880,367.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1062">
-        <path d="M 349.1992,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1062)">
-      <path d="M 91.0803,367.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1063">
-        <path d="M 349.1992,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1063)">
-      <path d="M 84.0726,367.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1064">
-        <path d="M 349.1992,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1064)">
-      <path d="M 77.0649,367.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1065">
-        <path d="M 349.1992,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1065)">
-      <path d="M 70.0572,367.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1066">
-        <path d="M 349.1992,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1066)">
-      <path d="M 70.0572,17.0762 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1067">
-        <path d="M 349.1992,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1067)">
-      <path d="M 70.0572,52.1147 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1068">
-        <path d="M 349.1992,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1068)">
-      <path d="M 70.0572,87.1533 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1069">
-        <path d="M 349.1992,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1069)">
-      <path d="M 70.0572,122.1918 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1070">
-        <path d="M 349.1992,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1070)">
-      <path d="M 70.0572,157.2303 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1071">
-        <path d="M 349.1992,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1071)">
-      <path d="M 70.0572,192.2689 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1072">
-        <path d="M 349.1992,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1072)">
-      <path d="M 70.0572,227.3074 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1073">
-        <path d="M 349.1992,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1073)">
-      <path d="M 70.0572,262.3460 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1074">
-        <path d="M 349.1992,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1074)">
-      <path d="M 70.0572,297.3845 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1075">
-        <path d="M 349.1992,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1075)">
-      <path d="M 70.0572,332.4230 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1076">
-        <path d="M 349.1992,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1076)">
-      <path d="M 70.0572,367.4616 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1077">
-        <path d="M 349.1992,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1077)">
-      <path d="M 420.4426,367.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1078">
-        <path d="M 349.1992,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1078)">
-      <path d="M 385.4041,367.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1079">
-        <path d="M 349.1992,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1079)">
-      <path d="M 350.3655,367.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1080">
-        <path d="M 349.1992,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1080)">
-      <path d="M 315.3270,367.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1081">
-        <path d="M 349.1992,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1081)">
-      <path d="M 280.2884,367.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1082">
-        <path d="M 349.1992,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1082)">
-      <path d="M 245.2499,367.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1083">
-        <path d="M 349.1992,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1083)">
-      <path d="M 210.2114,367.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1084">
-        <path d="M 349.1992,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1084)">
-      <path d="M 175.1728,367.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1085">
-        <path d="M 349.1992,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1085)">
-      <path d="M 140.1343,367.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1086">
-        <path d="M 349.1992,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1086)">
-      <path d="M 105.0958,367.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1087">
-        <path d="M 349.1992,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1087)">
-      <path d="M 70.0572,367.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.1" stroke="rgb(102,102,102)" stroke-width="2.98825135876461" fill="rgb(255,255,255)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1088">
-        <path d="M 349.1992,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1088)">
-      <path d="M 447.5975,427.9339 l -0.0000,-495.8678 h -491.9915 l -0.0000,495.8678 Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.1" stroke="rgb(102,102,102)" stroke-width="2.98825135876461" fill="rgb(76,76,76)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 349.1992,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1089">
-        <path d="M 240.9610,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1089)">
-      <path d="M -42.6378,177.3840 l -0.0000,-24.0505 h -96.2018 l -0.0000,24.0505 Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="21.86404754438049px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1090">
-        <path d="M 240.9610,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1090)">
-      <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,-90.7387,165.3588)" stroke="none" text-anchor="middle">y = -2.0
-      </text>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1091">
-        <path d="M 240.9610,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1091)">
-      <path d="M 150.0741,317.5382 l -0.0000,-24.0505 h -96.2018 l -0.0000,24.0505 Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="21.86404754438049px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1092">
-        <path d="M 240.9610,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1092)">
-      <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,101.9732,305.5130)" stroke="none" text-anchor="middle">x = -1.0
-      </text>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="8.96475407629383" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1093">
-        <path d="M 240.9610,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1093)">
-      <path d="M 107.2290,163.1724 c 0.0000,-2.9027 -2.3531,-5.2558 -5.2558 -5.2558c -2.9027,-0.0000 -5.2558,2.3531 -5.2558 5.2558c -0.0000,2.9027 2.3531,5.2558 5.2558 5.2558c 2.9027,0.0000 5.2558,-2.3531 5.2558 -5.2558Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(51,51,51)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1094">
-        <path d="M 240.9610,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1094)">
-      <path d="M 101.9732,268.2880 v -105.1156 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(51,51,51)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1095">
-        <path d="M 240.9610,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1095)">
-      <path d="M -38.1809,163.1724 h 140.1542 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(153,153,153)" stroke-width="5.97650271752922" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1096">
-        <path d="M 240.9610,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1096)">
-      <path d="M 31.8962,-117.1359 l 4.2046,24.7232 l 4.2046,23.7141 l 4.2046,22.7050 l 4.2046,21.6959 l 4.2046,20.6868 l 4.2046,19.6776 l 4.2046,18.6685 l 4.2046,17.6594 l 4.2046,16.6503 l 4.2046,15.6412 l 4.2046,14.6321 l 4.2046,13.6230 l 4.2046,12.6139 l 4.2046,11.6048 l 4.2046,10.5957 l 4.2046,9.5865 l 4.2046,8.5774 l 4.2046,7.5683 l 4.2046,6.5592 l 4.2046,5.5501 l 4.2046,4.5410 l 4.2046,3.5319 l 4.2046,2.5228 l 4.2046,1.5137 l 4.2046,0.5046 l 4.2046,-0.5046 l 4.2046,-1.5137 l 4.2046,-2.5228 l 4.2046,-3.5319 l 4.2046,-4.5410 l 4.2046,-5.5501 l 4.2046,-6.5592 l 4.2046,-7.5683 l 4.2046,-8.5774 l 4.2046,-9.5865 l 4.2046,-10.5957 l 4.2046,-11.6048 l 4.2046,-12.6139 l 4.2046,-13.6230 l 4.2046,-14.6321 l 4.2046,-15.6412 l 4.2046,-16.6503 l 4.2046,-17.6594 l 4.2046,-18.6685 l 4.2046,-19.6776 l 4.2046,-20.6868 l 4.2046,-21.6959 l 4.2046,-22.7050 l 4.2046,-23.7141 l 4.2046,-24.7232 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1097">
-        <path d="M 240.9610,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1097)">
-      <path d="M 227.2010,-96.1128 l -0.0000,-36.0757 h -180.3784 l -0.0000,36.0757 Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="32.79607131657073px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1098">
-        <path d="M 240.9610,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1098)">
-      <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,137.0118,-114.1506)" stroke="none" text-anchor="middle">y = x² - 3
-      </text>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1099">
-        <path d="M 240.9610,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1099)">
-      <path d="M 312.2045,268.2880 l -0.0000,-350.3854 h -350.3854 l -0.0000,350.3854 Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1100">
-        <path d="M 240.9610,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1100)">
-      <path d="M -38.1809,-82.0974 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1101">
-        <path d="M 240.9610,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1101)">
-      <path d="M -38.1809,-75.0897 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1102">
-        <path d="M 240.9610,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1102)">
-      <path d="M -38.1809,-68.0819 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1103">
-        <path d="M 240.9610,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1103)">
-      <path d="M -38.1809,-61.0742 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1104">
-        <path d="M 240.9610,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1104)">
-      <path d="M -38.1809,-54.0665 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1105">
-        <path d="M 240.9610,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1105)">
-      <path d="M -38.1809,-47.0588 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1106">
-        <path d="M 240.9610,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1106)">
-      <path d="M -38.1809,-40.0511 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1107">
-        <path d="M 240.9610,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1107)">
-      <path d="M -38.1809,-33.0434 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1108">
-        <path d="M 240.9610,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1108)">
-      <path d="M -38.1809,-26.0357 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1109">
-        <path d="M 240.9610,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1109)">
-      <path d="M -38.1809,-19.0280 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1110">
-        <path d="M 240.9610,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1110)">
-      <path d="M -38.1809,-12.0203 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1111">
-        <path d="M 240.9610,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1111)">
-      <path d="M -38.1809,-5.0126 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1112">
-        <path d="M 240.9610,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1112)">
-      <path d="M -38.1809,1.9951 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1113">
-        <path d="M 240.9610,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1113)">
-      <path d="M -38.1809,9.0028 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1114">
-        <path d="M 240.9610,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1114)">
-      <path d="M -38.1809,16.0105 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1115">
-        <path d="M 240.9610,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1115)">
-      <path d="M -38.1809,23.0183 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1116">
-        <path d="M 240.9610,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1116)">
-      <path d="M -38.1809,30.0260 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1117">
-        <path d="M 240.9610,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1117)">
-      <path d="M -38.1809,37.0337 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1118">
-        <path d="M 240.9610,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1118)">
-      <path d="M -38.1809,44.0414 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1119">
-        <path d="M 240.9610,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1119)">
-      <path d="M -38.1809,51.0491 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1120">
-        <path d="M 240.9610,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1120)">
-      <path d="M -38.1809,58.0568 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1121">
-        <path d="M 240.9610,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1121)">
-      <path d="M -38.1809,65.0645 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1122">
-        <path d="M 240.9610,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1122)">
-      <path d="M -38.1809,72.0722 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1123">
-        <path d="M 240.9610,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1123)">
-      <path d="M -38.1809,79.0799 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1124">
-        <path d="M 240.9610,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1124)">
-      <path d="M -38.1809,86.0876 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1125">
-        <path d="M 240.9610,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1125)">
-      <path d="M -38.1809,93.0953 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1126">
-        <path d="M 240.9610,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1126)">
-      <path d="M -38.1809,100.1030 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1127">
-        <path d="M 240.9610,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1127)">
-      <path d="M -38.1809,107.1107 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1128">
-        <path d="M 240.9610,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1128)">
-      <path d="M -38.1809,114.1185 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1129">
-        <path d="M 240.9610,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1129)">
-      <path d="M -38.1809,121.1262 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1130">
-        <path d="M 240.9610,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1130)">
-      <path d="M -38.1809,128.1339 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1131">
-        <path d="M 240.9610,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1131)">
-      <path d="M -38.1809,135.1416 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1132">
-        <path d="M 240.9610,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1132)">
-      <path d="M -38.1809,142.1493 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1133">
-        <path d="M 240.9610,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1133)">
-      <path d="M -38.1809,149.1570 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1134">
-        <path d="M 240.9610,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1134)">
-      <path d="M -38.1809,156.1647 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1135">
-        <path d="M 240.9610,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1135)">
-      <path d="M -38.1809,163.1724 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1136">
-        <path d="M 240.9610,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1136)">
-      <path d="M -38.1809,170.1801 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1137">
-        <path d="M 240.9610,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1137)">
-      <path d="M -38.1809,177.1878 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1138">
-        <path d="M 240.9610,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1138)">
-      <path d="M -38.1809,184.1955 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1139">
-        <path d="M 240.9610,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1139)">
-      <path d="M -38.1809,191.2032 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1140">
-        <path d="M 240.9610,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1140)">
-      <path d="M -38.1809,198.2109 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1141">
-        <path d="M 240.9610,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1141)">
-      <path d="M -38.1809,205.2187 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1142">
-        <path d="M 240.9610,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1142)">
-      <path d="M -38.1809,212.2264 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1143">
-        <path d="M 240.9610,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1143)">
-      <path d="M -38.1809,219.2341 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1144">
-        <path d="M 240.9610,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1144)">
-      <path d="M -38.1809,226.2418 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1145">
-        <path d="M 240.9610,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1145)">
-      <path d="M -38.1809,233.2495 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1146">
-        <path d="M 240.9610,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1146)">
-      <path d="M -38.1809,240.2572 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1147">
-        <path d="M 240.9610,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1147)">
-      <path d="M -38.1809,247.2649 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1148">
-        <path d="M 240.9610,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1148)">
-      <path d="M -38.1809,254.2726 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1149">
-        <path d="M 240.9610,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1149)">
-      <path d="M -38.1809,261.2803 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1150">
-        <path d="M 240.9610,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1150)">
-      <path d="M -38.1809,268.2880 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1151">
-        <path d="M 240.9610,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1151)">
-      <path d="M 312.2045,268.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1152">
-        <path d="M 240.9610,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1152)">
-      <path d="M 305.1967,268.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1153">
-        <path d="M 240.9610,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1153)">
-      <path d="M 298.1890,268.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1154">
-        <path d="M 240.9610,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1154)">
-      <path d="M 291.1813,268.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1155">
-        <path d="M 240.9610,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1155)">
-      <path d="M 284.1736,268.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1156">
-        <path d="M 240.9610,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1156)">
-      <path d="M 277.1659,268.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1157">
-        <path d="M 240.9610,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1157)">
-      <path d="M 270.1582,268.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1158">
-        <path d="M 240.9610,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1158)">
-      <path d="M 263.1505,268.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1159">
-        <path d="M 240.9610,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1159)">
-      <path d="M 256.1428,268.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1160">
-        <path d="M 240.9610,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1160)">
-      <path d="M 249.1351,268.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1161">
-        <path d="M 240.9610,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1161)">
-      <path d="M 242.1274,268.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1162">
-        <path d="M 240.9610,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1162)">
-      <path d="M 235.1197,268.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1163">
-        <path d="M 240.9610,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1163)">
-      <path d="M 228.1120,268.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1164">
-        <path d="M 240.9610,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1164)">
-      <path d="M 221.1043,268.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1165">
-        <path d="M 240.9610,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1165)">
-      <path d="M 214.0965,268.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1166">
-        <path d="M 240.9610,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1166)">
-      <path d="M 207.0888,268.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1167">
-        <path d="M 240.9610,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1167)">
-      <path d="M 200.0811,268.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1168">
-        <path d="M 240.9610,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1168)">
-      <path d="M 193.0734,268.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1169">
-        <path d="M 240.9610,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1169)">
-      <path d="M 186.0657,268.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1170">
-        <path d="M 240.9610,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1170)">
-      <path d="M 179.0580,268.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1171">
-        <path d="M 240.9610,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1171)">
-      <path d="M 172.0503,268.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1172">
-        <path d="M 240.9610,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1172)">
-      <path d="M 165.0426,268.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1173">
-        <path d="M 240.9610,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1173)">
-      <path d="M 158.0349,268.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1174">
-        <path d="M 240.9610,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1174)">
-      <path d="M 151.0272,268.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1175">
-        <path d="M 240.9610,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1175)">
-      <path d="M 144.0195,268.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1176">
-        <path d="M 240.9610,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1176)">
-      <path d="M 137.0118,268.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1177">
-        <path d="M 240.9610,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1177)">
-      <path d="M 130.0041,268.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1178">
-        <path d="M 240.9610,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1178)">
-      <path d="M 122.9964,268.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1179">
-        <path d="M 240.9610,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1179)">
-      <path d="M 115.9886,268.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1180">
-        <path d="M 240.9610,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1180)">
-      <path d="M 108.9809,268.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1181">
-        <path d="M 240.9610,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1181)">
-      <path d="M 101.9732,268.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1182">
-        <path d="M 240.9610,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1182)">
-      <path d="M 94.9655,268.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1183">
-        <path d="M 240.9610,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1183)">
-      <path d="M 87.9578,268.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1184">
-        <path d="M 240.9610,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1184)">
-      <path d="M 80.9501,268.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1185">
-        <path d="M 240.9610,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1185)">
-      <path d="M 73.9424,268.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1186">
-        <path d="M 240.9610,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1186)">
-      <path d="M 66.9347,268.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1187">
-        <path d="M 240.9610,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1187)">
-      <path d="M 59.9270,268.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1188">
-        <path d="M 240.9610,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1188)">
-      <path d="M 52.9193,268.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1189">
-        <path d="M 240.9610,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1189)">
-      <path d="M 45.9116,268.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1190">
-        <path d="M 240.9610,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1190)">
-      <path d="M 38.9039,268.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1191">
-        <path d="M 240.9610,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1191)">
-      <path d="M 31.8962,268.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1192">
-        <path d="M 240.9610,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1192)">
-      <path d="M 24.8884,268.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1193">
-        <path d="M 240.9610,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1193)">
-      <path d="M 17.8807,268.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1194">
-        <path d="M 240.9610,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1194)">
-      <path d="M 10.8730,268.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1195">
-        <path d="M 240.9610,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1195)">
-      <path d="M 3.8653,268.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1196">
-        <path d="M 240.9610,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1196)">
-      <path d="M -3.1424,268.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1197">
-        <path d="M 240.9610,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1197)">
-      <path d="M -10.1501,268.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1198">
-        <path d="M 240.9610,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1198)">
-      <path d="M -17.1578,268.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1199">
-        <path d="M 240.9610,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1199)">
-      <path d="M -24.1655,268.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1200">
-        <path d="M 240.9610,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1200)">
-      <path d="M -31.1732,268.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1201">
-        <path d="M 240.9610,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1201)">
-      <path d="M -38.1809,268.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1202">
-        <path d="M 240.9610,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1202)">
-      <path d="M -38.1809,-82.0974 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1203">
-        <path d="M 240.9610,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1203)">
-      <path d="M -38.1809,-47.0588 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1204">
-        <path d="M 240.9610,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1204)">
-      <path d="M -38.1809,-12.0203 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1205">
-        <path d="M 240.9610,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1205)">
-      <path d="M -38.1809,23.0183 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1206">
-        <path d="M 240.9610,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1206)">
-      <path d="M -38.1809,58.0568 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1207">
-        <path d="M 240.9610,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1207)">
-      <path d="M -38.1809,93.0953 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1208">
-        <path d="M 240.9610,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1208)">
-      <path d="M -38.1809,128.1339 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1209">
-        <path d="M 240.9610,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1209)">
-      <path d="M -38.1809,163.1724 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1210">
-        <path d="M 240.9610,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1210)">
-      <path d="M -38.1809,198.2109 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1211">
-        <path d="M 240.9610,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1211)">
-      <path d="M -38.1809,233.2495 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1212">
-        <path d="M 240.9610,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1212)">
-      <path d="M -38.1809,268.2880 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1213">
-        <path d="M 240.9610,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1213)">
-      <path d="M 312.2045,268.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1214">
-        <path d="M 240.9610,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1214)">
-      <path d="M 277.1659,268.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1215">
-        <path d="M 240.9610,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1215)">
-      <path d="M 242.1274,268.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1216">
-        <path d="M 240.9610,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1216)">
-      <path d="M 207.0888,268.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1217">
-        <path d="M 240.9610,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1217)">
-      <path d="M 172.0503,268.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1218">
-        <path d="M 240.9610,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1218)">
-      <path d="M 137.0118,268.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1219">
-        <path d="M 240.9610,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1219)">
-      <path d="M 101.9732,268.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1220">
-        <path d="M 240.9610,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1220)">
-      <path d="M 66.9347,268.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1221">
-        <path d="M 240.9610,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1221)">
-      <path d="M 31.8962,268.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1222">
-        <path d="M 240.9610,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1222)">
-      <path d="M -3.1424,268.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1223">
-        <path d="M 240.9610,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1223)">
-      <path d="M -38.1809,268.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.1" stroke="rgb(102,102,102)" stroke-width="2.98825135876461" fill="rgb(255,255,255)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1224">
-        <path d="M 240.9610,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1224)">
-      <path d="M 339.3593,328.7603 l -0.0000,-495.8678 h -491.9915 l -0.0000,495.8678 Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.1" stroke="rgb(102,102,102)" stroke-width="2.98825135876461" fill="rgb(76,76,76)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 240.9610,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1225">
-        <path d="M 132.7229,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1225)">
-      <path d="M -150.8760,78.2105 l -0.0000,-24.0505 h -96.2018 l -0.0000,24.0505 Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="21.86404754438049px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1226">
-        <path d="M 132.7229,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1226)">
-      <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,-198.9769,66.1853)" stroke="none" text-anchor="middle">y = -2.0
-      </text>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1227">
-        <path d="M 132.7229,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1227)">
-      <path d="M 41.8360,218.3646 l -0.0000,-24.0505 h -96.2018 l -0.0000,24.0505 Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="21.86404754438049px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1228">
-        <path d="M 132.7229,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1228)">
-      <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,-6.2649,206.3394)" stroke="none" text-anchor="middle">x = -1.0
-      </text>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="8.96475407629383" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1229">
-        <path d="M 132.7229,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1229)">
-      <path d="M -1.0091,63.9989 c 0.0000,-2.9027 -2.3531,-5.2558 -5.2558 -5.2558c -2.9027,-0.0000 -5.2558,2.3531 -5.2558 5.2558c -0.0000,2.9027 2.3531,5.2558 5.2558 5.2558c 2.9027,0.0000 5.2558,-2.3531 5.2558 -5.2558Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(51,51,51)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1230">
-        <path d="M 132.7229,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1230)">
-      <path d="M -6.2649,169.1145 v -105.1156 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(51,51,51)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1231">
-        <path d="M 132.7229,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1231)">
-      <path d="M -146.4191,63.9989 h 140.1542 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(153,153,153)" stroke-width="5.97650271752922" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1232">
-        <path d="M 132.7229,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1232)">
-      <path d="M -76.3420,-216.3094 l 4.2046,24.7232 l 4.2046,23.7141 l 4.2046,22.7050 l 4.2046,21.6959 l 4.2046,20.6868 l 4.2046,19.6776 l 4.2046,18.6685 l 4.2046,17.6594 l 4.2046,16.6503 l 4.2046,15.6412 l 4.2046,14.6321 l 4.2046,13.6230 l 4.2046,12.6139 l 4.2046,11.6048 l 4.2046,10.5957 l 4.2046,9.5865 l 4.2046,8.5774 l 4.2046,7.5683 l 4.2046,6.5592 l 4.2046,5.5501 l 4.2046,4.5410 l 4.2046,3.5319 l 4.2046,2.5228 l 4.2046,1.5137 l 4.2046,0.5046 l 4.2046,-0.5046 l 4.2046,-1.5137 l 4.2046,-2.5228 l 4.2046,-3.5319 l 4.2046,-4.5410 l 4.2046,-5.5501 l 4.2046,-6.5592 l 4.2046,-7.5683 l 4.2046,-8.5774 l 4.2046,-9.5865 l 4.2046,-10.5957 l 4.2046,-11.6048 l 4.2046,-12.6139 l 4.2046,-13.6230 l 4.2046,-14.6321 l 4.2046,-15.6412 l 4.2046,-16.6503 l 4.2046,-17.6594 l 4.2046,-18.6685 l 4.2046,-19.6776 l 4.2046,-20.6868 l 4.2046,-21.6959 l 4.2046,-22.7050 l 4.2046,-23.7141 l 4.2046,-24.7232 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1233">
-        <path d="M 132.7229,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1233)">
-      <path d="M 118.9628,-195.2863 l -0.0000,-36.0757 h -180.3784 l -0.0000,36.0757 Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="32.79607131657073px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1234">
-        <path d="M 132.7229,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1234)">
-      <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,28.7736,-213.3242)" stroke="none" text-anchor="middle">y = x² - 3
-      </text>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1235">
-        <path d="M 132.7229,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1235)">
-      <path d="M 203.9663,169.1145 l -0.0000,-350.3854 h -350.3854 l -0.0000,350.3854 Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1236">
-        <path d="M 132.7229,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1236)">
-      <path d="M -146.4191,-181.2709 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1237">
-        <path d="M 132.7229,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1237)">
-      <path d="M -146.4191,-174.2632 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1238">
-        <path d="M 132.7229,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1238)">
-      <path d="M -146.4191,-167.2555 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1239">
-        <path d="M 132.7229,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1239)">
-      <path d="M -146.4191,-160.2478 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1240">
-        <path d="M 132.7229,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1240)">
-      <path d="M -146.4191,-153.2401 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1241">
-        <path d="M 132.7229,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1241)">
-      <path d="M -146.4191,-146.2324 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1242">
-        <path d="M 132.7229,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1242)">
-      <path d="M -146.4191,-139.2247 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1243">
-        <path d="M 132.7229,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1243)">
-      <path d="M -146.4191,-132.2170 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1244">
-        <path d="M 132.7229,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1244)">
-      <path d="M -146.4191,-125.2093 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1245">
-        <path d="M 132.7229,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1245)">
-      <path d="M -146.4191,-118.2015 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1246">
-        <path d="M 132.7229,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1246)">
-      <path d="M -146.4191,-111.1938 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1247">
-        <path d="M 132.7229,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1247)">
-      <path d="M -146.4191,-104.1861 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1248">
-        <path d="M 132.7229,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1248)">
-      <path d="M -146.4191,-97.1784 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1249">
-        <path d="M 132.7229,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1249)">
-      <path d="M -146.4191,-90.1707 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1250">
-        <path d="M 132.7229,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1250)">
-      <path d="M -146.4191,-83.1630 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1251">
-        <path d="M 132.7229,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1251)">
-      <path d="M -146.4191,-76.1553 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1252">
-        <path d="M 132.7229,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1252)">
-      <path d="M -146.4191,-69.1476 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1253">
-        <path d="M 132.7229,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1253)">
-      <path d="M -146.4191,-62.1399 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1254">
-        <path d="M 132.7229,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1254)">
-      <path d="M -146.4191,-55.1322 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1255">
-        <path d="M 132.7229,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1255)">
-      <path d="M -146.4191,-48.1245 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1256">
-        <path d="M 132.7229,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1256)">
-      <path d="M -146.4191,-41.1168 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1257">
-        <path d="M 132.7229,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1257)">
-      <path d="M -146.4191,-34.1091 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1258">
-        <path d="M 132.7229,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1258)">
-      <path d="M -146.4191,-27.1013 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1259">
-        <path d="M 132.7229,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1259)">
-      <path d="M -146.4191,-20.0936 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1260">
-        <path d="M 132.7229,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1260)">
-      <path d="M -146.4191,-13.0859 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1261">
-        <path d="M 132.7229,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1261)">
-      <path d="M -146.4191,-6.0782 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1262">
-        <path d="M 132.7229,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1262)">
-      <path d="M -146.4191,0.9295 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1263">
-        <path d="M 132.7229,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1263)">
-      <path d="M -146.4191,7.9372 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1264">
-        <path d="M 132.7229,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1264)">
-      <path d="M -146.4191,14.9449 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1265">
-        <path d="M 132.7229,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1265)">
-      <path d="M -146.4191,21.9526 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1266">
-        <path d="M 132.7229,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1266)">
-      <path d="M -146.4191,28.9603 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1267">
-        <path d="M 132.7229,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1267)">
-      <path d="M -146.4191,35.9680 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1268">
-        <path d="M 132.7229,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1268)">
-      <path d="M -146.4191,42.9757 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1269">
-        <path d="M 132.7229,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1269)">
-      <path d="M -146.4191,49.9834 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1270">
-        <path d="M 132.7229,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1270)">
-      <path d="M -146.4191,56.9911 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1271">
-        <path d="M 132.7229,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1271)">
-      <path d="M -146.4191,63.9989 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1272">
-        <path d="M 132.7229,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1272)">
-      <path d="M -146.4191,71.0066 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1273">
-        <path d="M 132.7229,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1273)">
-      <path d="M -146.4191,78.0143 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1274">
-        <path d="M 132.7229,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1274)">
-      <path d="M -146.4191,85.0220 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1275">
-        <path d="M 132.7229,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1275)">
-      <path d="M -146.4191,92.0297 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1276">
-        <path d="M 132.7229,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1276)">
-      <path d="M -146.4191,99.0374 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1277">
-        <path d="M 132.7229,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1277)">
-      <path d="M -146.4191,106.0451 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1278">
-        <path d="M 132.7229,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1278)">
-      <path d="M -146.4191,113.0528 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1279">
-        <path d="M 132.7229,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1279)">
-      <path d="M -146.4191,120.0605 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1280">
-        <path d="M 132.7229,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1280)">
-      <path d="M -146.4191,127.0682 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1281">
-        <path d="M 132.7229,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1281)">
-      <path d="M -146.4191,134.0759 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1282">
-        <path d="M 132.7229,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1282)">
-      <path d="M -146.4191,141.0836 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1283">
-        <path d="M 132.7229,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1283)">
-      <path d="M -146.4191,148.0913 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1284">
-        <path d="M 132.7229,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1284)">
-      <path d="M -146.4191,155.0991 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1285">
-        <path d="M 132.7229,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1285)">
-      <path d="M -146.4191,162.1068 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1286">
-        <path d="M 132.7229,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1286)">
-      <path d="M -146.4191,169.1145 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1287">
-        <path d="M 132.7229,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1287)">
-      <path d="M 203.9663,169.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1288">
-        <path d="M 132.7229,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1288)">
-      <path d="M 196.9586,169.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1289">
-        <path d="M 132.7229,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1289)">
-      <path d="M 189.9509,169.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1290">
-        <path d="M 132.7229,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1290)">
-      <path d="M 182.9432,169.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1291">
-        <path d="M 132.7229,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1291)">
-      <path d="M 175.9355,169.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1292">
-        <path d="M 132.7229,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1292)">
-      <path d="M 168.9278,169.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1293">
-        <path d="M 132.7229,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1293)">
-      <path d="M 161.9201,169.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1294">
-        <path d="M 132.7229,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1294)">
-      <path d="M 154.9124,169.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1295">
-        <path d="M 132.7229,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1295)">
-      <path d="M 147.9047,169.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1296">
-        <path d="M 132.7229,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1296)">
-      <path d="M 140.8970,169.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1297">
-        <path d="M 132.7229,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1297)">
-      <path d="M 133.8892,169.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1298">
-        <path d="M 132.7229,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1298)">
-      <path d="M 126.8815,169.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1299">
-        <path d="M 132.7229,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1299)">
-      <path d="M 119.8738,169.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1300">
-        <path d="M 132.7229,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1300)">
-      <path d="M 112.8661,169.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1301">
-        <path d="M 132.7229,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1301)">
-      <path d="M 105.8584,169.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1302">
-        <path d="M 132.7229,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1302)">
-      <path d="M 98.8507,169.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1303">
-        <path d="M 132.7229,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1303)">
-      <path d="M 91.8430,169.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1304">
-        <path d="M 132.7229,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1304)">
-      <path d="M 84.8353,169.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1305">
-        <path d="M 132.7229,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1305)">
-      <path d="M 77.8276,169.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1306">
-        <path d="M 132.7229,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1306)">
-      <path d="M 70.8199,169.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1307">
-        <path d="M 132.7229,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1307)">
-      <path d="M 63.8122,169.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1308">
-        <path d="M 132.7229,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1308)">
-      <path d="M 56.8045,169.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1309">
-        <path d="M 132.7229,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1309)">
-      <path d="M 49.7968,169.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1310">
-        <path d="M 132.7229,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1310)">
-      <path d="M 42.7890,169.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1311">
-        <path d="M 132.7229,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1311)">
-      <path d="M 35.7813,169.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1312">
-        <path d="M 132.7229,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1312)">
-      <path d="M 28.7736,169.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1313">
-        <path d="M 132.7229,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1313)">
-      <path d="M 21.7659,169.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1314">
-        <path d="M 132.7229,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1314)">
-      <path d="M 14.7582,169.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1315">
-        <path d="M 132.7229,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1315)">
-      <path d="M 7.7505,169.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1316">
-        <path d="M 132.7229,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1316)">
-      <path d="M 0.7428,169.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1317">
-        <path d="M 132.7229,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1317)">
-      <path d="M -6.2649,169.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1318">
-        <path d="M 132.7229,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1318)">
-      <path d="M -13.2726,169.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1319">
-        <path d="M 132.7229,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1319)">
-      <path d="M -20.2803,169.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1320">
-        <path d="M 132.7229,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1320)">
-      <path d="M -27.2880,169.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1321">
-        <path d="M 132.7229,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1321)">
-      <path d="M -34.2957,169.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1322">
-        <path d="M 132.7229,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1322)">
-      <path d="M -41.3034,169.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1323">
-        <path d="M 132.7229,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1323)">
-      <path d="M -48.3112,169.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1324">
-        <path d="M 132.7229,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1324)">
-      <path d="M -55.3189,169.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1325">
-        <path d="M 132.7229,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1325)">
-      <path d="M -62.3266,169.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1326">
-        <path d="M 132.7229,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1326)">
-      <path d="M -69.3343,169.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1327">
-        <path d="M 132.7229,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1327)">
-      <path d="M -76.3420,169.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1328">
-        <path d="M 132.7229,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1328)">
-      <path d="M -83.3497,169.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1329">
-        <path d="M 132.7229,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1329)">
-      <path d="M -90.3574,169.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1330">
-        <path d="M 132.7229,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1330)">
-      <path d="M -97.3651,169.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1331">
-        <path d="M 132.7229,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1331)">
-      <path d="M -104.3728,169.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1332">
-        <path d="M 132.7229,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1332)">
-      <path d="M -111.3805,169.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1333">
-        <path d="M 132.7229,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1333)">
-      <path d="M -118.3882,169.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1334">
-        <path d="M 132.7229,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1334)">
-      <path d="M -125.3959,169.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1335">
-        <path d="M 132.7229,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1335)">
-      <path d="M -132.4036,169.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1336">
-        <path d="M 132.7229,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1336)">
-      <path d="M -139.4114,169.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1337">
-        <path d="M 132.7229,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1337)">
-      <path d="M -146.4191,169.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1338">
-        <path d="M 132.7229,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1338)">
-      <path d="M -146.4191,-181.2709 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1339">
-        <path d="M 132.7229,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1339)">
-      <path d="M -146.4191,-146.2324 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1340">
-        <path d="M 132.7229,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1340)">
-      <path d="M -146.4191,-111.1938 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1341">
-        <path d="M 132.7229,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1341)">
-      <path d="M -146.4191,-76.1553 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1342">
-        <path d="M 132.7229,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1342)">
-      <path d="M -146.4191,-41.1168 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1343">
-        <path d="M 132.7229,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1343)">
-      <path d="M -146.4191,-6.0782 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1344">
-        <path d="M 132.7229,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1344)">
-      <path d="M -146.4191,28.9603 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1345">
-        <path d="M 132.7229,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1345)">
-      <path d="M -146.4191,63.9989 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1346">
-        <path d="M 132.7229,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1346)">
-      <path d="M -146.4191,99.0374 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1347">
-        <path d="M 132.7229,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1347)">
-      <path d="M -146.4191,134.0759 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1348">
-        <path d="M 132.7229,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1348)">
-      <path d="M -146.4191,169.1145 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1349">
-        <path d="M 132.7229,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1349)">
-      <path d="M 203.9663,169.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1350">
-        <path d="M 132.7229,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1350)">
-      <path d="M 168.9278,169.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1351">
-        <path d="M 132.7229,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1351)">
-      <path d="M 133.8892,169.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1352">
-        <path d="M 132.7229,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1352)">
-      <path d="M 98.8507,169.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1353">
-        <path d="M 132.7229,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1353)">
-      <path d="M 63.8122,169.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1354">
-        <path d="M 132.7229,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1354)">
-      <path d="M 28.7736,169.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1355">
-        <path d="M 132.7229,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1355)">
-      <path d="M -6.2649,169.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1356">
-        <path d="M 132.7229,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1356)">
-      <path d="M -41.3034,169.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1357">
-        <path d="M 132.7229,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1357)">
-      <path d="M -76.3420,169.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1358">
-        <path d="M 132.7229,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1358)">
-      <path d="M -111.3805,169.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1359">
-        <path d="M 132.7229,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1359)">
-      <path d="M -146.4191,169.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.1" stroke="rgb(102,102,102)" stroke-width="2.98825135876461" fill="rgb(255,255,255)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1360">
-        <path d="M 132.7229,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1360)">
-      <path d="M 231.1212,229.5868 l -0.0000,-495.8678 h -491.9915 l -0.0000,495.8678 Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.1" stroke="rgb(102,102,102)" stroke-width="2.98825135876461" fill="rgb(76,76,76)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 132.7229,229.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1361">
-        <path d="M 565.6754,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1361)">
-      <path d="M 380.4749,594.9047 l -0.0000,-24.0505 h -96.2018 l -0.0000,24.0505 Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="21.86404754438049px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1362">
-        <path d="M 565.6754,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1362)">
-      <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,332.3740,582.8795)" stroke="none" text-anchor="middle">y = -2.0
-      </text>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1363">
-        <path d="M 565.6754,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1363)">
-      <path d="M 573.1868,735.0588 l -0.0000,-24.0505 h -96.2018 l -0.0000,24.0505 Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="21.86404754438049px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1364">
-        <path d="M 565.6754,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1364)">
-      <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,525.0859,723.0336)" stroke="none" text-anchor="middle">x = -1.0
-      </text>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="8.96475407629383" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1365">
-        <path d="M 565.6754,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1365)">
-      <path d="M 530.3417,580.6931 c 0.0000,-2.9027 -2.3531,-5.2558 -5.2558 -5.2558c -2.9027,-0.0000 -5.2558,2.3531 -5.2558 5.2558c -0.0000,2.9027 2.3531,5.2558 5.2558 5.2558c 2.9027,0.0000 5.2558,-2.3531 5.2558 -5.2558Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(51,51,51)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1366">
-        <path d="M 565.6754,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1366)">
-      <path d="M 525.0859,685.8087 v -105.1156 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(51,51,51)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1367">
-        <path d="M 565.6754,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1367)">
-      <path d="M 384.9318,580.6931 h 140.1542 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(153,153,153)" stroke-width="5.97650271752922" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1368">
-        <path d="M 565.6754,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1368)">
-      <path d="M 455.0089,300.3848 l 4.2046,24.7232 l 4.2046,23.7141 l 4.2046,22.7050 l 4.2046,21.6959 l 4.2046,20.6868 l 4.2046,19.6776 l 4.2046,18.6685 l 4.2046,17.6594 l 4.2046,16.6503 l 4.2046,15.6412 l 4.2046,14.6321 l 4.2046,13.6230 l 4.2046,12.6139 l 4.2046,11.6048 l 4.2046,10.5957 l 4.2046,9.5865 l 4.2046,8.5774 l 4.2046,7.5683 l 4.2046,6.5592 l 4.2046,5.5501 l 4.2046,4.5410 l 4.2046,3.5319 l 4.2046,2.5228 l 4.2046,1.5137 l 4.2046,0.5046 l 4.2046,-0.5046 l 4.2046,-1.5137 l 4.2046,-2.5228 l 4.2046,-3.5319 l 4.2046,-4.5410 l 4.2046,-5.5501 l 4.2046,-6.5592 l 4.2046,-7.5683 l 4.2046,-8.5774 l 4.2046,-9.5865 l 4.2046,-10.5957 l 4.2046,-11.6048 l 4.2046,-12.6139 l 4.2046,-13.6230 l 4.2046,-14.6321 l 4.2046,-15.6412 l 4.2046,-16.6503 l 4.2046,-17.6594 l 4.2046,-18.6685 l 4.2046,-19.6776 l 4.2046,-20.6868 l 4.2046,-21.6959 l 4.2046,-22.7050 l 4.2046,-23.7141 l 4.2046,-24.7232 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1369">
-        <path d="M 565.6754,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1369)">
-      <path d="M 650.3137,321.4079 l -0.0000,-36.0757 h -180.3784 l -0.0000,36.0757 Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="32.79607131657073px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1370">
-        <path d="M 565.6754,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1370)">
-      <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,560.1245,303.3700)" stroke="none" text-anchor="middle">y = x² - 3
-      </text>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1371">
-        <path d="M 565.6754,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1371)">
-      <path d="M 735.3172,685.8087 l -0.0000,-350.3854 h -350.3854 l -0.0000,350.3854 Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1372">
-        <path d="M 565.6754,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1372)">
-      <path d="M 384.9318,335.4233 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1373">
-        <path d="M 565.6754,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1373)">
-      <path d="M 384.9318,342.4310 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1374">
-        <path d="M 565.6754,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1374)">
-      <path d="M 384.9318,349.4387 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1375">
-        <path d="M 565.6754,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1375)">
-      <path d="M 384.9318,356.4464 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1376">
-        <path d="M 565.6754,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1376)">
-      <path d="M 384.9318,363.4541 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1377">
-        <path d="M 565.6754,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1377)">
-      <path d="M 384.9318,370.4618 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1378">
-        <path d="M 565.6754,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1378)">
-      <path d="M 384.9318,377.4695 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1379">
-        <path d="M 565.6754,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1379)">
-      <path d="M 384.9318,384.4773 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1380">
-        <path d="M 565.6754,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1380)">
-      <path d="M 384.9318,391.4850 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1381">
-        <path d="M 565.6754,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1381)">
-      <path d="M 384.9318,398.4927 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1382">
-        <path d="M 565.6754,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1382)">
-      <path d="M 384.9318,405.5004 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1383">
-        <path d="M 565.6754,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1383)">
-      <path d="M 384.9318,412.5081 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1384">
-        <path d="M 565.6754,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1384)">
-      <path d="M 384.9318,419.5158 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1385">
-        <path d="M 565.6754,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1385)">
-      <path d="M 384.9318,426.5235 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1386">
-        <path d="M 565.6754,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1386)">
-      <path d="M 384.9318,433.5312 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1387">
-        <path d="M 565.6754,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1387)">
-      <path d="M 384.9318,440.5389 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1388">
-        <path d="M 565.6754,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1388)">
-      <path d="M 384.9318,447.5466 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1389">
-        <path d="M 565.6754,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1389)">
-      <path d="M 384.9318,454.5543 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1390">
-        <path d="M 565.6754,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1390)">
-      <path d="M 384.9318,461.5620 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1391">
-        <path d="M 565.6754,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1391)">
-      <path d="M 384.9318,468.5697 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1392">
-        <path d="M 565.6754,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1392)">
-      <path d="M 384.9318,475.5775 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1393">
-        <path d="M 565.6754,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1393)">
-      <path d="M 384.9318,482.5852 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1394">
-        <path d="M 565.6754,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1394)">
-      <path d="M 384.9318,489.5929 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1395">
-        <path d="M 565.6754,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1395)">
-      <path d="M 384.9318,496.6006 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1396">
-        <path d="M 565.6754,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1396)">
-      <path d="M 384.9318,503.6083 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1397">
-        <path d="M 565.6754,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1397)">
-      <path d="M 384.9318,510.6160 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1398">
-        <path d="M 565.6754,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1398)">
-      <path d="M 384.9318,517.6237 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1399">
-        <path d="M 565.6754,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1399)">
-      <path d="M 384.9318,524.6314 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1400">
-        <path d="M 565.6754,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1400)">
-      <path d="M 384.9318,531.6391 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1401">
-        <path d="M 565.6754,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1401)">
-      <path d="M 384.9318,538.6468 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1402">
-        <path d="M 565.6754,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1402)">
-      <path d="M 384.9318,545.6545 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1403">
-        <path d="M 565.6754,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1403)">
-      <path d="M 384.9318,552.6622 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1404">
-        <path d="M 565.6754,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1404)">
-      <path d="M 384.9318,559.6699 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1405">
-        <path d="M 565.6754,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1405)">
-      <path d="M 384.9318,566.6777 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1406">
-        <path d="M 565.6754,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1406)">
-      <path d="M 384.9318,573.6854 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1407">
-        <path d="M 565.6754,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1407)">
-      <path d="M 384.9318,580.6931 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1408">
-        <path d="M 565.6754,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1408)">
-      <path d="M 384.9318,587.7008 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1409">
-        <path d="M 565.6754,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1409)">
-      <path d="M 384.9318,594.7085 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1410">
-        <path d="M 565.6754,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1410)">
-      <path d="M 384.9318,601.7162 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1411">
-        <path d="M 565.6754,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1411)">
-      <path d="M 384.9318,608.7239 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1412">
-        <path d="M 565.6754,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1412)">
-      <path d="M 384.9318,615.7316 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1413">
-        <path d="M 565.6754,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1413)">
-      <path d="M 384.9318,622.7393 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1414">
-        <path d="M 565.6754,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1414)">
-      <path d="M 384.9318,629.7470 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1415">
-        <path d="M 565.6754,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1415)">
-      <path d="M 384.9318,636.7547 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1416">
-        <path d="M 565.6754,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1416)">
-      <path d="M 384.9318,643.7624 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1417">
-        <path d="M 565.6754,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1417)">
-      <path d="M 384.9318,650.7701 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1418">
-        <path d="M 565.6754,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1418)">
-      <path d="M 384.9318,657.7779 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1419">
-        <path d="M 565.6754,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1419)">
-      <path d="M 384.9318,664.7856 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1420">
-        <path d="M 565.6754,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1420)">
-      <path d="M 384.9318,671.7933 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1421">
-        <path d="M 565.6754,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1421)">
-      <path d="M 384.9318,678.8010 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1422">
-        <path d="M 565.6754,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1422)">
-      <path d="M 384.9318,685.8087 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1423">
-        <path d="M 565.6754,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1423)">
-      <path d="M 735.3172,685.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1424">
-        <path d="M 565.6754,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1424)">
-      <path d="M 728.3095,685.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1425">
-        <path d="M 565.6754,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1425)">
-      <path d="M 721.3018,685.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1426">
-        <path d="M 565.6754,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1426)">
-      <path d="M 714.2940,685.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1427">
-        <path d="M 565.6754,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1427)">
-      <path d="M 707.2863,685.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1428">
-        <path d="M 565.6754,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1428)">
-      <path d="M 700.2786,685.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1429">
-        <path d="M 565.6754,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1429)">
-      <path d="M 693.2709,685.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1430">
-        <path d="M 565.6754,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1430)">
-      <path d="M 686.2632,685.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1431">
-        <path d="M 565.6754,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1431)">
-      <path d="M 679.2555,685.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1432">
-        <path d="M 565.6754,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1432)">
-      <path d="M 672.2478,685.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1433">
-        <path d="M 565.6754,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1433)">
-      <path d="M 665.2401,685.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1434">
-        <path d="M 565.6754,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1434)">
-      <path d="M 658.2324,685.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1435">
-        <path d="M 565.6754,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1435)">
-      <path d="M 651.2247,685.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1436">
-        <path d="M 565.6754,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1436)">
-      <path d="M 644.2170,685.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1437">
-        <path d="M 565.6754,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1437)">
-      <path d="M 637.2093,685.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1438">
-        <path d="M 565.6754,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1438)">
-      <path d="M 630.2016,685.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1439">
-        <path d="M 565.6754,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1439)">
-      <path d="M 623.1938,685.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1440">
-        <path d="M 565.6754,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1440)">
-      <path d="M 616.1861,685.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1441">
-        <path d="M 565.6754,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1441)">
-      <path d="M 609.1784,685.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1442">
-        <path d="M 565.6754,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1442)">
-      <path d="M 602.1707,685.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1443">
-        <path d="M 565.6754,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1443)">
-      <path d="M 595.1630,685.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1444">
-        <path d="M 565.6754,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1444)">
-      <path d="M 588.1553,685.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1445">
-        <path d="M 565.6754,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1445)">
-      <path d="M 581.1476,685.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1446">
-        <path d="M 565.6754,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1446)">
-      <path d="M 574.1399,685.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1447">
-        <path d="M 565.6754,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1447)">
-      <path d="M 567.1322,685.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1448">
-        <path d="M 565.6754,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1448)">
-      <path d="M 560.1245,685.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1449">
-        <path d="M 565.6754,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1449)">
-      <path d="M 553.1168,685.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1450">
-        <path d="M 565.6754,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1450)">
-      <path d="M 546.1091,685.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1451">
-        <path d="M 565.6754,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1451)">
-      <path d="M 539.1014,685.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1452">
-        <path d="M 565.6754,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1452)">
-      <path d="M 532.0936,685.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1453">
-        <path d="M 565.6754,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1453)">
-      <path d="M 525.0859,685.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1454">
-        <path d="M 565.6754,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1454)">
-      <path d="M 518.0782,685.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1455">
-        <path d="M 565.6754,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1455)">
-      <path d="M 511.0705,685.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1456">
-        <path d="M 565.6754,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1456)">
-      <path d="M 504.0628,685.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1457">
-        <path d="M 565.6754,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1457)">
-      <path d="M 497.0551,685.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1458">
-        <path d="M 565.6754,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1458)">
-      <path d="M 490.0474,685.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1459">
-        <path d="M 565.6754,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1459)">
-      <path d="M 483.0397,685.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1460">
-        <path d="M 565.6754,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1460)">
-      <path d="M 476.0320,685.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1461">
-        <path d="M 565.6754,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1461)">
-      <path d="M 469.0243,685.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1462">
-        <path d="M 565.6754,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1462)">
-      <path d="M 462.0166,685.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1463">
-        <path d="M 565.6754,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1463)">
-      <path d="M 455.0089,685.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1464">
-        <path d="M 565.6754,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1464)">
-      <path d="M 448.0012,685.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1465">
-        <path d="M 565.6754,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1465)">
-      <path d="M 440.9935,685.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1466">
-        <path d="M 565.6754,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1466)">
-      <path d="M 433.9857,685.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1467">
-        <path d="M 565.6754,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1467)">
-      <path d="M 426.9780,685.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1468">
-        <path d="M 565.6754,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1468)">
-      <path d="M 419.9703,685.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1469">
-        <path d="M 565.6754,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1469)">
-      <path d="M 412.9626,685.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1470">
-        <path d="M 565.6754,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1470)">
-      <path d="M 405.9549,685.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1471">
-        <path d="M 565.6754,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1471)">
-      <path d="M 398.9472,685.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1472">
-        <path d="M 565.6754,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1472)">
-      <path d="M 391.9395,685.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1473">
-        <path d="M 565.6754,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1473)">
-      <path d="M 384.9318,685.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1474">
-        <path d="M 565.6754,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1474)">
-      <path d="M 384.9318,335.4233 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1475">
-        <path d="M 565.6754,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1475)">
-      <path d="M 384.9318,370.4618 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1476">
-        <path d="M 565.6754,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1476)">
-      <path d="M 384.9318,405.5004 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1477">
-        <path d="M 565.6754,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1477)">
-      <path d="M 384.9318,440.5389 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1478">
-        <path d="M 565.6754,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1478)">
-      <path d="M 384.9318,475.5775 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1479">
-        <path d="M 565.6754,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1479)">
-      <path d="M 384.9318,510.6160 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1480">
-        <path d="M 565.6754,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1480)">
-      <path d="M 384.9318,545.6545 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1481">
-        <path d="M 565.6754,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1481)">
-      <path d="M 384.9318,580.6931 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1482">
-        <path d="M 565.6754,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1482)">
-      <path d="M 384.9318,615.7316 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1483">
-        <path d="M 565.6754,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1483)">
-      <path d="M 384.9318,650.7701 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1484">
-        <path d="M 565.6754,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1484)">
-      <path d="M 384.9318,685.8087 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1485">
-        <path d="M 565.6754,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1485)">
-      <path d="M 735.3172,685.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1486">
-        <path d="M 565.6754,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1486)">
-      <path d="M 700.2786,685.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1487">
-        <path d="M 565.6754,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1487)">
-      <path d="M 665.2401,685.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1488">
-        <path d="M 565.6754,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1488)">
-      <path d="M 630.2016,685.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1489">
-        <path d="M 565.6754,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1489)">
-      <path d="M 595.1630,685.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1490">
-        <path d="M 565.6754,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1490)">
-      <path d="M 560.1245,685.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1491">
-        <path d="M 565.6754,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1491)">
-      <path d="M 525.0859,685.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1492">
-        <path d="M 565.6754,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1492)">
-      <path d="M 490.0474,685.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1493">
-        <path d="M 565.6754,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1493)">
-      <path d="M 455.0089,685.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1494">
-        <path d="M 565.6754,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1494)">
-      <path d="M 419.9703,685.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1495">
-        <path d="M 565.6754,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1495)">
-      <path d="M 384.9318,685.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.1" stroke="rgb(102,102,102)" stroke-width="2.98825135876461" fill="rgb(255,255,255)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1496">
-        <path d="M 565.6754,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1496)">
-      <path d="M 762.4720,746.2810 l -0.0000,-495.8678 h -491.9915 l -0.0000,495.8678 Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.1" stroke="rgb(102,102,102)" stroke-width="2.98825135876461" fill="rgb(76,76,76)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 565.6754,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1497">
-        <path d="M 457.4373,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1497)">
-      <path d="M 272.2368,495.7311 l -0.0000,-24.0505 h -96.2018 l -0.0000,24.0505 Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="21.86404754438049px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1498">
-        <path d="M 457.4373,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1498)">
-      <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,224.1358,483.7059)" stroke="none" text-anchor="middle">y = -2.0
-      </text>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1499">
-        <path d="M 457.4373,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1499)">
-      <path d="M 464.9487,635.8853 l -0.0000,-24.0505 h -96.2018 l -0.0000,24.0505 Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="21.86404754438049px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1500">
-        <path d="M 457.4373,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1500)">
-      <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,416.8478,623.8601)" stroke="none" text-anchor="middle">x = -1.0
-      </text>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="8.96475407629383" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1501">
-        <path d="M 457.4373,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1501)">
-      <path d="M 422.1036,481.5195 c 0.0000,-2.9027 -2.3531,-5.2558 -5.2558 -5.2558c -2.9027,-0.0000 -5.2558,2.3531 -5.2558 5.2558c -0.0000,2.9027 2.3531,5.2558 5.2558 5.2558c 2.9027,0.0000 5.2558,-2.3531 5.2558 -5.2558Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(51,51,51)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1502">
-        <path d="M 457.4373,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1502)">
-      <path d="M 416.8478,586.6351 v -105.1156 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(51,51,51)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1503">
-        <path d="M 457.4373,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1503)">
-      <path d="M 276.6937,481.5195 h 140.1542 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(153,153,153)" stroke-width="5.97650271752922" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1504">
-        <path d="M 457.4373,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1504)">
-      <path d="M 346.7707,201.2112 l 4.2046,24.7232 l 4.2046,23.7141 l 4.2046,22.7050 l 4.2046,21.6959 l 4.2046,20.6868 l 4.2046,19.6776 l 4.2046,18.6685 l 4.2046,17.6594 l 4.2046,16.6503 l 4.2046,15.6412 l 4.2046,14.6321 l 4.2046,13.6230 l 4.2046,12.6139 l 4.2046,11.6048 l 4.2046,10.5957 l 4.2046,9.5865 l 4.2046,8.5774 l 4.2046,7.5683 l 4.2046,6.5592 l 4.2046,5.5501 l 4.2046,4.5410 l 4.2046,3.5319 l 4.2046,2.5228 l 4.2046,1.5137 l 4.2046,0.5046 l 4.2046,-0.5046 l 4.2046,-1.5137 l 4.2046,-2.5228 l 4.2046,-3.5319 l 4.2046,-4.5410 l 4.2046,-5.5501 l 4.2046,-6.5592 l 4.2046,-7.5683 l 4.2046,-8.5774 l 4.2046,-9.5865 l 4.2046,-10.5957 l 4.2046,-11.6048 l 4.2046,-12.6139 l 4.2046,-13.6230 l 4.2046,-14.6321 l 4.2046,-15.6412 l 4.2046,-16.6503 l 4.2046,-17.6594 l 4.2046,-18.6685 l 4.2046,-19.6776 l 4.2046,-20.6868 l 4.2046,-21.6959 l 4.2046,-22.7050 l 4.2046,-23.7141 l 4.2046,-24.7232 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1505">
-        <path d="M 457.4373,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1505)">
-      <path d="M 542.0755,222.2343 l -0.0000,-36.0757 h -180.3784 l -0.0000,36.0757 Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="32.79607131657073px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1506">
-        <path d="M 457.4373,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1506)">
-      <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,451.8863,204.1965)" stroke="none" text-anchor="middle">y = x² - 3
-      </text>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1507">
-        <path d="M 457.4373,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1507)">
-      <path d="M 627.0790,586.6351 l -0.0000,-350.3854 h -350.3854 l -0.0000,350.3854 Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1508">
-        <path d="M 457.4373,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1508)">
-      <path d="M 276.6937,236.2497 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1509">
-        <path d="M 457.4373,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1509)">
-      <path d="M 276.6937,243.2575 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1510">
-        <path d="M 457.4373,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1510)">
-      <path d="M 276.6937,250.2652 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1511">
-        <path d="M 457.4373,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1511)">
-      <path d="M 276.6937,257.2729 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1512">
-        <path d="M 457.4373,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1512)">
-      <path d="M 276.6937,264.2806 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1513">
-        <path d="M 457.4373,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1513)">
-      <path d="M 276.6937,271.2883 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1514">
-        <path d="M 457.4373,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1514)">
-      <path d="M 276.6937,278.2960 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1515">
-        <path d="M 457.4373,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1515)">
-      <path d="M 276.6937,285.3037 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1516">
-        <path d="M 457.4373,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1516)">
-      <path d="M 276.6937,292.3114 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1517">
-        <path d="M 457.4373,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1517)">
-      <path d="M 276.6937,299.3191 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1518">
-        <path d="M 457.4373,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1518)">
-      <path d="M 276.6937,306.3268 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1519">
-        <path d="M 457.4373,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1519)">
-      <path d="M 276.6937,313.3345 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1520">
-        <path d="M 457.4373,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1520)">
-      <path d="M 276.6937,320.3422 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1521">
-        <path d="M 457.4373,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1521)">
-      <path d="M 276.6937,327.3499 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1522">
-        <path d="M 457.4373,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1522)">
-      <path d="M 276.6937,334.3577 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1523">
-        <path d="M 457.4373,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1523)">
-      <path d="M 276.6937,341.3654 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1524">
-        <path d="M 457.4373,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1524)">
-      <path d="M 276.6937,348.3731 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1525">
-        <path d="M 457.4373,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1525)">
-      <path d="M 276.6937,355.3808 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1526">
-        <path d="M 457.4373,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1526)">
-      <path d="M 276.6937,362.3885 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1527">
-        <path d="M 457.4373,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1527)">
-      <path d="M 276.6937,369.3962 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1528">
-        <path d="M 457.4373,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1528)">
-      <path d="M 276.6937,376.4039 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1529">
-        <path d="M 457.4373,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1529)">
-      <path d="M 276.6937,383.4116 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1530">
-        <path d="M 457.4373,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1530)">
-      <path d="M 276.6937,390.4193 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1531">
-        <path d="M 457.4373,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1531)">
-      <path d="M 276.6937,397.4270 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1532">
-        <path d="M 457.4373,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1532)">
-      <path d="M 276.6937,404.4347 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1533">
-        <path d="M 457.4373,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1533)">
-      <path d="M 276.6937,411.4424 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1534">
-        <path d="M 457.4373,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1534)">
-      <path d="M 276.6937,418.4501 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1535">
-        <path d="M 457.4373,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1535)">
-      <path d="M 276.6937,425.4579 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1536">
-        <path d="M 457.4373,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1536)">
-      <path d="M 276.6937,432.4656 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1537">
-        <path d="M 457.4373,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1537)">
-      <path d="M 276.6937,439.4733 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1538">
-        <path d="M 457.4373,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1538)">
-      <path d="M 276.6937,446.4810 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1539">
-        <path d="M 457.4373,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1539)">
-      <path d="M 276.6937,453.4887 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1540">
-        <path d="M 457.4373,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1540)">
-      <path d="M 276.6937,460.4964 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1541">
-        <path d="M 457.4373,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1541)">
-      <path d="M 276.6937,467.5041 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1542">
-        <path d="M 457.4373,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1542)">
-      <path d="M 276.6937,474.5118 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1543">
-        <path d="M 457.4373,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1543)">
-      <path d="M 276.6937,481.5195 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1544">
-        <path d="M 457.4373,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1544)">
-      <path d="M 276.6937,488.5272 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1545">
-        <path d="M 457.4373,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1545)">
-      <path d="M 276.6937,495.5349 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1546">
-        <path d="M 457.4373,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1546)">
-      <path d="M 276.6937,502.5426 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1547">
-        <path d="M 457.4373,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1547)">
-      <path d="M 276.6937,509.5503 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1548">
-        <path d="M 457.4373,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1548)">
-      <path d="M 276.6937,516.5581 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1549">
-        <path d="M 457.4373,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1549)">
-      <path d="M 276.6937,523.5658 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1550">
-        <path d="M 457.4373,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1550)">
-      <path d="M 276.6937,530.5735 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1551">
-        <path d="M 457.4373,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1551)">
-      <path d="M 276.6937,537.5812 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1552">
-        <path d="M 457.4373,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1552)">
-      <path d="M 276.6937,544.5889 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1553">
-        <path d="M 457.4373,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1553)">
-      <path d="M 276.6937,551.5966 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1554">
-        <path d="M 457.4373,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1554)">
-      <path d="M 276.6937,558.6043 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1555">
-        <path d="M 457.4373,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1555)">
-      <path d="M 276.6937,565.6120 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1556">
-        <path d="M 457.4373,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1556)">
-      <path d="M 276.6937,572.6197 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1557">
-        <path d="M 457.4373,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1557)">
-      <path d="M 276.6937,579.6274 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1558">
-        <path d="M 457.4373,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1558)">
-      <path d="M 276.6937,586.6351 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1559">
-        <path d="M 457.4373,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1559)">
-      <path d="M 627.0790,586.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1560">
-        <path d="M 457.4373,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1560)">
-      <path d="M 620.0713,586.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1561">
-        <path d="M 457.4373,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1561)">
-      <path d="M 613.0636,586.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1562">
-        <path d="M 457.4373,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1562)">
-      <path d="M 606.0559,586.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1563">
-        <path d="M 457.4373,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1563)">
-      <path d="M 599.0482,586.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1564">
-        <path d="M 457.4373,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1564)">
-      <path d="M 592.0405,586.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1565">
-        <path d="M 457.4373,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1565)">
-      <path d="M 585.0328,586.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1566">
-        <path d="M 457.4373,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1566)">
-      <path d="M 578.0251,586.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1567">
-        <path d="M 457.4373,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1567)">
-      <path d="M 571.0174,586.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1568">
-        <path d="M 457.4373,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1568)">
-      <path d="M 564.0097,586.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1569">
-        <path d="M 457.4373,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1569)">
-      <path d="M 557.0020,586.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1570">
-        <path d="M 457.4373,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1570)">
-      <path d="M 549.9942,586.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1571">
-        <path d="M 457.4373,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1571)">
-      <path d="M 542.9865,586.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1572">
-        <path d="M 457.4373,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1572)">
-      <path d="M 535.9788,586.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1573">
-        <path d="M 457.4373,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1573)">
-      <path d="M 528.9711,586.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1574">
-        <path d="M 457.4373,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1574)">
-      <path d="M 521.9634,586.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1575">
-        <path d="M 457.4373,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1575)">
-      <path d="M 514.9557,586.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1576">
-        <path d="M 457.4373,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1576)">
-      <path d="M 507.9480,586.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1577">
-        <path d="M 457.4373,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1577)">
-      <path d="M 500.9403,586.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1578">
-        <path d="M 457.4373,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1578)">
-      <path d="M 493.9326,586.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1579">
-        <path d="M 457.4373,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1579)">
-      <path d="M 486.9249,586.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1580">
-        <path d="M 457.4373,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1580)">
-      <path d="M 479.9172,586.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1581">
-        <path d="M 457.4373,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1581)">
-      <path d="M 472.9095,586.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1582">
-        <path d="M 457.4373,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1582)">
-      <path d="M 465.9018,586.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1583">
-        <path d="M 457.4373,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1583)">
-      <path d="M 458.8941,586.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1584">
-        <path d="M 457.4373,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1584)">
-      <path d="M 451.8863,586.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1585">
-        <path d="M 457.4373,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1585)">
-      <path d="M 444.8786,586.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1586">
-        <path d="M 457.4373,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1586)">
-      <path d="M 437.8709,586.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1587">
-        <path d="M 457.4373,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1587)">
-      <path d="M 430.8632,586.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1588">
-        <path d="M 457.4373,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1588)">
-      <path d="M 423.8555,586.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1589">
-        <path d="M 457.4373,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1589)">
-      <path d="M 416.8478,586.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1590">
-        <path d="M 457.4373,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1590)">
-      <path d="M 409.8401,586.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1591">
-        <path d="M 457.4373,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1591)">
-      <path d="M 402.8324,586.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1592">
-        <path d="M 457.4373,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1592)">
-      <path d="M 395.8247,586.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1593">
-        <path d="M 457.4373,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1593)">
-      <path d="M 388.8170,586.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1594">
-        <path d="M 457.4373,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1594)">
-      <path d="M 381.8093,586.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1595">
-        <path d="M 457.4373,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1595)">
-      <path d="M 374.8016,586.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1596">
-        <path d="M 457.4373,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1596)">
-      <path d="M 367.7939,586.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1597">
-        <path d="M 457.4373,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1597)">
-      <path d="M 360.7861,586.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1598">
-        <path d="M 457.4373,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1598)">
-      <path d="M 353.7784,586.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1599">
-        <path d="M 457.4373,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1599)">
-      <path d="M 346.7707,586.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1600">
-        <path d="M 457.4373,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1600)">
-      <path d="M 339.7630,586.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1601">
-        <path d="M 457.4373,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1601)">
-      <path d="M 332.7553,586.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1602">
-        <path d="M 457.4373,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1602)">
-      <path d="M 325.7476,586.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1603">
-        <path d="M 457.4373,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1603)">
-      <path d="M 318.7399,586.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1604">
-        <path d="M 457.4373,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1604)">
-      <path d="M 311.7322,586.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1605">
-        <path d="M 457.4373,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1605)">
-      <path d="M 304.7245,586.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1606">
-        <path d="M 457.4373,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1606)">
-      <path d="M 297.7168,586.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1607">
-        <path d="M 457.4373,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1607)">
-      <path d="M 290.7091,586.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1608">
-        <path d="M 457.4373,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1608)">
-      <path d="M 283.7014,586.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1609">
-        <path d="M 457.4373,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1609)">
-      <path d="M 276.6937,586.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1610">
-        <path d="M 457.4373,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1610)">
-      <path d="M 276.6937,236.2497 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1611">
-        <path d="M 457.4373,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1611)">
-      <path d="M 276.6937,271.2883 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1612">
-        <path d="M 457.4373,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1612)">
-      <path d="M 276.6937,306.3268 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1613">
-        <path d="M 457.4373,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1613)">
-      <path d="M 276.6937,341.3654 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1614">
-        <path d="M 457.4373,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1614)">
-      <path d="M 276.6937,376.4039 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1615">
-        <path d="M 457.4373,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1615)">
-      <path d="M 276.6937,411.4424 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1616">
-        <path d="M 457.4373,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1616)">
-      <path d="M 276.6937,446.4810 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1617">
-        <path d="M 457.4373,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1617)">
-      <path d="M 276.6937,481.5195 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1618">
-        <path d="M 457.4373,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1618)">
-      <path d="M 276.6937,516.5581 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1619">
-        <path d="M 457.4373,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1619)">
-      <path d="M 276.6937,551.5966 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1620">
-        <path d="M 457.4373,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1620)">
-      <path d="M 276.6937,586.6351 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1621">
-        <path d="M 457.4373,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1621)">
-      <path d="M 627.0790,586.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1622">
-        <path d="M 457.4373,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1622)">
-      <path d="M 592.0405,586.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1623">
-        <path d="M 457.4373,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1623)">
-      <path d="M 557.0020,586.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1624">
-        <path d="M 457.4373,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1624)">
-      <path d="M 521.9634,586.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1625">
-        <path d="M 457.4373,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1625)">
-      <path d="M 486.9249,586.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1626">
-        <path d="M 457.4373,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1626)">
-      <path d="M 451.8863,586.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1627">
-        <path d="M 457.4373,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1627)">
-      <path d="M 416.8478,586.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1628">
-        <path d="M 457.4373,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1628)">
-      <path d="M 381.8093,586.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1629">
-        <path d="M 457.4373,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1629)">
-      <path d="M 346.7707,586.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1630">
-        <path d="M 457.4373,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1630)">
-      <path d="M 311.7322,586.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1631">
-        <path d="M 457.4373,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1631)">
-      <path d="M 276.6937,586.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.1" stroke="rgb(102,102,102)" stroke-width="2.98825135876461" fill="rgb(255,255,255)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1632">
-        <path d="M 457.4373,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1632)">
-      <path d="M 654.2339,647.1074 l -0.0000,-495.8678 h -491.9915 l -0.0000,495.8678 Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.1" stroke="rgb(102,102,102)" stroke-width="2.98825135876461" fill="rgb(76,76,76)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 457.4373,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1633">
-        <path d="M 349.1992,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1633)">
-      <path d="M 163.9986,396.5576 l -0.0000,-24.0505 h -96.2018 l -0.0000,24.0505 Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="21.86404754438049px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1634">
-        <path d="M 349.1992,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1634)">
-      <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,115.8977,384.5324)" stroke="none" text-anchor="middle">y = -2.0
-      </text>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1635">
-        <path d="M 349.1992,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1635)">
-      <path d="M 356.7106,536.7117 l -0.0000,-24.0505 h -96.2018 l -0.0000,24.0505 Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="21.86404754438049px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1636">
-        <path d="M 349.1992,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1636)">
-      <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,308.6097,524.6865)" stroke="none" text-anchor="middle">x = -1.0
-      </text>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="8.96475407629383" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1637">
-        <path d="M 349.1992,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1637)">
-      <path d="M 313.8655,382.3460 c 0.0000,-2.9027 -2.3531,-5.2558 -5.2558 -5.2558c -2.9027,-0.0000 -5.2558,2.3531 -5.2558 5.2558c -0.0000,2.9027 2.3531,5.2558 5.2558 5.2558c 2.9027,0.0000 5.2558,-2.3531 5.2558 -5.2558Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(51,51,51)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1638">
-        <path d="M 349.1992,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1638)">
-      <path d="M 308.6097,487.4616 v -105.1156 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(51,51,51)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1639">
-        <path d="M 349.1992,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1639)">
-      <path d="M 168.4555,382.3460 h 140.1542 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(153,153,153)" stroke-width="5.97650271752922" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1640">
-        <path d="M 349.1992,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1640)">
-      <path d="M 238.5326,102.0377 l 4.2046,24.7232 l 4.2046,23.7141 l 4.2046,22.7050 l 4.2046,21.6959 l 4.2046,20.6868 l 4.2046,19.6776 l 4.2046,18.6685 l 4.2046,17.6594 l 4.2046,16.6503 l 4.2046,15.6412 l 4.2046,14.6321 l 4.2046,13.6230 l 4.2046,12.6139 l 4.2046,11.6048 l 4.2046,10.5957 l 4.2046,9.5865 l 4.2046,8.5774 l 4.2046,7.5683 l 4.2046,6.5592 l 4.2046,5.5501 l 4.2046,4.5410 l 4.2046,3.5319 l 4.2046,2.5228 l 4.2046,1.5137 l 4.2046,0.5046 l 4.2046,-0.5046 l 4.2046,-1.5137 l 4.2046,-2.5228 l 4.2046,-3.5319 l 4.2046,-4.5410 l 4.2046,-5.5501 l 4.2046,-6.5592 l 4.2046,-7.5683 l 4.2046,-8.5774 l 4.2046,-9.5865 l 4.2046,-10.5957 l 4.2046,-11.6048 l 4.2046,-12.6139 l 4.2046,-13.6230 l 4.2046,-14.6321 l 4.2046,-15.6412 l 4.2046,-16.6503 l 4.2046,-17.6594 l 4.2046,-18.6685 l 4.2046,-19.6776 l 4.2046,-20.6868 l 4.2046,-21.6959 l 4.2046,-22.7050 l 4.2046,-23.7141 l 4.2046,-24.7232 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1641">
-        <path d="M 349.1992,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1641)">
-      <path d="M 433.8374,123.0608 l -0.0000,-36.0757 h -180.3784 l -0.0000,36.0757 Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="32.79607131657073px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1642">
-        <path d="M 349.1992,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1642)">
-      <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,343.6482,105.0229)" stroke="none" text-anchor="middle">y = x² - 3
-      </text>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1643">
-        <path d="M 349.1992,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1643)">
-      <path d="M 518.8409,487.4616 l -0.0000,-350.3854 h -350.3854 l -0.0000,350.3854 Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1644">
-        <path d="M 349.1992,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1644)">
-      <path d="M 168.4555,137.0762 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1645">
-        <path d="M 349.1992,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1645)">
-      <path d="M 168.4555,144.0839 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1646">
-        <path d="M 349.1992,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1646)">
-      <path d="M 168.4555,151.0916 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1647">
-        <path d="M 349.1992,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1647)">
-      <path d="M 168.4555,158.0993 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1648">
-        <path d="M 349.1992,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1648)">
-      <path d="M 168.4555,165.1070 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1649">
-        <path d="M 349.1992,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1649)">
-      <path d="M 168.4555,172.1147 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1650">
-        <path d="M 349.1992,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1650)">
-      <path d="M 168.4555,179.1224 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1651">
-        <path d="M 349.1992,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1651)">
-      <path d="M 168.4555,186.1301 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1652">
-        <path d="M 349.1992,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1652)">
-      <path d="M 168.4555,193.1379 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1653">
-        <path d="M 349.1992,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1653)">
-      <path d="M 168.4555,200.1456 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1654">
-        <path d="M 349.1992,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1654)">
-      <path d="M 168.4555,207.1533 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1655">
-        <path d="M 349.1992,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1655)">
-      <path d="M 168.4555,214.1610 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1656">
-        <path d="M 349.1992,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1656)">
-      <path d="M 168.4555,221.1687 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1657">
-        <path d="M 349.1992,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1657)">
-      <path d="M 168.4555,228.1764 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1658">
-        <path d="M 349.1992,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1658)">
-      <path d="M 168.4555,235.1841 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1659">
-        <path d="M 349.1992,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1659)">
-      <path d="M 168.4555,242.1918 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1660">
-        <path d="M 349.1992,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1660)">
-      <path d="M 168.4555,249.1995 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1661">
-        <path d="M 349.1992,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1661)">
-      <path d="M 168.4555,256.2072 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1662">
-        <path d="M 349.1992,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1662)">
-      <path d="M 168.4555,263.2149 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1663">
-        <path d="M 349.1992,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1663)">
-      <path d="M 168.4555,270.2226 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1664">
-        <path d="M 349.1992,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1664)">
-      <path d="M 168.4555,277.2303 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1665">
-        <path d="M 349.1992,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1665)">
-      <path d="M 168.4555,284.2381 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1666">
-        <path d="M 349.1992,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1666)">
-      <path d="M 168.4555,291.2458 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1667">
-        <path d="M 349.1992,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1667)">
-      <path d="M 168.4555,298.2535 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1668">
-        <path d="M 349.1992,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1668)">
-      <path d="M 168.4555,305.2612 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1669">
-        <path d="M 349.1992,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1669)">
-      <path d="M 168.4555,312.2689 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1670">
-        <path d="M 349.1992,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1670)">
-      <path d="M 168.4555,319.2766 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1671">
-        <path d="M 349.1992,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1671)">
-      <path d="M 168.4555,326.2843 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1672">
-        <path d="M 349.1992,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1672)">
-      <path d="M 168.4555,333.2920 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1673">
-        <path d="M 349.1992,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1673)">
-      <path d="M 168.4555,340.2997 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1674">
-        <path d="M 349.1992,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1674)">
-      <path d="M 168.4555,347.3074 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1675">
-        <path d="M 349.1992,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1675)">
-      <path d="M 168.4555,354.3151 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1676">
-        <path d="M 349.1992,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1676)">
-      <path d="M 168.4555,361.3228 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1677">
-        <path d="M 349.1992,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1677)">
-      <path d="M 168.4555,368.3305 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1678">
-        <path d="M 349.1992,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1678)">
-      <path d="M 168.4555,375.3383 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1679">
-        <path d="M 349.1992,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1679)">
-      <path d="M 168.4555,382.3460 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1680">
-        <path d="M 349.1992,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1680)">
-      <path d="M 168.4555,389.3537 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1681">
-        <path d="M 349.1992,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1681)">
-      <path d="M 168.4555,396.3614 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1682">
-        <path d="M 349.1992,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1682)">
-      <path d="M 168.4555,403.3691 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1683">
-        <path d="M 349.1992,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1683)">
-      <path d="M 168.4555,410.3768 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1684">
-        <path d="M 349.1992,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1684)">
-      <path d="M 168.4555,417.3845 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1685">
-        <path d="M 349.1992,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1685)">
-      <path d="M 168.4555,424.3922 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1686">
-        <path d="M 349.1992,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1686)">
-      <path d="M 168.4555,431.3999 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1687">
-        <path d="M 349.1992,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1687)">
-      <path d="M 168.4555,438.4076 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1688">
-        <path d="M 349.1992,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1688)">
-      <path d="M 168.4555,445.4153 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1689">
-        <path d="M 349.1992,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1689)">
-      <path d="M 168.4555,452.4230 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1690">
-        <path d="M 349.1992,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1690)">
-      <path d="M 168.4555,459.4307 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1691">
-        <path d="M 349.1992,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1691)">
-      <path d="M 168.4555,466.4385 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1692">
-        <path d="M 349.1992,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1692)">
-      <path d="M 168.4555,473.4462 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1693">
-        <path d="M 349.1992,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1693)">
-      <path d="M 168.4555,480.4539 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1694">
-        <path d="M 349.1992,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1694)">
-      <path d="M 168.4555,487.4616 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1695">
-        <path d="M 349.1992,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1695)">
-      <path d="M 518.8409,487.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1696">
-        <path d="M 349.1992,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1696)">
-      <path d="M 511.8332,487.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1697">
-        <path d="M 349.1992,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1697)">
-      <path d="M 504.8255,487.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1698">
-        <path d="M 349.1992,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1698)">
-      <path d="M 497.8178,487.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1699">
-        <path d="M 349.1992,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1699)">
-      <path d="M 490.8101,487.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1700">
-        <path d="M 349.1992,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1700)">
-      <path d="M 483.8024,487.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1701">
-        <path d="M 349.1992,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1701)">
-      <path d="M 476.7947,487.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1702">
-        <path d="M 349.1992,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1702)">
-      <path d="M 469.7869,487.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1703">
-        <path d="M 349.1992,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1703)">
-      <path d="M 462.7792,487.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1704">
-        <path d="M 349.1992,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1704)">
-      <path d="M 455.7715,487.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1705">
-        <path d="M 349.1992,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1705)">
-      <path d="M 448.7638,487.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1706">
-        <path d="M 349.1992,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1706)">
-      <path d="M 441.7561,487.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1707">
-        <path d="M 349.1992,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1707)">
-      <path d="M 434.7484,487.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1708">
-        <path d="M 349.1992,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1708)">
-      <path d="M 427.7407,487.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1709">
-        <path d="M 349.1992,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1709)">
-      <path d="M 420.7330,487.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1710">
-        <path d="M 349.1992,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1710)">
-      <path d="M 413.7253,487.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1711">
-        <path d="M 349.1992,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1711)">
-      <path d="M 406.7176,487.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1712">
-        <path d="M 349.1992,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1712)">
-      <path d="M 399.7099,487.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1713">
-        <path d="M 349.1992,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1713)">
-      <path d="M 392.7022,487.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1714">
-        <path d="M 349.1992,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1714)">
-      <path d="M 385.6945,487.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1715">
-        <path d="M 349.1992,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1715)">
-      <path d="M 378.6867,487.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1716">
-        <path d="M 349.1992,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1716)">
-      <path d="M 371.6790,487.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1717">
-        <path d="M 349.1992,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1717)">
-      <path d="M 364.6713,487.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1718">
-        <path d="M 349.1992,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1718)">
-      <path d="M 357.6636,487.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1719">
-        <path d="M 349.1992,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1719)">
-      <path d="M 350.6559,487.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1720">
-        <path d="M 349.1992,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1720)">
-      <path d="M 343.6482,487.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1721">
-        <path d="M 349.1992,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1721)">
-      <path d="M 336.6405,487.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1722">
-        <path d="M 349.1992,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1722)">
-      <path d="M 329.6328,487.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1723">
-        <path d="M 349.1992,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1723)">
-      <path d="M 322.6251,487.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1724">
-        <path d="M 349.1992,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1724)">
-      <path d="M 315.6174,487.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1725">
-        <path d="M 349.1992,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1725)">
-      <path d="M 308.6097,487.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1726">
-        <path d="M 349.1992,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1726)">
-      <path d="M 301.6020,487.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1727">
-        <path d="M 349.1992,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1727)">
-      <path d="M 294.5943,487.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1728">
-        <path d="M 349.1992,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1728)">
-      <path d="M 287.5865,487.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1729">
-        <path d="M 349.1992,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1729)">
-      <path d="M 280.5788,487.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1730">
-        <path d="M 349.1992,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1730)">
-      <path d="M 273.5711,487.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1731">
-        <path d="M 349.1992,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1731)">
-      <path d="M 266.5634,487.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1732">
-        <path d="M 349.1992,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1732)">
-      <path d="M 259.5557,487.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1733">
-        <path d="M 349.1992,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1733)">
-      <path d="M 252.5480,487.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1734">
-        <path d="M 349.1992,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1734)">
-      <path d="M 245.5403,487.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1735">
-        <path d="M 349.1992,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1735)">
-      <path d="M 238.5326,487.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1736">
-        <path d="M 349.1992,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1736)">
-      <path d="M 231.5249,487.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1737">
-        <path d="M 349.1992,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1737)">
-      <path d="M 224.5172,487.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1738">
-        <path d="M 349.1992,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1738)">
-      <path d="M 217.5095,487.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1739">
-        <path d="M 349.1992,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1739)">
-      <path d="M 210.5018,487.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1740">
-        <path d="M 349.1992,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1740)">
-      <path d="M 203.4941,487.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1741">
-        <path d="M 349.1992,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1741)">
-      <path d="M 196.4863,487.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1742">
-        <path d="M 349.1992,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1742)">
-      <path d="M 189.4786,487.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1743">
-        <path d="M 349.1992,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1743)">
-      <path d="M 182.4709,487.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1744">
-        <path d="M 349.1992,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1744)">
-      <path d="M 175.4632,487.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1745">
-        <path d="M 349.1992,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1745)">
-      <path d="M 168.4555,487.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1746">
-        <path d="M 349.1992,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1746)">
-      <path d="M 168.4555,137.0762 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1747">
-        <path d="M 349.1992,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1747)">
-      <path d="M 168.4555,172.1147 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1748">
-        <path d="M 349.1992,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1748)">
-      <path d="M 168.4555,207.1533 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1749">
-        <path d="M 349.1992,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1749)">
-      <path d="M 168.4555,242.1918 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1750">
-        <path d="M 349.1992,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1750)">
-      <path d="M 168.4555,277.2303 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1751">
-        <path d="M 349.1992,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1751)">
-      <path d="M 168.4555,312.2689 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1752">
-        <path d="M 349.1992,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1752)">
-      <path d="M 168.4555,347.3074 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1753">
-        <path d="M 349.1992,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1753)">
-      <path d="M 168.4555,382.3460 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1754">
-        <path d="M 349.1992,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1754)">
-      <path d="M 168.4555,417.3845 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1755">
-        <path d="M 349.1992,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1755)">
-      <path d="M 168.4555,452.4230 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1756">
-        <path d="M 349.1992,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1756)">
-      <path d="M 168.4555,487.4616 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1757">
-        <path d="M 349.1992,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1757)">
-      <path d="M 518.8409,487.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1758">
-        <path d="M 349.1992,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1758)">
-      <path d="M 483.8024,487.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1759">
-        <path d="M 349.1992,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1759)">
-      <path d="M 448.7638,487.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1760">
-        <path d="M 349.1992,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1760)">
-      <path d="M 413.7253,487.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1761">
-        <path d="M 349.1992,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1761)">
-      <path d="M 378.6867,487.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1762">
-        <path d="M 349.1992,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1762)">
-      <path d="M 343.6482,487.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1763">
-        <path d="M 349.1992,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1763)">
-      <path d="M 308.6097,487.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1764">
-        <path d="M 349.1992,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1764)">
-      <path d="M 273.5711,487.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1765">
-        <path d="M 349.1992,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1765)">
-      <path d="M 238.5326,487.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1766">
-        <path d="M 349.1992,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1766)">
-      <path d="M 203.4941,487.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1767">
-        <path d="M 349.1992,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1767)">
-      <path d="M 168.4555,487.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.1" stroke="rgb(102,102,102)" stroke-width="2.98825135876461" fill="rgb(255,255,255)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1768">
-        <path d="M 349.1992,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1768)">
-      <path d="M 545.9958,547.9339 l -0.0000,-495.8678 h -491.9915 l -0.0000,495.8678 Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.1" stroke="rgb(102,102,102)" stroke-width="2.98825135876461" fill="rgb(76,76,76)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 349.1992,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1769">
-        <path d="M 240.9610,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1769)">
-      <path d="M 55.7605,297.3840 l -0.0000,-24.0505 h -96.2018 l -0.0000,24.0505 Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="21.86404754438049px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1770">
-        <path d="M 240.9610,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1770)">
-      <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,7.6596,285.3588)" stroke="none" text-anchor="middle">y = -2.0
-      </text>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1771">
-        <path d="M 240.9610,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1771)">
-      <path d="M 248.4724,437.5382 l -0.0000,-24.0505 h -96.2018 l -0.0000,24.0505 Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="21.86404754438049px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1772">
-        <path d="M 240.9610,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1772)">
-      <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,200.3715,425.5130)" stroke="none" text-anchor="middle">x = -1.0
-      </text>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="8.96475407629383" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1773">
-        <path d="M 240.9610,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1773)">
-      <path d="M 205.6273,283.1724 c 0.0000,-2.9027 -2.3531,-5.2558 -5.2558 -5.2558c -2.9027,-0.0000 -5.2558,2.3531 -5.2558 5.2558c -0.0000,2.9027 2.3531,5.2558 5.2558 5.2558c 2.9027,0.0000 5.2558,-2.3531 5.2558 -5.2558Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(51,51,51)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1774">
-        <path d="M 240.9610,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1774)">
-      <path d="M 200.3715,388.2880 v -105.1156 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(51,51,51)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1775">
-        <path d="M 240.9610,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1775)">
-      <path d="M 60.2174,283.1724 h 140.1542 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(153,153,153)" stroke-width="5.97650271752922" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1776">
-        <path d="M 240.9610,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1776)">
-      <path d="M 130.2945,2.8641 l 4.2046,24.7232 l 4.2046,23.7141 l 4.2046,22.7050 l 4.2046,21.6959 l 4.2046,20.6868 l 4.2046,19.6776 l 4.2046,18.6685 l 4.2046,17.6594 l 4.2046,16.6503 l 4.2046,15.6412 l 4.2046,14.6321 l 4.2046,13.6230 l 4.2046,12.6139 l 4.2046,11.6048 l 4.2046,10.5957 l 4.2046,9.5865 l 4.2046,8.5774 l 4.2046,7.5683 l 4.2046,6.5592 l 4.2046,5.5501 l 4.2046,4.5410 l 4.2046,3.5319 l 4.2046,2.5228 l 4.2046,1.5137 l 4.2046,0.5046 l 4.2046,-0.5046 l 4.2046,-1.5137 l 4.2046,-2.5228 l 4.2046,-3.5319 l 4.2046,-4.5410 l 4.2046,-5.5501 l 4.2046,-6.5592 l 4.2046,-7.5683 l 4.2046,-8.5774 l 4.2046,-9.5865 l 4.2046,-10.5957 l 4.2046,-11.6048 l 4.2046,-12.6139 l 4.2046,-13.6230 l 4.2046,-14.6321 l 4.2046,-15.6412 l 4.2046,-16.6503 l 4.2046,-17.6594 l 4.2046,-18.6685 l 4.2046,-19.6776 l 4.2046,-20.6868 l 4.2046,-21.6959 l 4.2046,-22.7050 l 4.2046,-23.7141 l 4.2046,-24.7232 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1777">
-        <path d="M 240.9610,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1777)">
-      <path d="M 325.5993,23.8872 l -0.0000,-36.0757 h -180.3784 l -0.0000,36.0757 Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="32.79607131657073px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1778">
-        <path d="M 240.9610,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1778)">
-      <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,235.4101,5.8494)" stroke="none" text-anchor="middle">y = x² - 3
-      </text>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1779">
-        <path d="M 240.9610,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1779)">
-      <path d="M 410.6028,388.2880 l -0.0000,-350.3854 h -350.3854 l -0.0000,350.3854 Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1780">
-        <path d="M 240.9610,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1780)">
-      <path d="M 60.2174,37.9026 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1781">
-        <path d="M 240.9610,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1781)">
-      <path d="M 60.2174,44.9103 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1782">
-        <path d="M 240.9610,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1782)">
-      <path d="M 60.2174,51.9181 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1783">
-        <path d="M 240.9610,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1783)">
-      <path d="M 60.2174,58.9258 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1784">
-        <path d="M 240.9610,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1784)">
-      <path d="M 60.2174,65.9335 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1785">
-        <path d="M 240.9610,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1785)">
-      <path d="M 60.2174,72.9412 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1786">
-        <path d="M 240.9610,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1786)">
-      <path d="M 60.2174,79.9489 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1787">
-        <path d="M 240.9610,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1787)">
-      <path d="M 60.2174,86.9566 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1788">
-        <path d="M 240.9610,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1788)">
-      <path d="M 60.2174,93.9643 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1789">
-        <path d="M 240.9610,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1789)">
-      <path d="M 60.2174,100.9720 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1790">
-        <path d="M 240.9610,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1790)">
-      <path d="M 60.2174,107.9797 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1791">
-        <path d="M 240.9610,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1791)">
-      <path d="M 60.2174,114.9874 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1792">
-        <path d="M 240.9610,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1792)">
-      <path d="M 60.2174,121.9951 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1793">
-        <path d="M 240.9610,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1793)">
-      <path d="M 60.2174,129.0028 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1794">
-        <path d="M 240.9610,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1794)">
-      <path d="M 60.2174,136.0105 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1795">
-        <path d="M 240.9610,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1795)">
-      <path d="M 60.2174,143.0183 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1796">
-        <path d="M 240.9610,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1796)">
-      <path d="M 60.2174,150.0260 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1797">
-        <path d="M 240.9610,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1797)">
-      <path d="M 60.2174,157.0337 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1798">
-        <path d="M 240.9610,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1798)">
-      <path d="M 60.2174,164.0414 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1799">
-        <path d="M 240.9610,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1799)">
-      <path d="M 60.2174,171.0491 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1800">
-        <path d="M 240.9610,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1800)">
-      <path d="M 60.2174,178.0568 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1801">
-        <path d="M 240.9610,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1801)">
-      <path d="M 60.2174,185.0645 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1802">
-        <path d="M 240.9610,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1802)">
-      <path d="M 60.2174,192.0722 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1803">
-        <path d="M 240.9610,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1803)">
-      <path d="M 60.2174,199.0799 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1804">
-        <path d="M 240.9610,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1804)">
-      <path d="M 60.2174,206.0876 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1805">
-        <path d="M 240.9610,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1805)">
-      <path d="M 60.2174,213.0953 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1806">
-        <path d="M 240.9610,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1806)">
-      <path d="M 60.2174,220.1030 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1807">
-        <path d="M 240.9610,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1807)">
-      <path d="M 60.2174,227.1107 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1808">
-        <path d="M 240.9610,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1808)">
-      <path d="M 60.2174,234.1185 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1809">
-        <path d="M 240.9610,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1809)">
-      <path d="M 60.2174,241.1262 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1810">
-        <path d="M 240.9610,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1810)">
-      <path d="M 60.2174,248.1339 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1811">
-        <path d="M 240.9610,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1811)">
-      <path d="M 60.2174,255.1416 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1812">
-        <path d="M 240.9610,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1812)">
-      <path d="M 60.2174,262.1493 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1813">
-        <path d="M 240.9610,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1813)">
-      <path d="M 60.2174,269.1570 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1814">
-        <path d="M 240.9610,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1814)">
-      <path d="M 60.2174,276.1647 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1815">
-        <path d="M 240.9610,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1815)">
-      <path d="M 60.2174,283.1724 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1816">
-        <path d="M 240.9610,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1816)">
-      <path d="M 60.2174,290.1801 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1817">
-        <path d="M 240.9610,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1817)">
-      <path d="M 60.2174,297.1878 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1818">
-        <path d="M 240.9610,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1818)">
-      <path d="M 60.2174,304.1955 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1819">
-        <path d="M 240.9610,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1819)">
-      <path d="M 60.2174,311.2032 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1820">
-        <path d="M 240.9610,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1820)">
-      <path d="M 60.2174,318.2109 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1821">
-        <path d="M 240.9610,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1821)">
-      <path d="M 60.2174,325.2187 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1822">
-        <path d="M 240.9610,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1822)">
-      <path d="M 60.2174,332.2264 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1823">
-        <path d="M 240.9610,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1823)">
-      <path d="M 60.2174,339.2341 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1824">
-        <path d="M 240.9610,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1824)">
-      <path d="M 60.2174,346.2418 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1825">
-        <path d="M 240.9610,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1825)">
-      <path d="M 60.2174,353.2495 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1826">
-        <path d="M 240.9610,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1826)">
-      <path d="M 60.2174,360.2572 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1827">
-        <path d="M 240.9610,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1827)">
-      <path d="M 60.2174,367.2649 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1828">
-        <path d="M 240.9610,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1828)">
-      <path d="M 60.2174,374.2726 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1829">
-        <path d="M 240.9610,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1829)">
-      <path d="M 60.2174,381.2803 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1830">
-        <path d="M 240.9610,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1830)">
-      <path d="M 60.2174,388.2880 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1831">
-        <path d="M 240.9610,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1831)">
-      <path d="M 410.6028,388.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1832">
-        <path d="M 240.9610,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1832)">
-      <path d="M 403.5951,388.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1833">
-        <path d="M 240.9610,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1833)">
-      <path d="M 396.5873,388.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1834">
-        <path d="M 240.9610,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1834)">
-      <path d="M 389.5796,388.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1835">
-        <path d="M 240.9610,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1835)">
-      <path d="M 382.5719,388.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1836">
-        <path d="M 240.9610,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1836)">
-      <path d="M 375.5642,388.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1837">
-        <path d="M 240.9610,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1837)">
-      <path d="M 368.5565,388.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1838">
-        <path d="M 240.9610,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1838)">
-      <path d="M 361.5488,388.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1839">
-        <path d="M 240.9610,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1839)">
-      <path d="M 354.5411,388.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1840">
-        <path d="M 240.9610,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1840)">
-      <path d="M 347.5334,388.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1841">
-        <path d="M 240.9610,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1841)">
-      <path d="M 340.5257,388.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1842">
-        <path d="M 240.9610,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1842)">
-      <path d="M 333.5180,388.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1843">
-        <path d="M 240.9610,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1843)">
-      <path d="M 326.5103,388.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1844">
-        <path d="M 240.9610,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1844)">
-      <path d="M 319.5026,388.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1845">
-        <path d="M 240.9610,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1845)">
-      <path d="M 312.4949,388.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1846">
-        <path d="M 240.9610,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1846)">
-      <path d="M 305.4871,388.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1847">
-        <path d="M 240.9610,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1847)">
-      <path d="M 298.4794,388.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1848">
-        <path d="M 240.9610,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1848)">
-      <path d="M 291.4717,388.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1849">
-        <path d="M 240.9610,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1849)">
-      <path d="M 284.4640,388.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1850">
-        <path d="M 240.9610,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1850)">
-      <path d="M 277.4563,388.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1851">
-        <path d="M 240.9610,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1851)">
-      <path d="M 270.4486,388.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1852">
-        <path d="M 240.9610,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1852)">
-      <path d="M 263.4409,388.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1853">
-        <path d="M 240.9610,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1853)">
-      <path d="M 256.4332,388.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1854">
-        <path d="M 240.9610,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1854)">
-      <path d="M 249.4255,388.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1855">
-        <path d="M 240.9610,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1855)">
-      <path d="M 242.4178,388.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1856">
-        <path d="M 240.9610,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1856)">
-      <path d="M 235.4101,388.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1857">
-        <path d="M 240.9610,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1857)">
-      <path d="M 228.4024,388.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1858">
-        <path d="M 240.9610,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1858)">
-      <path d="M 221.3947,388.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1859">
-        <path d="M 240.9610,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1859)">
-      <path d="M 214.3869,388.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1860">
-        <path d="M 240.9610,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1860)">
-      <path d="M 207.3792,388.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1861">
-        <path d="M 240.9610,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1861)">
-      <path d="M 200.3715,388.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1862">
-        <path d="M 240.9610,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1862)">
-      <path d="M 193.3638,388.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1863">
-        <path d="M 240.9610,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1863)">
-      <path d="M 186.3561,388.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1864">
-        <path d="M 240.9610,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1864)">
-      <path d="M 179.3484,388.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1865">
-        <path d="M 240.9610,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1865)">
-      <path d="M 172.3407,388.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1866">
-        <path d="M 240.9610,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1866)">
-      <path d="M 165.3330,388.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1867">
-        <path d="M 240.9610,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1867)">
-      <path d="M 158.3253,388.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1868">
-        <path d="M 240.9610,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1868)">
-      <path d="M 151.3176,388.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1869">
-        <path d="M 240.9610,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1869)">
-      <path d="M 144.3099,388.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1870">
-        <path d="M 240.9610,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1870)">
-      <path d="M 137.3022,388.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1871">
-        <path d="M 240.9610,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1871)">
-      <path d="M 130.2945,388.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1872">
-        <path d="M 240.9610,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1872)">
-      <path d="M 123.2868,388.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1873">
-        <path d="M 240.9610,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1873)">
-      <path d="M 116.2790,388.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1874">
-        <path d="M 240.9610,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1874)">
-      <path d="M 109.2713,388.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1875">
-        <path d="M 240.9610,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1875)">
-      <path d="M 102.2636,388.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1876">
-        <path d="M 240.9610,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1876)">
-      <path d="M 95.2559,388.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1877">
-        <path d="M 240.9610,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1877)">
-      <path d="M 88.2482,388.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1878">
-        <path d="M 240.9610,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1878)">
-      <path d="M 81.2405,388.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1879">
-        <path d="M 240.9610,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1879)">
-      <path d="M 74.2328,388.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1880">
-        <path d="M 240.9610,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1880)">
-      <path d="M 67.2251,388.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1881">
-        <path d="M 240.9610,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1881)">
-      <path d="M 60.2174,388.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1882">
-        <path d="M 240.9610,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1882)">
-      <path d="M 60.2174,37.9026 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1883">
-        <path d="M 240.9610,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1883)">
-      <path d="M 60.2174,72.9412 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1884">
-        <path d="M 240.9610,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1884)">
-      <path d="M 60.2174,107.9797 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1885">
-        <path d="M 240.9610,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1885)">
-      <path d="M 60.2174,143.0183 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1886">
-        <path d="M 240.9610,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1886)">
-      <path d="M 60.2174,178.0568 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1887">
-        <path d="M 240.9610,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1887)">
-      <path d="M 60.2174,213.0953 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1888">
-        <path d="M 240.9610,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1888)">
-      <path d="M 60.2174,248.1339 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1889">
-        <path d="M 240.9610,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1889)">
-      <path d="M 60.2174,283.1724 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1890">
-        <path d="M 240.9610,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1890)">
-      <path d="M 60.2174,318.2109 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1891">
-        <path d="M 240.9610,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1891)">
-      <path d="M 60.2174,353.2495 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1892">
-        <path d="M 240.9610,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1892)">
-      <path d="M 60.2174,388.2880 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1893">
-        <path d="M 240.9610,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1893)">
-      <path d="M 410.6028,388.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1894">
-        <path d="M 240.9610,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1894)">
-      <path d="M 375.5642,388.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1895">
-        <path d="M 240.9610,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1895)">
-      <path d="M 340.5257,388.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1896">
-        <path d="M 240.9610,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1896)">
-      <path d="M 305.4871,388.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1897">
-        <path d="M 240.9610,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1897)">
-      <path d="M 270.4486,388.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1898">
-        <path d="M 240.9610,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1898)">
-      <path d="M 235.4101,388.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1899">
-        <path d="M 240.9610,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1899)">
-      <path d="M 200.3715,388.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1900">
-        <path d="M 240.9610,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1900)">
-      <path d="M 165.3330,388.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1901">
-        <path d="M 240.9610,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1901)">
-      <path d="M 130.2945,388.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1902">
-        <path d="M 240.9610,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1902)">
-      <path d="M 95.2559,388.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1903">
-        <path d="M 240.9610,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1903)">
-      <path d="M 60.2174,388.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.1" stroke="rgb(102,102,102)" stroke-width="2.98825135876461" fill="rgb(255,255,255)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1904">
-        <path d="M 240.9610,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1904)">
-      <path d="M 437.7576,448.7603 l -0.0000,-495.8678 h -491.9915 l -0.0000,495.8678 Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.1" stroke="rgb(102,102,102)" stroke-width="2.98825135876461" fill="rgb(76,76,76)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 240.9610,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1905">
-        <path d="M 132.7229,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1905)">
-      <path d="M -52.4777,198.2105 l -0.0000,-24.0505 h -96.2018 l -0.0000,24.0505 Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="21.86404754438049px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1906">
-        <path d="M 132.7229,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1906)">
-      <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,-100.5786,186.1853)" stroke="none" text-anchor="middle">y = -2.0
-      </text>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1907">
-        <path d="M 132.7229,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1907)">
-      <path d="M 140.2343,338.3646 l -0.0000,-24.0505 h -96.2018 l -0.0000,24.0505 Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="21.86404754438049px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1908">
-        <path d="M 132.7229,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1908)">
-      <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,92.1334,326.3394)" stroke="none" text-anchor="middle">x = -1.0
-      </text>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="8.96475407629383" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1909">
-        <path d="M 132.7229,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1909)">
-      <path d="M 97.3892,183.9989 c 0.0000,-2.9027 -2.3531,-5.2558 -5.2558 -5.2558c -2.9027,-0.0000 -5.2558,2.3531 -5.2558 5.2558c -0.0000,2.9027 2.3531,5.2558 5.2558 5.2558c 2.9027,0.0000 5.2558,-2.3531 5.2558 -5.2558Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(51,51,51)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1910">
-        <path d="M 132.7229,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1910)">
-      <path d="M 92.1334,289.1145 v -105.1156 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(51,51,51)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1911">
-        <path d="M 132.7229,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1911)">
-      <path d="M -48.0208,183.9989 h 140.1542 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(153,153,153)" stroke-width="5.97650271752922" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1912">
-        <path d="M 132.7229,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1912)">
-      <path d="M 22.0563,-96.3094 l 4.2046,24.7232 l 4.2046,23.7141 l 4.2046,22.7050 l 4.2046,21.6959 l 4.2046,20.6868 l 4.2046,19.6776 l 4.2046,18.6685 l 4.2046,17.6594 l 4.2046,16.6503 l 4.2046,15.6412 l 4.2046,14.6321 l 4.2046,13.6230 l 4.2046,12.6139 l 4.2046,11.6048 l 4.2046,10.5957 l 4.2046,9.5865 l 4.2046,8.5774 l 4.2046,7.5683 l 4.2046,6.5592 l 4.2046,5.5501 l 4.2046,4.5410 l 4.2046,3.5319 l 4.2046,2.5228 l 4.2046,1.5137 l 4.2046,0.5046 l 4.2046,-0.5046 l 4.2046,-1.5137 l 4.2046,-2.5228 l 4.2046,-3.5319 l 4.2046,-4.5410 l 4.2046,-5.5501 l 4.2046,-6.5592 l 4.2046,-7.5683 l 4.2046,-8.5774 l 4.2046,-9.5865 l 4.2046,-10.5957 l 4.2046,-11.6048 l 4.2046,-12.6139 l 4.2046,-13.6230 l 4.2046,-14.6321 l 4.2046,-15.6412 l 4.2046,-16.6503 l 4.2046,-17.6594 l 4.2046,-18.6685 l 4.2046,-19.6776 l 4.2046,-20.6868 l 4.2046,-21.6959 l 4.2046,-22.7050 l 4.2046,-23.7141 l 4.2046,-24.7232 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1913">
-        <path d="M 132.7229,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1913)">
-      <path d="M 217.3611,-75.2863 l -0.0000,-36.0757 h -180.3784 l -0.0000,36.0757 Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="32.79607131657073px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1914">
-        <path d="M 132.7229,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1914)">
-      <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,127.1719,-93.3242)" stroke="none" text-anchor="middle">y = x² - 3
-      </text>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1915">
-        <path d="M 132.7229,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1915)">
-      <path d="M 302.3646,289.1145 l -0.0000,-350.3854 h -350.3854 l -0.0000,350.3854 Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1916">
-        <path d="M 132.7229,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1916)">
-      <path d="M -48.0208,-61.2709 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1917">
-        <path d="M 132.7229,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1917)">
-      <path d="M -48.0208,-54.2632 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1918">
-        <path d="M 132.7229,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1918)">
-      <path d="M -48.0208,-47.2555 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1919">
-        <path d="M 132.7229,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1919)">
-      <path d="M -48.0208,-40.2478 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1920">
-        <path d="M 132.7229,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1920)">
-      <path d="M -48.0208,-33.2401 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1921">
-        <path d="M 132.7229,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1921)">
-      <path d="M -48.0208,-26.2324 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1922">
-        <path d="M 132.7229,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1922)">
-      <path d="M -48.0208,-19.2247 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1923">
-        <path d="M 132.7229,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1923)">
-      <path d="M -48.0208,-12.2170 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1924">
-        <path d="M 132.7229,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1924)">
-      <path d="M -48.0208,-5.2093 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1925">
-        <path d="M 132.7229,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1925)">
-      <path d="M -48.0208,1.7985 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1926">
-        <path d="M 132.7229,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1926)">
-      <path d="M -48.0208,8.8062 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1927">
-        <path d="M 132.7229,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1927)">
-      <path d="M -48.0208,15.8139 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1928">
-        <path d="M 132.7229,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1928)">
-      <path d="M -48.0208,22.8216 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1929">
-        <path d="M 132.7229,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1929)">
-      <path d="M -48.0208,29.8293 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1930">
-        <path d="M 132.7229,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1930)">
-      <path d="M -48.0208,36.8370 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1931">
-        <path d="M 132.7229,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1931)">
-      <path d="M -48.0208,43.8447 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1932">
-        <path d="M 132.7229,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1932)">
-      <path d="M -48.0208,50.8524 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1933">
-        <path d="M 132.7229,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1933)">
-      <path d="M -48.0208,57.8601 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1934">
-        <path d="M 132.7229,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1934)">
-      <path d="M -48.0208,64.8678 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1935">
-        <path d="M 132.7229,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1935)">
-      <path d="M -48.0208,71.8755 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1936">
-        <path d="M 132.7229,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1936)">
-      <path d="M -48.0208,78.8832 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1937">
-        <path d="M 132.7229,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1937)">
-      <path d="M -48.0208,85.8909 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1938">
-        <path d="M 132.7229,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1938)">
-      <path d="M -48.0208,92.8987 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1939">
-        <path d="M 132.7229,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1939)">
-      <path d="M -48.0208,99.9064 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1940">
-        <path d="M 132.7229,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1940)">
-      <path d="M -48.0208,106.9141 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1941">
-        <path d="M 132.7229,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1941)">
-      <path d="M -48.0208,113.9218 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1942">
-        <path d="M 132.7229,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1942)">
-      <path d="M -48.0208,120.9295 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1943">
-        <path d="M 132.7229,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1943)">
-      <path d="M -48.0208,127.9372 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1944">
-        <path d="M 132.7229,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1944)">
-      <path d="M -48.0208,134.9449 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1945">
-        <path d="M 132.7229,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1945)">
-      <path d="M -48.0208,141.9526 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1946">
-        <path d="M 132.7229,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1946)">
-      <path d="M -48.0208,148.9603 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1947">
-        <path d="M 132.7229,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1947)">
-      <path d="M -48.0208,155.9680 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1948">
-        <path d="M 132.7229,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1948)">
-      <path d="M -48.0208,162.9757 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1949">
-        <path d="M 132.7229,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1949)">
-      <path d="M -48.0208,169.9834 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1950">
-        <path d="M 132.7229,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1950)">
-      <path d="M -48.0208,176.9911 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1951">
-        <path d="M 132.7229,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1951)">
-      <path d="M -48.0208,183.9989 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1952">
-        <path d="M 132.7229,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1952)">
-      <path d="M -48.0208,191.0066 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1953">
-        <path d="M 132.7229,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1953)">
-      <path d="M -48.0208,198.0143 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1954">
-        <path d="M 132.7229,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1954)">
-      <path d="M -48.0208,205.0220 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1955">
-        <path d="M 132.7229,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1955)">
-      <path d="M -48.0208,212.0297 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1956">
-        <path d="M 132.7229,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1956)">
-      <path d="M -48.0208,219.0374 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1957">
-        <path d="M 132.7229,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1957)">
-      <path d="M -48.0208,226.0451 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1958">
-        <path d="M 132.7229,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1958)">
-      <path d="M -48.0208,233.0528 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1959">
-        <path d="M 132.7229,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1959)">
-      <path d="M -48.0208,240.0605 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1960">
-        <path d="M 132.7229,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1960)">
-      <path d="M -48.0208,247.0682 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1961">
-        <path d="M 132.7229,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1961)">
-      <path d="M -48.0208,254.0759 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1962">
-        <path d="M 132.7229,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1962)">
-      <path d="M -48.0208,261.0836 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1963">
-        <path d="M 132.7229,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1963)">
-      <path d="M -48.0208,268.0913 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1964">
-        <path d="M 132.7229,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1964)">
-      <path d="M -48.0208,275.0991 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1965">
-        <path d="M 132.7229,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1965)">
-      <path d="M -48.0208,282.1068 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1966">
-        <path d="M 132.7229,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1966)">
-      <path d="M -48.0208,289.1145 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1967">
-        <path d="M 132.7229,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1967)">
-      <path d="M 302.3646,289.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1968">
-        <path d="M 132.7229,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1968)">
-      <path d="M 295.3569,289.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1969">
-        <path d="M 132.7229,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1969)">
-      <path d="M 288.3492,289.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1970">
-        <path d="M 132.7229,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1970)">
-      <path d="M 281.3415,289.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1971">
-        <path d="M 132.7229,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1971)">
-      <path d="M 274.3338,289.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1972">
-        <path d="M 132.7229,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1972)">
-      <path d="M 267.3261,289.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1973">
-        <path d="M 132.7229,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1973)">
-      <path d="M 260.3184,289.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1974">
-        <path d="M 132.7229,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1974)">
-      <path d="M 253.3107,289.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1975">
-        <path d="M 132.7229,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1975)">
-      <path d="M 246.3030,289.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1976">
-        <path d="M 132.7229,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1976)">
-      <path d="M 239.2953,289.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1977">
-        <path d="M 132.7229,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1977)">
-      <path d="M 232.2875,289.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1978">
-        <path d="M 132.7229,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1978)">
-      <path d="M 225.2798,289.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1979">
-        <path d="M 132.7229,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1979)">
-      <path d="M 218.2721,289.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1980">
-        <path d="M 132.7229,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1980)">
-      <path d="M 211.2644,289.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1981">
-        <path d="M 132.7229,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1981)">
-      <path d="M 204.2567,289.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1982">
-        <path d="M 132.7229,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1982)">
-      <path d="M 197.2490,289.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1983">
-        <path d="M 132.7229,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1983)">
-      <path d="M 190.2413,289.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1984">
-        <path d="M 132.7229,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1984)">
-      <path d="M 183.2336,289.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1985">
-        <path d="M 132.7229,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1985)">
-      <path d="M 176.2259,289.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1986">
-        <path d="M 132.7229,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1986)">
-      <path d="M 169.2182,289.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1987">
-        <path d="M 132.7229,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1987)">
-      <path d="M 162.2105,289.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1988">
-        <path d="M 132.7229,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1988)">
-      <path d="M 155.2028,289.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1989">
-        <path d="M 132.7229,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1989)">
-      <path d="M 148.1951,289.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1990">
-        <path d="M 132.7229,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1990)">
-      <path d="M 141.1874,289.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1991">
-        <path d="M 132.7229,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1991)">
-      <path d="M 134.1796,289.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1992">
-        <path d="M 132.7229,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1992)">
-      <path d="M 127.1719,289.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1993">
-        <path d="M 132.7229,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1993)">
-      <path d="M 120.1642,289.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1994">
-        <path d="M 132.7229,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1994)">
-      <path d="M 113.1565,289.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1995">
-        <path d="M 132.7229,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1995)">
-      <path d="M 106.1488,289.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1996">
-        <path d="M 132.7229,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1996)">
-      <path d="M 99.1411,289.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1997">
-        <path d="M 132.7229,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1997)">
-      <path d="M 92.1334,289.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1998">
-        <path d="M 132.7229,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1998)">
-      <path d="M 85.1257,289.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip1999">
-        <path d="M 132.7229,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip1999)">
-      <path d="M 78.1180,289.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2000">
-        <path d="M 132.7229,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2000)">
-      <path d="M 71.1103,289.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2001">
-        <path d="M 132.7229,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2001)">
-      <path d="M 64.1026,289.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2002">
-        <path d="M 132.7229,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2002)">
-      <path d="M 57.0949,289.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2003">
-        <path d="M 132.7229,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2003)">
-      <path d="M 50.0872,289.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2004">
-        <path d="M 132.7229,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2004)">
-      <path d="M 43.0794,289.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2005">
-        <path d="M 132.7229,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2005)">
-      <path d="M 36.0717,289.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2006">
-        <path d="M 132.7229,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2006)">
-      <path d="M 29.0640,289.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2007">
-        <path d="M 132.7229,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2007)">
-      <path d="M 22.0563,289.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2008">
-        <path d="M 132.7229,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2008)">
-      <path d="M 15.0486,289.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2009">
-        <path d="M 132.7229,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2009)">
-      <path d="M 8.0409,289.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2010">
-        <path d="M 132.7229,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2010)">
-      <path d="M 1.0332,289.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2011">
-        <path d="M 132.7229,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2011)">
-      <path d="M -5.9745,289.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2012">
-        <path d="M 132.7229,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2012)">
-      <path d="M -12.9822,289.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2013">
-        <path d="M 132.7229,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2013)">
-      <path d="M -19.9899,289.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2014">
-        <path d="M 132.7229,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2014)">
-      <path d="M -26.9976,289.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2015">
-        <path d="M 132.7229,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2015)">
-      <path d="M -34.0053,289.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2016">
-        <path d="M 132.7229,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2016)">
-      <path d="M -41.0130,289.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2017">
-        <path d="M 132.7229,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2017)">
-      <path d="M -48.0208,289.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2018">
-        <path d="M 132.7229,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2018)">
-      <path d="M -48.0208,-61.2709 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2019">
-        <path d="M 132.7229,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2019)">
-      <path d="M -48.0208,-26.2324 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2020">
-        <path d="M 132.7229,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2020)">
-      <path d="M -48.0208,8.8062 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2021">
-        <path d="M 132.7229,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2021)">
-      <path d="M -48.0208,43.8447 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2022">
-        <path d="M 132.7229,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2022)">
-      <path d="M -48.0208,78.8832 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2023">
-        <path d="M 132.7229,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2023)">
-      <path d="M -48.0208,113.9218 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2024">
-        <path d="M 132.7229,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2024)">
-      <path d="M -48.0208,148.9603 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2025">
-        <path d="M 132.7229,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2025)">
-      <path d="M -48.0208,183.9989 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2026">
-        <path d="M 132.7229,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2026)">
-      <path d="M -48.0208,219.0374 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2027">
-        <path d="M 132.7229,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2027)">
-      <path d="M -48.0208,254.0759 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2028">
-        <path d="M 132.7229,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2028)">
-      <path d="M -48.0208,289.1145 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2029">
-        <path d="M 132.7229,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2029)">
-      <path d="M 302.3646,289.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2030">
-        <path d="M 132.7229,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2030)">
-      <path d="M 267.3261,289.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2031">
-        <path d="M 132.7229,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2031)">
-      <path d="M 232.2875,289.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2032">
-        <path d="M 132.7229,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2032)">
-      <path d="M 197.2490,289.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2033">
-        <path d="M 132.7229,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2033)">
-      <path d="M 162.2105,289.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2034">
-        <path d="M 132.7229,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2034)">
-      <path d="M 127.1719,289.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2035">
-        <path d="M 132.7229,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2035)">
-      <path d="M 92.1334,289.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2036">
-        <path d="M 132.7229,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2036)">
-      <path d="M 57.0949,289.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2037">
-        <path d="M 132.7229,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2037)">
-      <path d="M 22.0563,289.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2038">
-        <path d="M 132.7229,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2038)">
-      <path d="M -12.9822,289.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2039">
-        <path d="M 132.7229,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2039)">
-      <path d="M -48.0208,289.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.1" stroke="rgb(102,102,102)" stroke-width="2.98825135876461" fill="rgb(255,255,255)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2040">
-        <path d="M 132.7229,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2040)">
-      <path d="M 329.5195,349.5868 l -0.0000,-495.8678 h -491.9915 l -0.0000,495.8678 Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.1" stroke="rgb(102,102,102)" stroke-width="2.98825135876461" fill="rgb(76,76,76)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 132.7229,349.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2041">
-        <path d="M 565.6754,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2041)">
-      <path d="M 478.8732,714.9047 l -0.0000,-24.0505 h -96.2018 l -0.0000,24.0505 Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="21.86404754438049px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2042">
-        <path d="M 565.6754,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2042)">
-      <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,430.7723,702.8795)" stroke="none" text-anchor="middle">y = -2.0
-      </text>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2043">
-        <path d="M 565.6754,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2043)">
-      <path d="M 671.5852,855.0588 l -0.0000,-24.0505 h -96.2018 l -0.0000,24.0505 Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="21.86404754438049px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2044">
-        <path d="M 565.6754,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2044)">
-      <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,623.4842,843.0336)" stroke="none" text-anchor="middle">x = -1.0
-      </text>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="8.96475407629383" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2045">
-        <path d="M 565.6754,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2045)">
-      <path d="M 628.7400,700.6931 c 0.0000,-2.9027 -2.3531,-5.2558 -5.2558 -5.2558c -2.9027,-0.0000 -5.2558,2.3531 -5.2558 5.2558c -0.0000,2.9027 2.3531,5.2558 5.2558 5.2558c 2.9027,0.0000 5.2558,-2.3531 5.2558 -5.2558Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(51,51,51)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2046">
-        <path d="M 565.6754,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2046)">
-      <path d="M 623.4842,805.8087 v -105.1156 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(51,51,51)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2047">
-        <path d="M 565.6754,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2047)">
-      <path d="M 483.3301,700.6931 h 140.1542 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(153,153,153)" stroke-width="5.97650271752922" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2048">
-        <path d="M 565.6754,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2048)">
-      <path d="M 553.4072,420.3848 l 4.2046,24.7232 l 4.2046,23.7141 l 4.2046,22.7050 l 4.2046,21.6959 l 4.2046,20.6868 l 4.2046,19.6776 l 4.2046,18.6685 l 4.2046,17.6594 l 4.2046,16.6503 l 4.2046,15.6412 l 4.2046,14.6321 l 4.2046,13.6230 l 4.2046,12.6139 l 4.2046,11.6048 l 4.2046,10.5957 l 4.2046,9.5865 l 4.2046,8.5774 l 4.2046,7.5683 l 4.2046,6.5592 l 4.2046,5.5501 l 4.2046,4.5410 l 4.2046,3.5319 l 4.2046,2.5228 l 4.2046,1.5137 l 4.2046,0.5046 l 4.2046,-0.5046 l 4.2046,-1.5137 l 4.2046,-2.5228 l 4.2046,-3.5319 l 4.2046,-4.5410 l 4.2046,-5.5501 l 4.2046,-6.5592 l 4.2046,-7.5683 l 4.2046,-8.5774 l 4.2046,-9.5865 l 4.2046,-10.5957 l 4.2046,-11.6048 l 4.2046,-12.6139 l 4.2046,-13.6230 l 4.2046,-14.6321 l 4.2046,-15.6412 l 4.2046,-16.6503 l 4.2046,-17.6594 l 4.2046,-18.6685 l 4.2046,-19.6776 l 4.2046,-20.6868 l 4.2046,-21.6959 l 4.2046,-22.7050 l 4.2046,-23.7141 l 4.2046,-24.7232 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2049">
-        <path d="M 565.6754,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2049)">
-      <path d="M 748.7120,441.4079 l -0.0000,-36.0757 h -180.3784 l -0.0000,36.0757 Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="32.79607131657073px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2050">
-        <path d="M 565.6754,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2050)">
-      <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,658.5228,423.3700)" stroke="none" text-anchor="middle">y = x² - 3
-      </text>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2051">
-        <path d="M 565.6754,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2051)">
-      <path d="M 833.7155,805.8087 l -0.0000,-350.3854 h -350.3854 l -0.0000,350.3854 Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2052">
-        <path d="M 565.6754,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2052)">
-      <path d="M 483.3301,455.4233 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2053">
-        <path d="M 565.6754,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2053)">
-      <path d="M 483.3301,462.4310 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2054">
-        <path d="M 565.6754,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2054)">
-      <path d="M 483.3301,469.4387 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2055">
-        <path d="M 565.6754,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2055)">
-      <path d="M 483.3301,476.4464 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2056">
-        <path d="M 565.6754,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2056)">
-      <path d="M 483.3301,483.4541 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2057">
-        <path d="M 565.6754,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2057)">
-      <path d="M 483.3301,490.4618 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2058">
-        <path d="M 565.6754,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2058)">
-      <path d="M 483.3301,497.4695 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2059">
-        <path d="M 565.6754,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2059)">
-      <path d="M 483.3301,504.4773 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2060">
-        <path d="M 565.6754,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2060)">
-      <path d="M 483.3301,511.4850 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2061">
-        <path d="M 565.6754,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2061)">
-      <path d="M 483.3301,518.4927 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2062">
-        <path d="M 565.6754,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2062)">
-      <path d="M 483.3301,525.5004 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2063">
-        <path d="M 565.6754,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2063)">
-      <path d="M 483.3301,532.5081 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2064">
-        <path d="M 565.6754,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2064)">
-      <path d="M 483.3301,539.5158 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2065">
-        <path d="M 565.6754,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2065)">
-      <path d="M 483.3301,546.5235 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2066">
-        <path d="M 565.6754,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2066)">
-      <path d="M 483.3301,553.5312 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2067">
-        <path d="M 565.6754,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2067)">
-      <path d="M 483.3301,560.5389 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2068">
-        <path d="M 565.6754,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2068)">
-      <path d="M 483.3301,567.5466 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2069">
-        <path d="M 565.6754,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2069)">
-      <path d="M 483.3301,574.5543 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2070">
-        <path d="M 565.6754,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2070)">
-      <path d="M 483.3301,581.5620 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2071">
-        <path d="M 565.6754,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2071)">
-      <path d="M 483.3301,588.5697 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2072">
-        <path d="M 565.6754,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2072)">
-      <path d="M 483.3301,595.5775 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2073">
-        <path d="M 565.6754,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2073)">
-      <path d="M 483.3301,602.5852 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2074">
-        <path d="M 565.6754,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2074)">
-      <path d="M 483.3301,609.5929 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2075">
-        <path d="M 565.6754,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2075)">
-      <path d="M 483.3301,616.6006 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2076">
-        <path d="M 565.6754,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2076)">
-      <path d="M 483.3301,623.6083 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2077">
-        <path d="M 565.6754,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2077)">
-      <path d="M 483.3301,630.6160 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2078">
-        <path d="M 565.6754,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2078)">
-      <path d="M 483.3301,637.6237 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2079">
-        <path d="M 565.6754,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2079)">
-      <path d="M 483.3301,644.6314 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2080">
-        <path d="M 565.6754,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2080)">
-      <path d="M 483.3301,651.6391 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2081">
-        <path d="M 565.6754,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2081)">
-      <path d="M 483.3301,658.6468 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2082">
-        <path d="M 565.6754,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2082)">
-      <path d="M 483.3301,665.6545 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2083">
-        <path d="M 565.6754,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2083)">
-      <path d="M 483.3301,672.6622 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2084">
-        <path d="M 565.6754,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2084)">
-      <path d="M 483.3301,679.6699 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2085">
-        <path d="M 565.6754,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2085)">
-      <path d="M 483.3301,686.6777 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2086">
-        <path d="M 565.6754,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2086)">
-      <path d="M 483.3301,693.6854 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2087">
-        <path d="M 565.6754,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2087)">
-      <path d="M 483.3301,700.6931 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2088">
-        <path d="M 565.6754,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2088)">
-      <path d="M 483.3301,707.7008 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2089">
-        <path d="M 565.6754,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2089)">
-      <path d="M 483.3301,714.7085 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2090">
-        <path d="M 565.6754,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2090)">
-      <path d="M 483.3301,721.7162 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2091">
-        <path d="M 565.6754,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2091)">
-      <path d="M 483.3301,728.7239 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2092">
-        <path d="M 565.6754,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2092)">
-      <path d="M 483.3301,735.7316 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2093">
-        <path d="M 565.6754,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2093)">
-      <path d="M 483.3301,742.7393 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2094">
-        <path d="M 565.6754,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2094)">
-      <path d="M 483.3301,749.7470 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2095">
-        <path d="M 565.6754,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2095)">
-      <path d="M 483.3301,756.7547 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2096">
-        <path d="M 565.6754,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2096)">
-      <path d="M 483.3301,763.7624 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2097">
-        <path d="M 565.6754,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2097)">
-      <path d="M 483.3301,770.7701 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2098">
-        <path d="M 565.6754,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2098)">
-      <path d="M 483.3301,777.7779 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2099">
-        <path d="M 565.6754,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2099)">
-      <path d="M 483.3301,784.7856 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2100">
-        <path d="M 565.6754,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2100)">
-      <path d="M 483.3301,791.7933 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2101">
-        <path d="M 565.6754,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2101)">
-      <path d="M 483.3301,798.8010 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2102">
-        <path d="M 565.6754,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2102)">
-      <path d="M 483.3301,805.8087 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2103">
-        <path d="M 565.6754,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2103)">
-      <path d="M 833.7155,805.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2104">
-        <path d="M 565.6754,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2104)">
-      <path d="M 826.7078,805.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2105">
-        <path d="M 565.6754,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2105)">
-      <path d="M 819.7001,805.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2106">
-        <path d="M 565.6754,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2106)">
-      <path d="M 812.6923,805.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2107">
-        <path d="M 565.6754,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2107)">
-      <path d="M 805.6846,805.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2108">
-        <path d="M 565.6754,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2108)">
-      <path d="M 798.6769,805.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2109">
-        <path d="M 565.6754,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2109)">
-      <path d="M 791.6692,805.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2110">
-        <path d="M 565.6754,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2110)">
-      <path d="M 784.6615,805.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2111">
-        <path d="M 565.6754,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2111)">
-      <path d="M 777.6538,805.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2112">
-        <path d="M 565.6754,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2112)">
-      <path d="M 770.6461,805.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2113">
-        <path d="M 565.6754,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2113)">
-      <path d="M 763.6384,805.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2114">
-        <path d="M 565.6754,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2114)">
-      <path d="M 756.6307,805.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2115">
-        <path d="M 565.6754,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2115)">
-      <path d="M 749.6230,805.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2116">
-        <path d="M 565.6754,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2116)">
-      <path d="M 742.6153,805.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2117">
-        <path d="M 565.6754,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2117)">
-      <path d="M 735.6076,805.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2118">
-        <path d="M 565.6754,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2118)">
-      <path d="M 728.5999,805.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2119">
-        <path d="M 565.6754,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2119)">
-      <path d="M 721.5922,805.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2120">
-        <path d="M 565.6754,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2120)">
-      <path d="M 714.5844,805.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2121">
-        <path d="M 565.6754,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2121)">
-      <path d="M 707.5767,805.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2122">
-        <path d="M 565.6754,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2122)">
-      <path d="M 700.5690,805.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2123">
-        <path d="M 565.6754,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2123)">
-      <path d="M 693.5613,805.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2124">
-        <path d="M 565.6754,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2124)">
-      <path d="M 686.5536,805.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2125">
-        <path d="M 565.6754,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2125)">
-      <path d="M 679.5459,805.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2126">
-        <path d="M 565.6754,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2126)">
-      <path d="M 672.5382,805.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2127">
-        <path d="M 565.6754,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2127)">
-      <path d="M 665.5305,805.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2128">
-        <path d="M 565.6754,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2128)">
-      <path d="M 658.5228,805.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2129">
-        <path d="M 565.6754,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2129)">
-      <path d="M 651.5151,805.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2130">
-        <path d="M 565.6754,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2130)">
-      <path d="M 644.5074,805.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2131">
-        <path d="M 565.6754,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2131)">
-      <path d="M 637.4997,805.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2132">
-        <path d="M 565.6754,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2132)">
-      <path d="M 630.4920,805.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2133">
-        <path d="M 565.6754,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2133)">
-      <path d="M 623.4842,805.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2134">
-        <path d="M 565.6754,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2134)">
-      <path d="M 616.4765,805.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2135">
-        <path d="M 565.6754,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2135)">
-      <path d="M 609.4688,805.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2136">
-        <path d="M 565.6754,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2136)">
-      <path d="M 602.4611,805.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2137">
-        <path d="M 565.6754,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2137)">
-      <path d="M 595.4534,805.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2138">
-        <path d="M 565.6754,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2138)">
-      <path d="M 588.4457,805.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2139">
-        <path d="M 565.6754,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2139)">
-      <path d="M 581.4380,805.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2140">
-        <path d="M 565.6754,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2140)">
-      <path d="M 574.4303,805.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2141">
-        <path d="M 565.6754,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2141)">
-      <path d="M 567.4226,805.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2142">
-        <path d="M 565.6754,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2142)">
-      <path d="M 560.4149,805.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2143">
-        <path d="M 565.6754,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2143)">
-      <path d="M 553.4072,805.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2144">
-        <path d="M 565.6754,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2144)">
-      <path d="M 546.3995,805.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2145">
-        <path d="M 565.6754,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2145)">
-      <path d="M 539.3918,805.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2146">
-        <path d="M 565.6754,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2146)">
-      <path d="M 532.3840,805.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2147">
-        <path d="M 565.6754,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2147)">
-      <path d="M 525.3763,805.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2148">
-        <path d="M 565.6754,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2148)">
-      <path d="M 518.3686,805.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2149">
-        <path d="M 565.6754,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2149)">
-      <path d="M 511.3609,805.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2150">
-        <path d="M 565.6754,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2150)">
-      <path d="M 504.3532,805.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2151">
-        <path d="M 565.6754,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2151)">
-      <path d="M 497.3455,805.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2152">
-        <path d="M 565.6754,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2152)">
-      <path d="M 490.3378,805.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2153">
-        <path d="M 565.6754,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2153)">
-      <path d="M 483.3301,805.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2154">
-        <path d="M 565.6754,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2154)">
-      <path d="M 483.3301,455.4233 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2155">
-        <path d="M 565.6754,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2155)">
-      <path d="M 483.3301,490.4618 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2156">
-        <path d="M 565.6754,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2156)">
-      <path d="M 483.3301,525.5004 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2157">
-        <path d="M 565.6754,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2157)">
-      <path d="M 483.3301,560.5389 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2158">
-        <path d="M 565.6754,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2158)">
-      <path d="M 483.3301,595.5775 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2159">
-        <path d="M 565.6754,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2159)">
-      <path d="M 483.3301,630.6160 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2160">
-        <path d="M 565.6754,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2160)">
-      <path d="M 483.3301,665.6545 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2161">
-        <path d="M 565.6754,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2161)">
-      <path d="M 483.3301,700.6931 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2162">
-        <path d="M 565.6754,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2162)">
-      <path d="M 483.3301,735.7316 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2163">
-        <path d="M 565.6754,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2163)">
-      <path d="M 483.3301,770.7701 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2164">
-        <path d="M 565.6754,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2164)">
-      <path d="M 483.3301,805.8087 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2165">
-        <path d="M 565.6754,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2165)">
-      <path d="M 833.7155,805.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2166">
-        <path d="M 565.6754,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2166)">
-      <path d="M 798.6769,805.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2167">
-        <path d="M 565.6754,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2167)">
-      <path d="M 763.6384,805.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2168">
-        <path d="M 565.6754,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2168)">
-      <path d="M 728.5999,805.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2169">
-        <path d="M 565.6754,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2169)">
-      <path d="M 693.5613,805.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2170">
-        <path d="M 565.6754,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2170)">
-      <path d="M 658.5228,805.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2171">
-        <path d="M 565.6754,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2171)">
-      <path d="M 623.4842,805.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2172">
-        <path d="M 565.6754,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2172)">
-      <path d="M 588.4457,805.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2173">
-        <path d="M 565.6754,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2173)">
-      <path d="M 553.4072,805.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2174">
-        <path d="M 565.6754,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2174)">
-      <path d="M 518.3686,805.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2175">
-        <path d="M 565.6754,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2175)">
-      <path d="M 483.3301,805.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.1" stroke="rgb(102,102,102)" stroke-width="2.98825135876461" fill="rgb(255,255,255)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2176">
-        <path d="M 565.6754,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2176)">
-      <path d="M 860.8703,866.2810 l -0.0000,-495.8678 h -491.9915 l -0.0000,495.8678 Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.1" stroke="rgb(102,102,102)" stroke-width="2.98825135876461" fill="rgb(76,76,76)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 565.6754,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2177">
-        <path d="M 457.4373,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2177)">
-      <path d="M 370.6351,615.7311 l -0.0000,-24.0505 h -96.2018 l -0.0000,24.0505 Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="21.86404754438049px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2178">
-        <path d="M 457.4373,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2178)">
-      <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,322.5342,603.7059)" stroke="none" text-anchor="middle">y = -2.0
-      </text>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2179">
-        <path d="M 457.4373,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2179)">
-      <path d="M 563.3470,755.8853 l -0.0000,-24.0505 h -96.2018 l -0.0000,24.0505 Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="21.86404754438049px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2180">
-        <path d="M 457.4373,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2180)">
-      <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,515.2461,743.8601)" stroke="none" text-anchor="middle">x = -1.0
-      </text>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="8.96475407629383" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2181">
-        <path d="M 457.4373,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2181)">
-      <path d="M 520.5019,601.5195 c 0.0000,-2.9027 -2.3531,-5.2558 -5.2558 -5.2558c -2.9027,-0.0000 -5.2558,2.3531 -5.2558 5.2558c -0.0000,2.9027 2.3531,5.2558 5.2558 5.2558c 2.9027,0.0000 5.2558,-2.3531 5.2558 -5.2558Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(51,51,51)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2182">
-        <path d="M 457.4373,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2182)">
-      <path d="M 515.2461,706.6351 v -105.1156 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(51,51,51)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2183">
-        <path d="M 457.4373,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2183)">
-      <path d="M 375.0920,601.5195 h 140.1542 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(153,153,153)" stroke-width="5.97650271752922" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2184">
-        <path d="M 457.4373,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2184)">
-      <path d="M 445.1690,321.2112 l 4.2046,24.7232 l 4.2046,23.7141 l 4.2046,22.7050 l 4.2046,21.6959 l 4.2046,20.6868 l 4.2046,19.6776 l 4.2046,18.6685 l 4.2046,17.6594 l 4.2046,16.6503 l 4.2046,15.6412 l 4.2046,14.6321 l 4.2046,13.6230 l 4.2046,12.6139 l 4.2046,11.6048 l 4.2046,10.5957 l 4.2046,9.5865 l 4.2046,8.5774 l 4.2046,7.5683 l 4.2046,6.5592 l 4.2046,5.5501 l 4.2046,4.5410 l 4.2046,3.5319 l 4.2046,2.5228 l 4.2046,1.5137 l 4.2046,0.5046 l 4.2046,-0.5046 l 4.2046,-1.5137 l 4.2046,-2.5228 l 4.2046,-3.5319 l 4.2046,-4.5410 l 4.2046,-5.5501 l 4.2046,-6.5592 l 4.2046,-7.5683 l 4.2046,-8.5774 l 4.2046,-9.5865 l 4.2046,-10.5957 l 4.2046,-11.6048 l 4.2046,-12.6139 l 4.2046,-13.6230 l 4.2046,-14.6321 l 4.2046,-15.6412 l 4.2046,-16.6503 l 4.2046,-17.6594 l 4.2046,-18.6685 l 4.2046,-19.6776 l 4.2046,-20.6868 l 4.2046,-21.6959 l 4.2046,-22.7050 l 4.2046,-23.7141 l 4.2046,-24.7232 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2185">
-        <path d="M 457.4373,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2185)">
-      <path d="M 640.4738,342.2343 l -0.0000,-36.0757 h -180.3784 l -0.0000,36.0757 Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="32.79607131657073px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2186">
-        <path d="M 457.4373,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2186)">
-      <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,550.2846,324.1965)" stroke="none" text-anchor="middle">y = x² - 3
-      </text>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2187">
-        <path d="M 457.4373,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2187)">
-      <path d="M 725.4773,706.6351 l -0.0000,-350.3854 h -350.3854 l -0.0000,350.3854 Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2188">
-        <path d="M 457.4373,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2188)">
-      <path d="M 375.0920,356.2497 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2189">
-        <path d="M 457.4373,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2189)">
-      <path d="M 375.0920,363.2575 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2190">
-        <path d="M 457.4373,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2190)">
-      <path d="M 375.0920,370.2652 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2191">
-        <path d="M 457.4373,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2191)">
-      <path d="M 375.0920,377.2729 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2192">
-        <path d="M 457.4373,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2192)">
-      <path d="M 375.0920,384.2806 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2193">
-        <path d="M 457.4373,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2193)">
-      <path d="M 375.0920,391.2883 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2194">
-        <path d="M 457.4373,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2194)">
-      <path d="M 375.0920,398.2960 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2195">
-        <path d="M 457.4373,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2195)">
-      <path d="M 375.0920,405.3037 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2196">
-        <path d="M 457.4373,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2196)">
-      <path d="M 375.0920,412.3114 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2197">
-        <path d="M 457.4373,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2197)">
-      <path d="M 375.0920,419.3191 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2198">
-        <path d="M 457.4373,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2198)">
-      <path d="M 375.0920,426.3268 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2199">
-        <path d="M 457.4373,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2199)">
-      <path d="M 375.0920,433.3345 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2200">
-        <path d="M 457.4373,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2200)">
-      <path d="M 375.0920,440.3422 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2201">
-        <path d="M 457.4373,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2201)">
-      <path d="M 375.0920,447.3499 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2202">
-        <path d="M 457.4373,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2202)">
-      <path d="M 375.0920,454.3577 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2203">
-        <path d="M 457.4373,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2203)">
-      <path d="M 375.0920,461.3654 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2204">
-        <path d="M 457.4373,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2204)">
-      <path d="M 375.0920,468.3731 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2205">
-        <path d="M 457.4373,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2205)">
-      <path d="M 375.0920,475.3808 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2206">
-        <path d="M 457.4373,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2206)">
-      <path d="M 375.0920,482.3885 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2207">
-        <path d="M 457.4373,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2207)">
-      <path d="M 375.0920,489.3962 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2208">
-        <path d="M 457.4373,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2208)">
-      <path d="M 375.0920,496.4039 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2209">
-        <path d="M 457.4373,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2209)">
-      <path d="M 375.0920,503.4116 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2210">
-        <path d="M 457.4373,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2210)">
-      <path d="M 375.0920,510.4193 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2211">
-        <path d="M 457.4373,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2211)">
-      <path d="M 375.0920,517.4270 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2212">
-        <path d="M 457.4373,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2212)">
-      <path d="M 375.0920,524.4347 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2213">
-        <path d="M 457.4373,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2213)">
-      <path d="M 375.0920,531.4424 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2214">
-        <path d="M 457.4373,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2214)">
-      <path d="M 375.0920,538.4501 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2215">
-        <path d="M 457.4373,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2215)">
-      <path d="M 375.0920,545.4579 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2216">
-        <path d="M 457.4373,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2216)">
-      <path d="M 375.0920,552.4656 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2217">
-        <path d="M 457.4373,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2217)">
-      <path d="M 375.0920,559.4733 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2218">
-        <path d="M 457.4373,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2218)">
-      <path d="M 375.0920,566.4810 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2219">
-        <path d="M 457.4373,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2219)">
-      <path d="M 375.0920,573.4887 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2220">
-        <path d="M 457.4373,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2220)">
-      <path d="M 375.0920,580.4964 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2221">
-        <path d="M 457.4373,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2221)">
-      <path d="M 375.0920,587.5041 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2222">
-        <path d="M 457.4373,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2222)">
-      <path d="M 375.0920,594.5118 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2223">
-        <path d="M 457.4373,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2223)">
-      <path d="M 375.0920,601.5195 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2224">
-        <path d="M 457.4373,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2224)">
-      <path d="M 375.0920,608.5272 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2225">
-        <path d="M 457.4373,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2225)">
-      <path d="M 375.0920,615.5349 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2226">
-        <path d="M 457.4373,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2226)">
-      <path d="M 375.0920,622.5426 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2227">
-        <path d="M 457.4373,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2227)">
-      <path d="M 375.0920,629.5503 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2228">
-        <path d="M 457.4373,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2228)">
-      <path d="M 375.0920,636.5581 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2229">
-        <path d="M 457.4373,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2229)">
-      <path d="M 375.0920,643.5658 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2230">
-        <path d="M 457.4373,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2230)">
-      <path d="M 375.0920,650.5735 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2231">
-        <path d="M 457.4373,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2231)">
-      <path d="M 375.0920,657.5812 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2232">
-        <path d="M 457.4373,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2232)">
-      <path d="M 375.0920,664.5889 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2233">
-        <path d="M 457.4373,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2233)">
-      <path d="M 375.0920,671.5966 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2234">
-        <path d="M 457.4373,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2234)">
-      <path d="M 375.0920,678.6043 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2235">
-        <path d="M 457.4373,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2235)">
-      <path d="M 375.0920,685.6120 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2236">
-        <path d="M 457.4373,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2236)">
-      <path d="M 375.0920,692.6197 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2237">
-        <path d="M 457.4373,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2237)">
-      <path d="M 375.0920,699.6274 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2238">
-        <path d="M 457.4373,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2238)">
-      <path d="M 375.0920,706.6351 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2239">
-        <path d="M 457.4373,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2239)">
-      <path d="M 725.4773,706.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2240">
-        <path d="M 457.4373,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2240)">
-      <path d="M 718.4696,706.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2241">
-        <path d="M 457.4373,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2241)">
-      <path d="M 711.4619,706.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2242">
-        <path d="M 457.4373,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2242)">
-      <path d="M 704.4542,706.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2243">
-        <path d="M 457.4373,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2243)">
-      <path d="M 697.4465,706.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2244">
-        <path d="M 457.4373,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2244)">
-      <path d="M 690.4388,706.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2245">
-        <path d="M 457.4373,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2245)">
-      <path d="M 683.4311,706.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2246">
-        <path d="M 457.4373,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2246)">
-      <path d="M 676.4234,706.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2247">
-        <path d="M 457.4373,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2247)">
-      <path d="M 669.4157,706.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2248">
-        <path d="M 457.4373,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2248)">
-      <path d="M 662.4080,706.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2249">
-        <path d="M 457.4373,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2249)">
-      <path d="M 655.4003,706.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2250">
-        <path d="M 457.4373,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2250)">
-      <path d="M 648.3926,706.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2251">
-        <path d="M 457.4373,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2251)">
-      <path d="M 641.3848,706.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2252">
-        <path d="M 457.4373,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2252)">
-      <path d="M 634.3771,706.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2253">
-        <path d="M 457.4373,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2253)">
-      <path d="M 627.3694,706.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2254">
-        <path d="M 457.4373,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2254)">
-      <path d="M 620.3617,706.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2255">
-        <path d="M 457.4373,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2255)">
-      <path d="M 613.3540,706.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2256">
-        <path d="M 457.4373,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2256)">
-      <path d="M 606.3463,706.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2257">
-        <path d="M 457.4373,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2257)">
-      <path d="M 599.3386,706.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2258">
-        <path d="M 457.4373,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2258)">
-      <path d="M 592.3309,706.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2259">
-        <path d="M 457.4373,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2259)">
-      <path d="M 585.3232,706.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2260">
-        <path d="M 457.4373,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2260)">
-      <path d="M 578.3155,706.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2261">
-        <path d="M 457.4373,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2261)">
-      <path d="M 571.3078,706.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2262">
-        <path d="M 457.4373,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2262)">
-      <path d="M 564.3001,706.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2263">
-        <path d="M 457.4373,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2263)">
-      <path d="M 557.2924,706.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2264">
-        <path d="M 457.4373,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2264)">
-      <path d="M 550.2846,706.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2265">
-        <path d="M 457.4373,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2265)">
-      <path d="M 543.2769,706.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2266">
-        <path d="M 457.4373,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2266)">
-      <path d="M 536.2692,706.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2267">
-        <path d="M 457.4373,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2267)">
-      <path d="M 529.2615,706.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2268">
-        <path d="M 457.4373,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2268)">
-      <path d="M 522.2538,706.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2269">
-        <path d="M 457.4373,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2269)">
-      <path d="M 515.2461,706.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2270">
-        <path d="M 457.4373,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2270)">
-      <path d="M 508.2384,706.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2271">
-        <path d="M 457.4373,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2271)">
-      <path d="M 501.2307,706.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2272">
-        <path d="M 457.4373,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2272)">
-      <path d="M 494.2230,706.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2273">
-        <path d="M 457.4373,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2273)">
-      <path d="M 487.2153,706.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2274">
-        <path d="M 457.4373,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2274)">
-      <path d="M 480.2076,706.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2275">
-        <path d="M 457.4373,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2275)">
-      <path d="M 473.1999,706.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2276">
-        <path d="M 457.4373,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2276)">
-      <path d="M 466.1922,706.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2277">
-        <path d="M 457.4373,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2277)">
-      <path d="M 459.1844,706.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2278">
-        <path d="M 457.4373,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2278)">
-      <path d="M 452.1767,706.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2279">
-        <path d="M 457.4373,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2279)">
-      <path d="M 445.1690,706.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2280">
-        <path d="M 457.4373,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2280)">
-      <path d="M 438.1613,706.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2281">
-        <path d="M 457.4373,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2281)">
-      <path d="M 431.1536,706.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2282">
-        <path d="M 457.4373,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2282)">
-      <path d="M 424.1459,706.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2283">
-        <path d="M 457.4373,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2283)">
-      <path d="M 417.1382,706.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2284">
-        <path d="M 457.4373,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2284)">
-      <path d="M 410.1305,706.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2285">
-        <path d="M 457.4373,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2285)">
-      <path d="M 403.1228,706.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2286">
-        <path d="M 457.4373,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2286)">
-      <path d="M 396.1151,706.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2287">
-        <path d="M 457.4373,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2287)">
-      <path d="M 389.1074,706.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2288">
-        <path d="M 457.4373,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2288)">
-      <path d="M 382.0997,706.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2289">
-        <path d="M 457.4373,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2289)">
-      <path d="M 375.0920,706.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2290">
-        <path d="M 457.4373,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2290)">
-      <path d="M 375.0920,356.2497 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2291">
-        <path d="M 457.4373,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2291)">
-      <path d="M 375.0920,391.2883 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2292">
-        <path d="M 457.4373,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2292)">
-      <path d="M 375.0920,426.3268 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2293">
-        <path d="M 457.4373,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2293)">
-      <path d="M 375.0920,461.3654 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2294">
-        <path d="M 457.4373,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2294)">
-      <path d="M 375.0920,496.4039 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2295">
-        <path d="M 457.4373,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2295)">
-      <path d="M 375.0920,531.4424 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2296">
-        <path d="M 457.4373,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2296)">
-      <path d="M 375.0920,566.4810 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2297">
-        <path d="M 457.4373,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2297)">
-      <path d="M 375.0920,601.5195 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2298">
-        <path d="M 457.4373,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2298)">
-      <path d="M 375.0920,636.5581 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2299">
-        <path d="M 457.4373,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2299)">
-      <path d="M 375.0920,671.5966 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2300">
-        <path d="M 457.4373,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2300)">
-      <path d="M 375.0920,706.6351 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2301">
-        <path d="M 457.4373,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2301)">
-      <path d="M 725.4773,706.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2302">
-        <path d="M 457.4373,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2302)">
-      <path d="M 690.4388,706.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2303">
-        <path d="M 457.4373,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2303)">
-      <path d="M 655.4003,706.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2304">
-        <path d="M 457.4373,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2304)">
-      <path d="M 620.3617,706.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2305">
-        <path d="M 457.4373,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2305)">
-      <path d="M 585.3232,706.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2306">
-        <path d="M 457.4373,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2306)">
-      <path d="M 550.2846,706.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2307">
-        <path d="M 457.4373,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2307)">
-      <path d="M 515.2461,706.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2308">
-        <path d="M 457.4373,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2308)">
-      <path d="M 480.2076,706.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2309">
-        <path d="M 457.4373,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2309)">
-      <path d="M 445.1690,706.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2310">
-        <path d="M 457.4373,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2310)">
-      <path d="M 410.1305,706.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2311">
-        <path d="M 457.4373,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2311)">
-      <path d="M 375.0920,706.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.1" stroke="rgb(102,102,102)" stroke-width="2.98825135876461" fill="rgb(255,255,255)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2312">
-        <path d="M 457.4373,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2312)">
-      <path d="M 752.6322,767.1074 l -0.0000,-495.8678 h -491.9915 l -0.0000,495.8678 Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.1" stroke="rgb(102,102,102)" stroke-width="2.98825135876461" fill="rgb(76,76,76)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 457.4373,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2313">
-        <path d="M 349.1992,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2313)">
-      <path d="M 262.3969,516.5576 l -0.0000,-24.0505 h -96.2018 l -0.0000,24.0505 Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="21.86404754438049px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2314">
-        <path d="M 349.1992,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2314)">
-      <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,214.2960,504.5324)" stroke="none" text-anchor="middle">y = -2.0
-      </text>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2315">
-        <path d="M 349.1992,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2315)">
-      <path d="M 455.1089,656.7117 l -0.0000,-24.0505 h -96.2018 l -0.0000,24.0505 Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="21.86404754438049px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2316">
-        <path d="M 349.1992,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2316)">
-      <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,407.0080,644.6865)" stroke="none" text-anchor="middle">x = -1.0
-      </text>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="8.96475407629383" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2317">
-        <path d="M 349.1992,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2317)">
-      <path d="M 412.2638,502.3460 c 0.0000,-2.9027 -2.3531,-5.2558 -5.2558 -5.2558c -2.9027,-0.0000 -5.2558,2.3531 -5.2558 5.2558c -0.0000,2.9027 2.3531,5.2558 5.2558 5.2558c 2.9027,0.0000 5.2558,-2.3531 5.2558 -5.2558Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(51,51,51)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2318">
-        <path d="M 349.1992,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2318)">
-      <path d="M 407.0080,607.4616 v -105.1156 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(51,51,51)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2319">
-        <path d="M 349.1992,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2319)">
-      <path d="M 266.8538,502.3460 h 140.1542 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(153,153,153)" stroke-width="5.97650271752922" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2320">
-        <path d="M 349.1992,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2320)">
-      <path d="M 336.9309,222.0377 l 4.2046,24.7232 l 4.2046,23.7141 l 4.2046,22.7050 l 4.2046,21.6959 l 4.2046,20.6868 l 4.2046,19.6776 l 4.2046,18.6685 l 4.2046,17.6594 l 4.2046,16.6503 l 4.2046,15.6412 l 4.2046,14.6321 l 4.2046,13.6230 l 4.2046,12.6139 l 4.2046,11.6048 l 4.2046,10.5957 l 4.2046,9.5865 l 4.2046,8.5774 l 4.2046,7.5683 l 4.2046,6.5592 l 4.2046,5.5501 l 4.2046,4.5410 l 4.2046,3.5319 l 4.2046,2.5228 l 4.2046,1.5137 l 4.2046,0.5046 l 4.2046,-0.5046 l 4.2046,-1.5137 l 4.2046,-2.5228 l 4.2046,-3.5319 l 4.2046,-4.5410 l 4.2046,-5.5501 l 4.2046,-6.5592 l 4.2046,-7.5683 l 4.2046,-8.5774 l 4.2046,-9.5865 l 4.2046,-10.5957 l 4.2046,-11.6048 l 4.2046,-12.6139 l 4.2046,-13.6230 l 4.2046,-14.6321 l 4.2046,-15.6412 l 4.2046,-16.6503 l 4.2046,-17.6594 l 4.2046,-18.6685 l 4.2046,-19.6776 l 4.2046,-20.6868 l 4.2046,-21.6959 l 4.2046,-22.7050 l 4.2046,-23.7141 l 4.2046,-24.7232 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2321">
-        <path d="M 349.1992,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2321)">
-      <path d="M 532.2357,243.0608 l -0.0000,-36.0757 h -180.3784 l -0.0000,36.0757 Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="32.79607131657073px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2322">
-        <path d="M 349.1992,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2322)">
-      <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,442.0465,225.0229)" stroke="none" text-anchor="middle">y = x² - 3
-      </text>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2323">
-        <path d="M 349.1992,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2323)">
-      <path d="M 617.2392,607.4616 l -0.0000,-350.3854 h -350.3854 l -0.0000,350.3854 Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2324">
-        <path d="M 349.1992,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2324)">
-      <path d="M 266.8538,257.0762 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2325">
-        <path d="M 349.1992,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2325)">
-      <path d="M 266.8538,264.0839 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2326">
-        <path d="M 349.1992,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2326)">
-      <path d="M 266.8538,271.0916 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2327">
-        <path d="M 349.1992,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2327)">
-      <path d="M 266.8538,278.0993 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2328">
-        <path d="M 349.1992,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2328)">
-      <path d="M 266.8538,285.1070 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2329">
-        <path d="M 349.1992,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2329)">
-      <path d="M 266.8538,292.1147 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2330">
-        <path d="M 349.1992,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2330)">
-      <path d="M 266.8538,299.1224 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2331">
-        <path d="M 349.1992,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2331)">
-      <path d="M 266.8538,306.1301 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2332">
-        <path d="M 349.1992,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2332)">
-      <path d="M 266.8538,313.1379 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2333">
-        <path d="M 349.1992,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2333)">
-      <path d="M 266.8538,320.1456 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2334">
-        <path d="M 349.1992,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2334)">
-      <path d="M 266.8538,327.1533 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2335">
-        <path d="M 349.1992,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2335)">
-      <path d="M 266.8538,334.1610 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2336">
-        <path d="M 349.1992,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2336)">
-      <path d="M 266.8538,341.1687 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2337">
-        <path d="M 349.1992,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2337)">
-      <path d="M 266.8538,348.1764 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2338">
-        <path d="M 349.1992,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2338)">
-      <path d="M 266.8538,355.1841 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2339">
-        <path d="M 349.1992,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2339)">
-      <path d="M 266.8538,362.1918 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2340">
-        <path d="M 349.1992,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2340)">
-      <path d="M 266.8538,369.1995 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2341">
-        <path d="M 349.1992,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2341)">
-      <path d="M 266.8538,376.2072 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2342">
-        <path d="M 349.1992,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2342)">
-      <path d="M 266.8538,383.2149 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2343">
-        <path d="M 349.1992,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2343)">
-      <path d="M 266.8538,390.2226 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2344">
-        <path d="M 349.1992,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2344)">
-      <path d="M 266.8538,397.2303 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2345">
-        <path d="M 349.1992,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2345)">
-      <path d="M 266.8538,404.2381 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2346">
-        <path d="M 349.1992,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2346)">
-      <path d="M 266.8538,411.2458 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2347">
-        <path d="M 349.1992,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2347)">
-      <path d="M 266.8538,418.2535 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2348">
-        <path d="M 349.1992,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2348)">
-      <path d="M 266.8538,425.2612 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2349">
-        <path d="M 349.1992,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2349)">
-      <path d="M 266.8538,432.2689 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2350">
-        <path d="M 349.1992,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2350)">
-      <path d="M 266.8538,439.2766 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2351">
-        <path d="M 349.1992,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2351)">
-      <path d="M 266.8538,446.2843 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2352">
-        <path d="M 349.1992,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2352)">
-      <path d="M 266.8538,453.2920 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2353">
-        <path d="M 349.1992,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2353)">
-      <path d="M 266.8538,460.2997 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2354">
-        <path d="M 349.1992,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2354)">
-      <path d="M 266.8538,467.3074 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2355">
-        <path d="M 349.1992,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2355)">
-      <path d="M 266.8538,474.3151 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2356">
-        <path d="M 349.1992,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2356)">
-      <path d="M 266.8538,481.3228 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2357">
-        <path d="M 349.1992,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2357)">
-      <path d="M 266.8538,488.3305 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2358">
-        <path d="M 349.1992,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2358)">
-      <path d="M 266.8538,495.3383 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2359">
-        <path d="M 349.1992,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2359)">
-      <path d="M 266.8538,502.3460 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2360">
-        <path d="M 349.1992,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2360)">
-      <path d="M 266.8538,509.3537 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2361">
-        <path d="M 349.1992,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2361)">
-      <path d="M 266.8538,516.3614 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2362">
-        <path d="M 349.1992,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2362)">
-      <path d="M 266.8538,523.3691 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2363">
-        <path d="M 349.1992,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2363)">
-      <path d="M 266.8538,530.3768 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2364">
-        <path d="M 349.1992,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2364)">
-      <path d="M 266.8538,537.3845 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2365">
-        <path d="M 349.1992,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2365)">
-      <path d="M 266.8538,544.3922 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2366">
-        <path d="M 349.1992,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2366)">
-      <path d="M 266.8538,551.3999 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2367">
-        <path d="M 349.1992,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2367)">
-      <path d="M 266.8538,558.4076 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2368">
-        <path d="M 349.1992,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2368)">
-      <path d="M 266.8538,565.4153 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2369">
-        <path d="M 349.1992,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2369)">
-      <path d="M 266.8538,572.4230 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2370">
-        <path d="M 349.1992,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2370)">
-      <path d="M 266.8538,579.4307 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2371">
-        <path d="M 349.1992,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2371)">
-      <path d="M 266.8538,586.4385 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2372">
-        <path d="M 349.1992,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2372)">
-      <path d="M 266.8538,593.4462 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2373">
-        <path d="M 349.1992,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2373)">
-      <path d="M 266.8538,600.4539 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2374">
-        <path d="M 349.1992,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2374)">
-      <path d="M 266.8538,607.4616 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2375">
-        <path d="M 349.1992,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2375)">
-      <path d="M 617.2392,607.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2376">
-        <path d="M 349.1992,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2376)">
-      <path d="M 610.2315,607.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2377">
-        <path d="M 349.1992,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2377)">
-      <path d="M 603.2238,607.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2378">
-        <path d="M 349.1992,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2378)">
-      <path d="M 596.2161,607.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2379">
-        <path d="M 349.1992,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2379)">
-      <path d="M 589.2084,607.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2380">
-        <path d="M 349.1992,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2380)">
-      <path d="M 582.2007,607.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2381">
-        <path d="M 349.1992,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2381)">
-      <path d="M 575.1930,607.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2382">
-        <path d="M 349.1992,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2382)">
-      <path d="M 568.1852,607.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2383">
-        <path d="M 349.1992,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2383)">
-      <path d="M 561.1775,607.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2384">
-        <path d="M 349.1992,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2384)">
-      <path d="M 554.1698,607.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2385">
-        <path d="M 349.1992,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2385)">
-      <path d="M 547.1621,607.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2386">
-        <path d="M 349.1992,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2386)">
-      <path d="M 540.1544,607.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2387">
-        <path d="M 349.1992,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2387)">
-      <path d="M 533.1467,607.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2388">
-        <path d="M 349.1992,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2388)">
-      <path d="M 526.1390,607.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2389">
-        <path d="M 349.1992,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2389)">
-      <path d="M 519.1313,607.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2390">
-        <path d="M 349.1992,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2390)">
-      <path d="M 512.1236,607.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2391">
-        <path d="M 349.1992,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2391)">
-      <path d="M 505.1159,607.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2392">
-        <path d="M 349.1992,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2392)">
-      <path d="M 498.1082,607.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2393">
-        <path d="M 349.1992,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2393)">
-      <path d="M 491.1005,607.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2394">
-        <path d="M 349.1992,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2394)">
-      <path d="M 484.0928,607.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2395">
-        <path d="M 349.1992,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2395)">
-      <path d="M 477.0851,607.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2396">
-        <path d="M 349.1992,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2396)">
-      <path d="M 470.0773,607.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2397">
-        <path d="M 349.1992,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2397)">
-      <path d="M 463.0696,607.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2398">
-        <path d="M 349.1992,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2398)">
-      <path d="M 456.0619,607.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2399">
-        <path d="M 349.1992,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2399)">
-      <path d="M 449.0542,607.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2400">
-        <path d="M 349.1992,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2400)">
-      <path d="M 442.0465,607.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2401">
-        <path d="M 349.1992,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2401)">
-      <path d="M 435.0388,607.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2402">
-        <path d="M 349.1992,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2402)">
-      <path d="M 428.0311,607.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2403">
-        <path d="M 349.1992,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2403)">
-      <path d="M 421.0234,607.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2404">
-        <path d="M 349.1992,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2404)">
-      <path d="M 414.0157,607.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2405">
-        <path d="M 349.1992,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2405)">
-      <path d="M 407.0080,607.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2406">
-        <path d="M 349.1992,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2406)">
-      <path d="M 400.0003,607.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2407">
-        <path d="M 349.1992,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2407)">
-      <path d="M 392.9926,607.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2408">
-        <path d="M 349.1992,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2408)">
-      <path d="M 385.9849,607.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2409">
-        <path d="M 349.1992,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2409)">
-      <path d="M 378.9771,607.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2410">
-        <path d="M 349.1992,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2410)">
-      <path d="M 371.9694,607.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2411">
-        <path d="M 349.1992,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2411)">
-      <path d="M 364.9617,607.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2412">
-        <path d="M 349.1992,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2412)">
-      <path d="M 357.9540,607.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2413">
-        <path d="M 349.1992,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2413)">
-      <path d="M 350.9463,607.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2414">
-        <path d="M 349.1992,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2414)">
-      <path d="M 343.9386,607.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2415">
-        <path d="M 349.1992,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2415)">
-      <path d="M 336.9309,607.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2416">
-        <path d="M 349.1992,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2416)">
-      <path d="M 329.9232,607.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2417">
-        <path d="M 349.1992,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2417)">
-      <path d="M 322.9155,607.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2418">
-        <path d="M 349.1992,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2418)">
-      <path d="M 315.9078,607.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2419">
-        <path d="M 349.1992,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2419)">
-      <path d="M 308.9001,607.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2420">
-        <path d="M 349.1992,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2420)">
-      <path d="M 301.8924,607.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2421">
-        <path d="M 349.1992,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2421)">
-      <path d="M 294.8847,607.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2422">
-        <path d="M 349.1992,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2422)">
-      <path d="M 287.8769,607.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2423">
-        <path d="M 349.1992,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2423)">
-      <path d="M 280.8692,607.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2424">
-        <path d="M 349.1992,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2424)">
-      <path d="M 273.8615,607.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2425">
-        <path d="M 349.1992,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2425)">
-      <path d="M 266.8538,607.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2426">
-        <path d="M 349.1992,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2426)">
-      <path d="M 266.8538,257.0762 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2427">
-        <path d="M 349.1992,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2427)">
-      <path d="M 266.8538,292.1147 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2428">
-        <path d="M 349.1992,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2428)">
-      <path d="M 266.8538,327.1533 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2429">
-        <path d="M 349.1992,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2429)">
-      <path d="M 266.8538,362.1918 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2430">
-        <path d="M 349.1992,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2430)">
-      <path d="M 266.8538,397.2303 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2431">
-        <path d="M 349.1992,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2431)">
-      <path d="M 266.8538,432.2689 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2432">
-        <path d="M 349.1992,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2432)">
-      <path d="M 266.8538,467.3074 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2433">
-        <path d="M 349.1992,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2433)">
-      <path d="M 266.8538,502.3460 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2434">
-        <path d="M 349.1992,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2434)">
-      <path d="M 266.8538,537.3845 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2435">
-        <path d="M 349.1992,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2435)">
-      <path d="M 266.8538,572.4230 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2436">
-        <path d="M 349.1992,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2436)">
-      <path d="M 266.8538,607.4616 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2437">
-        <path d="M 349.1992,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2437)">
-      <path d="M 617.2392,607.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2438">
-        <path d="M 349.1992,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2438)">
-      <path d="M 582.2007,607.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2439">
-        <path d="M 349.1992,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2439)">
-      <path d="M 547.1621,607.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2440">
-        <path d="M 349.1992,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2440)">
-      <path d="M 512.1236,607.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2441">
-        <path d="M 349.1992,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2441)">
-      <path d="M 477.0851,607.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2442">
-        <path d="M 349.1992,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2442)">
-      <path d="M 442.0465,607.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2443">
-        <path d="M 349.1992,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2443)">
-      <path d="M 407.0080,607.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2444">
-        <path d="M 349.1992,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2444)">
-      <path d="M 371.9694,607.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2445">
-        <path d="M 349.1992,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2445)">
-      <path d="M 336.9309,607.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2446">
-        <path d="M 349.1992,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2446)">
-      <path d="M 301.8924,607.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2447">
-        <path d="M 349.1992,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2447)">
-      <path d="M 266.8538,607.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.1" stroke="rgb(102,102,102)" stroke-width="2.98825135876461" fill="rgb(255,255,255)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2448">
-        <path d="M 349.1992,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2448)">
-      <path d="M 644.3941,667.9339 l -0.0000,-495.8678 h -491.9915 l -0.0000,495.8678 Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.1" stroke="rgb(102,102,102)" stroke-width="2.98825135876461" fill="rgb(76,76,76)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 349.1992,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2449">
-        <path d="M 240.9610,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2449)">
-      <path d="M 154.1588,417.3840 l -0.0000,-24.0505 h -96.2018 l -0.0000,24.0505 Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="21.86404754438049px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2450">
-        <path d="M 240.9610,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2450)">
-      <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,106.0579,405.3588)" stroke="none" text-anchor="middle">y = -2.0
-      </text>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2451">
-        <path d="M 240.9610,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2451)">
-      <path d="M 346.8707,557.5382 l -0.0000,-24.0505 h -96.2018 l -0.0000,24.0505 Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="21.86404754438049px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2452">
-        <path d="M 240.9610,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2452)">
-      <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,298.7698,545.5130)" stroke="none" text-anchor="middle">x = -1.0
-      </text>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="8.96475407629383" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2453">
-        <path d="M 240.9610,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2453)">
-      <path d="M 304.0256,403.1724 c 0.0000,-2.9027 -2.3531,-5.2558 -5.2558 -5.2558c -2.9027,-0.0000 -5.2558,2.3531 -5.2558 5.2558c -0.0000,2.9027 2.3531,5.2558 5.2558 5.2558c 2.9027,0.0000 5.2558,-2.3531 5.2558 -5.2558Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(51,51,51)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2454">
-        <path d="M 240.9610,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2454)">
-      <path d="M 298.7698,508.2880 v -105.1156 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(51,51,51)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2455">
-        <path d="M 240.9610,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2455)">
-      <path d="M 158.6157,403.1724 h 140.1542 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(153,153,153)" stroke-width="5.97650271752922" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2456">
-        <path d="M 240.9610,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2456)">
-      <path d="M 228.6928,122.8641 l 4.2046,24.7232 l 4.2046,23.7141 l 4.2046,22.7050 l 4.2046,21.6959 l 4.2046,20.6868 l 4.2046,19.6776 l 4.2046,18.6685 l 4.2046,17.6594 l 4.2046,16.6503 l 4.2046,15.6412 l 4.2046,14.6321 l 4.2046,13.6230 l 4.2046,12.6139 l 4.2046,11.6048 l 4.2046,10.5957 l 4.2046,9.5865 l 4.2046,8.5774 l 4.2046,7.5683 l 4.2046,6.5592 l 4.2046,5.5501 l 4.2046,4.5410 l 4.2046,3.5319 l 4.2046,2.5228 l 4.2046,1.5137 l 4.2046,0.5046 l 4.2046,-0.5046 l 4.2046,-1.5137 l 4.2046,-2.5228 l 4.2046,-3.5319 l 4.2046,-4.5410 l 4.2046,-5.5501 l 4.2046,-6.5592 l 4.2046,-7.5683 l 4.2046,-8.5774 l 4.2046,-9.5865 l 4.2046,-10.5957 l 4.2046,-11.6048 l 4.2046,-12.6139 l 4.2046,-13.6230 l 4.2046,-14.6321 l 4.2046,-15.6412 l 4.2046,-16.6503 l 4.2046,-17.6594 l 4.2046,-18.6685 l 4.2046,-19.6776 l 4.2046,-20.6868 l 4.2046,-21.6959 l 4.2046,-22.7050 l 4.2046,-23.7141 l 4.2046,-24.7232 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2457">
-        <path d="M 240.9610,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2457)">
-      <path d="M 423.9976,143.8872 l -0.0000,-36.0757 h -180.3784 l -0.0000,36.0757 Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="32.79607131657073px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2458">
-        <path d="M 240.9610,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2458)">
-      <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,333.8084,125.8494)" stroke="none" text-anchor="middle">y = x² - 3
-      </text>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2459">
-        <path d="M 240.9610,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2459)">
-      <path d="M 509.0011,508.2880 l -0.0000,-350.3854 h -350.3854 l -0.0000,350.3854 Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2460">
-        <path d="M 240.9610,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2460)">
-      <path d="M 158.6157,157.9026 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2461">
-        <path d="M 240.9610,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2461)">
-      <path d="M 158.6157,164.9103 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2462">
-        <path d="M 240.9610,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2462)">
-      <path d="M 158.6157,171.9181 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2463">
-        <path d="M 240.9610,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2463)">
-      <path d="M 158.6157,178.9258 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2464">
-        <path d="M 240.9610,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2464)">
-      <path d="M 158.6157,185.9335 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2465">
-        <path d="M 240.9610,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2465)">
-      <path d="M 158.6157,192.9412 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2466">
-        <path d="M 240.9610,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2466)">
-      <path d="M 158.6157,199.9489 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2467">
-        <path d="M 240.9610,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2467)">
-      <path d="M 158.6157,206.9566 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2468">
-        <path d="M 240.9610,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2468)">
-      <path d="M 158.6157,213.9643 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2469">
-        <path d="M 240.9610,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2469)">
-      <path d="M 158.6157,220.9720 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2470">
-        <path d="M 240.9610,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2470)">
-      <path d="M 158.6157,227.9797 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2471">
-        <path d="M 240.9610,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2471)">
-      <path d="M 158.6157,234.9874 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2472">
-        <path d="M 240.9610,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2472)">
-      <path d="M 158.6157,241.9951 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2473">
-        <path d="M 240.9610,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2473)">
-      <path d="M 158.6157,249.0028 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2474">
-        <path d="M 240.9610,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2474)">
-      <path d="M 158.6157,256.0105 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2475">
-        <path d="M 240.9610,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2475)">
-      <path d="M 158.6157,263.0183 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2476">
-        <path d="M 240.9610,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2476)">
-      <path d="M 158.6157,270.0260 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2477">
-        <path d="M 240.9610,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2477)">
-      <path d="M 158.6157,277.0337 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2478">
-        <path d="M 240.9610,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2478)">
-      <path d="M 158.6157,284.0414 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2479">
-        <path d="M 240.9610,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2479)">
-      <path d="M 158.6157,291.0491 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2480">
-        <path d="M 240.9610,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2480)">
-      <path d="M 158.6157,298.0568 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2481">
-        <path d="M 240.9610,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2481)">
-      <path d="M 158.6157,305.0645 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2482">
-        <path d="M 240.9610,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2482)">
-      <path d="M 158.6157,312.0722 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2483">
-        <path d="M 240.9610,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2483)">
-      <path d="M 158.6157,319.0799 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2484">
-        <path d="M 240.9610,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2484)">
-      <path d="M 158.6157,326.0876 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2485">
-        <path d="M 240.9610,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2485)">
-      <path d="M 158.6157,333.0953 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2486">
-        <path d="M 240.9610,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2486)">
-      <path d="M 158.6157,340.1030 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2487">
-        <path d="M 240.9610,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2487)">
-      <path d="M 158.6157,347.1107 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2488">
-        <path d="M 240.9610,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2488)">
-      <path d="M 158.6157,354.1185 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2489">
-        <path d="M 240.9610,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2489)">
-      <path d="M 158.6157,361.1262 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2490">
-        <path d="M 240.9610,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2490)">
-      <path d="M 158.6157,368.1339 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2491">
-        <path d="M 240.9610,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2491)">
-      <path d="M 158.6157,375.1416 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2492">
-        <path d="M 240.9610,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2492)">
-      <path d="M 158.6157,382.1493 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2493">
-        <path d="M 240.9610,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2493)">
-      <path d="M 158.6157,389.1570 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2494">
-        <path d="M 240.9610,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2494)">
-      <path d="M 158.6157,396.1647 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2495">
-        <path d="M 240.9610,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2495)">
-      <path d="M 158.6157,403.1724 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2496">
-        <path d="M 240.9610,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2496)">
-      <path d="M 158.6157,410.1801 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2497">
-        <path d="M 240.9610,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2497)">
-      <path d="M 158.6157,417.1878 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2498">
-        <path d="M 240.9610,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2498)">
-      <path d="M 158.6157,424.1955 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2499">
-        <path d="M 240.9610,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2499)">
-      <path d="M 158.6157,431.2032 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2500">
-        <path d="M 240.9610,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2500)">
-      <path d="M 158.6157,438.2109 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2501">
-        <path d="M 240.9610,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2501)">
-      <path d="M 158.6157,445.2187 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2502">
-        <path d="M 240.9610,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2502)">
-      <path d="M 158.6157,452.2264 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2503">
-        <path d="M 240.9610,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2503)">
-      <path d="M 158.6157,459.2341 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2504">
-        <path d="M 240.9610,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2504)">
-      <path d="M 158.6157,466.2418 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2505">
-        <path d="M 240.9610,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2505)">
-      <path d="M 158.6157,473.2495 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2506">
-        <path d="M 240.9610,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2506)">
-      <path d="M 158.6157,480.2572 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2507">
-        <path d="M 240.9610,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2507)">
-      <path d="M 158.6157,487.2649 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2508">
-        <path d="M 240.9610,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2508)">
-      <path d="M 158.6157,494.2726 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2509">
-        <path d="M 240.9610,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2509)">
-      <path d="M 158.6157,501.2803 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2510">
-        <path d="M 240.9610,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2510)">
-      <path d="M 158.6157,508.2880 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2511">
-        <path d="M 240.9610,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2511)">
-      <path d="M 509.0011,508.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2512">
-        <path d="M 240.9610,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2512)">
-      <path d="M 501.9934,508.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2513">
-        <path d="M 240.9610,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2513)">
-      <path d="M 494.9857,508.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2514">
-        <path d="M 240.9610,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2514)">
-      <path d="M 487.9779,508.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2515">
-        <path d="M 240.9610,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2515)">
-      <path d="M 480.9702,508.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2516">
-        <path d="M 240.9610,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2516)">
-      <path d="M 473.9625,508.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2517">
-        <path d="M 240.9610,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2517)">
-      <path d="M 466.9548,508.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2518">
-        <path d="M 240.9610,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2518)">
-      <path d="M 459.9471,508.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2519">
-        <path d="M 240.9610,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2519)">
-      <path d="M 452.9394,508.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2520">
-        <path d="M 240.9610,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2520)">
-      <path d="M 445.9317,508.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2521">
-        <path d="M 240.9610,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2521)">
-      <path d="M 438.9240,508.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2522">
-        <path d="M 240.9610,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2522)">
-      <path d="M 431.9163,508.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2523">
-        <path d="M 240.9610,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2523)">
-      <path d="M 424.9086,508.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2524">
-        <path d="M 240.9610,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2524)">
-      <path d="M 417.9009,508.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2525">
-        <path d="M 240.9610,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2525)">
-      <path d="M 410.8932,508.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2526">
-        <path d="M 240.9610,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2526)">
-      <path d="M 403.8855,508.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2527">
-        <path d="M 240.9610,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2527)">
-      <path d="M 396.8777,508.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2528">
-        <path d="M 240.9610,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2528)">
-      <path d="M 389.8700,508.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2529">
-        <path d="M 240.9610,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2529)">
-      <path d="M 382.8623,508.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2530">
-        <path d="M 240.9610,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2530)">
-      <path d="M 375.8546,508.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2531">
-        <path d="M 240.9610,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2531)">
-      <path d="M 368.8469,508.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2532">
-        <path d="M 240.9610,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2532)">
-      <path d="M 361.8392,508.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2533">
-        <path d="M 240.9610,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2533)">
-      <path d="M 354.8315,508.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2534">
-        <path d="M 240.9610,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2534)">
-      <path d="M 347.8238,508.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2535">
-        <path d="M 240.9610,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2535)">
-      <path d="M 340.8161,508.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2536">
-        <path d="M 240.9610,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2536)">
-      <path d="M 333.8084,508.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2537">
-        <path d="M 240.9610,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2537)">
-      <path d="M 326.8007,508.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2538">
-        <path d="M 240.9610,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2538)">
-      <path d="M 319.7930,508.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2539">
-        <path d="M 240.9610,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2539)">
-      <path d="M 312.7853,508.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2540">
-        <path d="M 240.9610,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2540)">
-      <path d="M 305.7775,508.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2541">
-        <path d="M 240.9610,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2541)">
-      <path d="M 298.7698,508.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2542">
-        <path d="M 240.9610,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2542)">
-      <path d="M 291.7621,508.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2543">
-        <path d="M 240.9610,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2543)">
-      <path d="M 284.7544,508.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2544">
-        <path d="M 240.9610,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2544)">
-      <path d="M 277.7467,508.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2545">
-        <path d="M 240.9610,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2545)">
-      <path d="M 270.7390,508.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2546">
-        <path d="M 240.9610,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2546)">
-      <path d="M 263.7313,508.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2547">
-        <path d="M 240.9610,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2547)">
-      <path d="M 256.7236,508.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2548">
-        <path d="M 240.9610,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2548)">
-      <path d="M 249.7159,508.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2549">
-        <path d="M 240.9610,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2549)">
-      <path d="M 242.7082,508.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2550">
-        <path d="M 240.9610,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2550)">
-      <path d="M 235.7005,508.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2551">
-        <path d="M 240.9610,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2551)">
-      <path d="M 228.6928,508.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2552">
-        <path d="M 240.9610,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2552)">
-      <path d="M 221.6851,508.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2553">
-        <path d="M 240.9610,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2553)">
-      <path d="M 214.6773,508.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2554">
-        <path d="M 240.9610,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2554)">
-      <path d="M 207.6696,508.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2555">
-        <path d="M 240.9610,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2555)">
-      <path d="M 200.6619,508.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2556">
-        <path d="M 240.9610,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2556)">
-      <path d="M 193.6542,508.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2557">
-        <path d="M 240.9610,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2557)">
-      <path d="M 186.6465,508.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2558">
-        <path d="M 240.9610,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2558)">
-      <path d="M 179.6388,508.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2559">
-        <path d="M 240.9610,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2559)">
-      <path d="M 172.6311,508.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2560">
-        <path d="M 240.9610,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2560)">
-      <path d="M 165.6234,508.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2561">
-        <path d="M 240.9610,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2561)">
-      <path d="M 158.6157,508.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2562">
-        <path d="M 240.9610,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2562)">
-      <path d="M 158.6157,157.9026 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2563">
-        <path d="M 240.9610,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2563)">
-      <path d="M 158.6157,192.9412 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2564">
-        <path d="M 240.9610,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2564)">
-      <path d="M 158.6157,227.9797 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2565">
-        <path d="M 240.9610,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2565)">
-      <path d="M 158.6157,263.0183 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2566">
-        <path d="M 240.9610,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2566)">
-      <path d="M 158.6157,298.0568 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2567">
-        <path d="M 240.9610,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2567)">
-      <path d="M 158.6157,333.0953 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2568">
-        <path d="M 240.9610,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2568)">
-      <path d="M 158.6157,368.1339 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2569">
-        <path d="M 240.9610,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2569)">
-      <path d="M 158.6157,403.1724 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2570">
-        <path d="M 240.9610,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2570)">
-      <path d="M 158.6157,438.2109 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2571">
-        <path d="M 240.9610,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2571)">
-      <path d="M 158.6157,473.2495 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2572">
-        <path d="M 240.9610,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2572)">
-      <path d="M 158.6157,508.2880 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2573">
-        <path d="M 240.9610,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2573)">
-      <path d="M 509.0011,508.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2574">
-        <path d="M 240.9610,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2574)">
-      <path d="M 473.9625,508.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2575">
-        <path d="M 240.9610,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2575)">
-      <path d="M 438.9240,508.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2576">
-        <path d="M 240.9610,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2576)">
-      <path d="M 403.8855,508.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2577">
-        <path d="M 240.9610,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2577)">
-      <path d="M 368.8469,508.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2578">
-        <path d="M 240.9610,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2578)">
-      <path d="M 333.8084,508.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2579">
-        <path d="M 240.9610,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2579)">
-      <path d="M 298.7698,508.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2580">
-        <path d="M 240.9610,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2580)">
-      <path d="M 263.7313,508.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2581">
-        <path d="M 240.9610,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2581)">
-      <path d="M 228.6928,508.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2582">
-        <path d="M 240.9610,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2582)">
-      <path d="M 193.6542,508.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2583">
-        <path d="M 240.9610,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2583)">
-      <path d="M 158.6157,508.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.1" stroke="rgb(102,102,102)" stroke-width="2.98825135876461" fill="rgb(255,255,255)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2584">
-        <path d="M 240.9610,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2584)">
-      <path d="M 536.1559,568.7603 l -0.0000,-495.8678 h -491.9915 l -0.0000,495.8678 Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.1" stroke="rgb(102,102,102)" stroke-width="2.98825135876461" fill="rgb(76,76,76)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 240.9610,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2585">
-        <path d="M 132.7229,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2585)">
-      <path d="M 45.9207,318.2105 l -0.0000,-24.0505 h -96.2018 l -0.0000,24.0505 Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="21.86404754438049px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2586">
-        <path d="M 132.7229,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2586)">
-      <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,-2.1803,306.1853)" stroke="none" text-anchor="middle">y = -2.0
-      </text>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2587">
-        <path d="M 132.7229,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2587)">
-      <path d="M 238.6326,458.3646 l -0.0000,-24.0505 h -96.2018 l -0.0000,24.0505 Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="21.86404754438049px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2588">
-        <path d="M 132.7229,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2588)">
-      <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,190.5317,446.3394)" stroke="none" text-anchor="middle">x = -1.0
-      </text>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="8.96475407629383" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2589">
-        <path d="M 132.7229,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2589)">
-      <path d="M 195.7875,303.9989 c 0.0000,-2.9027 -2.3531,-5.2558 -5.2558 -5.2558c -2.9027,-0.0000 -5.2558,2.3531 -5.2558 5.2558c -0.0000,2.9027 2.3531,5.2558 5.2558 5.2558c 2.9027,0.0000 5.2558,-2.3531 5.2558 -5.2558Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(51,51,51)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2590">
-        <path d="M 132.7229,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2590)">
-      <path d="M 190.5317,409.1145 v -105.1156 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(51,51,51)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2591">
-        <path d="M 132.7229,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2591)">
-      <path d="M 50.3776,303.9989 h 140.1542 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(153,153,153)" stroke-width="5.97650271752922" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2592">
-        <path d="M 132.7229,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2592)">
-      <path d="M 120.4546,23.6906 l 4.2046,24.7232 l 4.2046,23.7141 l 4.2046,22.7050 l 4.2046,21.6959 l 4.2046,20.6868 l 4.2046,19.6776 l 4.2046,18.6685 l 4.2046,17.6594 l 4.2046,16.6503 l 4.2046,15.6412 l 4.2046,14.6321 l 4.2046,13.6230 l 4.2046,12.6139 l 4.2046,11.6048 l 4.2046,10.5957 l 4.2046,9.5865 l 4.2046,8.5774 l 4.2046,7.5683 l 4.2046,6.5592 l 4.2046,5.5501 l 4.2046,4.5410 l 4.2046,3.5319 l 4.2046,2.5228 l 4.2046,1.5137 l 4.2046,0.5046 l 4.2046,-0.5046 l 4.2046,-1.5137 l 4.2046,-2.5228 l 4.2046,-3.5319 l 4.2046,-4.5410 l 4.2046,-5.5501 l 4.2046,-6.5592 l 4.2046,-7.5683 l 4.2046,-8.5774 l 4.2046,-9.5865 l 4.2046,-10.5957 l 4.2046,-11.6048 l 4.2046,-12.6139 l 4.2046,-13.6230 l 4.2046,-14.6321 l 4.2046,-15.6412 l 4.2046,-16.6503 l 4.2046,-17.6594 l 4.2046,-18.6685 l 4.2046,-19.6776 l 4.2046,-20.6868 l 4.2046,-21.6959 l 4.2046,-22.7050 l 4.2046,-23.7141 l 4.2046,-24.7232 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2593">
-        <path d="M 132.7229,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2593)">
-      <path d="M 315.7594,44.7137 l -0.0000,-36.0757 h -180.3784 l -0.0000,36.0757 Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="32.79607131657073px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2594">
-        <path d="M 132.7229,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2594)">
-      <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,225.5702,26.6758)" stroke="none" text-anchor="middle">y = x² - 3
-      </text>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2595">
-        <path d="M 132.7229,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2595)">
-      <path d="M 400.7629,409.1145 l -0.0000,-350.3854 h -350.3854 l -0.0000,350.3854 Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2596">
-        <path d="M 132.7229,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2596)">
-      <path d="M 50.3776,58.7291 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2597">
-        <path d="M 132.7229,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2597)">
-      <path d="M 50.3776,65.7368 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2598">
-        <path d="M 132.7229,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2598)">
-      <path d="M 50.3776,72.7445 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2599">
-        <path d="M 132.7229,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2599)">
-      <path d="M 50.3776,79.7522 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2600">
-        <path d="M 132.7229,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2600)">
-      <path d="M 50.3776,86.7599 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2601">
-        <path d="M 132.7229,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2601)">
-      <path d="M 50.3776,93.7676 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2602">
-        <path d="M 132.7229,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2602)">
-      <path d="M 50.3776,100.7753 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2603">
-        <path d="M 132.7229,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2603)">
-      <path d="M 50.3776,107.7830 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2604">
-        <path d="M 132.7229,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2604)">
-      <path d="M 50.3776,114.7907 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2605">
-        <path d="M 132.7229,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2605)">
-      <path d="M 50.3776,121.7985 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2606">
-        <path d="M 132.7229,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2606)">
-      <path d="M 50.3776,128.8062 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2607">
-        <path d="M 132.7229,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2607)">
-      <path d="M 50.3776,135.8139 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2608">
-        <path d="M 132.7229,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2608)">
-      <path d="M 50.3776,142.8216 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2609">
-        <path d="M 132.7229,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2609)">
-      <path d="M 50.3776,149.8293 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2610">
-        <path d="M 132.7229,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2610)">
-      <path d="M 50.3776,156.8370 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2611">
-        <path d="M 132.7229,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2611)">
-      <path d="M 50.3776,163.8447 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2612">
-        <path d="M 132.7229,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2612)">
-      <path d="M 50.3776,170.8524 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2613">
-        <path d="M 132.7229,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2613)">
-      <path d="M 50.3776,177.8601 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2614">
-        <path d="M 132.7229,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2614)">
-      <path d="M 50.3776,184.8678 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2615">
-        <path d="M 132.7229,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2615)">
-      <path d="M 50.3776,191.8755 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2616">
-        <path d="M 132.7229,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2616)">
-      <path d="M 50.3776,198.8832 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2617">
-        <path d="M 132.7229,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2617)">
-      <path d="M 50.3776,205.8909 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2618">
-        <path d="M 132.7229,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2618)">
-      <path d="M 50.3776,212.8987 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2619">
-        <path d="M 132.7229,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2619)">
-      <path d="M 50.3776,219.9064 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2620">
-        <path d="M 132.7229,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2620)">
-      <path d="M 50.3776,226.9141 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2621">
-        <path d="M 132.7229,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2621)">
-      <path d="M 50.3776,233.9218 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2622">
-        <path d="M 132.7229,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2622)">
-      <path d="M 50.3776,240.9295 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2623">
-        <path d="M 132.7229,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2623)">
-      <path d="M 50.3776,247.9372 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2624">
-        <path d="M 132.7229,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2624)">
-      <path d="M 50.3776,254.9449 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2625">
-        <path d="M 132.7229,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2625)">
-      <path d="M 50.3776,261.9526 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2626">
-        <path d="M 132.7229,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2626)">
-      <path d="M 50.3776,268.9603 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2627">
-        <path d="M 132.7229,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2627)">
-      <path d="M 50.3776,275.9680 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2628">
-        <path d="M 132.7229,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2628)">
-      <path d="M 50.3776,282.9757 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2629">
-        <path d="M 132.7229,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2629)">
-      <path d="M 50.3776,289.9834 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2630">
-        <path d="M 132.7229,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2630)">
-      <path d="M 50.3776,296.9911 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2631">
-        <path d="M 132.7229,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2631)">
-      <path d="M 50.3776,303.9989 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2632">
-        <path d="M 132.7229,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2632)">
-      <path d="M 50.3776,311.0066 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2633">
-        <path d="M 132.7229,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2633)">
-      <path d="M 50.3776,318.0143 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2634">
-        <path d="M 132.7229,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2634)">
-      <path d="M 50.3776,325.0220 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2635">
-        <path d="M 132.7229,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2635)">
-      <path d="M 50.3776,332.0297 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2636">
-        <path d="M 132.7229,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2636)">
-      <path d="M 50.3776,339.0374 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2637">
-        <path d="M 132.7229,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2637)">
-      <path d="M 50.3776,346.0451 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2638">
-        <path d="M 132.7229,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2638)">
-      <path d="M 50.3776,353.0528 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2639">
-        <path d="M 132.7229,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2639)">
-      <path d="M 50.3776,360.0605 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2640">
-        <path d="M 132.7229,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2640)">
-      <path d="M 50.3776,367.0682 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2641">
-        <path d="M 132.7229,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2641)">
-      <path d="M 50.3776,374.0759 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2642">
-        <path d="M 132.7229,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2642)">
-      <path d="M 50.3776,381.0836 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2643">
-        <path d="M 132.7229,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2643)">
-      <path d="M 50.3776,388.0913 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2644">
-        <path d="M 132.7229,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2644)">
-      <path d="M 50.3776,395.0991 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2645">
-        <path d="M 132.7229,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2645)">
-      <path d="M 50.3776,402.1068 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2646">
-        <path d="M 132.7229,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2646)">
-      <path d="M 50.3776,409.1145 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2647">
-        <path d="M 132.7229,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2647)">
-      <path d="M 400.7629,409.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2648">
-        <path d="M 132.7229,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2648)">
-      <path d="M 393.7552,409.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2649">
-        <path d="M 132.7229,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2649)">
-      <path d="M 386.7475,409.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2650">
-        <path d="M 132.7229,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2650)">
-      <path d="M 379.7398,409.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2651">
-        <path d="M 132.7229,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2651)">
-      <path d="M 372.7321,409.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2652">
-        <path d="M 132.7229,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2652)">
-      <path d="M 365.7244,409.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2653">
-        <path d="M 132.7229,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2653)">
-      <path d="M 358.7167,409.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2654">
-        <path d="M 132.7229,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2654)">
-      <path d="M 351.7090,409.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2655">
-        <path d="M 132.7229,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2655)">
-      <path d="M 344.7013,409.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2656">
-        <path d="M 132.7229,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2656)">
-      <path d="M 337.6936,409.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2657">
-        <path d="M 132.7229,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2657)">
-      <path d="M 330.6859,409.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2658">
-        <path d="M 132.7229,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2658)">
-      <path d="M 323.6781,409.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2659">
-        <path d="M 132.7229,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2659)">
-      <path d="M 316.6704,409.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2660">
-        <path d="M 132.7229,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2660)">
-      <path d="M 309.6627,409.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2661">
-        <path d="M 132.7229,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2661)">
-      <path d="M 302.6550,409.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2662">
-        <path d="M 132.7229,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2662)">
-      <path d="M 295.6473,409.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2663">
-        <path d="M 132.7229,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2663)">
-      <path d="M 288.6396,409.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2664">
-        <path d="M 132.7229,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2664)">
-      <path d="M 281.6319,409.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2665">
-        <path d="M 132.7229,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2665)">
-      <path d="M 274.6242,409.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2666">
-        <path d="M 132.7229,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2666)">
-      <path d="M 267.6165,409.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2667">
-        <path d="M 132.7229,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2667)">
-      <path d="M 260.6088,409.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2668">
-        <path d="M 132.7229,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2668)">
-      <path d="M 253.6011,409.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2669">
-        <path d="M 132.7229,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2669)">
-      <path d="M 246.5934,409.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2670">
-        <path d="M 132.7229,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2670)">
-      <path d="M 239.5857,409.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2671">
-        <path d="M 132.7229,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2671)">
-      <path d="M 232.5779,409.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2672">
-        <path d="M 132.7229,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2672)">
-      <path d="M 225.5702,409.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2673">
-        <path d="M 132.7229,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2673)">
-      <path d="M 218.5625,409.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2674">
-        <path d="M 132.7229,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2674)">
-      <path d="M 211.5548,409.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2675">
-        <path d="M 132.7229,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2675)">
-      <path d="M 204.5471,409.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2676">
-        <path d="M 132.7229,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2676)">
-      <path d="M 197.5394,409.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2677">
-        <path d="M 132.7229,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2677)">
-      <path d="M 190.5317,409.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2678">
-        <path d="M 132.7229,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2678)">
-      <path d="M 183.5240,409.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2679">
-        <path d="M 132.7229,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2679)">
-      <path d="M 176.5163,409.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2680">
-        <path d="M 132.7229,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2680)">
-      <path d="M 169.5086,409.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2681">
-        <path d="M 132.7229,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2681)">
-      <path d="M 162.5009,409.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2682">
-        <path d="M 132.7229,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2682)">
-      <path d="M 155.4932,409.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2683">
-        <path d="M 132.7229,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2683)">
-      <path d="M 148.4855,409.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2684">
-        <path d="M 132.7229,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2684)">
-      <path d="M 141.4778,409.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2685">
-        <path d="M 132.7229,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2685)">
-      <path d="M 134.4700,409.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2686">
-        <path d="M 132.7229,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2686)">
-      <path d="M 127.4623,409.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2687">
-        <path d="M 132.7229,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2687)">
-      <path d="M 120.4546,409.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2688">
-        <path d="M 132.7229,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2688)">
-      <path d="M 113.4469,409.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2689">
-        <path d="M 132.7229,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2689)">
-      <path d="M 106.4392,409.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2690">
-        <path d="M 132.7229,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2690)">
-      <path d="M 99.4315,409.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2691">
-        <path d="M 132.7229,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2691)">
-      <path d="M 92.4238,409.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2692">
-        <path d="M 132.7229,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2692)">
-      <path d="M 85.4161,409.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2693">
-        <path d="M 132.7229,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2693)">
-      <path d="M 78.4084,409.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2694">
-        <path d="M 132.7229,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2694)">
-      <path d="M 71.4007,409.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2695">
-        <path d="M 132.7229,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2695)">
-      <path d="M 64.3930,409.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2696">
-        <path d="M 132.7229,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2696)">
-      <path d="M 57.3853,409.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2697">
-        <path d="M 132.7229,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2697)">
-      <path d="M 50.3776,409.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2698">
-        <path d="M 132.7229,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2698)">
-      <path d="M 50.3776,58.7291 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2699">
-        <path d="M 132.7229,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2699)">
-      <path d="M 50.3776,93.7676 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2700">
-        <path d="M 132.7229,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2700)">
-      <path d="M 50.3776,128.8062 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2701">
-        <path d="M 132.7229,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2701)">
-      <path d="M 50.3776,163.8447 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2702">
-        <path d="M 132.7229,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2702)">
-      <path d="M 50.3776,198.8832 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2703">
-        <path d="M 132.7229,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2703)">
-      <path d="M 50.3776,233.9218 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2704">
-        <path d="M 132.7229,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2704)">
-      <path d="M 50.3776,268.9603 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2705">
-        <path d="M 132.7229,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2705)">
-      <path d="M 50.3776,303.9989 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2706">
-        <path d="M 132.7229,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2706)">
-      <path d="M 50.3776,339.0374 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2707">
-        <path d="M 132.7229,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2707)">
-      <path d="M 50.3776,374.0759 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2708">
-        <path d="M 132.7229,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2708)">
-      <path d="M 50.3776,409.1145 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2709">
-        <path d="M 132.7229,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2709)">
-      <path d="M 400.7629,409.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2710">
-        <path d="M 132.7229,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2710)">
-      <path d="M 365.7244,409.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2711">
-        <path d="M 132.7229,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2711)">
-      <path d="M 330.6859,409.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2712">
-        <path d="M 132.7229,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2712)">
-      <path d="M 295.6473,409.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2713">
-        <path d="M 132.7229,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2713)">
-      <path d="M 260.6088,409.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2714">
-        <path d="M 132.7229,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2714)">
-      <path d="M 225.5702,409.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2715">
-        <path d="M 132.7229,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2715)">
-      <path d="M 190.5317,409.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2716">
-        <path d="M 132.7229,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2716)">
-      <path d="M 155.4932,409.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2717">
-        <path d="M 132.7229,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2717)">
-      <path d="M 120.4546,409.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2718">
-        <path d="M 132.7229,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2718)">
-      <path d="M 85.4161,409.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2719">
-        <path d="M 132.7229,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2719)">
-      <path d="M 50.3776,409.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.1" stroke="rgb(102,102,102)" stroke-width="2.98825135876461" fill="rgb(255,255,255)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2720">
-        <path d="M 132.7229,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2720)">
-      <path d="M 427.9178,469.5868 l -0.0000,-495.8678 h -491.9915 l -0.0000,495.8678 Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.1" stroke="rgb(102,102,102)" stroke-width="2.98825135876461" fill="rgb(76,76,76)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 132.7229,469.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2721">
-        <path d="M 565.6754,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2721)">
-      <path d="M 577.2715,834.9047 l -0.0000,-24.0505 h -96.2018 l -0.0000,24.0505 Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="21.86404754438049px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2722">
-        <path d="M 565.6754,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2722)">
-      <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,529.1706,822.8795)" stroke="none" text-anchor="middle">y = -2.0
-      </text>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2723">
-        <path d="M 565.6754,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2723)">
-      <path d="M 769.9835,975.0588 l -0.0000,-24.0505 h -96.2018 l -0.0000,24.0505 Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="21.86404754438049px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2724">
-        <path d="M 565.6754,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2724)">
-      <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,721.8826,963.0336)" stroke="none" text-anchor="middle">x = -1.0
-      </text>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="8.96475407629383" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2725">
-        <path d="M 565.6754,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2725)">
-      <path d="M 727.1383,820.6931 c 0.0000,-2.9027 -2.3531,-5.2558 -5.2558 -5.2558c -2.9027,-0.0000 -5.2558,2.3531 -5.2558 5.2558c -0.0000,2.9027 2.3531,5.2558 5.2558 5.2558c 2.9027,0.0000 5.2558,-2.3531 5.2558 -5.2558Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(51,51,51)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2726">
-        <path d="M 565.6754,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2726)">
-      <path d="M 721.8826,925.8087 v -105.1156 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(51,51,51)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2727">
-        <path d="M 565.6754,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2727)">
-      <path d="M 581.7284,820.6931 h 140.1542 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(153,153,153)" stroke-width="5.97650271752922" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2728">
-        <path d="M 565.6754,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2728)">
-      <path d="M 651.8055,540.3848 l 4.2046,24.7232 l 4.2046,23.7141 l 4.2046,22.7050 l 4.2046,21.6959 l 4.2046,20.6868 l 4.2046,19.6776 l 4.2046,18.6685 l 4.2046,17.6594 l 4.2046,16.6503 l 4.2046,15.6412 l 4.2046,14.6321 l 4.2046,13.6230 l 4.2046,12.6139 l 4.2046,11.6048 l 4.2046,10.5957 l 4.2046,9.5865 l 4.2046,8.5774 l 4.2046,7.5683 l 4.2046,6.5592 l 4.2046,5.5501 l 4.2046,4.5410 l 4.2046,3.5319 l 4.2046,2.5228 l 4.2046,1.5137 l 4.2046,0.5046 l 4.2046,-0.5046 l 4.2046,-1.5137 l 4.2046,-2.5228 l 4.2046,-3.5319 l 4.2046,-4.5410 l 4.2046,-5.5501 l 4.2046,-6.5592 l 4.2046,-7.5683 l 4.2046,-8.5774 l 4.2046,-9.5865 l 4.2046,-10.5957 l 4.2046,-11.6048 l 4.2046,-12.6139 l 4.2046,-13.6230 l 4.2046,-14.6321 l 4.2046,-15.6412 l 4.2046,-16.6503 l 4.2046,-17.6594 l 4.2046,-18.6685 l 4.2046,-19.6776 l 4.2046,-20.6868 l 4.2046,-21.6959 l 4.2046,-22.7050 l 4.2046,-23.7141 l 4.2046,-24.7232 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2729">
-        <path d="M 565.6754,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2729)">
-      <path d="M 847.1103,561.4079 l -0.0000,-36.0757 h -180.3784 l -0.0000,36.0757 Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="32.79607131657073px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2730">
-        <path d="M 565.6754,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2730)">
-      <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,756.9211,543.3700)" stroke="none" text-anchor="middle">y = x² - 3
-      </text>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2731">
-        <path d="M 565.6754,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2731)">
-      <path d="M 932.1138,925.8087 l -0.0000,-350.3854 h -350.3854 l -0.0000,350.3854 Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2732">
-        <path d="M 565.6754,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2732)">
-      <path d="M 581.7284,575.4233 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2733">
-        <path d="M 565.6754,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2733)">
-      <path d="M 581.7284,582.4310 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2734">
-        <path d="M 565.6754,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2734)">
-      <path d="M 581.7284,589.4387 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2735">
-        <path d="M 565.6754,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2735)">
-      <path d="M 581.7284,596.4464 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2736">
-        <path d="M 565.6754,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2736)">
-      <path d="M 581.7284,603.4541 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2737">
-        <path d="M 565.6754,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2737)">
-      <path d="M 581.7284,610.4618 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2738">
-        <path d="M 565.6754,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2738)">
-      <path d="M 581.7284,617.4695 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2739">
-        <path d="M 565.6754,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2739)">
-      <path d="M 581.7284,624.4773 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2740">
-        <path d="M 565.6754,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2740)">
-      <path d="M 581.7284,631.4850 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2741">
-        <path d="M 565.6754,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2741)">
-      <path d="M 581.7284,638.4927 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2742">
-        <path d="M 565.6754,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2742)">
-      <path d="M 581.7284,645.5004 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2743">
-        <path d="M 565.6754,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2743)">
-      <path d="M 581.7284,652.5081 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2744">
-        <path d="M 565.6754,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2744)">
-      <path d="M 581.7284,659.5158 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2745">
-        <path d="M 565.6754,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2745)">
-      <path d="M 581.7284,666.5235 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2746">
-        <path d="M 565.6754,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2746)">
-      <path d="M 581.7284,673.5312 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2747">
-        <path d="M 565.6754,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2747)">
-      <path d="M 581.7284,680.5389 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2748">
-        <path d="M 565.6754,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2748)">
-      <path d="M 581.7284,687.5466 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2749">
-        <path d="M 565.6754,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2749)">
-      <path d="M 581.7284,694.5543 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2750">
-        <path d="M 565.6754,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2750)">
-      <path d="M 581.7284,701.5620 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2751">
-        <path d="M 565.6754,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2751)">
-      <path d="M 581.7284,708.5697 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2752">
-        <path d="M 565.6754,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2752)">
-      <path d="M 581.7284,715.5775 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2753">
-        <path d="M 565.6754,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2753)">
-      <path d="M 581.7284,722.5852 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2754">
-        <path d="M 565.6754,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2754)">
-      <path d="M 581.7284,729.5929 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2755">
-        <path d="M 565.6754,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2755)">
-      <path d="M 581.7284,736.6006 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2756">
-        <path d="M 565.6754,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2756)">
-      <path d="M 581.7284,743.6083 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2757">
-        <path d="M 565.6754,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2757)">
-      <path d="M 581.7284,750.6160 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2758">
-        <path d="M 565.6754,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2758)">
-      <path d="M 581.7284,757.6237 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2759">
-        <path d="M 565.6754,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2759)">
-      <path d="M 581.7284,764.6314 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2760">
-        <path d="M 565.6754,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2760)">
-      <path d="M 581.7284,771.6391 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2761">
-        <path d="M 565.6754,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2761)">
-      <path d="M 581.7284,778.6468 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2762">
-        <path d="M 565.6754,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2762)">
-      <path d="M 581.7284,785.6545 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2763">
-        <path d="M 565.6754,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2763)">
-      <path d="M 581.7284,792.6622 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2764">
-        <path d="M 565.6754,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2764)">
-      <path d="M 581.7284,799.6699 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2765">
-        <path d="M 565.6754,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2765)">
-      <path d="M 581.7284,806.6777 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2766">
-        <path d="M 565.6754,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2766)">
-      <path d="M 581.7284,813.6854 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2767">
-        <path d="M 565.6754,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2767)">
-      <path d="M 581.7284,820.6931 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2768">
-        <path d="M 565.6754,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2768)">
-      <path d="M 581.7284,827.7008 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2769">
-        <path d="M 565.6754,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2769)">
-      <path d="M 581.7284,834.7085 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2770">
-        <path d="M 565.6754,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2770)">
-      <path d="M 581.7284,841.7162 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2771">
-        <path d="M 565.6754,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2771)">
-      <path d="M 581.7284,848.7239 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2772">
-        <path d="M 565.6754,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2772)">
-      <path d="M 581.7284,855.7316 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2773">
-        <path d="M 565.6754,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2773)">
-      <path d="M 581.7284,862.7393 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2774">
-        <path d="M 565.6754,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2774)">
-      <path d="M 581.7284,869.7470 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2775">
-        <path d="M 565.6754,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2775)">
-      <path d="M 581.7284,876.7547 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2776">
-        <path d="M 565.6754,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2776)">
-      <path d="M 581.7284,883.7624 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2777">
-        <path d="M 565.6754,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2777)">
-      <path d="M 581.7284,890.7701 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2778">
-        <path d="M 565.6754,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2778)">
-      <path d="M 581.7284,897.7779 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2779">
-        <path d="M 565.6754,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2779)">
-      <path d="M 581.7284,904.7856 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2780">
-        <path d="M 565.6754,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2780)">
-      <path d="M 581.7284,911.7933 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2781">
-        <path d="M 565.6754,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2781)">
-      <path d="M 581.7284,918.8010 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2782">
-        <path d="M 565.6754,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2782)">
-      <path d="M 581.7284,925.8087 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2783">
-        <path d="M 565.6754,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2783)">
-      <path d="M 932.1138,925.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2784">
-        <path d="M 565.6754,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2784)">
-      <path d="M 925.1061,925.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2785">
-        <path d="M 565.6754,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2785)">
-      <path d="M 918.0984,925.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2786">
-        <path d="M 565.6754,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2786)">
-      <path d="M 911.0907,925.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2787">
-        <path d="M 565.6754,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2787)">
-      <path d="M 904.0829,925.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2788">
-        <path d="M 565.6754,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2788)">
-      <path d="M 897.0752,925.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2789">
-        <path d="M 565.6754,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2789)">
-      <path d="M 890.0675,925.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2790">
-        <path d="M 565.6754,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2790)">
-      <path d="M 883.0598,925.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2791">
-        <path d="M 565.6754,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2791)">
-      <path d="M 876.0521,925.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2792">
-        <path d="M 565.6754,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2792)">
-      <path d="M 869.0444,925.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2793">
-        <path d="M 565.6754,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2793)">
-      <path d="M 862.0367,925.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2794">
-        <path d="M 565.6754,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2794)">
-      <path d="M 855.0290,925.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2795">
-        <path d="M 565.6754,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2795)">
-      <path d="M 848.0213,925.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2796">
-        <path d="M 565.6754,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2796)">
-      <path d="M 841.0136,925.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2797">
-        <path d="M 565.6754,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2797)">
-      <path d="M 834.0059,925.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2798">
-        <path d="M 565.6754,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2798)">
-      <path d="M 826.9982,925.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2799">
-        <path d="M 565.6754,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2799)">
-      <path d="M 819.9905,925.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2800">
-        <path d="M 565.6754,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2800)">
-      <path d="M 812.9827,925.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2801">
-        <path d="M 565.6754,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2801)">
-      <path d="M 805.9750,925.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2802">
-        <path d="M 565.6754,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2802)">
-      <path d="M 798.9673,925.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2803">
-        <path d="M 565.6754,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2803)">
-      <path d="M 791.9596,925.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2804">
-        <path d="M 565.6754,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2804)">
-      <path d="M 784.9519,925.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2805">
-        <path d="M 565.6754,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2805)">
-      <path d="M 777.9442,925.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2806">
-        <path d="M 565.6754,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2806)">
-      <path d="M 770.9365,925.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2807">
-        <path d="M 565.6754,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2807)">
-      <path d="M 763.9288,925.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2808">
-        <path d="M 565.6754,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2808)">
-      <path d="M 756.9211,925.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2809">
-        <path d="M 565.6754,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2809)">
-      <path d="M 749.9134,925.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2810">
-        <path d="M 565.6754,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2810)">
-      <path d="M 742.9057,925.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2811">
-        <path d="M 565.6754,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2811)">
-      <path d="M 735.8980,925.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2812">
-        <path d="M 565.6754,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2812)">
-      <path d="M 728.8903,925.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2813">
-        <path d="M 565.6754,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2813)">
-      <path d="M 721.8826,925.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2814">
-        <path d="M 565.6754,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2814)">
-      <path d="M 714.8748,925.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2815">
-        <path d="M 565.6754,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2815)">
-      <path d="M 707.8671,925.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2816">
-        <path d="M 565.6754,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2816)">
-      <path d="M 700.8594,925.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2817">
-        <path d="M 565.6754,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2817)">
-      <path d="M 693.8517,925.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2818">
-        <path d="M 565.6754,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2818)">
-      <path d="M 686.8440,925.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2819">
-        <path d="M 565.6754,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2819)">
-      <path d="M 679.8363,925.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2820">
-        <path d="M 565.6754,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2820)">
-      <path d="M 672.8286,925.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2821">
-        <path d="M 565.6754,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2821)">
-      <path d="M 665.8209,925.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2822">
-        <path d="M 565.6754,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2822)">
-      <path d="M 658.8132,925.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2823">
-        <path d="M 565.6754,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2823)">
-      <path d="M 651.8055,925.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2824">
-        <path d="M 565.6754,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2824)">
-      <path d="M 644.7978,925.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2825">
-        <path d="M 565.6754,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2825)">
-      <path d="M 637.7901,925.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2826">
-        <path d="M 565.6754,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2826)">
-      <path d="M 630.7824,925.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2827">
-        <path d="M 565.6754,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2827)">
-      <path d="M 623.7746,925.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2828">
-        <path d="M 565.6754,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2828)">
-      <path d="M 616.7669,925.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2829">
-        <path d="M 565.6754,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2829)">
-      <path d="M 609.7592,925.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2830">
-        <path d="M 565.6754,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2830)">
-      <path d="M 602.7515,925.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2831">
-        <path d="M 565.6754,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2831)">
-      <path d="M 595.7438,925.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2832">
-        <path d="M 565.6754,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2832)">
-      <path d="M 588.7361,925.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2833">
-        <path d="M 565.6754,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2833)">
-      <path d="M 581.7284,925.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2834">
-        <path d="M 565.6754,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2834)">
-      <path d="M 581.7284,575.4233 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2835">
-        <path d="M 565.6754,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2835)">
-      <path d="M 581.7284,610.4618 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2836">
-        <path d="M 565.6754,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2836)">
-      <path d="M 581.7284,645.5004 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2837">
-        <path d="M 565.6754,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2837)">
-      <path d="M 581.7284,680.5389 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2838">
-        <path d="M 565.6754,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2838)">
-      <path d="M 581.7284,715.5775 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2839">
-        <path d="M 565.6754,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2839)">
-      <path d="M 581.7284,750.6160 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2840">
-        <path d="M 565.6754,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2840)">
-      <path d="M 581.7284,785.6545 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2841">
-        <path d="M 565.6754,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2841)">
-      <path d="M 581.7284,820.6931 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2842">
-        <path d="M 565.6754,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2842)">
-      <path d="M 581.7284,855.7316 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2843">
-        <path d="M 565.6754,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2843)">
-      <path d="M 581.7284,890.7701 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2844">
-        <path d="M 565.6754,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2844)">
-      <path d="M 581.7284,925.8087 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2845">
-        <path d="M 565.6754,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2845)">
-      <path d="M 932.1138,925.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2846">
-        <path d="M 565.6754,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2846)">
-      <path d="M 897.0752,925.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2847">
-        <path d="M 565.6754,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2847)">
-      <path d="M 862.0367,925.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2848">
-        <path d="M 565.6754,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2848)">
-      <path d="M 826.9982,925.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2849">
-        <path d="M 565.6754,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2849)">
-      <path d="M 791.9596,925.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2850">
-        <path d="M 565.6754,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2850)">
-      <path d="M 756.9211,925.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2851">
-        <path d="M 565.6754,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2851)">
-      <path d="M 721.8826,925.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2852">
-        <path d="M 565.6754,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2852)">
-      <path d="M 686.8440,925.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2853">
-        <path d="M 565.6754,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2853)">
-      <path d="M 651.8055,925.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2854">
-        <path d="M 565.6754,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2854)">
-      <path d="M 616.7669,925.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2855">
-        <path d="M 565.6754,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2855)">
-      <path d="M 581.7284,925.8087 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.1" stroke="rgb(102,102,102)" stroke-width="2.98825135876461" fill="rgb(255,255,255)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2856">
-        <path d="M 565.6754,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2856)">
-      <path d="M 959.2686,986.2810 l -0.0000,-495.8678 h -491.9915 l -0.0000,495.8678 Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.1" stroke="rgb(102,102,102)" stroke-width="2.98825135876461" fill="rgb(76,76,76)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 565.6754,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2857">
-        <path d="M 457.4373,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2857)">
-      <path d="M 469.0334,735.7311 l -0.0000,-24.0505 h -96.2018 l -0.0000,24.0505 Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="21.86404754438049px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2858">
-        <path d="M 457.4373,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2858)">
-      <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,420.9325,723.7059)" stroke="none" text-anchor="middle">y = -2.0
-      </text>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2859">
-        <path d="M 457.4373,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2859)">
-      <path d="M 661.7453,875.8853 l -0.0000,-24.0505 h -96.2018 l -0.0000,24.0505 Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="21.86404754438049px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2860">
-        <path d="M 457.4373,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2860)">
-      <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,613.6444,863.8601)" stroke="none" text-anchor="middle">x = -1.0
-      </text>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="8.96475407629383" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2861">
-        <path d="M 457.4373,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2861)">
-      <path d="M 618.9002,721.5195 c 0.0000,-2.9027 -2.3531,-5.2558 -5.2558 -5.2558c -2.9027,-0.0000 -5.2558,2.3531 -5.2558 5.2558c -0.0000,2.9027 2.3531,5.2558 5.2558 5.2558c 2.9027,0.0000 5.2558,-2.3531 5.2558 -5.2558Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(51,51,51)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2862">
-        <path d="M 457.4373,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2862)">
-      <path d="M 613.6444,826.6351 v -105.1156 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(51,51,51)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2863">
-        <path d="M 457.4373,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2863)">
-      <path d="M 473.4903,721.5195 h 140.1542 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(153,153,153)" stroke-width="5.97650271752922" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2864">
-        <path d="M 457.4373,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2864)">
-      <path d="M 543.5673,441.2112 l 4.2046,24.7232 l 4.2046,23.7141 l 4.2046,22.7050 l 4.2046,21.6959 l 4.2046,20.6868 l 4.2046,19.6776 l 4.2046,18.6685 l 4.2046,17.6594 l 4.2046,16.6503 l 4.2046,15.6412 l 4.2046,14.6321 l 4.2046,13.6230 l 4.2046,12.6139 l 4.2046,11.6048 l 4.2046,10.5957 l 4.2046,9.5865 l 4.2046,8.5774 l 4.2046,7.5683 l 4.2046,6.5592 l 4.2046,5.5501 l 4.2046,4.5410 l 4.2046,3.5319 l 4.2046,2.5228 l 4.2046,1.5137 l 4.2046,0.5046 l 4.2046,-0.5046 l 4.2046,-1.5137 l 4.2046,-2.5228 l 4.2046,-3.5319 l 4.2046,-4.5410 l 4.2046,-5.5501 l 4.2046,-6.5592 l 4.2046,-7.5683 l 4.2046,-8.5774 l 4.2046,-9.5865 l 4.2046,-10.5957 l 4.2046,-11.6048 l 4.2046,-12.6139 l 4.2046,-13.6230 l 4.2046,-14.6321 l 4.2046,-15.6412 l 4.2046,-16.6503 l 4.2046,-17.6594 l 4.2046,-18.6685 l 4.2046,-19.6776 l 4.2046,-20.6868 l 4.2046,-21.6959 l 4.2046,-22.7050 l 4.2046,-23.7141 l 4.2046,-24.7232 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2865">
-        <path d="M 457.4373,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2865)">
-      <path d="M 738.8721,462.2343 l -0.0000,-36.0757 h -180.3784 l -0.0000,36.0757 Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="32.79607131657073px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2866">
-        <path d="M 457.4373,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2866)">
-      <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,648.6830,444.1965)" stroke="none" text-anchor="middle">y = x² - 3
-      </text>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2867">
-        <path d="M 457.4373,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2867)">
-      <path d="M 823.8756,826.6351 l -0.0000,-350.3854 h -350.3854 l -0.0000,350.3854 Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2868">
-        <path d="M 457.4373,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2868)">
-      <path d="M 473.4903,476.2497 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2869">
-        <path d="M 457.4373,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2869)">
-      <path d="M 473.4903,483.2575 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2870">
-        <path d="M 457.4373,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2870)">
-      <path d="M 473.4903,490.2652 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2871">
-        <path d="M 457.4373,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2871)">
-      <path d="M 473.4903,497.2729 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2872">
-        <path d="M 457.4373,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2872)">
-      <path d="M 473.4903,504.2806 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2873">
-        <path d="M 457.4373,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2873)">
-      <path d="M 473.4903,511.2883 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2874">
-        <path d="M 457.4373,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2874)">
-      <path d="M 473.4903,518.2960 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2875">
-        <path d="M 457.4373,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2875)">
-      <path d="M 473.4903,525.3037 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2876">
-        <path d="M 457.4373,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2876)">
-      <path d="M 473.4903,532.3114 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2877">
-        <path d="M 457.4373,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2877)">
-      <path d="M 473.4903,539.3191 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2878">
-        <path d="M 457.4373,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2878)">
-      <path d="M 473.4903,546.3268 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2879">
-        <path d="M 457.4373,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2879)">
-      <path d="M 473.4903,553.3345 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2880">
-        <path d="M 457.4373,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2880)">
-      <path d="M 473.4903,560.3422 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2881">
-        <path d="M 457.4373,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2881)">
-      <path d="M 473.4903,567.3499 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2882">
-        <path d="M 457.4373,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2882)">
-      <path d="M 473.4903,574.3577 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2883">
-        <path d="M 457.4373,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2883)">
-      <path d="M 473.4903,581.3654 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2884">
-        <path d="M 457.4373,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2884)">
-      <path d="M 473.4903,588.3731 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2885">
-        <path d="M 457.4373,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2885)">
-      <path d="M 473.4903,595.3808 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2886">
-        <path d="M 457.4373,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2886)">
-      <path d="M 473.4903,602.3885 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2887">
-        <path d="M 457.4373,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2887)">
-      <path d="M 473.4903,609.3962 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2888">
-        <path d="M 457.4373,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2888)">
-      <path d="M 473.4903,616.4039 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2889">
-        <path d="M 457.4373,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2889)">
-      <path d="M 473.4903,623.4116 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2890">
-        <path d="M 457.4373,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2890)">
-      <path d="M 473.4903,630.4193 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2891">
-        <path d="M 457.4373,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2891)">
-      <path d="M 473.4903,637.4270 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2892">
-        <path d="M 457.4373,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2892)">
-      <path d="M 473.4903,644.4347 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2893">
-        <path d="M 457.4373,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2893)">
-      <path d="M 473.4903,651.4424 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2894">
-        <path d="M 457.4373,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2894)">
-      <path d="M 473.4903,658.4501 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2895">
-        <path d="M 457.4373,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2895)">
-      <path d="M 473.4903,665.4579 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2896">
-        <path d="M 457.4373,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2896)">
-      <path d="M 473.4903,672.4656 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2897">
-        <path d="M 457.4373,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2897)">
-      <path d="M 473.4903,679.4733 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2898">
-        <path d="M 457.4373,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2898)">
-      <path d="M 473.4903,686.4810 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2899">
-        <path d="M 457.4373,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2899)">
-      <path d="M 473.4903,693.4887 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2900">
-        <path d="M 457.4373,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2900)">
-      <path d="M 473.4903,700.4964 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2901">
-        <path d="M 457.4373,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2901)">
-      <path d="M 473.4903,707.5041 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2902">
-        <path d="M 457.4373,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2902)">
-      <path d="M 473.4903,714.5118 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2903">
-        <path d="M 457.4373,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2903)">
-      <path d="M 473.4903,721.5195 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2904">
-        <path d="M 457.4373,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2904)">
-      <path d="M 473.4903,728.5272 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2905">
-        <path d="M 457.4373,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2905)">
-      <path d="M 473.4903,735.5349 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2906">
-        <path d="M 457.4373,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2906)">
-      <path d="M 473.4903,742.5426 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2907">
-        <path d="M 457.4373,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2907)">
-      <path d="M 473.4903,749.5503 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2908">
-        <path d="M 457.4373,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2908)">
-      <path d="M 473.4903,756.5581 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2909">
-        <path d="M 457.4373,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2909)">
-      <path d="M 473.4903,763.5658 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2910">
-        <path d="M 457.4373,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2910)">
-      <path d="M 473.4903,770.5735 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2911">
-        <path d="M 457.4373,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2911)">
-      <path d="M 473.4903,777.5812 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2912">
-        <path d="M 457.4373,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2912)">
-      <path d="M 473.4903,784.5889 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2913">
-        <path d="M 457.4373,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2913)">
-      <path d="M 473.4903,791.5966 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2914">
-        <path d="M 457.4373,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2914)">
-      <path d="M 473.4903,798.6043 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2915">
-        <path d="M 457.4373,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2915)">
-      <path d="M 473.4903,805.6120 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2916">
-        <path d="M 457.4373,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2916)">
-      <path d="M 473.4903,812.6197 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2917">
-        <path d="M 457.4373,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2917)">
-      <path d="M 473.4903,819.6274 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2918">
-        <path d="M 457.4373,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2918)">
-      <path d="M 473.4903,826.6351 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2919">
-        <path d="M 457.4373,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2919)">
-      <path d="M 823.8756,826.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2920">
-        <path d="M 457.4373,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2920)">
-      <path d="M 816.8679,826.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2921">
-        <path d="M 457.4373,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2921)">
-      <path d="M 809.8602,826.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2922">
-        <path d="M 457.4373,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2922)">
-      <path d="M 802.8525,826.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2923">
-        <path d="M 457.4373,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2923)">
-      <path d="M 795.8448,826.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2924">
-        <path d="M 457.4373,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2924)">
-      <path d="M 788.8371,826.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2925">
-        <path d="M 457.4373,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2925)">
-      <path d="M 781.8294,826.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2926">
-        <path d="M 457.4373,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2926)">
-      <path d="M 774.8217,826.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2927">
-        <path d="M 457.4373,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2927)">
-      <path d="M 767.8140,826.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2928">
-        <path d="M 457.4373,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2928)">
-      <path d="M 760.8063,826.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2929">
-        <path d="M 457.4373,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2929)">
-      <path d="M 753.7986,826.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2930">
-        <path d="M 457.4373,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2930)">
-      <path d="M 746.7909,826.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2931">
-        <path d="M 457.4373,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2931)">
-      <path d="M 739.7832,826.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2932">
-        <path d="M 457.4373,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2932)">
-      <path d="M 732.7754,826.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2933">
-        <path d="M 457.4373,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2933)">
-      <path d="M 725.7677,826.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2934">
-        <path d="M 457.4373,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2934)">
-      <path d="M 718.7600,826.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2935">
-        <path d="M 457.4373,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2935)">
-      <path d="M 711.7523,826.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2936">
-        <path d="M 457.4373,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2936)">
-      <path d="M 704.7446,826.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2937">
-        <path d="M 457.4373,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2937)">
-      <path d="M 697.7369,826.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2938">
-        <path d="M 457.4373,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2938)">
-      <path d="M 690.7292,826.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2939">
-        <path d="M 457.4373,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2939)">
-      <path d="M 683.7215,826.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2940">
-        <path d="M 457.4373,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2940)">
-      <path d="M 676.7138,826.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2941">
-        <path d="M 457.4373,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2941)">
-      <path d="M 669.7061,826.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2942">
-        <path d="M 457.4373,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2942)">
-      <path d="M 662.6984,826.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2943">
-        <path d="M 457.4373,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2943)">
-      <path d="M 655.6907,826.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2944">
-        <path d="M 457.4373,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2944)">
-      <path d="M 648.6830,826.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2945">
-        <path d="M 457.4373,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2945)">
-      <path d="M 641.6752,826.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2946">
-        <path d="M 457.4373,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2946)">
-      <path d="M 634.6675,826.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2947">
-        <path d="M 457.4373,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2947)">
-      <path d="M 627.6598,826.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2948">
-        <path d="M 457.4373,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2948)">
-      <path d="M 620.6521,826.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2949">
-        <path d="M 457.4373,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2949)">
-      <path d="M 613.6444,826.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2950">
-        <path d="M 457.4373,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2950)">
-      <path d="M 606.6367,826.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2951">
-        <path d="M 457.4373,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2951)">
-      <path d="M 599.6290,826.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2952">
-        <path d="M 457.4373,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2952)">
-      <path d="M 592.6213,826.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2953">
-        <path d="M 457.4373,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2953)">
-      <path d="M 585.6136,826.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2954">
-        <path d="M 457.4373,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2954)">
-      <path d="M 578.6059,826.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2955">
-        <path d="M 457.4373,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2955)">
-      <path d="M 571.5982,826.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2956">
-        <path d="M 457.4373,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2956)">
-      <path d="M 564.5905,826.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2957">
-        <path d="M 457.4373,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2957)">
-      <path d="M 557.5828,826.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2958">
-        <path d="M 457.4373,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2958)">
-      <path d="M 550.5750,826.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2959">
-        <path d="M 457.4373,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2959)">
-      <path d="M 543.5673,826.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2960">
-        <path d="M 457.4373,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2960)">
-      <path d="M 536.5596,826.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2961">
-        <path d="M 457.4373,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2961)">
-      <path d="M 529.5519,826.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2962">
-        <path d="M 457.4373,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2962)">
-      <path d="M 522.5442,826.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2963">
-        <path d="M 457.4373,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2963)">
-      <path d="M 515.5365,826.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2964">
-        <path d="M 457.4373,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2964)">
-      <path d="M 508.5288,826.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2965">
-        <path d="M 457.4373,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2965)">
-      <path d="M 501.5211,826.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2966">
-        <path d="M 457.4373,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2966)">
-      <path d="M 494.5134,826.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2967">
-        <path d="M 457.4373,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2967)">
-      <path d="M 487.5057,826.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2968">
-        <path d="M 457.4373,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2968)">
-      <path d="M 480.4980,826.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2969">
-        <path d="M 457.4373,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2969)">
-      <path d="M 473.4903,826.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2970">
-        <path d="M 457.4373,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2970)">
-      <path d="M 473.4903,476.2497 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2971">
-        <path d="M 457.4373,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2971)">
-      <path d="M 473.4903,511.2883 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2972">
-        <path d="M 457.4373,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2972)">
-      <path d="M 473.4903,546.3268 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2973">
-        <path d="M 457.4373,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2973)">
-      <path d="M 473.4903,581.3654 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2974">
-        <path d="M 457.4373,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2974)">
-      <path d="M 473.4903,616.4039 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2975">
-        <path d="M 457.4373,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2975)">
-      <path d="M 473.4903,651.4424 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2976">
-        <path d="M 457.4373,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2976)">
-      <path d="M 473.4903,686.4810 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2977">
-        <path d="M 457.4373,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2977)">
-      <path d="M 473.4903,721.5195 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2978">
-        <path d="M 457.4373,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2978)">
-      <path d="M 473.4903,756.5581 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2979">
-        <path d="M 457.4373,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2979)">
-      <path d="M 473.4903,791.5966 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2980">
-        <path d="M 457.4373,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2980)">
-      <path d="M 473.4903,826.6351 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2981">
-        <path d="M 457.4373,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2981)">
-      <path d="M 823.8756,826.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2982">
-        <path d="M 457.4373,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2982)">
-      <path d="M 788.8371,826.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2983">
-        <path d="M 457.4373,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2983)">
-      <path d="M 753.7986,826.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2984">
-        <path d="M 457.4373,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2984)">
-      <path d="M 718.7600,826.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2985">
-        <path d="M 457.4373,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2985)">
-      <path d="M 683.7215,826.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2986">
-        <path d="M 457.4373,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2986)">
-      <path d="M 648.6830,826.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2987">
-        <path d="M 457.4373,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2987)">
-      <path d="M 613.6444,826.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2988">
-        <path d="M 457.4373,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2988)">
-      <path d="M 578.6059,826.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2989">
-        <path d="M 457.4373,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2989)">
-      <path d="M 543.5673,826.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2990">
-        <path d="M 457.4373,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2990)">
-      <path d="M 508.5288,826.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2991">
-        <path d="M 457.4373,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2991)">
-      <path d="M 473.4903,826.6351 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.1" stroke="rgb(102,102,102)" stroke-width="2.98825135876461" fill="rgb(255,255,255)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2992">
-        <path d="M 457.4373,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2992)">
-      <path d="M 851.0305,887.1074 l -0.0000,-495.8678 h -491.9915 l -0.0000,495.8678 Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.1" stroke="rgb(102,102,102)" stroke-width="2.98825135876461" fill="rgb(76,76,76)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 457.4373,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2993">
-        <path d="M 349.1992,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2993)">
-      <path d="M 360.7952,636.5576 l -0.0000,-24.0505 h -96.2018 l -0.0000,24.0505 Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="21.86404754438049px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2994">
-        <path d="M 349.1992,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2994)">
-      <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,312.6943,624.5324)" stroke="none" text-anchor="middle">y = -2.0
-      </text>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2995">
-        <path d="M 349.1992,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2995)">
-      <path d="M 553.5072,776.7117 l -0.0000,-24.0505 h -96.2018 l -0.0000,24.0505 Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="21.86404754438049px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2996">
-        <path d="M 349.1992,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2996)">
-      <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,505.4063,764.6865)" stroke="none" text-anchor="middle">x = -1.0
-      </text>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="8.96475407629383" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2997">
-        <path d="M 349.1992,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2997)">
-      <path d="M 510.6621,622.3460 c 0.0000,-2.9027 -2.3531,-5.2558 -5.2558 -5.2558c -2.9027,-0.0000 -5.2558,2.3531 -5.2558 5.2558c -0.0000,2.9027 2.3531,5.2558 5.2558 5.2558c 2.9027,0.0000 5.2558,-2.3531 5.2558 -5.2558Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(51,51,51)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2998">
-        <path d="M 349.1992,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2998)">
-      <path d="M 505.4063,727.4616 v -105.1156 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(51,51,51)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip2999">
-        <path d="M 349.1992,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip2999)">
-      <path d="M 365.2521,622.3460 h 140.1542 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(153,153,153)" stroke-width="5.97650271752922" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3000">
-        <path d="M 349.1992,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3000)">
-      <path d="M 435.3292,342.0377 l 4.2046,24.7232 l 4.2046,23.7141 l 4.2046,22.7050 l 4.2046,21.6959 l 4.2046,20.6868 l 4.2046,19.6776 l 4.2046,18.6685 l 4.2046,17.6594 l 4.2046,16.6503 l 4.2046,15.6412 l 4.2046,14.6321 l 4.2046,13.6230 l 4.2046,12.6139 l 4.2046,11.6048 l 4.2046,10.5957 l 4.2046,9.5865 l 4.2046,8.5774 l 4.2046,7.5683 l 4.2046,6.5592 l 4.2046,5.5501 l 4.2046,4.5410 l 4.2046,3.5319 l 4.2046,2.5228 l 4.2046,1.5137 l 4.2046,0.5046 l 4.2046,-0.5046 l 4.2046,-1.5137 l 4.2046,-2.5228 l 4.2046,-3.5319 l 4.2046,-4.5410 l 4.2046,-5.5501 l 4.2046,-6.5592 l 4.2046,-7.5683 l 4.2046,-8.5774 l 4.2046,-9.5865 l 4.2046,-10.5957 l 4.2046,-11.6048 l 4.2046,-12.6139 l 4.2046,-13.6230 l 4.2046,-14.6321 l 4.2046,-15.6412 l 4.2046,-16.6503 l 4.2046,-17.6594 l 4.2046,-18.6685 l 4.2046,-19.6776 l 4.2046,-20.6868 l 4.2046,-21.6959 l 4.2046,-22.7050 l 4.2046,-23.7141 l 4.2046,-24.7232 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3001">
-        <path d="M 349.1992,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3001)">
-      <path d="M 630.6340,363.0608 l -0.0000,-36.0757 h -180.3784 l -0.0000,36.0757 Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="32.79607131657073px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3002">
-        <path d="M 349.1992,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3002)">
-      <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,540.4448,345.0229)" stroke="none" text-anchor="middle">y = x² - 3
-      </text>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3003">
-        <path d="M 349.1992,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3003)">
-      <path d="M 715.6375,727.4616 l -0.0000,-350.3854 h -350.3854 l -0.0000,350.3854 Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3004">
-        <path d="M 349.1992,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3004)">
-      <path d="M 365.2521,377.0762 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3005">
-        <path d="M 349.1992,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3005)">
-      <path d="M 365.2521,384.0839 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3006">
-        <path d="M 349.1992,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3006)">
-      <path d="M 365.2521,391.0916 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3007">
-        <path d="M 349.1992,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3007)">
-      <path d="M 365.2521,398.0993 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3008">
-        <path d="M 349.1992,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3008)">
-      <path d="M 365.2521,405.1070 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3009">
-        <path d="M 349.1992,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3009)">
-      <path d="M 365.2521,412.1147 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3010">
-        <path d="M 349.1992,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3010)">
-      <path d="M 365.2521,419.1224 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3011">
-        <path d="M 349.1992,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3011)">
-      <path d="M 365.2521,426.1301 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3012">
-        <path d="M 349.1992,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3012)">
-      <path d="M 365.2521,433.1379 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3013">
-        <path d="M 349.1992,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3013)">
-      <path d="M 365.2521,440.1456 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3014">
-        <path d="M 349.1992,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3014)">
-      <path d="M 365.2521,447.1533 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3015">
-        <path d="M 349.1992,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3015)">
-      <path d="M 365.2521,454.1610 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3016">
-        <path d="M 349.1992,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3016)">
-      <path d="M 365.2521,461.1687 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3017">
-        <path d="M 349.1992,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3017)">
-      <path d="M 365.2521,468.1764 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3018">
-        <path d="M 349.1992,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3018)">
-      <path d="M 365.2521,475.1841 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3019">
-        <path d="M 349.1992,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3019)">
-      <path d="M 365.2521,482.1918 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3020">
-        <path d="M 349.1992,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3020)">
-      <path d="M 365.2521,489.1995 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3021">
-        <path d="M 349.1992,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3021)">
-      <path d="M 365.2521,496.2072 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3022">
-        <path d="M 349.1992,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3022)">
-      <path d="M 365.2521,503.2149 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3023">
-        <path d="M 349.1992,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3023)">
-      <path d="M 365.2521,510.2226 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3024">
-        <path d="M 349.1992,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3024)">
-      <path d="M 365.2521,517.2303 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3025">
-        <path d="M 349.1992,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3025)">
-      <path d="M 365.2521,524.2381 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3026">
-        <path d="M 349.1992,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3026)">
-      <path d="M 365.2521,531.2458 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3027">
-        <path d="M 349.1992,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3027)">
-      <path d="M 365.2521,538.2535 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3028">
-        <path d="M 349.1992,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3028)">
-      <path d="M 365.2521,545.2612 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3029">
-        <path d="M 349.1992,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3029)">
-      <path d="M 365.2521,552.2689 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3030">
-        <path d="M 349.1992,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3030)">
-      <path d="M 365.2521,559.2766 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3031">
-        <path d="M 349.1992,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3031)">
-      <path d="M 365.2521,566.2843 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3032">
-        <path d="M 349.1992,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3032)">
-      <path d="M 365.2521,573.2920 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3033">
-        <path d="M 349.1992,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3033)">
-      <path d="M 365.2521,580.2997 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3034">
-        <path d="M 349.1992,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3034)">
-      <path d="M 365.2521,587.3074 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3035">
-        <path d="M 349.1992,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3035)">
-      <path d="M 365.2521,594.3151 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3036">
-        <path d="M 349.1992,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3036)">
-      <path d="M 365.2521,601.3228 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3037">
-        <path d="M 349.1992,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3037)">
-      <path d="M 365.2521,608.3305 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3038">
-        <path d="M 349.1992,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3038)">
-      <path d="M 365.2521,615.3383 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3039">
-        <path d="M 349.1992,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3039)">
-      <path d="M 365.2521,622.3460 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3040">
-        <path d="M 349.1992,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3040)">
-      <path d="M 365.2521,629.3537 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3041">
-        <path d="M 349.1992,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3041)">
-      <path d="M 365.2521,636.3614 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3042">
-        <path d="M 349.1992,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3042)">
-      <path d="M 365.2521,643.3691 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3043">
-        <path d="M 349.1992,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3043)">
-      <path d="M 365.2521,650.3768 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3044">
-        <path d="M 349.1992,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3044)">
-      <path d="M 365.2521,657.3845 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3045">
-        <path d="M 349.1992,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3045)">
-      <path d="M 365.2521,664.3922 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3046">
-        <path d="M 349.1992,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3046)">
-      <path d="M 365.2521,671.3999 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3047">
-        <path d="M 349.1992,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3047)">
-      <path d="M 365.2521,678.4076 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3048">
-        <path d="M 349.1992,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3048)">
-      <path d="M 365.2521,685.4153 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3049">
-        <path d="M 349.1992,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3049)">
-      <path d="M 365.2521,692.4230 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3050">
-        <path d="M 349.1992,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3050)">
-      <path d="M 365.2521,699.4307 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3051">
-        <path d="M 349.1992,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3051)">
-      <path d="M 365.2521,706.4385 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3052">
-        <path d="M 349.1992,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3052)">
-      <path d="M 365.2521,713.4462 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3053">
-        <path d="M 349.1992,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3053)">
-      <path d="M 365.2521,720.4539 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3054">
-        <path d="M 349.1992,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3054)">
-      <path d="M 365.2521,727.4616 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3055">
-        <path d="M 349.1992,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3055)">
-      <path d="M 715.6375,727.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3056">
-        <path d="M 349.1992,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3056)">
-      <path d="M 708.6298,727.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3057">
-        <path d="M 349.1992,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3057)">
-      <path d="M 701.6221,727.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3058">
-        <path d="M 349.1992,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3058)">
-      <path d="M 694.6144,727.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3059">
-        <path d="M 349.1992,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3059)">
-      <path d="M 687.6067,727.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3060">
-        <path d="M 349.1992,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3060)">
-      <path d="M 680.5990,727.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3061">
-        <path d="M 349.1992,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3061)">
-      <path d="M 673.5913,727.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3062">
-        <path d="M 349.1992,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3062)">
-      <path d="M 666.5836,727.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3063">
-        <path d="M 349.1992,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3063)">
-      <path d="M 659.5758,727.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3064">
-        <path d="M 349.1992,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3064)">
-      <path d="M 652.5681,727.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3065">
-        <path d="M 349.1992,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3065)">
-      <path d="M 645.5604,727.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3066">
-        <path d="M 349.1992,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3066)">
-      <path d="M 638.5527,727.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3067">
-        <path d="M 349.1992,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3067)">
-      <path d="M 631.5450,727.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3068">
-        <path d="M 349.1992,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3068)">
-      <path d="M 624.5373,727.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3069">
-        <path d="M 349.1992,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3069)">
-      <path d="M 617.5296,727.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3070">
-        <path d="M 349.1992,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3070)">
-      <path d="M 610.5219,727.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3071">
-        <path d="M 349.1992,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3071)">
-      <path d="M 603.5142,727.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3072">
-        <path d="M 349.1992,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3072)">
-      <path d="M 596.5065,727.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3073">
-        <path d="M 349.1992,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3073)">
-      <path d="M 589.4988,727.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3074">
-        <path d="M 349.1992,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3074)">
-      <path d="M 582.4911,727.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3075">
-        <path d="M 349.1992,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3075)">
-      <path d="M 575.4834,727.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3076">
-        <path d="M 349.1992,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3076)">
-      <path d="M 568.4756,727.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3077">
-        <path d="M 349.1992,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3077)">
-      <path d="M 561.4679,727.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3078">
-        <path d="M 349.1992,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3078)">
-      <path d="M 554.4602,727.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3079">
-        <path d="M 349.1992,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3079)">
-      <path d="M 547.4525,727.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3080">
-        <path d="M 349.1992,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3080)">
-      <path d="M 540.4448,727.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3081">
-        <path d="M 349.1992,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3081)">
-      <path d="M 533.4371,727.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3082">
-        <path d="M 349.1992,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3082)">
-      <path d="M 526.4294,727.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3083">
-        <path d="M 349.1992,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3083)">
-      <path d="M 519.4217,727.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3084">
-        <path d="M 349.1992,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3084)">
-      <path d="M 512.4140,727.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3085">
-        <path d="M 349.1992,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3085)">
-      <path d="M 505.4063,727.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3086">
-        <path d="M 349.1992,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3086)">
-      <path d="M 498.3986,727.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3087">
-        <path d="M 349.1992,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3087)">
-      <path d="M 491.3909,727.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3088">
-        <path d="M 349.1992,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3088)">
-      <path d="M 484.3832,727.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3089">
-        <path d="M 349.1992,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3089)">
-      <path d="M 477.3754,727.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3090">
-        <path d="M 349.1992,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3090)">
-      <path d="M 470.3677,727.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3091">
-        <path d="M 349.1992,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3091)">
-      <path d="M 463.3600,727.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3092">
-        <path d="M 349.1992,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3092)">
-      <path d="M 456.3523,727.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3093">
-        <path d="M 349.1992,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3093)">
-      <path d="M 449.3446,727.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3094">
-        <path d="M 349.1992,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3094)">
-      <path d="M 442.3369,727.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3095">
-        <path d="M 349.1992,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3095)">
-      <path d="M 435.3292,727.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3096">
-        <path d="M 349.1992,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3096)">
-      <path d="M 428.3215,727.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3097">
-        <path d="M 349.1992,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3097)">
-      <path d="M 421.3138,727.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3098">
-        <path d="M 349.1992,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3098)">
-      <path d="M 414.3061,727.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3099">
-        <path d="M 349.1992,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3099)">
-      <path d="M 407.2984,727.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3100">
-        <path d="M 349.1992,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3100)">
-      <path d="M 400.2907,727.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3101">
-        <path d="M 349.1992,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3101)">
-      <path d="M 393.2830,727.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3102">
-        <path d="M 349.1992,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3102)">
-      <path d="M 386.2753,727.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3103">
-        <path d="M 349.1992,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3103)">
-      <path d="M 379.2675,727.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3104">
-        <path d="M 349.1992,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3104)">
-      <path d="M 372.2598,727.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3105">
-        <path d="M 349.1992,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3105)">
-      <path d="M 365.2521,727.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3106">
-        <path d="M 349.1992,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3106)">
-      <path d="M 365.2521,377.0762 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3107">
-        <path d="M 349.1992,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3107)">
-      <path d="M 365.2521,412.1147 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3108">
-        <path d="M 349.1992,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3108)">
-      <path d="M 365.2521,447.1533 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3109">
-        <path d="M 349.1992,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3109)">
-      <path d="M 365.2521,482.1918 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3110">
-        <path d="M 349.1992,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3110)">
-      <path d="M 365.2521,517.2303 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3111">
-        <path d="M 349.1992,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3111)">
-      <path d="M 365.2521,552.2689 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3112">
-        <path d="M 349.1992,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3112)">
-      <path d="M 365.2521,587.3074 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3113">
-        <path d="M 349.1992,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3113)">
-      <path d="M 365.2521,622.3460 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3114">
-        <path d="M 349.1992,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3114)">
-      <path d="M 365.2521,657.3845 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3115">
-        <path d="M 349.1992,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3115)">
-      <path d="M 365.2521,692.4230 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3116">
-        <path d="M 349.1992,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3116)">
-      <path d="M 365.2521,727.4616 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3117">
-        <path d="M 349.1992,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3117)">
-      <path d="M 715.6375,727.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3118">
-        <path d="M 349.1992,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3118)">
-      <path d="M 680.5990,727.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3119">
-        <path d="M 349.1992,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3119)">
-      <path d="M 645.5604,727.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3120">
-        <path d="M 349.1992,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3120)">
-      <path d="M 610.5219,727.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3121">
-        <path d="M 349.1992,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3121)">
-      <path d="M 575.4834,727.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3122">
-        <path d="M 349.1992,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3122)">
-      <path d="M 540.4448,727.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3123">
-        <path d="M 349.1992,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3123)">
-      <path d="M 505.4063,727.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3124">
-        <path d="M 349.1992,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3124)">
-      <path d="M 470.3677,727.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3125">
-        <path d="M 349.1992,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3125)">
-      <path d="M 435.3292,727.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3126">
-        <path d="M 349.1992,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3126)">
-      <path d="M 400.2907,727.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3127">
-        <path d="M 349.1992,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3127)">
-      <path d="M 365.2521,727.4616 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.1" stroke="rgb(102,102,102)" stroke-width="2.98825135876461" fill="rgb(255,255,255)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3128">
-        <path d="M 349.1992,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3128)">
-      <path d="M 742.7924,787.9339 l -0.0000,-495.8678 h -491.9915 l -0.0000,495.8678 Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.1" stroke="rgb(102,102,102)" stroke-width="2.98825135876461" fill="rgb(76,76,76)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 349.1992,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3129">
-        <path d="M 240.9610,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3129)">
-      <path d="M 252.5571,537.3840 l -0.0000,-24.0505 h -96.2018 l -0.0000,24.0505 Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="21.86404754438049px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3130">
-        <path d="M 240.9610,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3130)">
-      <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,204.4562,525.3588)" stroke="none" text-anchor="middle">y = -2.0
-      </text>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3131">
-        <path d="M 240.9610,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3131)">
-      <path d="M 445.2690,677.5382 l -0.0000,-24.0505 h -96.2018 l -0.0000,24.0505 Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="21.86404754438049px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3132">
-        <path d="M 240.9610,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3132)">
-      <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,397.1681,665.5130)" stroke="none" text-anchor="middle">x = -1.0
-      </text>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="8.96475407629383" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3133">
-        <path d="M 240.9610,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3133)">
-      <path d="M 402.4239,523.1724 c 0.0000,-2.9027 -2.3531,-5.2558 -5.2558 -5.2558c -2.9027,-0.0000 -5.2558,2.3531 -5.2558 5.2558c -0.0000,2.9027 2.3531,5.2558 5.2558 5.2558c 2.9027,0.0000 5.2558,-2.3531 5.2558 -5.2558Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(51,51,51)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3134">
-        <path d="M 240.9610,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3134)">
-      <path d="M 397.1681,628.2880 v -105.1156 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(51,51,51)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3135">
-        <path d="M 240.9610,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3135)">
-      <path d="M 257.0140,523.1724 h 140.1542 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(153,153,153)" stroke-width="5.97650271752922" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3136">
-        <path d="M 240.9610,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3136)">
-      <path d="M 327.0911,242.8641 l 4.2046,24.7232 l 4.2046,23.7141 l 4.2046,22.7050 l 4.2046,21.6959 l 4.2046,20.6868 l 4.2046,19.6776 l 4.2046,18.6685 l 4.2046,17.6594 l 4.2046,16.6503 l 4.2046,15.6412 l 4.2046,14.6321 l 4.2046,13.6230 l 4.2046,12.6139 l 4.2046,11.6048 l 4.2046,10.5957 l 4.2046,9.5865 l 4.2046,8.5774 l 4.2046,7.5683 l 4.2046,6.5592 l 4.2046,5.5501 l 4.2046,4.5410 l 4.2046,3.5319 l 4.2046,2.5228 l 4.2046,1.5137 l 4.2046,0.5046 l 4.2046,-0.5046 l 4.2046,-1.5137 l 4.2046,-2.5228 l 4.2046,-3.5319 l 4.2046,-4.5410 l 4.2046,-5.5501 l 4.2046,-6.5592 l 4.2046,-7.5683 l 4.2046,-8.5774 l 4.2046,-9.5865 l 4.2046,-10.5957 l 4.2046,-11.6048 l 4.2046,-12.6139 l 4.2046,-13.6230 l 4.2046,-14.6321 l 4.2046,-15.6412 l 4.2046,-16.6503 l 4.2046,-17.6594 l 4.2046,-18.6685 l 4.2046,-19.6776 l 4.2046,-20.6868 l 4.2046,-21.6959 l 4.2046,-22.7050 l 4.2046,-23.7141 l 4.2046,-24.7232 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3137">
-        <path d="M 240.9610,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3137)">
-      <path d="M 522.3959,263.8872 l -0.0000,-36.0757 h -180.3784 l -0.0000,36.0757 Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="32.79607131657073px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3138">
-        <path d="M 240.9610,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3138)">
-      <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,432.2067,245.8494)" stroke="none" text-anchor="middle">y = x² - 3
-      </text>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3139">
-        <path d="M 240.9610,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3139)">
-      <path d="M 607.3994,628.2880 l -0.0000,-350.3854 h -350.3854 l -0.0000,350.3854 Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3140">
-        <path d="M 240.9610,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3140)">
-      <path d="M 257.0140,277.9026 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3141">
-        <path d="M 240.9610,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3141)">
-      <path d="M 257.0140,284.9103 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3142">
-        <path d="M 240.9610,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3142)">
-      <path d="M 257.0140,291.9181 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3143">
-        <path d="M 240.9610,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3143)">
-      <path d="M 257.0140,298.9258 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3144">
-        <path d="M 240.9610,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3144)">
-      <path d="M 257.0140,305.9335 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3145">
-        <path d="M 240.9610,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3145)">
-      <path d="M 257.0140,312.9412 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3146">
-        <path d="M 240.9610,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3146)">
-      <path d="M 257.0140,319.9489 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3147">
-        <path d="M 240.9610,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3147)">
-      <path d="M 257.0140,326.9566 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3148">
-        <path d="M 240.9610,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3148)">
-      <path d="M 257.0140,333.9643 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3149">
-        <path d="M 240.9610,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3149)">
-      <path d="M 257.0140,340.9720 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3150">
-        <path d="M 240.9610,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3150)">
-      <path d="M 257.0140,347.9797 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3151">
-        <path d="M 240.9610,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3151)">
-      <path d="M 257.0140,354.9874 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3152">
-        <path d="M 240.9610,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3152)">
-      <path d="M 257.0140,361.9951 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3153">
-        <path d="M 240.9610,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3153)">
-      <path d="M 257.0140,369.0028 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3154">
-        <path d="M 240.9610,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3154)">
-      <path d="M 257.0140,376.0105 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3155">
-        <path d="M 240.9610,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3155)">
-      <path d="M 257.0140,383.0183 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3156">
-        <path d="M 240.9610,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3156)">
-      <path d="M 257.0140,390.0260 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3157">
-        <path d="M 240.9610,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3157)">
-      <path d="M 257.0140,397.0337 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3158">
-        <path d="M 240.9610,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3158)">
-      <path d="M 257.0140,404.0414 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3159">
-        <path d="M 240.9610,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3159)">
-      <path d="M 257.0140,411.0491 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3160">
-        <path d="M 240.9610,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3160)">
-      <path d="M 257.0140,418.0568 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3161">
-        <path d="M 240.9610,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3161)">
-      <path d="M 257.0140,425.0645 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3162">
-        <path d="M 240.9610,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3162)">
-      <path d="M 257.0140,432.0722 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3163">
-        <path d="M 240.9610,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3163)">
-      <path d="M 257.0140,439.0799 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3164">
-        <path d="M 240.9610,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3164)">
-      <path d="M 257.0140,446.0876 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3165">
-        <path d="M 240.9610,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3165)">
-      <path d="M 257.0140,453.0953 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3166">
-        <path d="M 240.9610,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3166)">
-      <path d="M 257.0140,460.1030 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3167">
-        <path d="M 240.9610,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3167)">
-      <path d="M 257.0140,467.1107 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3168">
-        <path d="M 240.9610,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3168)">
-      <path d="M 257.0140,474.1185 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3169">
-        <path d="M 240.9610,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3169)">
-      <path d="M 257.0140,481.1262 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3170">
-        <path d="M 240.9610,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3170)">
-      <path d="M 257.0140,488.1339 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3171">
-        <path d="M 240.9610,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3171)">
-      <path d="M 257.0140,495.1416 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3172">
-        <path d="M 240.9610,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3172)">
-      <path d="M 257.0140,502.1493 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3173">
-        <path d="M 240.9610,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3173)">
-      <path d="M 257.0140,509.1570 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3174">
-        <path d="M 240.9610,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3174)">
-      <path d="M 257.0140,516.1647 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3175">
-        <path d="M 240.9610,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3175)">
-      <path d="M 257.0140,523.1724 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3176">
-        <path d="M 240.9610,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3176)">
-      <path d="M 257.0140,530.1801 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3177">
-        <path d="M 240.9610,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3177)">
-      <path d="M 257.0140,537.1878 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3178">
-        <path d="M 240.9610,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3178)">
-      <path d="M 257.0140,544.1955 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3179">
-        <path d="M 240.9610,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3179)">
-      <path d="M 257.0140,551.2032 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3180">
-        <path d="M 240.9610,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3180)">
-      <path d="M 257.0140,558.2109 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3181">
-        <path d="M 240.9610,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3181)">
-      <path d="M 257.0140,565.2187 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3182">
-        <path d="M 240.9610,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3182)">
-      <path d="M 257.0140,572.2264 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3183">
-        <path d="M 240.9610,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3183)">
-      <path d="M 257.0140,579.2341 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3184">
-        <path d="M 240.9610,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3184)">
-      <path d="M 257.0140,586.2418 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3185">
-        <path d="M 240.9610,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3185)">
-      <path d="M 257.0140,593.2495 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3186">
-        <path d="M 240.9610,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3186)">
-      <path d="M 257.0140,600.2572 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3187">
-        <path d="M 240.9610,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3187)">
-      <path d="M 257.0140,607.2649 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3188">
-        <path d="M 240.9610,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3188)">
-      <path d="M 257.0140,614.2726 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3189">
-        <path d="M 240.9610,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3189)">
-      <path d="M 257.0140,621.2803 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3190">
-        <path d="M 240.9610,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3190)">
-      <path d="M 257.0140,628.2880 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3191">
-        <path d="M 240.9610,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3191)">
-      <path d="M 607.3994,628.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3192">
-        <path d="M 240.9610,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3192)">
-      <path d="M 600.3917,628.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3193">
-        <path d="M 240.9610,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3193)">
-      <path d="M 593.3840,628.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3194">
-        <path d="M 240.9610,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3194)">
-      <path d="M 586.3762,628.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3195">
-        <path d="M 240.9610,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3195)">
-      <path d="M 579.3685,628.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3196">
-        <path d="M 240.9610,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3196)">
-      <path d="M 572.3608,628.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3197">
-        <path d="M 240.9610,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3197)">
-      <path d="M 565.3531,628.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3198">
-        <path d="M 240.9610,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3198)">
-      <path d="M 558.3454,628.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3199">
-        <path d="M 240.9610,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3199)">
-      <path d="M 551.3377,628.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3200">
-        <path d="M 240.9610,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3200)">
-      <path d="M 544.3300,628.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3201">
-        <path d="M 240.9610,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3201)">
-      <path d="M 537.3223,628.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3202">
-        <path d="M 240.9610,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3202)">
-      <path d="M 530.3146,628.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3203">
-        <path d="M 240.9610,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3203)">
-      <path d="M 523.3069,628.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3204">
-        <path d="M 240.9610,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3204)">
-      <path d="M 516.2992,628.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3205">
-        <path d="M 240.9610,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3205)">
-      <path d="M 509.2915,628.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3206">
-        <path d="M 240.9610,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3206)">
-      <path d="M 502.2838,628.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3207">
-        <path d="M 240.9610,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3207)">
-      <path d="M 495.2760,628.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3208">
-        <path d="M 240.9610,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3208)">
-      <path d="M 488.2683,628.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3209">
-        <path d="M 240.9610,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3209)">
-      <path d="M 481.2606,628.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3210">
-        <path d="M 240.9610,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3210)">
-      <path d="M 474.2529,628.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3211">
-        <path d="M 240.9610,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3211)">
-      <path d="M 467.2452,628.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3212">
-        <path d="M 240.9610,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3212)">
-      <path d="M 460.2375,628.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3213">
-        <path d="M 240.9610,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3213)">
-      <path d="M 453.2298,628.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3214">
-        <path d="M 240.9610,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3214)">
-      <path d="M 446.2221,628.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3215">
-        <path d="M 240.9610,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3215)">
-      <path d="M 439.2144,628.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3216">
-        <path d="M 240.9610,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3216)">
-      <path d="M 432.2067,628.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3217">
-        <path d="M 240.9610,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3217)">
-      <path d="M 425.1990,628.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3218">
-        <path d="M 240.9610,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3218)">
-      <path d="M 418.1913,628.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3219">
-        <path d="M 240.9610,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3219)">
-      <path d="M 411.1836,628.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3220">
-        <path d="M 240.9610,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3220)">
-      <path d="M 404.1759,628.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3221">
-        <path d="M 240.9610,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3221)">
-      <path d="M 397.1681,628.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3222">
-        <path d="M 240.9610,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3222)">
-      <path d="M 390.1604,628.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3223">
-        <path d="M 240.9610,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3223)">
-      <path d="M 383.1527,628.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3224">
-        <path d="M 240.9610,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3224)">
-      <path d="M 376.1450,628.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3225">
-        <path d="M 240.9610,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3225)">
-      <path d="M 369.1373,628.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3226">
-        <path d="M 240.9610,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3226)">
-      <path d="M 362.1296,628.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3227">
-        <path d="M 240.9610,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3227)">
-      <path d="M 355.1219,628.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3228">
-        <path d="M 240.9610,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3228)">
-      <path d="M 348.1142,628.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3229">
-        <path d="M 240.9610,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3229)">
-      <path d="M 341.1065,628.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3230">
-        <path d="M 240.9610,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3230)">
-      <path d="M 334.0988,628.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3231">
-        <path d="M 240.9610,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3231)">
-      <path d="M 327.0911,628.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3232">
-        <path d="M 240.9610,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3232)">
-      <path d="M 320.0834,628.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3233">
-        <path d="M 240.9610,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3233)">
-      <path d="M 313.0757,628.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3234">
-        <path d="M 240.9610,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3234)">
-      <path d="M 306.0679,628.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3235">
-        <path d="M 240.9610,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3235)">
-      <path d="M 299.0602,628.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3236">
-        <path d="M 240.9610,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3236)">
-      <path d="M 292.0525,628.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3237">
-        <path d="M 240.9610,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3237)">
-      <path d="M 285.0448,628.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3238">
-        <path d="M 240.9610,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3238)">
-      <path d="M 278.0371,628.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3239">
-        <path d="M 240.9610,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3239)">
-      <path d="M 271.0294,628.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3240">
-        <path d="M 240.9610,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3240)">
-      <path d="M 264.0217,628.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3241">
-        <path d="M 240.9610,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3241)">
-      <path d="M 257.0140,628.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3242">
-        <path d="M 240.9610,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3242)">
-      <path d="M 257.0140,277.9026 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3243">
-        <path d="M 240.9610,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3243)">
-      <path d="M 257.0140,312.9412 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3244">
-        <path d="M 240.9610,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3244)">
-      <path d="M 257.0140,347.9797 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3245">
-        <path d="M 240.9610,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3245)">
-      <path d="M 257.0140,383.0183 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3246">
-        <path d="M 240.9610,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3246)">
-      <path d="M 257.0140,418.0568 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3247">
-        <path d="M 240.9610,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3247)">
-      <path d="M 257.0140,453.0953 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3248">
-        <path d="M 240.9610,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3248)">
-      <path d="M 257.0140,488.1339 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3249">
-        <path d="M 240.9610,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3249)">
-      <path d="M 257.0140,523.1724 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3250">
-        <path d="M 240.9610,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3250)">
-      <path d="M 257.0140,558.2109 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3251">
-        <path d="M 240.9610,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3251)">
-      <path d="M 257.0140,593.2495 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3252">
-        <path d="M 240.9610,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3252)">
-      <path d="M 257.0140,628.2880 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3253">
-        <path d="M 240.9610,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3253)">
-      <path d="M 607.3994,628.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3254">
-        <path d="M 240.9610,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3254)">
-      <path d="M 572.3608,628.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3255">
-        <path d="M 240.9610,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3255)">
-      <path d="M 537.3223,628.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3256">
-        <path d="M 240.9610,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3256)">
-      <path d="M 502.2838,628.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3257">
-        <path d="M 240.9610,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3257)">
-      <path d="M 467.2452,628.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3258">
-        <path d="M 240.9610,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3258)">
-      <path d="M 432.2067,628.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3259">
-        <path d="M 240.9610,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3259)">
-      <path d="M 397.1681,628.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3260">
-        <path d="M 240.9610,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3260)">
-      <path d="M 362.1296,628.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3261">
-        <path d="M 240.9610,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3261)">
-      <path d="M 327.0911,628.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3262">
-        <path d="M 240.9610,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3262)">
-      <path d="M 292.0525,628.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3263">
-        <path d="M 240.9610,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3263)">
-      <path d="M 257.0140,628.2880 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.1" stroke="rgb(102,102,102)" stroke-width="2.98825135876461" fill="rgb(255,255,255)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3264">
-        <path d="M 240.9610,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3264)">
-      <path d="M 634.5542,688.7603 l -0.0000,-495.8678 h -491.9915 l -0.0000,495.8678 Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.1" stroke="rgb(102,102,102)" stroke-width="2.98825135876461" fill="rgb(76,76,76)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 240.9610,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3265">
-        <path d="M 132.7229,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3265)">
-      <path d="M 144.3190,438.2105 l -0.0000,-24.0505 h -96.2018 l -0.0000,24.0505 Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="21.86404754438049px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3266">
-        <path d="M 132.7229,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3266)">
-      <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,96.2181,426.1853)" stroke="none" text-anchor="middle">y = -2.0
-      </text>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3267">
-        <path d="M 132.7229,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3267)">
-      <path d="M 337.0309,578.3646 l -0.0000,-24.0505 h -96.2018 l -0.0000,24.0505 Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="21.86404754438049px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3268">
-        <path d="M 132.7229,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3268)">
-      <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,288.9300,566.3394)" stroke="none" text-anchor="middle">x = -1.0
-      </text>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="8.96475407629383" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3269">
-        <path d="M 132.7229,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3269)">
-      <path d="M 294.1858,423.9989 c 0.0000,-2.9027 -2.3531,-5.2558 -5.2558 -5.2558c -2.9027,-0.0000 -5.2558,2.3531 -5.2558 5.2558c -0.0000,2.9027 2.3531,5.2558 5.2558 5.2558c 2.9027,0.0000 5.2558,-2.3531 5.2558 -5.2558Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(51,51,51)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3270">
-        <path d="M 132.7229,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3270)">
-      <path d="M 288.9300,529.1145 v -105.1156 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(51,51,51)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3271">
-        <path d="M 132.7229,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3271)">
-      <path d="M 148.7759,423.9989 h 140.1542 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(153,153,153)" stroke-width="5.97650271752922" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3272">
-        <path d="M 132.7229,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3272)">
-      <path d="M 218.8529,143.6906 l 4.2046,24.7232 l 4.2046,23.7141 l 4.2046,22.7050 l 4.2046,21.6959 l 4.2046,20.6868 l 4.2046,19.6776 l 4.2046,18.6685 l 4.2046,17.6594 l 4.2046,16.6503 l 4.2046,15.6412 l 4.2046,14.6321 l 4.2046,13.6230 l 4.2046,12.6139 l 4.2046,11.6048 l 4.2046,10.5957 l 4.2046,9.5865 l 4.2046,8.5774 l 4.2046,7.5683 l 4.2046,6.5592 l 4.2046,5.5501 l 4.2046,4.5410 l 4.2046,3.5319 l 4.2046,2.5228 l 4.2046,1.5137 l 4.2046,0.5046 l 4.2046,-0.5046 l 4.2046,-1.5137 l 4.2046,-2.5228 l 4.2046,-3.5319 l 4.2046,-4.5410 l 4.2046,-5.5501 l 4.2046,-6.5592 l 4.2046,-7.5683 l 4.2046,-8.5774 l 4.2046,-9.5865 l 4.2046,-10.5957 l 4.2046,-11.6048 l 4.2046,-12.6139 l 4.2046,-13.6230 l 4.2046,-14.6321 l 4.2046,-15.6412 l 4.2046,-16.6503 l 4.2046,-17.6594 l 4.2046,-18.6685 l 4.2046,-19.6776 l 4.2046,-20.6868 l 4.2046,-21.6959 l 4.2046,-22.7050 l 4.2046,-23.7141 l 4.2046,-24.7232 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3273">
-        <path d="M 132.7229,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3273)">
-      <path d="M 414.1577,164.7137 l -0.0000,-36.0757 h -180.3784 l -0.0000,36.0757 Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="32.79607131657073px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3274">
-        <path d="M 132.7229,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3274)">
-      <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,323.9685,146.6758)" stroke="none" text-anchor="middle">y = x² - 3
-      </text>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3275">
-        <path d="M 132.7229,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3275)">
-      <path d="M 499.1612,529.1145 l -0.0000,-350.3854 h -350.3854 l -0.0000,350.3854 Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3276">
-        <path d="M 132.7229,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3276)">
-      <path d="M 148.7759,178.7291 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3277">
-        <path d="M 132.7229,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3277)">
-      <path d="M 148.7759,185.7368 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3278">
-        <path d="M 132.7229,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3278)">
-      <path d="M 148.7759,192.7445 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3279">
-        <path d="M 132.7229,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3279)">
-      <path d="M 148.7759,199.7522 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3280">
-        <path d="M 132.7229,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3280)">
-      <path d="M 148.7759,206.7599 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3281">
-        <path d="M 132.7229,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3281)">
-      <path d="M 148.7759,213.7676 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3282">
-        <path d="M 132.7229,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3282)">
-      <path d="M 148.7759,220.7753 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3283">
-        <path d="M 132.7229,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3283)">
-      <path d="M 148.7759,227.7830 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3284">
-        <path d="M 132.7229,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3284)">
-      <path d="M 148.7759,234.7907 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3285">
-        <path d="M 132.7229,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3285)">
-      <path d="M 148.7759,241.7985 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3286">
-        <path d="M 132.7229,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3286)">
-      <path d="M 148.7759,248.8062 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3287">
-        <path d="M 132.7229,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3287)">
-      <path d="M 148.7759,255.8139 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3288">
-        <path d="M 132.7229,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3288)">
-      <path d="M 148.7759,262.8216 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3289">
-        <path d="M 132.7229,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3289)">
-      <path d="M 148.7759,269.8293 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3290">
-        <path d="M 132.7229,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3290)">
-      <path d="M 148.7759,276.8370 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3291">
-        <path d="M 132.7229,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3291)">
-      <path d="M 148.7759,283.8447 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3292">
-        <path d="M 132.7229,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3292)">
-      <path d="M 148.7759,290.8524 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3293">
-        <path d="M 132.7229,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3293)">
-      <path d="M 148.7759,297.8601 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3294">
-        <path d="M 132.7229,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3294)">
-      <path d="M 148.7759,304.8678 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3295">
-        <path d="M 132.7229,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3295)">
-      <path d="M 148.7759,311.8755 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3296">
-        <path d="M 132.7229,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3296)">
-      <path d="M 148.7759,318.8832 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3297">
-        <path d="M 132.7229,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3297)">
-      <path d="M 148.7759,325.8909 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3298">
-        <path d="M 132.7229,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3298)">
-      <path d="M 148.7759,332.8987 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3299">
-        <path d="M 132.7229,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3299)">
-      <path d="M 148.7759,339.9064 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3300">
-        <path d="M 132.7229,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3300)">
-      <path d="M 148.7759,346.9141 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3301">
-        <path d="M 132.7229,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3301)">
-      <path d="M 148.7759,353.9218 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3302">
-        <path d="M 132.7229,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3302)">
-      <path d="M 148.7759,360.9295 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3303">
-        <path d="M 132.7229,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3303)">
-      <path d="M 148.7759,367.9372 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3304">
-        <path d="M 132.7229,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3304)">
-      <path d="M 148.7759,374.9449 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3305">
-        <path d="M 132.7229,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3305)">
-      <path d="M 148.7759,381.9526 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3306">
-        <path d="M 132.7229,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3306)">
-      <path d="M 148.7759,388.9603 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3307">
-        <path d="M 132.7229,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3307)">
-      <path d="M 148.7759,395.9680 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3308">
-        <path d="M 132.7229,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3308)">
-      <path d="M 148.7759,402.9757 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3309">
-        <path d="M 132.7229,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3309)">
-      <path d="M 148.7759,409.9834 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3310">
-        <path d="M 132.7229,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3310)">
-      <path d="M 148.7759,416.9911 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3311">
-        <path d="M 132.7229,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3311)">
-      <path d="M 148.7759,423.9989 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3312">
-        <path d="M 132.7229,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3312)">
-      <path d="M 148.7759,431.0066 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3313">
-        <path d="M 132.7229,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3313)">
-      <path d="M 148.7759,438.0143 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3314">
-        <path d="M 132.7229,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3314)">
-      <path d="M 148.7759,445.0220 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3315">
-        <path d="M 132.7229,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3315)">
-      <path d="M 148.7759,452.0297 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3316">
-        <path d="M 132.7229,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3316)">
-      <path d="M 148.7759,459.0374 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3317">
-        <path d="M 132.7229,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3317)">
-      <path d="M 148.7759,466.0451 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3318">
-        <path d="M 132.7229,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3318)">
-      <path d="M 148.7759,473.0528 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3319">
-        <path d="M 132.7229,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3319)">
-      <path d="M 148.7759,480.0605 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3320">
-        <path d="M 132.7229,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3320)">
-      <path d="M 148.7759,487.0682 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3321">
-        <path d="M 132.7229,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3321)">
-      <path d="M 148.7759,494.0759 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3322">
-        <path d="M 132.7229,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3322)">
-      <path d="M 148.7759,501.0836 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3323">
-        <path d="M 132.7229,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3323)">
-      <path d="M 148.7759,508.0913 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3324">
-        <path d="M 132.7229,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3324)">
-      <path d="M 148.7759,515.0991 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3325">
-        <path d="M 132.7229,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3325)">
-      <path d="M 148.7759,522.1068 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3326">
-        <path d="M 132.7229,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3326)">
-      <path d="M 148.7759,529.1145 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3327">
-        <path d="M 132.7229,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3327)">
-      <path d="M 499.1612,529.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3328">
-        <path d="M 132.7229,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3328)">
-      <path d="M 492.1535,529.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3329">
-        <path d="M 132.7229,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3329)">
-      <path d="M 485.1458,529.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3330">
-        <path d="M 132.7229,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3330)">
-      <path d="M 478.1381,529.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3331">
-        <path d="M 132.7229,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3331)">
-      <path d="M 471.1304,529.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3332">
-        <path d="M 132.7229,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3332)">
-      <path d="M 464.1227,529.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3333">
-        <path d="M 132.7229,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3333)">
-      <path d="M 457.1150,529.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3334">
-        <path d="M 132.7229,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3334)">
-      <path d="M 450.1073,529.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3335">
-        <path d="M 132.7229,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3335)">
-      <path d="M 443.0996,529.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3336">
-        <path d="M 132.7229,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3336)">
-      <path d="M 436.0919,529.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3337">
-        <path d="M 132.7229,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3337)">
-      <path d="M 429.0842,529.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3338">
-        <path d="M 132.7229,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3338)">
-      <path d="M 422.0765,529.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3339">
-        <path d="M 132.7229,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3339)">
-      <path d="M 415.0687,529.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3340">
-        <path d="M 132.7229,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3340)">
-      <path d="M 408.0610,529.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3341">
-        <path d="M 132.7229,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3341)">
-      <path d="M 401.0533,529.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3342">
-        <path d="M 132.7229,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3342)">
-      <path d="M 394.0456,529.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3343">
-        <path d="M 132.7229,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3343)">
-      <path d="M 387.0379,529.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3344">
-        <path d="M 132.7229,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3344)">
-      <path d="M 380.0302,529.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3345">
-        <path d="M 132.7229,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3345)">
-      <path d="M 373.0225,529.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3346">
-        <path d="M 132.7229,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3346)">
-      <path d="M 366.0148,529.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3347">
-        <path d="M 132.7229,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3347)">
-      <path d="M 359.0071,529.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3348">
-        <path d="M 132.7229,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3348)">
-      <path d="M 351.9994,529.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3349">
-        <path d="M 132.7229,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3349)">
-      <path d="M 344.9917,529.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3350">
-        <path d="M 132.7229,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3350)">
-      <path d="M 337.9840,529.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3351">
-        <path d="M 132.7229,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3351)">
-      <path d="M 330.9763,529.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3352">
-        <path d="M 132.7229,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3352)">
-      <path d="M 323.9685,529.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3353">
-        <path d="M 132.7229,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3353)">
-      <path d="M 316.9608,529.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3354">
-        <path d="M 132.7229,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3354)">
-      <path d="M 309.9531,529.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3355">
-        <path d="M 132.7229,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3355)">
-      <path d="M 302.9454,529.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3356">
-        <path d="M 132.7229,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3356)">
-      <path d="M 295.9377,529.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3357">
-        <path d="M 132.7229,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3357)">
-      <path d="M 288.9300,529.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3358">
-        <path d="M 132.7229,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3358)">
-      <path d="M 281.9223,529.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3359">
-        <path d="M 132.7229,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3359)">
-      <path d="M 274.9146,529.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3360">
-        <path d="M 132.7229,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3360)">
-      <path d="M 267.9069,529.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3361">
-        <path d="M 132.7229,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3361)">
-      <path d="M 260.8992,529.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3362">
-        <path d="M 132.7229,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3362)">
-      <path d="M 253.8915,529.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3363">
-        <path d="M 132.7229,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3363)">
-      <path d="M 246.8838,529.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3364">
-        <path d="M 132.7229,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3364)">
-      <path d="M 239.8761,529.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3365">
-        <path d="M 132.7229,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3365)">
-      <path d="M 232.8683,529.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3366">
-        <path d="M 132.7229,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3366)">
-      <path d="M 225.8606,529.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3367">
-        <path d="M 132.7229,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3367)">
-      <path d="M 218.8529,529.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3368">
-        <path d="M 132.7229,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3368)">
-      <path d="M 211.8452,529.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3369">
-        <path d="M 132.7229,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3369)">
-      <path d="M 204.8375,529.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3370">
-        <path d="M 132.7229,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3370)">
-      <path d="M 197.8298,529.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3371">
-        <path d="M 132.7229,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3371)">
-      <path d="M 190.8221,529.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3372">
-        <path d="M 132.7229,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3372)">
-      <path d="M 183.8144,529.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3373">
-        <path d="M 132.7229,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3373)">
-      <path d="M 176.8067,529.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3374">
-        <path d="M 132.7229,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3374)">
-      <path d="M 169.7990,529.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3375">
-        <path d="M 132.7229,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3375)">
-      <path d="M 162.7913,529.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3376">
-        <path d="M 132.7229,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3376)">
-      <path d="M 155.7836,529.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.195300543505844" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3377">
-        <path d="M 132.7229,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3377)">
-      <path d="M 148.7759,529.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3378">
-        <path d="M 132.7229,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3378)">
-      <path d="M 148.7759,178.7291 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3379">
-        <path d="M 132.7229,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3379)">
-      <path d="M 148.7759,213.7676 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3380">
-        <path d="M 132.7229,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3380)">
-      <path d="M 148.7759,248.8062 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3381">
-        <path d="M 132.7229,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3381)">
-      <path d="M 148.7759,283.8447 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3382">
-        <path d="M 132.7229,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3382)">
-      <path d="M 148.7759,318.8832 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3383">
-        <path d="M 132.7229,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3383)">
-      <path d="M 148.7759,353.9218 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3384">
-        <path d="M 132.7229,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3384)">
-      <path d="M 148.7759,388.9603 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3385">
-        <path d="M 132.7229,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3385)">
-      <path d="M 148.7759,423.9989 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3386">
-        <path d="M 132.7229,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3386)">
-      <path d="M 148.7759,459.0374 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3387">
-        <path d="M 132.7229,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3387)">
-      <path d="M 148.7759,494.0759 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3388">
-        <path d="M 132.7229,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3388)">
-      <path d="M 148.7759,529.1145 h 350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3389">
-        <path d="M 132.7229,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3389)">
-      <path d="M 499.1612,529.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3390">
-        <path d="M 132.7229,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3390)">
-      <path d="M 464.1227,529.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3391">
-        <path d="M 132.7229,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3391)">
-      <path d="M 429.0842,529.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3392">
-        <path d="M 132.7229,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3392)">
-      <path d="M 394.0456,529.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3393">
-        <path d="M 132.7229,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3393)">
-      <path d="M 359.0071,529.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3394">
-        <path d="M 132.7229,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3394)">
-      <path d="M 323.9685,529.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3395">
-        <path d="M 132.7229,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3395)">
-      <path d="M 288.9300,529.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3396">
-        <path d="M 132.7229,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3396)">
-      <path d="M 253.8915,529.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3397">
-        <path d="M 132.7229,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3397)">
-      <path d="M 218.8529,529.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3398">
-        <path d="M 132.7229,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3398)">
-      <path d="M 183.8144,529.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="2.98825135876461" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3399">
-        <path d="M 132.7229,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3399)">
-      <path d="M 148.7759,529.1145 v -350.3854 "/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.1" stroke="rgb(102,102,102)" stroke-width="2.98825135876461" fill="rgb(255,255,255)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <defs>
-      <clipPath id="myClip3400">
-        <path d="M 132.7229,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-      </clipPath>
-    </defs>
-    <g clip-path="url(#myClip3400)">
-      <path d="M 526.3161,589.5868 l -0.0000,-495.8678 h -491.9915 l -0.0000,495.8678 Z"/>
-    </g>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.1" stroke="rgb(102,102,102)" stroke-width="2.98825135876461" fill="rgb(76,76,76)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 132.7229,589.5868 l -0.0000,-99.1736 h -98.3983 l -0.0000,99.1736 Z"/>
-  </g>
-</svg>
diff --git a/other/glineChart_Example.svg b/other/glineChart_Example.svg
--- a/other/glineChart_Example.svg
+++ b/other/glineChart_Example.svg
@@ -4,34 +4,34 @@
 <svg xmlns="http://www.w3.org/2000/svg" height="200.0000" stroke-opacity="1" viewBox="0 0 300 200" font-size="1" width="300.0000" xmlns:xlink="http://www.w3.org/1999/xlink" stroke="rgb(0,0,0)" version="1.1">
   <defs>
   </defs>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(44,160,44)" stroke-width="1.2060797866148238" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(33,127,33)" stroke-width="1.2060797866148238" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 57.9349,45.3306 v 147.3041 "/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.2" stroke="rgb(44,160,44)" stroke-width="1.2060797866148238" fill="rgb(44,160,44)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.2" stroke="rgb(44,160,44)" stroke-width="1.2060797866148238" fill="rgb(16,75,16)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 65.3001,192.6348 c 0.0000,-4.0677 -3.2975,-7.3652 -7.3652 -7.3652c -4.0677,-0.0000 -7.3652,3.2975 -7.3652 7.3652c -0.0000,4.0677 3.2975,7.3652 7.3652 7.3652c 4.0677,0.0000 7.3652,-3.2975 7.3652 -7.3652Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.2" stroke="rgb(44,160,44)" stroke-width="1.2060797866148238" fill="rgb(44,160,44)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.2" stroke="rgb(44,160,44)" stroke-width="1.2060797866148238" fill="rgb(16,75,16)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 65.3001,45.3306 c 0.0000,-4.0677 -3.2975,-7.3652 -7.3652 -7.3652c -4.0677,-0.0000 -7.3652,3.2975 -7.3652 7.3652c -0.0000,4.0677 3.2975,7.3652 7.3652 7.3652c 4.0677,0.0000 7.3652,-3.2975 7.3652 -7.3652Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(255,127,14)" stroke-width="4.824319146459295" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(203,100,9)" stroke-width="4.824319146459295" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 11.9024,192.6348 l 276.1953,-110.4781 "/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.2" stroke="rgb(188,189,34)" stroke-width="1.2060797866148238" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.2" stroke="rgb(188,189,34)" stroke-width="1.2060797866148238" fill="rgb(89,90,11)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 295.4628,89.5219 l -0.0000,-14.7304 h -14.7304 l -0.0000,14.7304 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.2" stroke="rgb(188,189,34)" stroke-width="1.2060797866148238" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.2" stroke="rgb(188,189,34)" stroke-width="1.2060797866148238" fill="rgb(89,90,11)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 19.2676,200.0000 l -0.0000,-14.7304 h -14.7304 l -0.0000,14.7304 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(31,119,180)" stroke-width="2.4121595732296477" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(22,93,143)" stroke-width="2.4121595732296477" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 11.9024,155.8088 h 92.0651 l 92.0651,-147.3041 "/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.2" stroke="rgb(227,119,194)" stroke-width="1.2060797866148238" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.2" stroke="rgb(227,119,194)" stroke-width="1.2060797866148238" fill="rgb(109,54,92)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 203.3978,12.7569 l -7.3652,-12.7569 l -7.3652,12.7569 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.2" stroke="rgb(227,119,194)" stroke-width="1.2060797866148238" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.2" stroke="rgb(227,119,194)" stroke-width="1.2060797866148238" fill="rgb(109,54,92)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 111.3327,160.0611 l -7.3652,-12.7569 l -7.3652,12.7569 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.2" stroke="rgb(227,119,194)" stroke-width="1.2060797866148238" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.2" stroke="rgb(227,119,194)" stroke-width="1.2060797866148238" fill="rgb(109,54,92)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 19.2676,160.0611 l -7.3652,-12.7569 l -7.3652,12.7569 Z"/>
   </g>
 </svg>
diff --git a/other/glineHudExample.svg b/other/glineHudExample.svg
deleted file mode 100644
--- a/other/glineHudExample.svg
+++ /dev/null
@@ -1,449 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
-    "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
-<svg xmlns="http://www.w3.org/2000/svg" height="400.0000" stroke-opacity="1" viewBox="0 0 600 400" font-size="1" width="600.0000" xmlns:xlink="http://www.w3.org/1999/xlink" stroke="rgb(0,0,0)" version="1.1">
-  <defs>
-  </defs>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 366.3417,114.0537 l -0.0000,-18.3013 h -27.4519 l -0.0000,18.3013 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="16.63751546435732px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,352.6158,104.9031)" stroke="none" text-anchor="middle">5,5
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 353.5045,117.6087 c 0.0000,-0.4908 -0.3979,-0.8888 -0.8888 -0.8888c -0.4908,-0.0000 -0.8888,0.3979 -0.8888 0.8888c -0.0000,0.4908 0.3979,0.8888 0.8888 0.8888c 0.4908,0.0000 0.8888,-0.3979 0.8888 -0.8888Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 366.3417,149.6040 l -0.0000,-18.3013 h -27.4519 l -0.0000,18.3013 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="16.63751546435732px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,352.6158,140.4533)" stroke="none" text-anchor="middle">5,4
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 353.5045,153.1590 c 0.0000,-0.4908 -0.3979,-0.8888 -0.8888 -0.8888c -0.4908,-0.0000 -0.8888,0.3979 -0.8888 0.8888c -0.0000,0.4908 0.3979,0.8888 0.8888 0.8888c 0.4908,0.0000 0.8888,-0.3979 0.8888 -0.8888Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 366.3417,185.1542 l -0.0000,-18.3013 h -27.4519 l -0.0000,18.3013 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="16.63751546435732px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,352.6158,176.0036)" stroke="none" text-anchor="middle">5,3
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 353.5045,188.7092 c 0.0000,-0.4908 -0.3979,-0.8888 -0.8888 -0.8888c -0.4908,-0.0000 -0.8888,0.3979 -0.8888 0.8888c -0.0000,0.4908 0.3979,0.8888 0.8888 0.8888c 0.4908,0.0000 0.8888,-0.3979 0.8888 -0.8888Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 366.3417,220.7045 l -0.0000,-18.3013 h -27.4519 l -0.0000,18.3013 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="16.63751546435732px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,352.6158,211.5538)" stroke="none" text-anchor="middle">5,2
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 353.5045,224.2595 c 0.0000,-0.4908 -0.3979,-0.8888 -0.8888 -0.8888c -0.4908,-0.0000 -0.8888,0.3979 -0.8888 0.8888c -0.0000,0.4908 0.3979,0.8888 0.8888 0.8888c 0.4908,0.0000 0.8888,-0.3979 0.8888 -0.8888Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 366.3417,256.2547 l -0.0000,-18.3013 h -27.4519 l -0.0000,18.3013 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="16.63751546435732px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,352.6158,247.1041)" stroke="none" text-anchor="middle">5,1
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 353.5045,259.8097 c 0.0000,-0.4908 -0.3979,-0.8888 -0.8888 -0.8888c -0.4908,-0.0000 -0.8888,0.3979 -0.8888 0.8888c -0.0000,0.4908 0.3979,0.8888 0.8888 0.8888c 0.4908,0.0000 0.8888,-0.3979 0.8888 -0.8888Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 366.3417,291.8050 l -0.0000,-18.3013 h -27.4519 l -0.0000,18.3013 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="16.63751546435732px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,352.6158,282.6543)" stroke="none" text-anchor="middle">5,0
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 353.5045,295.3600 c 0.0000,-0.4908 -0.3979,-0.8888 -0.8888 -0.8888c -0.4908,-0.0000 -0.8888,0.3979 -0.8888 0.8888c -0.0000,0.4908 0.3979,0.8888 0.8888 0.8888c 0.4908,0.0000 0.8888,-0.3979 0.8888 -0.8888Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 313.0164,114.0537 l -0.0000,-18.3013 h -27.4519 l -0.0000,18.3013 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="16.63751546435732px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,299.2904,104.9031)" stroke="none" text-anchor="middle">4,5
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 300.1792,117.6087 c 0.0000,-0.4908 -0.3979,-0.8888 -0.8888 -0.8888c -0.4908,-0.0000 -0.8888,0.3979 -0.8888 0.8888c -0.0000,0.4908 0.3979,0.8888 0.8888 0.8888c 0.4908,0.0000 0.8888,-0.3979 0.8888 -0.8888Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 313.0164,149.6040 l -0.0000,-18.3013 h -27.4519 l -0.0000,18.3013 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="16.63751546435732px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,299.2904,140.4533)" stroke="none" text-anchor="middle">4,4
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 300.1792,153.1590 c 0.0000,-0.4908 -0.3979,-0.8888 -0.8888 -0.8888c -0.4908,-0.0000 -0.8888,0.3979 -0.8888 0.8888c -0.0000,0.4908 0.3979,0.8888 0.8888 0.8888c 0.4908,0.0000 0.8888,-0.3979 0.8888 -0.8888Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 313.0164,185.1542 l -0.0000,-18.3013 h -27.4519 l -0.0000,18.3013 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="16.63751546435732px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,299.2904,176.0036)" stroke="none" text-anchor="middle">4,3
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 300.1792,188.7092 c 0.0000,-0.4908 -0.3979,-0.8888 -0.8888 -0.8888c -0.4908,-0.0000 -0.8888,0.3979 -0.8888 0.8888c -0.0000,0.4908 0.3979,0.8888 0.8888 0.8888c 0.4908,0.0000 0.8888,-0.3979 0.8888 -0.8888Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 313.0164,220.7045 l -0.0000,-18.3013 h -27.4519 l -0.0000,18.3013 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="16.63751546435732px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,299.2904,211.5538)" stroke="none" text-anchor="middle">4,2
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 300.1792,224.2595 c 0.0000,-0.4908 -0.3979,-0.8888 -0.8888 -0.8888c -0.4908,-0.0000 -0.8888,0.3979 -0.8888 0.8888c -0.0000,0.4908 0.3979,0.8888 0.8888 0.8888c 0.4908,0.0000 0.8888,-0.3979 0.8888 -0.8888Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 313.0164,256.2547 l -0.0000,-18.3013 h -27.4519 l -0.0000,18.3013 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="16.63751546435732px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,299.2904,247.1041)" stroke="none" text-anchor="middle">4,1
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 300.1792,259.8097 c 0.0000,-0.4908 -0.3979,-0.8888 -0.8888 -0.8888c -0.4908,-0.0000 -0.8888,0.3979 -0.8888 0.8888c -0.0000,0.4908 0.3979,0.8888 0.8888 0.8888c 0.4908,0.0000 0.8888,-0.3979 0.8888 -0.8888Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 313.0164,291.8050 l -0.0000,-18.3013 h -27.4519 l -0.0000,18.3013 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="16.63751546435732px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,299.2904,282.6543)" stroke="none" text-anchor="middle">4,0
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 300.1792,295.3600 c 0.0000,-0.4908 -0.3979,-0.8888 -0.8888 -0.8888c -0.4908,-0.0000 -0.8888,0.3979 -0.8888 0.8888c -0.0000,0.4908 0.3979,0.8888 0.8888 0.8888c 0.4908,0.0000 0.8888,-0.3979 0.8888 -0.8888Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 259.6910,114.0537 l -0.0000,-18.3013 h -27.4519 l -0.0000,18.3013 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="16.63751546435732px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,245.9650,104.9031)" stroke="none" text-anchor="middle">3,5
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 246.8538,117.6087 c 0.0000,-0.4908 -0.3979,-0.8888 -0.8888 -0.8888c -0.4908,-0.0000 -0.8888,0.3979 -0.8888 0.8888c -0.0000,0.4908 0.3979,0.8888 0.8888 0.8888c 0.4908,0.0000 0.8888,-0.3979 0.8888 -0.8888Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 259.6910,149.6040 l -0.0000,-18.3013 h -27.4519 l -0.0000,18.3013 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="16.63751546435732px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,245.9650,140.4533)" stroke="none" text-anchor="middle">3,4
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 246.8538,153.1590 c 0.0000,-0.4908 -0.3979,-0.8888 -0.8888 -0.8888c -0.4908,-0.0000 -0.8888,0.3979 -0.8888 0.8888c -0.0000,0.4908 0.3979,0.8888 0.8888 0.8888c 0.4908,0.0000 0.8888,-0.3979 0.8888 -0.8888Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 259.6910,185.1542 l -0.0000,-18.3013 h -27.4519 l -0.0000,18.3013 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="16.63751546435732px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,245.9650,176.0036)" stroke="none" text-anchor="middle">3,3
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 246.8538,188.7092 c 0.0000,-0.4908 -0.3979,-0.8888 -0.8888 -0.8888c -0.4908,-0.0000 -0.8888,0.3979 -0.8888 0.8888c -0.0000,0.4908 0.3979,0.8888 0.8888 0.8888c 0.4908,0.0000 0.8888,-0.3979 0.8888 -0.8888Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 259.6910,220.7045 l -0.0000,-18.3013 h -27.4519 l -0.0000,18.3013 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="16.63751546435732px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,245.9650,211.5538)" stroke="none" text-anchor="middle">3,2
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 246.8538,224.2595 c 0.0000,-0.4908 -0.3979,-0.8888 -0.8888 -0.8888c -0.4908,-0.0000 -0.8888,0.3979 -0.8888 0.8888c -0.0000,0.4908 0.3979,0.8888 0.8888 0.8888c 0.4908,0.0000 0.8888,-0.3979 0.8888 -0.8888Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 259.6910,256.2547 l -0.0000,-18.3013 h -27.4519 l -0.0000,18.3013 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="16.63751546435732px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,245.9650,247.1041)" stroke="none" text-anchor="middle">3,1
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 246.8538,259.8097 c 0.0000,-0.4908 -0.3979,-0.8888 -0.8888 -0.8888c -0.4908,-0.0000 -0.8888,0.3979 -0.8888 0.8888c -0.0000,0.4908 0.3979,0.8888 0.8888 0.8888c 0.4908,0.0000 0.8888,-0.3979 0.8888 -0.8888Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 259.6910,291.8050 l -0.0000,-18.3013 h -27.4519 l -0.0000,18.3013 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="16.63751546435732px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,245.9650,282.6543)" stroke="none" text-anchor="middle">3,0
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 246.8538,295.3600 c 0.0000,-0.4908 -0.3979,-0.8888 -0.8888 -0.8888c -0.4908,-0.0000 -0.8888,0.3979 -0.8888 0.8888c -0.0000,0.4908 0.3979,0.8888 0.8888 0.8888c 0.4908,0.0000 0.8888,-0.3979 0.8888 -0.8888Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 206.3656,114.0537 l -0.0000,-18.3013 h -27.4519 l -0.0000,18.3013 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="16.63751546435732px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,192.6397,104.9031)" stroke="none" text-anchor="middle">2,5
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 193.5284,117.6087 c 0.0000,-0.4908 -0.3979,-0.8888 -0.8888 -0.8888c -0.4908,-0.0000 -0.8888,0.3979 -0.8888 0.8888c -0.0000,0.4908 0.3979,0.8888 0.8888 0.8888c 0.4908,0.0000 0.8888,-0.3979 0.8888 -0.8888Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 206.3656,149.6040 l -0.0000,-18.3013 h -27.4519 l -0.0000,18.3013 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="16.63751546435732px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,192.6397,140.4533)" stroke="none" text-anchor="middle">2,4
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 193.5284,153.1590 c 0.0000,-0.4908 -0.3979,-0.8888 -0.8888 -0.8888c -0.4908,-0.0000 -0.8888,0.3979 -0.8888 0.8888c -0.0000,0.4908 0.3979,0.8888 0.8888 0.8888c 0.4908,0.0000 0.8888,-0.3979 0.8888 -0.8888Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 206.3656,185.1542 l -0.0000,-18.3013 h -27.4519 l -0.0000,18.3013 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="16.63751546435732px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,192.6397,176.0036)" stroke="none" text-anchor="middle">2,3
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 193.5284,188.7092 c 0.0000,-0.4908 -0.3979,-0.8888 -0.8888 -0.8888c -0.4908,-0.0000 -0.8888,0.3979 -0.8888 0.8888c -0.0000,0.4908 0.3979,0.8888 0.8888 0.8888c 0.4908,0.0000 0.8888,-0.3979 0.8888 -0.8888Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 206.3656,220.7045 l -0.0000,-18.3013 h -27.4519 l -0.0000,18.3013 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="16.63751546435732px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,192.6397,211.5538)" stroke="none" text-anchor="middle">2,2
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 193.5284,224.2595 c 0.0000,-0.4908 -0.3979,-0.8888 -0.8888 -0.8888c -0.4908,-0.0000 -0.8888,0.3979 -0.8888 0.8888c -0.0000,0.4908 0.3979,0.8888 0.8888 0.8888c 0.4908,0.0000 0.8888,-0.3979 0.8888 -0.8888Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 206.3656,256.2547 l -0.0000,-18.3013 h -27.4519 l -0.0000,18.3013 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="16.63751546435732px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,192.6397,247.1041)" stroke="none" text-anchor="middle">2,1
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 193.5284,259.8097 c 0.0000,-0.4908 -0.3979,-0.8888 -0.8888 -0.8888c -0.4908,-0.0000 -0.8888,0.3979 -0.8888 0.8888c -0.0000,0.4908 0.3979,0.8888 0.8888 0.8888c 0.4908,0.0000 0.8888,-0.3979 0.8888 -0.8888Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 206.3656,291.8050 l -0.0000,-18.3013 h -27.4519 l -0.0000,18.3013 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="16.63751546435732px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,192.6397,282.6543)" stroke="none" text-anchor="middle">2,0
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 193.5284,295.3600 c 0.0000,-0.4908 -0.3979,-0.8888 -0.8888 -0.8888c -0.4908,-0.0000 -0.8888,0.3979 -0.8888 0.8888c -0.0000,0.4908 0.3979,0.8888 0.8888 0.8888c 0.4908,0.0000 0.8888,-0.3979 0.8888 -0.8888Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 153.0403,114.0537 l -0.0000,-18.3013 h -27.4519 l -0.0000,18.3013 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="16.63751546435732px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,139.3143,104.9031)" stroke="none" text-anchor="middle">1,5
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 140.2031,117.6087 c 0.0000,-0.4908 -0.3979,-0.8888 -0.8888 -0.8888c -0.4908,-0.0000 -0.8888,0.3979 -0.8888 0.8888c -0.0000,0.4908 0.3979,0.8888 0.8888 0.8888c 0.4908,0.0000 0.8888,-0.3979 0.8888 -0.8888Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 153.0403,149.6040 l -0.0000,-18.3013 h -27.4519 l -0.0000,18.3013 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="16.63751546435732px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,139.3143,140.4533)" stroke="none" text-anchor="middle">1,4
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 140.2031,153.1590 c 0.0000,-0.4908 -0.3979,-0.8888 -0.8888 -0.8888c -0.4908,-0.0000 -0.8888,0.3979 -0.8888 0.8888c -0.0000,0.4908 0.3979,0.8888 0.8888 0.8888c 0.4908,0.0000 0.8888,-0.3979 0.8888 -0.8888Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 153.0403,185.1542 l -0.0000,-18.3013 h -27.4519 l -0.0000,18.3013 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="16.63751546435732px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,139.3143,176.0036)" stroke="none" text-anchor="middle">1,3
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 140.2031,188.7092 c 0.0000,-0.4908 -0.3979,-0.8888 -0.8888 -0.8888c -0.4908,-0.0000 -0.8888,0.3979 -0.8888 0.8888c -0.0000,0.4908 0.3979,0.8888 0.8888 0.8888c 0.4908,0.0000 0.8888,-0.3979 0.8888 -0.8888Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 153.0403,220.7045 l -0.0000,-18.3013 h -27.4519 l -0.0000,18.3013 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="16.63751546435732px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,139.3143,211.5538)" stroke="none" text-anchor="middle">1,2
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 140.2031,224.2595 c 0.0000,-0.4908 -0.3979,-0.8888 -0.8888 -0.8888c -0.4908,-0.0000 -0.8888,0.3979 -0.8888 0.8888c -0.0000,0.4908 0.3979,0.8888 0.8888 0.8888c 0.4908,0.0000 0.8888,-0.3979 0.8888 -0.8888Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 153.0403,256.2547 l -0.0000,-18.3013 h -27.4519 l -0.0000,18.3013 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="16.63751546435732px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,139.3143,247.1041)" stroke="none" text-anchor="middle">1,1
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 140.2031,259.8097 c 0.0000,-0.4908 -0.3979,-0.8888 -0.8888 -0.8888c -0.4908,-0.0000 -0.8888,0.3979 -0.8888 0.8888c -0.0000,0.4908 0.3979,0.8888 0.8888 0.8888c 0.4908,0.0000 0.8888,-0.3979 0.8888 -0.8888Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 153.0403,291.8050 l -0.0000,-18.3013 h -27.4519 l -0.0000,18.3013 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="16.63751546435732px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,139.3143,282.6543)" stroke="none" text-anchor="middle">1,0
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 140.2031,295.3600 c 0.0000,-0.4908 -0.3979,-0.8888 -0.8888 -0.8888c -0.4908,-0.0000 -0.8888,0.3979 -0.8888 0.8888c -0.0000,0.4908 0.3979,0.8888 0.8888 0.8888c 0.4908,0.0000 0.8888,-0.3979 0.8888 -0.8888Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 99.7149,114.0537 l -0.0000,-18.3013 h -27.4519 l -0.0000,18.3013 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="16.63751546435732px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,85.9889,104.9031)" stroke="none" text-anchor="middle">0,5
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 86.8777,117.6087 c 0.0000,-0.4908 -0.3979,-0.8888 -0.8888 -0.8888c -0.4908,-0.0000 -0.8888,0.3979 -0.8888 0.8888c -0.0000,0.4908 0.3979,0.8888 0.8888 0.8888c 0.4908,0.0000 0.8888,-0.3979 0.8888 -0.8888Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 99.7149,149.6040 l -0.0000,-18.3013 h -27.4519 l -0.0000,18.3013 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="16.63751546435732px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,85.9889,140.4533)" stroke="none" text-anchor="middle">0,4
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 86.8777,153.1590 c 0.0000,-0.4908 -0.3979,-0.8888 -0.8888 -0.8888c -0.4908,-0.0000 -0.8888,0.3979 -0.8888 0.8888c -0.0000,0.4908 0.3979,0.8888 0.8888 0.8888c 0.4908,0.0000 0.8888,-0.3979 0.8888 -0.8888Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 99.7149,185.1542 l -0.0000,-18.3013 h -27.4519 l -0.0000,18.3013 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="16.63751546435732px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,85.9889,176.0036)" stroke="none" text-anchor="middle">0,3
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 86.8777,188.7092 c 0.0000,-0.4908 -0.3979,-0.8888 -0.8888 -0.8888c -0.4908,-0.0000 -0.8888,0.3979 -0.8888 0.8888c -0.0000,0.4908 0.3979,0.8888 0.8888 0.8888c 0.4908,0.0000 0.8888,-0.3979 0.8888 -0.8888Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 99.7149,220.7045 l -0.0000,-18.3013 h -27.4519 l -0.0000,18.3013 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="16.63751546435732px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,85.9889,211.5538)" stroke="none" text-anchor="middle">0,2
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 86.8777,224.2595 c 0.0000,-0.4908 -0.3979,-0.8888 -0.8888 -0.8888c -0.4908,-0.0000 -0.8888,0.3979 -0.8888 0.8888c -0.0000,0.4908 0.3979,0.8888 0.8888 0.8888c 0.4908,0.0000 0.8888,-0.3979 0.8888 -0.8888Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 99.7149,256.2547 l -0.0000,-18.3013 h -27.4519 l -0.0000,18.3013 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="16.63751546435732px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,85.9889,247.1041)" stroke="none" text-anchor="middle">0,1
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 86.8777,259.8097 c 0.0000,-0.4908 -0.3979,-0.8888 -0.8888 -0.8888c -0.4908,-0.0000 -0.8888,0.3979 -0.8888 0.8888c -0.0000,0.4908 0.3979,0.8888 0.8888 0.8888c 0.4908,0.0000 0.8888,-0.3979 0.8888 -0.8888Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 99.7149,291.8050 l -0.0000,-18.3013 h -27.4519 l -0.0000,18.3013 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="16.63751546435732px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,85.9889,282.6543)" stroke="none" text-anchor="middle">0,0
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 86.8777,295.3600 c 0.0000,-0.4908 -0.3979,-0.8888 -0.8888 -0.8888c -0.4908,-0.0000 -0.8888,0.3979 -0.8888 0.8888c -0.0000,0.4908 0.3979,0.8888 0.8888 0.8888c 0.4908,0.0000 0.8888,-0.3979 0.8888 -0.8888Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 50.4387,127.5984 l -30.5021,0.0000 l -0.0000,167.7616 l 30.5021,0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" font-size="27.72919244059554px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(31,119,180)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(0.0000,-1.0000,1.0000,0.0000,35.1876,295.3600)" stroke="none" text-anchor="start">Gline Chart
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 526.8333,290.2514 l -0.0000,-30.5021 h -91.5063 l -0.0000,30.5021 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.63" font-size="27.72919244059554px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,481.0802,275.0004)" stroke="none" text-anchor="middle">circle
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(44,160,44)" stroke-width="1.768453082311926" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 396.2217,272.2274 h 35.5502 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.2" stroke="rgb(44,160,44)" stroke-width="1.768453082311926" fill="rgb(44,160,44)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 421.1069,272.2274 c 0.0000,-3.9268 -3.1833,-7.1100 -7.1100 -7.1100c -3.9268,-0.0000 -7.1100,3.1833 -7.1100 7.1100c -0.0000,3.9268 3.1833,7.1100 7.1100 7.1100c 3.9268,0.0000 7.1100,-3.1833 7.1100 -7.1100Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 526.8333,254.4168 l -0.0000,-30.5021 h -91.5063 l -0.0000,30.5021 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.63" font-size="27.72919244059554px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,481.0802,239.1657)" stroke="none" text-anchor="middle">square
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(255,127,14)" stroke-width="7.073812329247704" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 396.2217,236.3928 h 35.5502 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.2" stroke="rgb(188,189,34)" stroke-width="1.768453082311926" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 421.1069,243.5028 l -0.0000,-14.2201 h -14.2201 l -0.0000,14.2201 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 557.3354,218.5821 l -0.0000,-30.5021 h -122.0084 l -0.0000,30.5021 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.63" font-size="27.72919244059554px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,496.3312,203.3311)" stroke="none" text-anchor="middle">triangle
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(31,119,180)" stroke-width="3.536906164623852" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 396.2217,200.5581 h 35.5502 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.2" stroke="rgb(227,119,194)" stroke-width="1.768453082311926" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 421.1069,204.6631 l -7.1100,-12.3150 l -7.1100,12.3150 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.2" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.7073812329247704" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 565.3911,295.3600 l -0.0000,-112.3885 h -177.2251 l -0.0000,112.3885 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 352.6158,295.3600 l -0.0000,-177.7512 h -266.6269 l -0.0000,177.7512 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(44,160,44)" stroke-width="1.768453082311926" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 112.6516,153.1590 v 142.2010 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.2" stroke="rgb(44,160,44)" stroke-width="1.768453082311926" fill="rgb(44,160,44)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 119.7617,295.3600 c 0.0000,-3.9268 -3.1833,-7.1100 -7.1100 -7.1100c -3.9268,-0.0000 -7.1100,3.1833 -7.1100 7.1100c -0.0000,3.9268 3.1833,7.1100 7.1100 7.1100c 3.9268,0.0000 7.1100,-3.1833 7.1100 -7.1100Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.2" stroke="rgb(44,160,44)" stroke-width="1.768453082311926" fill="rgb(44,160,44)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 119.7617,153.1590 c 0.0000,-3.9268 -3.1833,-7.1100 -7.1100 -7.1100c -3.9268,-0.0000 -7.1100,3.1833 -7.1100 7.1100c -0.0000,3.9268 3.1833,7.1100 7.1100 7.1100c 3.9268,0.0000 7.1100,-3.1833 7.1100 -7.1100Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(255,127,14)" stroke-width="7.073812329247704" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 85.9889,295.3600 l 159.9761,-106.6507 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.2" stroke="rgb(188,189,34)" stroke-width="1.768453082311926" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 253.0751,195.8193 l -0.0000,-14.2201 h -14.2201 l -0.0000,14.2201 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.2" stroke="rgb(188,189,34)" stroke-width="1.768453082311926" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 93.0990,302.4700 l -0.0000,-14.2201 h -14.2201 l -0.0000,14.2201 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(31,119,180)" stroke-width="3.536906164623852" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 85.9889,259.8097 h 53.3254 l 53.3254,-142.2010 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.2" stroke="rgb(227,119,194)" stroke-width="1.768453082311926" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 199.7497,121.7137 l -7.1100,-12.3150 l -7.1100,12.3150 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.2" stroke="rgb(227,119,194)" stroke-width="1.768453082311926" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 146.4244,263.9147 l -7.1100,-12.3150 l -7.1100,12.3150 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.2" stroke="rgb(227,119,194)" stroke-width="1.768453082311926" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 93.0990,263.9147 l -7.1100,-12.3150 l -7.1100,12.3150 Z"/>
-  </g>
-</svg>
diff --git a/other/glyphChart_Example.svg b/other/glyphChart_Example.svg
--- a/other/glyphChart_Example.svg
+++ b/other/glyphChart_Example.svg
@@ -4,97 +4,97 @@
 <svg xmlns="http://www.w3.org/2000/svg" height="150.0000" stroke-opacity="1" viewBox="0 0 450 150" font-size="1" width="450.0000" xmlns:xlink="http://www.w3.org/1999/xlink" stroke="rgb(0,0,0)" version="1.1">
   <defs>
   </defs>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.4" stroke="rgb(102,102,102)" stroke-width="0.25124172005036327" fill="rgb(255,232,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.4" stroke="rgb(102,102,102)" stroke-width="0.25124172005036327" fill="rgb(170,154,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 435.4080,11.7560 l -6.7874,-11.7560 l -6.7874,11.7560 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.4" stroke="rgb(102,102,102)" stroke-width="0.25124172005036327" fill="rgb(255,232,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.4" stroke="rgb(102,102,102)" stroke-width="0.25124172005036327" fill="rgb(170,154,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 421.8333,13.2392 l -6.7874,-11.7560 l -6.7874,11.7560 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.4" stroke="rgb(102,102,102)" stroke-width="0.25124172005036327" fill="rgb(255,232,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.4" stroke="rgb(102,102,102)" stroke-width="0.25124172005036327" fill="rgb(170,154,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 408.2586,17.6240 l -6.7874,-11.7560 l -6.7874,11.7560 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.4" stroke="rgb(102,102,102)" stroke-width="0.25124172005036327" fill="rgb(255,232,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.4" stroke="rgb(102,102,102)" stroke-width="0.25124172005036327" fill="rgb(170,154,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 394.6839,24.7187 l -6.7874,-11.7560 l -6.7874,11.7560 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.4" stroke="rgb(102,102,102)" stroke-width="0.25124172005036327" fill="rgb(255,232,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.4" stroke="rgb(102,102,102)" stroke-width="0.25124172005036327" fill="rgb(170,154,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 381.1092,34.2133 l -6.7874,-11.7560 l -6.7874,11.7560 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.4" stroke="rgb(102,102,102)" stroke-width="0.25124172005036327" fill="rgb(255,232,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.4" stroke="rgb(102,102,102)" stroke-width="0.25124172005036327" fill="rgb(170,154,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 367.5345,45.6928 l -6.7874,-11.7560 l -6.7874,11.7560 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.4" stroke="rgb(102,102,102)" stroke-width="0.25124172005036327" fill="rgb(255,232,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.4" stroke="rgb(102,102,102)" stroke-width="0.25124172005036327" fill="rgb(170,154,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 353.9597,58.6555 l -6.7874,-11.7560 l -6.7874,11.7560 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.4" stroke="rgb(102,102,102)" stroke-width="0.25124172005036327" fill="rgb(255,232,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.4" stroke="rgb(102,102,102)" stroke-width="0.25124172005036327" fill="rgb(170,154,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 340.3850,72.5349 l -6.7874,-11.7560 l -6.7874,11.7560 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.4" stroke="rgb(102,102,102)" stroke-width="0.25124172005036327" fill="rgb(255,232,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.4" stroke="rgb(102,102,102)" stroke-width="0.25124172005036327" fill="rgb(170,154,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 326.8103,86.7243 l -6.7874,-11.7560 l -6.7874,11.7560 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.4" stroke="rgb(102,102,102)" stroke-width="0.25124172005036327" fill="rgb(255,232,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.4" stroke="rgb(102,102,102)" stroke-width="0.25124172005036327" fill="rgb(170,154,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 313.2356,100.6037 l -6.7874,-11.7560 l -6.7874,11.7560 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.4" stroke="rgb(102,102,102)" stroke-width="0.25124172005036327" fill="rgb(255,232,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.4" stroke="rgb(102,102,102)" stroke-width="0.25124172005036327" fill="rgb(170,154,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 299.6609,113.5664 l -6.7874,-11.7560 l -6.7874,11.7560 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.4" stroke="rgb(102,102,102)" stroke-width="0.25124172005036327" fill="rgb(255,232,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.4" stroke="rgb(102,102,102)" stroke-width="0.25124172005036327" fill="rgb(170,154,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 286.0862,125.0459 l -6.7874,-11.7560 l -6.7874,11.7560 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.4" stroke="rgb(102,102,102)" stroke-width="0.25124172005036327" fill="rgb(255,232,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.4" stroke="rgb(102,102,102)" stroke-width="0.25124172005036327" fill="rgb(170,154,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 272.5115,134.5404 l -6.7874,-11.7560 l -6.7874,11.7560 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.4" stroke="rgb(102,102,102)" stroke-width="0.25124172005036327" fill="rgb(255,232,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.4" stroke="rgb(102,102,102)" stroke-width="0.25124172005036327" fill="rgb(170,154,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 258.9368,141.6352 l -6.7874,-11.7560 l -6.7874,11.7560 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.4" stroke="rgb(102,102,102)" stroke-width="0.25124172005036327" fill="rgb(255,232,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.4" stroke="rgb(102,102,102)" stroke-width="0.25124172005036327" fill="rgb(170,154,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 245.3621,146.0199 l -6.7874,-11.7560 l -6.7874,11.7560 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.4" stroke="rgb(102,102,102)" stroke-width="0.25124172005036327" fill="rgb(255,232,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.4" stroke="rgb(102,102,102)" stroke-width="0.25124172005036327" fill="rgb(170,154,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 231.7874,147.5031 l -6.7874,-11.7560 l -6.7874,11.7560 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.4" stroke="rgb(102,102,102)" stroke-width="0.25124172005036327" fill="rgb(255,232,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.4" stroke="rgb(102,102,102)" stroke-width="0.25124172005036327" fill="rgb(170,154,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 218.2126,146.0199 l -6.7874,-11.7560 l -6.7874,11.7560 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.4" stroke="rgb(102,102,102)" stroke-width="0.25124172005036327" fill="rgb(255,232,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.4" stroke="rgb(102,102,102)" stroke-width="0.25124172005036327" fill="rgb(170,154,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 204.6379,141.6352 l -6.7874,-11.7560 l -6.7874,11.7560 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.4" stroke="rgb(102,102,102)" stroke-width="0.25124172005036327" fill="rgb(255,232,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.4" stroke="rgb(102,102,102)" stroke-width="0.25124172005036327" fill="rgb(170,154,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 191.0632,134.5404 l -6.7874,-11.7560 l -6.7874,11.7560 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.4" stroke="rgb(102,102,102)" stroke-width="0.25124172005036327" fill="rgb(255,232,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.4" stroke="rgb(102,102,102)" stroke-width="0.25124172005036327" fill="rgb(170,154,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 177.4885,125.0459 l -6.7874,-11.7560 l -6.7874,11.7560 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.4" stroke="rgb(102,102,102)" stroke-width="0.25124172005036327" fill="rgb(255,232,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.4" stroke="rgb(102,102,102)" stroke-width="0.25124172005036327" fill="rgb(170,154,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 163.9138,113.5664 l -6.7874,-11.7560 l -6.7874,11.7560 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.4" stroke="rgb(102,102,102)" stroke-width="0.25124172005036327" fill="rgb(255,232,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.4" stroke="rgb(102,102,102)" stroke-width="0.25124172005036327" fill="rgb(170,154,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 150.3391,100.6037 l -6.7874,-11.7560 l -6.7874,11.7560 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.4" stroke="rgb(102,102,102)" stroke-width="0.25124172005036327" fill="rgb(255,232,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.4" stroke="rgb(102,102,102)" stroke-width="0.25124172005036327" fill="rgb(170,154,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 136.7644,86.7243 l -6.7874,-11.7560 l -6.7874,11.7560 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.4" stroke="rgb(102,102,102)" stroke-width="0.25124172005036327" fill="rgb(255,232,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.4" stroke="rgb(102,102,102)" stroke-width="0.25124172005036327" fill="rgb(170,154,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 123.1897,72.5349 l -6.7874,-11.7560 l -6.7874,11.7560 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.4" stroke="rgb(102,102,102)" stroke-width="0.25124172005036327" fill="rgb(255,232,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.4" stroke="rgb(102,102,102)" stroke-width="0.25124172005036327" fill="rgb(170,154,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 109.6150,58.6555 l -6.7874,-11.7560 l -6.7874,11.7560 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.4" stroke="rgb(102,102,102)" stroke-width="0.25124172005036327" fill="rgb(255,232,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.4" stroke="rgb(102,102,102)" stroke-width="0.25124172005036327" fill="rgb(170,154,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 96.0403,45.6928 l -6.7874,-11.7560 l -6.7874,11.7560 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.4" stroke="rgb(102,102,102)" stroke-width="0.25124172005036327" fill="rgb(255,232,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.4" stroke="rgb(102,102,102)" stroke-width="0.25124172005036327" fill="rgb(170,154,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 82.4655,34.2133 l -6.7874,-11.7560 l -6.7874,11.7560 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.4" stroke="rgb(102,102,102)" stroke-width="0.25124172005036327" fill="rgb(255,232,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.4" stroke="rgb(102,102,102)" stroke-width="0.25124172005036327" fill="rgb(170,154,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 68.8908,24.7187 l -6.7874,-11.7560 l -6.7874,11.7560 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.4" stroke="rgb(102,102,102)" stroke-width="0.25124172005036327" fill="rgb(255,232,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.4" stroke="rgb(102,102,102)" stroke-width="0.25124172005036327" fill="rgb(170,154,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 55.3161,17.6240 l -6.7874,-11.7560 l -6.7874,11.7560 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.4" stroke="rgb(102,102,102)" stroke-width="0.25124172005036327" fill="rgb(255,232,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.4" stroke="rgb(102,102,102)" stroke-width="0.25124172005036327" fill="rgb(170,154,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 41.7414,13.2392 l -6.7874,-11.7560 l -6.7874,11.7560 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.4" stroke="rgb(102,102,102)" stroke-width="0.25124172005036327" fill="rgb(255,232,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.4" stroke="rgb(102,102,102)" stroke-width="0.25124172005036327" fill="rgb(170,154,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 28.1667,11.7560 l -6.7874,-11.7560 l -6.7874,11.7560 Z"/>
   </g>
   <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.25124172005036327" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
diff --git a/other/glyphHudExample.svg b/other/glyphHudExample.svg
deleted file mode 100644
--- a/other/glyphHudExample.svg
+++ /dev/null
@@ -1,266 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
-    "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
-<svg xmlns="http://www.w3.org/2000/svg" height="400.0000" stroke-opacity="1" viewBox="0 0 600 400" font-size="1" width="600.0000" xmlns:xlink="http://www.w3.org/1999/xlink" stroke="rgb(0,0,0)" version="1.1">
-  <defs>
-  </defs>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.4" stroke="rgb(102,102,102)" stroke-width="0.3773064596361484" fill="rgb(255,232,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 499.5977,93.0781 l -6.7617,-11.7116 l -6.7617,11.7116 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.4" stroke="rgb(102,102,102)" stroke-width="0.3773064596361484" fill="rgb(255,232,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 486.0743,94.5557 l -6.7617,-11.7116 l -6.7617,11.7116 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.4" stroke="rgb(102,102,102)" stroke-width="0.3773064596361484" fill="rgb(255,232,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 472.5509,98.9239 l -6.7617,-11.7116 l -6.7617,11.7116 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.4" stroke="rgb(102,102,102)" stroke-width="0.3773064596361484" fill="rgb(255,232,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 459.0275,105.9918 l -6.7617,-11.7116 l -6.7617,11.7116 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.4" stroke="rgb(102,102,102)" stroke-width="0.3773064596361484" fill="rgb(255,232,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 445.5041,115.4505 l -6.7617,-11.7116 l -6.7617,11.7116 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.4" stroke="rgb(102,102,102)" stroke-width="0.3773064596361484" fill="rgb(255,232,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 431.9807,126.8867 l -6.7617,-11.7116 l -6.7617,11.7116 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.4" stroke="rgb(102,102,102)" stroke-width="0.3773064596361484" fill="rgb(255,232,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 418.4573,139.8004 l -6.7617,-11.7116 l -6.7617,11.7116 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.4" stroke="rgb(102,102,102)" stroke-width="0.3773064596361484" fill="rgb(255,232,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 404.9339,153.6273 l -6.7617,-11.7116 l -6.7617,11.7116 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.4" stroke="rgb(102,102,102)" stroke-width="0.3773064596361484" fill="rgb(255,232,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 391.4105,167.7631 l -6.7617,-11.7116 l -6.7617,11.7116 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.4" stroke="rgb(102,102,102)" stroke-width="0.3773064596361484" fill="rgb(255,232,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 377.8871,181.5900 l -6.7617,-11.7116 l -6.7617,11.7116 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.4" stroke="rgb(102,102,102)" stroke-width="0.3773064596361484" fill="rgb(255,232,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 364.3637,194.5037 l -6.7617,-11.7116 l -6.7617,11.7116 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.4" stroke="rgb(102,102,102)" stroke-width="0.3773064596361484" fill="rgb(255,232,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 350.8403,205.9398 l -6.7617,-11.7116 l -6.7617,11.7116 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.4" stroke="rgb(102,102,102)" stroke-width="0.3773064596361484" fill="rgb(255,232,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 337.3169,215.3985 l -6.7617,-11.7116 l -6.7617,11.7116 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.4" stroke="rgb(102,102,102)" stroke-width="0.3773064596361484" fill="rgb(255,232,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 323.7934,222.4664 l -6.7617,-11.7116 l -6.7617,11.7116 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.4" stroke="rgb(102,102,102)" stroke-width="0.3773064596361484" fill="rgb(255,232,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 310.2700,226.8346 l -6.7617,-11.7116 l -6.7617,11.7116 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.4" stroke="rgb(102,102,102)" stroke-width="0.3773064596361484" fill="rgb(255,232,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 296.7466,228.3122 l -6.7617,-11.7116 l -6.7617,11.7116 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.4" stroke="rgb(102,102,102)" stroke-width="0.3773064596361484" fill="rgb(255,232,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 283.2232,226.8346 l -6.7617,-11.7116 l -6.7617,11.7116 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.4" stroke="rgb(102,102,102)" stroke-width="0.3773064596361484" fill="rgb(255,232,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 269.6998,222.4664 l -6.7617,-11.7116 l -6.7617,11.7116 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.4" stroke="rgb(102,102,102)" stroke-width="0.3773064596361484" fill="rgb(255,232,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 256.1764,215.3985 l -6.7617,-11.7116 l -6.7617,11.7116 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.4" stroke="rgb(102,102,102)" stroke-width="0.3773064596361484" fill="rgb(255,232,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 242.6530,205.9398 l -6.7617,-11.7116 l -6.7617,11.7116 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.4" stroke="rgb(102,102,102)" stroke-width="0.3773064596361484" fill="rgb(255,232,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 229.1296,194.5037 l -6.7617,-11.7116 l -6.7617,11.7116 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.4" stroke="rgb(102,102,102)" stroke-width="0.3773064596361484" fill="rgb(255,232,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 215.6062,181.5900 l -6.7617,-11.7116 l -6.7617,11.7116 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.4" stroke="rgb(102,102,102)" stroke-width="0.3773064596361484" fill="rgb(255,232,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 202.0828,167.7631 l -6.7617,-11.7116 l -6.7617,11.7116 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.4" stroke="rgb(102,102,102)" stroke-width="0.3773064596361484" fill="rgb(255,232,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 188.5594,153.6273 l -6.7617,-11.7116 l -6.7617,11.7116 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.4" stroke="rgb(102,102,102)" stroke-width="0.3773064596361484" fill="rgb(255,232,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 175.0360,139.8004 l -6.7617,-11.7116 l -6.7617,11.7116 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.4" stroke="rgb(102,102,102)" stroke-width="0.3773064596361484" fill="rgb(255,232,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 161.5126,126.8867 l -6.7617,-11.7116 l -6.7617,11.7116 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.4" stroke="rgb(102,102,102)" stroke-width="0.3773064596361484" fill="rgb(255,232,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 147.9892,115.4505 l -6.7617,-11.7116 l -6.7617,11.7116 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.4" stroke="rgb(102,102,102)" stroke-width="0.3773064596361484" fill="rgb(255,232,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 134.4658,105.9918 l -6.7617,-11.7116 l -6.7617,11.7116 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.4" stroke="rgb(102,102,102)" stroke-width="0.3773064596361484" fill="rgb(255,232,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 120.9424,98.9239 l -6.7617,-11.7116 l -6.7617,11.7116 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.4" stroke="rgb(102,102,102)" stroke-width="0.3773064596361484" fill="rgb(255,232,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 107.4190,94.5557 l -6.7617,-11.7116 l -6.7617,11.7116 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.4" stroke="rgb(102,102,102)" stroke-width="0.3773064596361484" fill="rgb(255,232,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 93.8955,93.0781 l -6.7617,-11.7116 l -6.7617,11.7116 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.3773064596361484" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 499.5977,156.7913 c 0.0000,-3.7344 -3.0273,-6.7617 -6.7617 -6.7617c -3.7344,-0.0000 -6.7617,3.0273 -6.7617 6.7617c -0.0000,3.7344 3.0273,6.7617 6.7617 6.7617c 3.7344,0.0000 6.7617,-3.0273 6.7617 -6.7617Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.3773064596361484" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 486.0743,170.8497 c 0.0000,-3.7344 -3.0273,-6.7617 -6.7617 -6.7617c -3.7344,-0.0000 -6.7617,3.0273 -6.7617 6.7617c -0.0000,3.7344 3.0273,6.7617 6.7617 6.7617c 3.7344,0.0000 6.7617,-3.0273 6.7617 -6.7617Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.3773064596361484" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 472.5509,184.2936 c 0.0000,-3.7344 -3.0273,-6.7617 -6.7617 -6.7617c -3.7344,-0.0000 -6.7617,3.0273 -6.7617 6.7617c -0.0000,3.7344 3.0273,6.7617 6.7617 6.7617c 3.7344,0.0000 6.7617,-3.0273 6.7617 -6.7617Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.3773064596361484" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 459.0275,196.5356 c 0.0000,-3.7344 -3.0273,-6.7617 -6.7617 -6.7617c -3.7344,-0.0000 -6.7617,3.0273 -6.7617 6.7617c -0.0000,3.7344 3.0273,6.7617 6.7617 6.7617c 3.7344,0.0000 6.7617,-3.0273 6.7617 -6.7617Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.3773064596361484" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 445.5041,207.0405 c 0.0000,-3.7344 -3.0273,-6.7617 -6.7617 -6.7617c -3.7344,-0.0000 -6.7617,3.0273 -6.7617 6.7617c -0.0000,3.7344 3.0273,6.7617 6.7617 6.7617c 3.7344,0.0000 6.7617,-3.0273 6.7617 -6.7617Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.3773064596361484" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 431.9807,215.3494 c 0.0000,-3.7344 -3.0273,-6.7617 -6.7617 -6.7617c -3.7344,-0.0000 -6.7617,3.0273 -6.7617 6.7617c -0.0000,3.7344 3.0273,6.7617 6.7617 6.7617c 3.7344,0.0000 6.7617,-3.0273 6.7617 -6.7617Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.3773064596361484" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 418.4573,221.0989 c 0.0000,-3.7344 -3.0273,-6.7617 -6.7617 -6.7617c -3.7344,-0.0000 -6.7617,3.0273 -6.7617 6.7617c -0.0000,3.7344 3.0273,6.7617 6.7617 6.7617c 3.7344,0.0000 6.7617,-3.0273 6.7617 -6.7617Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.3773064596361484" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 404.9339,224.0379 c 0.0000,-3.7344 -3.0273,-6.7617 -6.7617 -6.7617c -3.7344,-0.0000 -6.7617,3.0273 -6.7617 6.7617c -0.0000,3.7344 3.0273,6.7617 6.7617 6.7617c 3.7344,0.0000 6.7617,-3.0273 6.7617 -6.7617Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.3773064596361484" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 391.4105,224.0379 c 0.0000,-3.7344 -3.0273,-6.7617 -6.7617 -6.7617c -3.7344,-0.0000 -6.7617,3.0273 -6.7617 6.7617c -0.0000,3.7344 3.0273,6.7617 6.7617 6.7617c 3.7344,0.0000 6.7617,-3.0273 6.7617 -6.7617Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.3773064596361484" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 377.8871,221.0989 c 0.0000,-3.7344 -3.0273,-6.7617 -6.7617 -6.7617c -3.7344,-0.0000 -6.7617,3.0273 -6.7617 6.7617c -0.0000,3.7344 3.0273,6.7617 6.7617 6.7617c 3.7344,0.0000 6.7617,-3.0273 6.7617 -6.7617Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.3773064596361484" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 364.3637,215.3494 c 0.0000,-3.7344 -3.0273,-6.7617 -6.7617 -6.7617c -3.7344,-0.0000 -6.7617,3.0273 -6.7617 6.7617c -0.0000,3.7344 3.0273,6.7617 6.7617 6.7617c 3.7344,0.0000 6.7617,-3.0273 6.7617 -6.7617Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.3773064596361484" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 350.8403,207.0405 c 0.0000,-3.7344 -3.0273,-6.7617 -6.7617 -6.7617c -3.7344,-0.0000 -6.7617,3.0273 -6.7617 6.7617c -0.0000,3.7344 3.0273,6.7617 6.7617 6.7617c 3.7344,0.0000 6.7617,-3.0273 6.7617 -6.7617Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.3773064596361484" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 337.3169,196.5356 c 0.0000,-3.7344 -3.0273,-6.7617 -6.7617 -6.7617c -3.7344,-0.0000 -6.7617,3.0273 -6.7617 6.7617c -0.0000,3.7344 3.0273,6.7617 6.7617 6.7617c 3.7344,0.0000 6.7617,-3.0273 6.7617 -6.7617Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.3773064596361484" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 323.7934,184.2936 c 0.0000,-3.7344 -3.0273,-6.7617 -6.7617 -6.7617c -3.7344,-0.0000 -6.7617,3.0273 -6.7617 6.7617c -0.0000,3.7344 3.0273,6.7617 6.7617 6.7617c 3.7344,0.0000 6.7617,-3.0273 6.7617 -6.7617Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.3773064596361484" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 310.2700,170.8497 c 0.0000,-3.7344 -3.0273,-6.7617 -6.7617 -6.7617c -3.7344,-0.0000 -6.7617,3.0273 -6.7617 6.7617c -0.0000,3.7344 3.0273,6.7617 6.7617 6.7617c 3.7344,0.0000 6.7617,-3.0273 6.7617 -6.7617Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.3773064596361484" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 296.7466,156.7913 c 0.0000,-3.7344 -3.0273,-6.7617 -6.7617 -6.7617c -3.7344,-0.0000 -6.7617,3.0273 -6.7617 6.7617c -0.0000,3.7344 3.0273,6.7617 6.7617 6.7617c 3.7344,0.0000 6.7617,-3.0273 6.7617 -6.7617Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.3773064596361484" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 283.2232,142.7329 c 0.0000,-3.7344 -3.0273,-6.7617 -6.7617 -6.7617c -3.7344,-0.0000 -6.7617,3.0273 -6.7617 6.7617c -0.0000,3.7344 3.0273,6.7617 6.7617 6.7617c 3.7344,0.0000 6.7617,-3.0273 6.7617 -6.7617Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.3773064596361484" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 269.6998,129.2890 c 0.0000,-3.7344 -3.0273,-6.7617 -6.7617 -6.7617c -3.7344,-0.0000 -6.7617,3.0273 -6.7617 6.7617c -0.0000,3.7344 3.0273,6.7617 6.7617 6.7617c 3.7344,0.0000 6.7617,-3.0273 6.7617 -6.7617Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.3773064596361484" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 256.1764,117.0470 c 0.0000,-3.7344 -3.0273,-6.7617 -6.7617 -6.7617c -3.7344,-0.0000 -6.7617,3.0273 -6.7617 6.7617c -0.0000,3.7344 3.0273,6.7617 6.7617 6.7617c 3.7344,0.0000 6.7617,-3.0273 6.7617 -6.7617Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.3773064596361484" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 242.6530,106.5421 c 0.0000,-3.7344 -3.0273,-6.7617 -6.7617 -6.7617c -3.7344,-0.0000 -6.7617,3.0273 -6.7617 6.7617c -0.0000,3.7344 3.0273,6.7617 6.7617 6.7617c 3.7344,0.0000 6.7617,-3.0273 6.7617 -6.7617Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.3773064596361484" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 229.1296,98.2332 c 0.0000,-3.7344 -3.0273,-6.7617 -6.7617 -6.7617c -3.7344,-0.0000 -6.7617,3.0273 -6.7617 6.7617c -0.0000,3.7344 3.0273,6.7617 6.7617 6.7617c 3.7344,0.0000 6.7617,-3.0273 6.7617 -6.7617Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.3773064596361484" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 215.6062,92.4837 c 0.0000,-3.7344 -3.0273,-6.7617 -6.7617 -6.7617c -3.7344,-0.0000 -6.7617,3.0273 -6.7617 6.7617c -0.0000,3.7344 3.0273,6.7617 6.7617 6.7617c 3.7344,0.0000 6.7617,-3.0273 6.7617 -6.7617Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.3773064596361484" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 202.0828,89.5447 c 0.0000,-3.7344 -3.0273,-6.7617 -6.7617 -6.7617c -3.7344,-0.0000 -6.7617,3.0273 -6.7617 6.7617c -0.0000,3.7344 3.0273,6.7617 6.7617 6.7617c 3.7344,0.0000 6.7617,-3.0273 6.7617 -6.7617Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.3773064596361484" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 188.5594,89.5447 c 0.0000,-3.7344 -3.0273,-6.7617 -6.7617 -6.7617c -3.7344,-0.0000 -6.7617,3.0273 -6.7617 6.7617c -0.0000,3.7344 3.0273,6.7617 6.7617 6.7617c 3.7344,0.0000 6.7617,-3.0273 6.7617 -6.7617Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.3773064596361484" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 175.0360,92.4837 c 0.0000,-3.7344 -3.0273,-6.7617 -6.7617 -6.7617c -3.7344,-0.0000 -6.7617,3.0273 -6.7617 6.7617c -0.0000,3.7344 3.0273,6.7617 6.7617 6.7617c 3.7344,0.0000 6.7617,-3.0273 6.7617 -6.7617Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.3773064596361484" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 161.5126,98.2332 c 0.0000,-3.7344 -3.0273,-6.7617 -6.7617 -6.7617c -3.7344,-0.0000 -6.7617,3.0273 -6.7617 6.7617c -0.0000,3.7344 3.0273,6.7617 6.7617 6.7617c 3.7344,0.0000 6.7617,-3.0273 6.7617 -6.7617Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.3773064596361484" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 147.9892,106.5421 c 0.0000,-3.7344 -3.0273,-6.7617 -6.7617 -6.7617c -3.7344,-0.0000 -6.7617,3.0273 -6.7617 6.7617c -0.0000,3.7344 3.0273,6.7617 6.7617 6.7617c 3.7344,0.0000 6.7617,-3.0273 6.7617 -6.7617Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.3773064596361484" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 134.4658,117.0470 c 0.0000,-3.7344 -3.0273,-6.7617 -6.7617 -6.7617c -3.7344,-0.0000 -6.7617,3.0273 -6.7617 6.7617c -0.0000,3.7344 3.0273,6.7617 6.7617 6.7617c 3.7344,0.0000 6.7617,-3.0273 6.7617 -6.7617Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.3773064596361484" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 120.9424,129.2890 c 0.0000,-3.7344 -3.0273,-6.7617 -6.7617 -6.7617c -3.7344,-0.0000 -6.7617,3.0273 -6.7617 6.7617c -0.0000,3.7344 3.0273,6.7617 6.7617 6.7617c 3.7344,0.0000 6.7617,-3.0273 6.7617 -6.7617Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.3773064596361484" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 107.4190,142.7329 c 0.0000,-3.7344 -3.0273,-6.7617 -6.7617 -6.7617c -3.7344,-0.0000 -6.7617,3.0273 -6.7617 6.7617c -0.0000,3.7344 3.0273,6.7617 6.7617 6.7617c 3.7344,0.0000 6.7617,-3.0273 6.7617 -6.7617Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.3773064596361484" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 93.8955,156.7913 c 0.0000,-3.7344 -3.0273,-6.7617 -6.7617 -6.7617c -3.7344,-0.0000 -6.7617,3.0273 -6.7617 6.7617c -0.0000,3.7344 3.0273,6.7617 6.7617 6.7617c 3.7344,0.0000 6.7617,-3.0273 6.7617 -6.7617Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 492.8360,303.9205 l -0.0000,-13.9237 h -250.6266 l -0.0000,13.9237 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" font-size="12.65790780268232px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(31,119,180)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,492.8360,296.9587)" stroke="none" text-anchor="end">text elements are paths not svg text
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 49.5684,96.7744 l -23.2062,0.0000 l -0.0000,127.6339 l 23.2062,0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" font-size="21.096513004470538px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(31,119,180)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(0.0000,-1.0000,1.0000,0.0000,37.9653,224.4083)" stroke="none" text-anchor="start">Glyph Chart
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 569.2649,142.1671 l -0.0000,-23.2062 h -34.8092 l -0.0000,23.2062 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.63" font-size="21.096513004470538px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,551.8603,130.5640)" stroke="none" text-anchor="middle">cos
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.4" stroke="rgb(102,102,102)" stroke-width="0.3773064596361484" fill="rgb(255,232,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 531.7510,132.3582 l -6.7617,-11.7116 l -6.7617,11.7116 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 569.2649,114.9039 l -0.0000,-23.2062 h -34.8092 l -0.0000,23.2062 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.63" font-size="21.096513004470538px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,551.8603,103.3008)" stroke="none" text-anchor="middle">sin
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.3773064596361484" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 531.7510,101.1912 c 0.0000,-3.7344 -3.0273,-6.7617 -6.7617 -6.7617c -3.7344,-0.0000 -6.7617,3.0273 -6.7617 6.7617c -0.0000,3.7344 3.0273,6.7617 6.7617 6.7617c 3.7344,0.0000 6.7617,-3.0273 6.7617 -6.7617Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.2" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.7546129192722968" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 571.8168,144.6906 l -0.0000,-55.5163 h -56.1411 l -0.0000,55.5163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.1" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 492.8360,240.6364 l -0.0000,-2.7047 h -405.7022 l -0.0000,2.7047 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 476.7580,272.4218 ZM 478.7142,272.4218 v -1.3130 c 2.1705,-1.9294 3.8453,-3.4836 3.8453 -3.4836c 1.6748,-1.5542 2.8137,-2.8538 2.8137 -2.8538c 1.1389,-1.2996 1.7284,-2.4251 1.7284 -2.4251c 0.5895,-1.1255 0.5895,-2.1973 0.5895 -2.1973c 0.0000,-1.4738 -0.9111,-2.4117 -0.9111 -2.4117c -0.9111,-0.9379 -2.8137,-0.9379 -2.8137 -0.9379c -1.2059,-0.0000 -2.2375,0.6029 -2.2375 0.6029c -1.0317,0.6029 -1.8624,1.4604 -1.8624 1.4604l -1.2594,-1.2594 c 1.1523,-1.1791 2.4787,-1.8892 2.4787 -1.8892c 1.3264,-0.7101 3.1486,-0.7101 3.1486 -0.7101c 1.2862,-0.0000 2.3179,0.3618 2.3179 0.3618c 1.0317,0.3618 1.7552,1.0183 1.7552 1.0183c 0.7235,0.6565 1.1121,1.5944 1.1121 1.5944c 0.3886,0.9379 0.3886,2.0633 0.3886 2.0633c 0.0000,1.2059 -0.5761,2.4251 -0.5761 2.4251c -0.5761,1.2193 -1.6212,2.5189 -1.6212 2.5189c -1.0451,1.2996 -2.4921,2.7065 -2.4921 2.7065c -1.4470,1.4068 -3.1888,2.9878 -3.1888 2.9878l 1.6078,-0.1072 c 0.0000,-0.0000 1.5810,-0.0536 1.5810 -0.0536h 5.6273 v 1.9026 h -12.0317 ZM 492.8360,272.4218 ZM 506.3148,272.7433 c -1.5542,-0.0000 -2.1973,-0.8307 -2.1973 -0.8307c -0.6431,-0.8307 -0.6431,-2.4385 -0.6431 -2.4385c 0.0000,-0.5091 0.0134,-1.4604 0.0134 -1.4604c 0.0134,-0.9513 0.0402,-2.1035 0.0402 -2.1035c 0.0268,-1.1523 0.0536,-2.3849 0.0536 -2.3849c 0.0268,-1.2326 0.0268,-2.3045 0.0268 -2.3045h -5.2790 c 0.0000,2.7601 -0.0938,5.6139 -0.0938 5.6139c -0.0938,2.8538 -0.3082,5.7211 -0.3082 5.7211l -2.1973,-0.1340 c 0.3216,-2.8940 0.4287,-5.7211 0.4287 -5.7211c 0.1072,-2.8271 0.1072,-5.4799 0.1072 -5.4799h -2.7065 v -1.6882 l 1.8490,-0.1340 h 12.7820 v 1.8222 h -2.4653 c -0.0536,1.0987 -0.0938,2.3715 -0.0938 2.3715c -0.0402,1.2728 -0.0670,2.4653 -0.0670 2.4653c -0.0268,1.1925 -0.0268,2.1437 -0.0268 2.1437v 1.4336 c 0.0000,0.6967 0.2948,0.9915 0.2948 0.9915c 0.2948,0.2948 0.9111,0.2948 0.9111 0.2948c 0.1340,-0.0000 0.2948,-0.0402 0.2948 -0.0402c 0.1608,-0.0402 0.4287,-0.1206 0.4287 -0.1206l 0.3216,1.6882 c -0.2948,0.1340 -0.6431,0.2144 -0.6431 0.2144c -0.3484,0.0804 -0.8307,0.0804 -0.8307 0.0804Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="1.8865322981807418" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 492.8360,237.9317 v 4.0570 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 359.2544,272.4218 ZM 366.9451,272.7433 c -2.2241,-0.0000 -3.7247,-0.7369 -3.7247 -0.7369c -1.5006,-0.7369 -2.4385,-1.6748 -2.4385 -1.6748l 1.1255,-1.4470 c 0.8575,0.8039 2.0499,1.4202 2.0499 1.4202c 1.1925,0.6163 2.8538,0.6163 2.8538 0.6163c 0.8843,-0.0000 1.6346,-0.2278 1.6346 -0.2278c 0.7503,-0.2278 1.2996,-0.6297 1.2996 -0.6297c 0.5493,-0.4020 0.8575,-0.9781 0.8575 -0.9781c 0.3082,-0.5761 0.3082,-1.2996 0.3082 -1.2996c 0.0000,-0.7503 -0.3350,-1.3800 -0.3350 -1.3800c -0.3350,-0.6297 -1.0853,-1.0853 -1.0853 -1.0853c -0.7503,-0.4555 -1.9294,-0.6967 -1.9294 -0.6967c -1.1791,-0.2412 -2.8672,-0.2412 -2.8672 -0.2412v -1.6882 c 1.5274,-0.0000 2.5859,-0.2412 2.5859 -0.2412c 1.0585,-0.2412 1.7284,-0.6699 1.7284 -0.6699c 0.6699,-0.4287 0.9781,-1.0183 0.9781 -1.0183c 0.3082,-0.5895 0.3082,-1.2594 0.3082 -1.2594c 0.0000,-1.2594 -0.9513,-1.9830 -0.9513 -1.9830c -0.9513,-0.7235 -2.5323,-0.7235 -2.5323 -0.7235c -1.2059,-0.0000 -2.2777,0.4823 -2.2777 0.4823c -1.0719,0.4823 -1.9294,1.2594 -1.9294 1.2594l -1.1791,-1.3934 c 1.0719,-0.9379 2.4385,-1.5408 2.4385 -1.5408c 1.3666,-0.6029 3.0280,-0.6029 3.0280 -0.6029c 1.2059,-0.0000 2.2375,0.2948 2.2375 0.2948c 1.0317,0.2948 1.7954,0.8441 1.7954 0.8441c 0.7637,0.5493 1.1925,1.3532 1.1925 1.3532c 0.4287,0.8039 0.4287,1.8490 0.4287 1.8490c 0.0000,1.5542 -1.0183,2.5457 -1.0183 2.5457c -1.0183,0.9915 -2.6261,1.5274 -2.6261 1.5274v 0.1072 c 0.8575,0.1876 1.6212,0.5493 1.6212 0.5493c 0.7637,0.3618 1.3532,0.9111 1.3532 0.9111c 0.5895,0.5493 0.9245,1.2728 0.9245 1.2728c 0.3350,0.7235 0.3350,1.6078 0.3350 1.6078c 0.0000,1.1255 -0.4823,2.0365 -0.4823 2.0365c -0.4823,0.9111 -1.3264,1.5408 -1.3264 1.5408c -0.8441,0.6297 -1.9696,0.9647 -1.9696 0.9647c -1.1255,0.3350 -2.4117,0.3350 -2.4117 0.3350ZM 375.3324,272.4218 ZM 388.8112,272.7433 c -1.5542,-0.0000 -2.1973,-0.8307 -2.1973 -0.8307c -0.6431,-0.8307 -0.6431,-2.4385 -0.6431 -2.4385c 0.0000,-0.5091 0.0134,-1.4604 0.0134 -1.4604c 0.0134,-0.9513 0.0402,-2.1035 0.0402 -2.1035c 0.0268,-1.1523 0.0536,-2.3849 0.0536 -2.3849c 0.0268,-1.2326 0.0268,-2.3045 0.0268 -2.3045h -5.2790 c 0.0000,2.7601 -0.0938,5.6139 -0.0938 5.6139c -0.0938,2.8538 -0.3082,5.7211 -0.3082 5.7211l -2.1973,-0.1340 c 0.3216,-2.8940 0.4287,-5.7211 0.4287 -5.7211c 0.1072,-2.8271 0.1072,-5.4799 0.1072 -5.4799h -2.7065 v -1.6882 l 1.8490,-0.1340 h 12.7820 v 1.8222 h -2.4653 c -0.0536,1.0987 -0.0938,2.3715 -0.0938 2.3715c -0.0402,1.2728 -0.0670,2.4653 -0.0670 2.4653c -0.0268,1.1925 -0.0268,2.1437 -0.0268 2.1437v 1.4336 c 0.0000,0.6967 0.2948,0.9915 0.2948 0.9915c 0.2948,0.2948 0.9111,0.2948 0.9111 0.2948c 0.1340,-0.0000 0.2948,-0.0402 0.2948 -0.0402c 0.1608,-0.0402 0.4287,-0.1206 0.4287 -0.1206l 0.3216,1.6882 c -0.2948,0.1340 -0.6431,0.2144 -0.6431 0.2144c -0.3484,0.0804 -0.8307,0.0804 -0.8307 0.0804ZM 391.4105,272.4218 ZM 394.0633,276.7093 l 8.7893,-23.3131 h 1.9830 l -8.7893,23.3131 h -1.9830 ZM 407.4885,272.4218 ZM 409.4447,272.4218 v -1.3130 c 2.1705,-1.9294 3.8453,-3.4836 3.8453 -3.4836c 1.6748,-1.5542 2.8137,-2.8538 2.8137 -2.8538c 1.1389,-1.2996 1.7284,-2.4251 1.7284 -2.4251c 0.5895,-1.1255 0.5895,-2.1973 0.5895 -2.1973c 0.0000,-1.4738 -0.9111,-2.4117 -0.9111 -2.4117c -0.9111,-0.9379 -2.8137,-0.9379 -2.8137 -0.9379c -1.2059,-0.0000 -2.2375,0.6029 -2.2375 0.6029c -1.0317,0.6029 -1.8624,1.4604 -1.8624 1.4604l -1.2594,-1.2594 c 1.1523,-1.1791 2.4787,-1.8892 2.4787 -1.8892c 1.3264,-0.7101 3.1486,-0.7101 3.1486 -0.7101c 1.2862,-0.0000 2.3179,0.3618 2.3179 0.3618c 1.0317,0.3618 1.7552,1.0183 1.7552 1.0183c 0.7235,0.6565 1.1121,1.5944 1.1121 1.5944c 0.3886,0.9379 0.3886,2.0633 0.3886 2.0633c 0.0000,1.2059 -0.5761,2.4251 -0.5761 2.4251c -0.5761,1.2193 -1.6212,2.5189 -1.6212 2.5189c -1.0451,1.2996 -2.4921,2.7065 -2.4921 2.7065c -1.4470,1.4068 -3.1888,2.9878 -3.1888 2.9878l 1.6078,-0.1072 c 0.0000,-0.0000 1.5810,-0.0536 1.5810 -0.0536h 5.6273 v 1.9026 h -12.0317 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="1.8865322981807418" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 391.4105,237.9317 v 4.0570 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 281.9459,272.4218 ZM 295.4247,272.7433 c -1.5542,-0.0000 -2.1973,-0.8307 -2.1973 -0.8307c -0.6431,-0.8307 -0.6431,-2.4385 -0.6431 -2.4385c 0.0000,-0.5091 0.0134,-1.4604 0.0134 -1.4604c 0.0134,-0.9513 0.0402,-2.1035 0.0402 -2.1035c 0.0268,-1.1523 0.0536,-2.3849 0.0536 -2.3849c 0.0268,-1.2326 0.0268,-2.3045 0.0268 -2.3045h -5.2790 c 0.0000,2.7601 -0.0938,5.6139 -0.0938 5.6139c -0.0938,2.8538 -0.3082,5.7211 -0.3082 5.7211l -2.1973,-0.1340 c 0.3216,-2.8940 0.4287,-5.7211 0.4287 -5.7211c 0.1072,-2.8271 0.1072,-5.4799 0.1072 -5.4799h -2.7065 v -1.6882 l 1.8490,-0.1340 h 12.7820 v 1.8222 h -2.4653 c -0.0536,1.0987 -0.0938,2.3715 -0.0938 2.3715c -0.0402,1.2728 -0.0670,2.4653 -0.0670 2.4653c -0.0268,1.1925 -0.0268,2.1437 -0.0268 2.1437v 1.4336 c 0.0000,0.6967 0.2948,0.9915 0.2948 0.9915c 0.2948,0.2948 0.9111,0.2948 0.9111 0.2948c 0.1340,-0.0000 0.2948,-0.0402 0.2948 -0.0402c 0.1608,-0.0402 0.4287,-0.1206 0.4287 -0.1206l 0.3216,1.6882 c -0.2948,0.1340 -0.6431,0.2144 -0.6431 0.2144c -0.3484,0.0804 -0.8307,0.0804 -0.8307 0.0804Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="1.8865322981807418" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 289.9849,237.9317 v 4.0570 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 164.4423,272.4218 ZM 177.9211,272.7433 c -1.5542,-0.0000 -2.1973,-0.8307 -2.1973 -0.8307c -0.6431,-0.8307 -0.6431,-2.4385 -0.6431 -2.4385c 0.0000,-0.5091 0.0134,-1.4604 0.0134 -1.4604c 0.0134,-0.9513 0.0402,-2.1035 0.0402 -2.1035c 0.0268,-1.1523 0.0536,-2.3849 0.0536 -2.3849c 0.0268,-1.2326 0.0268,-2.3045 0.0268 -2.3045h -5.2790 c 0.0000,2.7601 -0.0938,5.6139 -0.0938 5.6139c -0.0938,2.8538 -0.3082,5.7211 -0.3082 5.7211l -2.1973,-0.1340 c 0.3216,-2.8940 0.4287,-5.7211 0.4287 -5.7211c 0.1072,-2.8271 0.1072,-5.4799 0.1072 -5.4799h -2.7065 v -1.6882 l 1.8490,-0.1340 h 12.7820 v 1.8222 h -2.4653 c -0.0536,1.0987 -0.0938,2.3715 -0.0938 2.3715c -0.0402,1.2728 -0.0670,2.4653 -0.0670 2.4653c -0.0268,1.1925 -0.0268,2.1437 -0.0268 2.1437v 1.4336 c 0.0000,0.6967 0.2948,0.9915 0.2948 0.9915c 0.2948,0.2948 0.9111,0.2948 0.9111 0.2948c 0.1340,-0.0000 0.2948,-0.0402 0.2948 -0.0402c 0.1608,-0.0402 0.4287,-0.1206 0.4287 -0.1206l 0.3216,1.6882 c -0.2948,0.1340 -0.6431,0.2144 -0.6431 0.2144c -0.3484,0.0804 -0.8307,0.0804 -0.8307 0.0804ZM 180.5204,272.4218 ZM 183.1732,276.7093 l 8.7893,-23.3131 h 1.9830 l -8.7893,23.3131 h -1.9830 ZM 196.5984,272.4218 ZM 198.5546,272.4218 v -1.3130 c 2.1705,-1.9294 3.8453,-3.4836 3.8453 -3.4836c 1.6748,-1.5542 2.8137,-2.8538 2.8137 -2.8538c 1.1389,-1.2996 1.7284,-2.4251 1.7284 -2.4251c 0.5895,-1.1255 0.5895,-2.1973 0.5895 -2.1973c 0.0000,-1.4738 -0.9111,-2.4117 -0.9111 -2.4117c -0.9111,-0.9379 -2.8137,-0.9379 -2.8137 -0.9379c -1.2059,-0.0000 -2.2375,0.6029 -2.2375 0.6029c -1.0317,0.6029 -1.8624,1.4604 -1.8624 1.4604l -1.2594,-1.2594 c 1.1523,-1.1791 2.4787,-1.8892 2.4787 -1.8892c 1.3264,-0.7101 3.1486,-0.7101 3.1486 -0.7101c 1.2862,-0.0000 2.3179,0.3618 2.3179 0.3618c 1.0317,0.3618 1.7552,1.0183 1.7552 1.0183c 0.7235,0.6565 1.1121,1.5944 1.1121 1.5944c 0.3886,0.9379 0.3886,2.0633 0.3886 2.0633c 0.0000,1.2059 -0.5761,2.4251 -0.5761 2.4251c -0.5761,1.2193 -1.6212,2.5189 -1.6212 2.5189c -1.0451,1.2996 -2.4921,2.7065 -2.4921 2.7065c -1.4470,1.4068 -3.1888,2.9878 -3.1888 2.9878l 1.6078,-0.1072 c 0.0000,-0.0000 1.5810,-0.0536 1.5810 -0.0536h 5.6273 v 1.9026 h -12.0317 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="1.8865322981807418" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 188.5594,237.9317 v 4.0570 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 54.9778,272.4218 ZM 56.8804,272.4218 v -1.1791 l 8.9233,-10.0488 h -7.9318 v -1.7954 h 11.0938 v 1.1791 l -8.9501,10.0488 h 9.1913 v 1.7954 h -12.3265 ZM 71.0558,272.4218 ZM 79.8987,272.7433 c -1.4738,-0.0000 -2.7467,-0.4555 -2.7467 -0.4555c -1.2728,-0.4555 -2.2241,-1.3398 -2.2241 -1.3398c -0.9513,-0.8843 -1.5006,-2.1571 -1.5006 -2.1571c -0.5493,-1.2728 -0.5493,-2.9074 -0.5493 -2.9074c 0.0000,-1.5810 0.5493,-2.8405 0.5493 -2.8405c 0.5493,-1.2594 1.4738,-2.1437 1.4738 -2.1437c 0.9245,-0.8843 2.1169,-1.3532 2.1169 -1.3532c 1.1925,-0.4689 2.5055,-0.4689 2.5055 -0.4689c 1.3934,-0.0000 2.5055,0.4421 2.5055 0.4421c 1.1121,0.4421 1.8758,1.2460 1.8758 1.2460c 0.7637,0.8039 1.1657,1.9294 1.1657 1.9294c 0.4020,1.1255 0.4020,2.4921 0.4020 2.4921c 0.0000,0.3752 -0.0268,0.7235 -0.0268 0.7235c -0.0268,0.3484 -0.0804,0.6163 -0.0804 0.6163h -10.2631 c 0.2144,2.2241 1.6212,3.3362 1.6212 3.3362c 1.4068,1.1121 3.4434,1.1121 3.4434 1.1121c 1.1791,-0.0000 2.1303,-0.3350 2.1303 -0.3350c 0.9513,-0.3350 1.8356,-0.8977 1.8356 -0.8977l 0.8039,1.4470 c -0.9647,0.6431 -2.2107,1.0987 -2.2107 1.0987c -1.2460,0.4555 -2.8271,0.4555 -2.8271 0.4555ZM 79.8987,272.7433 ZM 79.5772,260.8188 c -0.8039,-0.0000 -1.5408,0.2680 -1.5408 0.2680c -0.7369,0.2680 -1.3264,0.7637 -1.3264 0.7637c -0.5895,0.4957 -0.9915,1.2460 -0.9915 1.2460c -0.4020,0.7503 -0.5627,1.7150 -0.5627 1.7150h 8.3070 c -0.1340,-2.0098 -1.1657,-3.0012 -1.1657 -3.0012c -1.0317,-0.9915 -2.7199,-0.9915 -2.7199 -0.9915ZM 87.1338,272.4218 ZM 91.0462,272.4218 v -13.0232 h 1.8222 l 0.1876,3.0816 h 0.0804 c 1.0183,-1.5810 2.5055,-2.4921 2.5055 -2.4921c 1.4872,-0.9111 3.3094,-0.9111 3.3094 -0.9111c 0.7235,-0.0000 1.3398,0.1206 1.3398 0.1206c 0.6163,0.1206 1.2326,0.4153 1.2326 0.4153l -0.5091,1.9026 c -0.6967,-0.2412 -1.1657,-0.3484 -1.1657 -0.3484c -0.4689,-0.1072 -1.2460,-0.1072 -1.2460 -0.1072c -1.4738,-0.0000 -2.8271,0.8441 -2.8271 0.8441c -1.3532,0.8441 -2.5323,2.8806 -2.5323 2.8806v 7.6371 h -2.1973 ZM 103.2119,272.4218 ZM 111.2509,272.7433 c -1.2862,-0.0000 -2.4519,-0.4555 -2.4519 -0.4555c -1.1657,-0.4555 -2.0499,-1.3264 -2.0499 -1.3264c -0.8843,-0.8709 -1.4068,-2.1437 -1.4068 -2.1437c -0.5225,-1.2728 -0.5225,-2.8806 -0.5225 -2.8806c 0.0000,-1.6346 0.5225,-2.9074 0.5225 -2.9074c 0.5225,-1.2728 1.4068,-2.1571 1.4068 -2.1571c 0.8843,-0.8843 2.0499,-1.3398 2.0499 -1.3398c 1.1657,-0.4555 2.4519,-0.4555 2.4519 -0.4555c 1.2862,-0.0000 2.4519,0.4555 2.4519 0.4555c 1.1657,0.4555 2.0499,1.3398 2.0499 1.3398c 0.8843,0.8843 1.4068,2.1571 1.4068 2.1571c 0.5225,1.2728 0.5225,2.9074 0.5225 2.9074c 0.0000,1.6078 -0.5225,2.8806 -0.5225 2.8806c -0.5225,1.2728 -1.4068,2.1437 -1.4068 2.1437c -0.8843,0.8709 -2.0499,1.3264 -2.0499 1.3264c -1.1657,0.4555 -2.4519,0.4555 -2.4519 0.4555ZM 111.2509,272.7433 ZM 111.2509,270.9212 c 0.9379,-0.0000 1.7016,-0.3618 1.7016 -0.3618c 0.7637,-0.3618 1.3130,-1.0183 1.3130 -1.0183c 0.5493,-0.6565 0.8441,-1.5676 0.8441 -1.5676c 0.2948,-0.9111 0.2948,-2.0365 0.2948 -2.0365c 0.0000,-1.1255 -0.2948,-2.0499 -0.2948 -2.0499c -0.2948,-0.9245 -0.8441,-1.5944 -0.8441 -1.5944c -0.5493,-0.6699 -1.3130,-1.0317 -1.3130 -1.0317c -0.7637,-0.3618 -1.7016,-0.3618 -1.7016 -0.3618c -0.9379,-0.0000 -1.7016,0.3618 -1.7016 0.3618c -0.7637,0.3618 -1.3130,1.0317 -1.3130 1.0317c -0.5493,0.6699 -0.8441,1.5944 -0.8441 1.5944c -0.2948,0.9245 -0.2948,2.0499 -0.2948 2.0499c 0.0000,1.1255 0.2948,2.0365 0.2948 2.0365c 0.2948,0.9111 0.8441,1.5676 0.8441 1.5676c 0.5493,0.6565 1.3130,1.0183 1.3130 1.0183c 0.7637,0.3618 1.7016,0.3618 1.7016 0.3618Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="1.8865322981807418" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 87.1338,237.9317 v 4.0570 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 492.8360,224.4083 l -0.0000,-135.2341 h -405.7022 l -0.0000,135.2341 Z"/>
-  </g>
-</svg>
diff --git a/other/gridExample.svg b/other/gridExample.svg
deleted file mode 100644
--- a/other/gridExample.svg
+++ /dev/null
@@ -1,302 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
-    "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
-<svg xmlns="http://www.w3.org/2000/svg" height="400.0000" stroke-opacity="1" viewBox="0 0 600 400" font-size="1" width="600.0000" xmlns:xlink="http://www.w3.org/1999/xlink" stroke="rgb(0,0,0)" version="1.1">
-  <defs>
-  </defs>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.1" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 80.3702,309.2704 l -0.0000,-284.6211 h -5.6924 l -0.0000,284.6211 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 67.5622,36.1935 l -0.0000,-19.5364 h -29.3046 l -0.0000,19.5364 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="17.76035844497493px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,38.2576,26.4253)" stroke="none" text-anchor="start">0.5
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.4395072025250824" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 71.8315,24.6493 h 8.5386 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 67.5622,64.6556 l -0.0000,-19.5364 h -29.3046 l -0.0000,19.5364 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="17.76035844497493px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,38.2576,54.8874)" stroke="none" text-anchor="start">0.4
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.4395072025250824" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 71.8315,53.1114 h 8.5386 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 67.5622,93.1177 l -0.0000,-19.5364 h -29.3046 l -0.0000,19.5364 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="17.76035844497493px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,38.2576,83.3495)" stroke="none" text-anchor="start">0.3
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.4395072025250824" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 71.8315,81.5735 h 8.5386 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 67.5622,121.5798 l -0.0000,-19.5364 h -29.3046 l -0.0000,19.5364 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="17.76035844497493px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,38.2576,111.8116)" stroke="none" text-anchor="start">0.2
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.4395072025250824" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 71.8315,110.0356 h 8.5386 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 67.5622,150.0419 l -0.0000,-19.5364 h -29.3046 l -0.0000,19.5364 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="17.76035844497493px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,38.2576,140.2737)" stroke="none" text-anchor="start">0.1
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.4395072025250824" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 71.8315,138.4977 h 8.5386 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 67.5622,178.5041 l -0.0000,-19.5364 h -29.3046 l -0.0000,19.5364 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="17.76035844497493px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,38.2576,168.7359)" stroke="none" text-anchor="start">0.0
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.4395072025250824" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 71.8315,166.9598 h 8.5386 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 67.5622,206.9662 l -0.0000,-19.5364 h -39.0728 l -0.0000,19.5364 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="17.76035844497493px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,28.4894,197.1980)" stroke="none" text-anchor="start">-0.1
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.4395072025250824" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 71.8315,195.4219 h 8.5386 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 67.5622,235.4283 l -0.0000,-19.5364 h -39.0728 l -0.0000,19.5364 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="17.76035844497493px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,28.4894,225.6601)" stroke="none" text-anchor="start">-0.2
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.4395072025250824" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 71.8315,223.8840 h 8.5386 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 67.5622,263.8904 l -0.0000,-19.5364 h -39.0728 l -0.0000,19.5364 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="17.76035844497493px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,28.4894,254.1222)" stroke="none" text-anchor="start">-0.3
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.4395072025250824" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 71.8315,252.3462 h 8.5386 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 67.5622,292.3525 l -0.0000,-19.5364 h -39.0728 l -0.0000,19.5364 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="17.76035844497493px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,28.4894,282.5843)" stroke="none" text-anchor="start">-0.4
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.4395072025250824" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 71.8315,280.8083 h 8.5386 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 67.5622,320.8146 l -0.0000,-19.5364 h -39.0728 l -0.0000,19.5364 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="17.76035844497493px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,28.4894,311.0464)" stroke="none" text-anchor="start">-0.5
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.4395072025250824" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 71.8315,309.2704 h 8.5386 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.1" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 526.8497,314.9628 l -0.0000,-5.6924 h -426.9317 l -0.0000,5.6924 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 560.1297,377.3356 l 13.8143,-13.8143 l -41.4430,-41.4430 l -13.8143,13.8143 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="17.76035844497493px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(0.7071,0.7071,-0.7071,0.7071,525.5939,328.9855)" stroke="none" text-anchor="start">abcdef
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.4395072025250824" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 526.8497,309.2704 v 8.5386 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 517.4365,377.3356 l 13.8143,-13.8143 l -41.4430,-41.4430 l -13.8143,13.8143 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="17.76035844497493px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(0.7071,0.7071,-0.7071,0.7071,482.9007,328.9855)" stroke="none" text-anchor="start">abcdef
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.4395072025250824" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 484.1566,309.2704 v 8.5386 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 474.7433,377.3356 l 13.8143,-13.8143 l -41.4430,-41.4430 l -13.8143,13.8143 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="17.76035844497493px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(0.7071,0.7071,-0.7071,0.7071,440.2075,328.9855)" stroke="none" text-anchor="start">abcdef
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.4395072025250824" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 441.4634,309.2704 v 8.5386 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 432.0502,377.3356 l 13.8143,-13.8143 l -41.4430,-41.4430 l -13.8143,13.8143 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="17.76035844497493px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(0.7071,0.7071,-0.7071,0.7071,397.5144,328.9855)" stroke="none" text-anchor="start">abcdef
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.4395072025250824" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 398.7702,309.2704 v 8.5386 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 389.3570,377.3356 l 13.8143,-13.8143 l -41.4430,-41.4430 l -13.8143,13.8143 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="17.76035844497493px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(0.7071,0.7071,-0.7071,0.7071,354.8212,328.9855)" stroke="none" text-anchor="start">abcdef
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.4395072025250824" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 356.0770,309.2704 v 8.5386 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 346.6638,377.3356 l 13.8143,-13.8143 l -41.4430,-41.4430 l -13.8143,13.8143 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="17.76035844497493px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(0.7071,0.7071,-0.7071,0.7071,312.1280,328.9855)" stroke="none" text-anchor="start">abcdef
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.4395072025250824" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 313.3839,309.2704 v 8.5386 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 303.9707,377.3356 l 13.8143,-13.8143 l -41.4430,-41.4430 l -13.8143,13.8143 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="17.76035844497493px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(0.7071,0.7071,-0.7071,0.7071,269.4349,328.9855)" stroke="none" text-anchor="start">abcdef
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.4395072025250824" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 270.6907,309.2704 v 8.5386 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 261.2775,377.3356 l 13.8143,-13.8143 l -41.4430,-41.4430 l -13.8143,13.8143 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="17.76035844497493px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(0.7071,0.7071,-0.7071,0.7071,226.7417,328.9855)" stroke="none" text-anchor="start">abcdef
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.4395072025250824" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 227.9975,309.2704 v 8.5386 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 218.5843,377.3356 l 13.8143,-13.8143 l -41.4430,-41.4430 l -13.8143,13.8143 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="17.76035844497493px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(0.7071,0.7071,-0.7071,0.7071,184.0485,328.9855)" stroke="none" text-anchor="start">abcdef
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.4395072025250824" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 185.3044,309.2704 v 8.5386 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 175.8911,377.3356 l 13.8143,-13.8143 l -41.4430,-41.4430 l -13.8143,13.8143 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="17.76035844497493px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(0.7071,0.7071,-0.7071,0.7071,141.3554,328.9855)" stroke="none" text-anchor="start">abcdef
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.4395072025250824" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 142.6112,309.2704 v 8.5386 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 133.1980,377.3356 l 13.8143,-13.8143 l -41.4430,-41.4430 l -13.8143,13.8143 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="17.76035844497493px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(0.7071,0.7071,-0.7071,0.7071,98.6622,328.9855)" stroke="none" text-anchor="start">abcdef
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.4395072025250824" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 99.9180,309.2704 v 8.5386 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 526.8497,309.2704 l -0.0000,-284.6211 h -426.9317 l -0.0000,284.6211 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.4879014405050165" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 99.9180,24.6493 h 426.9317 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.4879014405050165" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 99.9180,53.1114 h 426.9317 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.4879014405050165" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 99.9180,81.5735 h 426.9317 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.4879014405050165" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 99.9180,110.0356 h 426.9317 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.4879014405050165" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 99.9180,138.4977 h 426.9317 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.4879014405050165" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 99.9180,166.9598 h 426.9317 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.4879014405050165" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 99.9180,195.4219 h 426.9317 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.4879014405050165" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 99.9180,223.8840 h 426.9317 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.4879014405050165" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 99.9180,252.3462 h 426.9317 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.4879014405050165" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 99.9180,280.8083 h 426.9317 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.4879014405050165" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 99.9180,309.2704 h 426.9317 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.4879014405050165" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 526.8497,309.2704 v -284.6211 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.4879014405050165" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 484.1566,309.2704 v -284.6211 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.4879014405050165" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 441.4634,309.2704 v -284.6211 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.4879014405050165" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 398.7702,309.2704 v -284.6211 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.4879014405050165" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 356.0770,309.2704 v -284.6211 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.4879014405050165" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 313.3839,309.2704 v -284.6211 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.4879014405050165" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 270.6907,309.2704 v -284.6211 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.4879014405050165" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 227.9975,309.2704 v -284.6211 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.4879014405050165" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 185.3044,309.2704 v -284.6211 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.4879014405050165" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 142.6112,309.2704 v -284.6211 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.4879014405050165" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 99.9180,309.2704 v -284.6211 "/>
-  </g>
-</svg>
diff --git a/other/histDiffExample.svg b/other/histDiffExample.svg
deleted file mode 100644
--- a/other/histDiffExample.svg
+++ /dev/null
@@ -1,646 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
-    "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
-<svg xmlns="http://www.w3.org/2000/svg" height="600.0000" stroke-opacity="1" viewBox="0 0 600 600" font-size="1" width="600.0000" xmlns:xlink="http://www.w3.org/1999/xlink" stroke="rgb(0,0,0)" version="1.1">
-  <defs>
-  </defs>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.1" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 119.3522,294.5150 l -0.0000,-109.7004 h -5.4850 l -0.0000,109.7004 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 107.0109,200.7779 l -0.0000,-18.8246 h -37.6492 l -0.0000,18.8246 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="17.113263108009924px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,88.1863,191.3656)" stroke="none" text-anchor="middle">0.04
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 111.1246,189.6543 h 8.2275 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 107.0109,216.9103 l -0.0000,-18.8246 h -37.6492 l -0.0000,18.8246 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="17.113263108009924px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,88.1863,207.4980)" stroke="none" text-anchor="middle">0.03
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 111.1246,205.7867 h 8.2275 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 107.0109,233.0427 l -0.0000,-18.8246 h -37.6492 l -0.0000,18.8246 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="17.113263108009924px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,88.1863,223.6305)" stroke="none" text-anchor="middle">0.02
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 111.1246,221.9191 h 8.2275 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 107.0109,249.1752 l -0.0000,-18.8246 h -37.6492 l -0.0000,18.8246 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="17.113263108009924px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,88.1863,239.7629)" stroke="none" text-anchor="middle">0.01
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 111.1246,238.0515 h 8.2275 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 107.0109,265.3076 l -0.0000,-18.8246 h -37.6492 l -0.0000,18.8246 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="17.113263108009924px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,88.1863,255.8953)" stroke="none" text-anchor="middle">0.00
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 111.1246,254.1839 h 8.2275 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 107.0109,281.4400 l -0.0000,-18.8246 h -47.0615 l -0.0000,18.8246 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="17.113263108009924px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,83.4801,272.0277)" stroke="none" text-anchor="middle">-0.01
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 111.1246,270.3164 h 8.2275 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 107.0109,297.5724 l -0.0000,-18.8246 h -47.0615 l -0.0000,18.8246 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="17.113263108009924px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,83.4801,288.1601)" stroke="none" text-anchor="middle">-0.02
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 111.1246,286.4488 h 8.2275 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.1" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 551.1110,310.9700 l -0.0000,-5.4850 h -411.3765 l -0.0000,5.4850 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 555.8172,336.6509 l -0.0000,-18.8246 h -9.4123 l -0.0000,18.8246 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="17.113263108009924px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,551.1110,327.2386)" stroke="none" text-anchor="middle">5
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 551.1110,305.4850 v 8.2275 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 514.6795,336.6509 l -0.0000,-18.8246 h -9.4123 l -0.0000,18.8246 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="17.113263108009924px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,509.9734,327.2386)" stroke="none" text-anchor="middle">4
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 509.9734,305.4850 v 8.2275 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 473.5419,336.6509 l -0.0000,-18.8246 h -9.4123 l -0.0000,18.8246 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="17.113263108009924px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,468.8357,327.2386)" stroke="none" text-anchor="middle">3
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 468.8357,305.4850 v 8.2275 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 432.4042,336.6509 l -0.0000,-18.8246 h -9.4123 l -0.0000,18.8246 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="17.113263108009924px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,427.6981,327.2386)" stroke="none" text-anchor="middle">2
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 427.6981,305.4850 v 8.2275 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 391.2666,336.6509 l -0.0000,-18.8246 h -9.4123 l -0.0000,18.8246 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="17.113263108009924px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,386.5604,327.2386)" stroke="none" text-anchor="middle">1
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 386.5604,305.4850 v 8.2275 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 350.1289,336.6509 l -0.0000,-18.8246 h -9.4123 l -0.0000,18.8246 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="17.113263108009924px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,345.4228,327.2386)" stroke="none" text-anchor="middle">0
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 345.4228,305.4850 v 8.2275 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 313.6974,336.6509 l -0.0000,-18.8246 h -18.8246 l -0.0000,18.8246 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="17.113263108009924px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,304.2851,327.2386)" stroke="none" text-anchor="middle">-1
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 304.2851,305.4850 v 8.2275 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 272.5598,336.6509 l -0.0000,-18.8246 h -18.8246 l -0.0000,18.8246 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="17.113263108009924px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,263.1475,327.2386)" stroke="none" text-anchor="middle">-2
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 263.1475,305.4850 v 8.2275 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 231.4221,336.6509 l -0.0000,-18.8246 h -18.8246 l -0.0000,18.8246 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="17.113263108009924px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,222.0098,327.2386)" stroke="none" text-anchor="middle">-3
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 222.0098,305.4850 v 8.2275 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 190.2845,336.6509 l -0.0000,-18.8246 h -18.8246 l -0.0000,18.8246 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="17.113263108009924px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,180.8722,327.2386)" stroke="none" text-anchor="middle">-4
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 180.8722,305.4850 v 8.2275 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 149.1468,336.6509 l -0.0000,-18.8246 h -18.8246 l -0.0000,18.8246 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="17.113263108009924px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,139.7345,327.2386)" stroke="none" text-anchor="middle">-5
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 139.7345,305.4850 v 8.2275 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 551.1110,294.5150 l -0.0000,-109.7004 h -411.3765 l -0.0000,109.7004 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.8" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(224,135,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 551.1110,446.1597 l -0.0000,-0.0000 h -8.2275 l -0.0000,0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.8" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(224,135,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 542.8835,446.1597 l -0.0000,1.6132 h -8.2275 l -0.0000,-1.6132 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.8" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(224,135,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 534.6560,446.1597 l -0.0000,-0.0000 h -8.2275 l -0.0000,0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.8" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(224,135,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 526.4284,446.1597 l -0.0000,3.2265 h -8.2275 l -0.0000,-3.2265 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.8" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(224,135,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 518.2009,446.1597 l -0.0000,4.8397 h -8.2275 l -0.0000,-4.8397 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.8" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(224,135,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 509.9734,446.1597 l -0.0000,6.4530 h -8.2275 l -0.0000,-6.4530 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.8" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(224,135,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 501.7458,446.1597 l -0.0000,4.8397 h -8.2275 l -0.0000,-4.8397 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.8" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(224,135,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 493.5183,446.1597 l -0.0000,3.2265 h -8.2275 l -0.0000,-3.2265 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.8" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(224,135,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 485.2908,446.1597 l -0.0000,3.2265 h -8.2275 l -0.0000,-3.2265 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.8" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(224,135,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 477.0633,446.1597 l -0.0000,4.8397 h -8.2275 l -0.0000,-4.8397 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.8" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(224,135,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 468.8357,446.1597 l -0.0000,4.8397 h -8.2275 l -0.0000,-4.8397 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.8" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(224,135,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 460.6082,446.1597 l -0.0000,14.5192 h -8.2275 l -0.0000,-14.5192 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.8" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(224,135,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 452.3807,446.1597 l -0.0000,19.3589 h -8.2275 l -0.0000,-19.3589 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.8" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(224,135,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 444.1531,446.1597 l -0.0000,9.6794 h -8.2275 l -0.0000,-9.6794 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.8" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(224,135,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 435.9256,446.1597 l -0.0000,20.9721 h -8.2275 l -0.0000,-20.9721 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.8" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(224,135,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 427.6981,446.1597 l -0.0000,16.1324 h -8.2275 l -0.0000,-16.1324 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.8" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(224,135,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 419.4705,446.1597 l -0.0000,-8.0662 h -8.2275 l -0.0000,8.0662 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.8" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(224,135,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 411.2430,446.1597 l -0.0000,11.2927 h -8.2275 l -0.0000,-11.2927 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.8" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(224,135,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 403.0155,446.1597 l -0.0000,16.1324 h -8.2275 l -0.0000,-16.1324 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.8" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(224,135,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 394.7880,446.1597 l -0.0000,-25.8119 h -8.2275 l -0.0000,25.8119 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.8" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(224,135,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 386.5604,446.1597 l -0.0000,-17.7457 h -8.2275 l -0.0000,17.7457 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.8" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(224,135,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 378.3329,446.1597 l -0.0000,-8.0662 h -8.2275 l -0.0000,8.0662 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.8" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(224,135,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 370.1054,446.1597 l -0.0000,-35.4913 h -8.2275 l -0.0000,35.4913 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.8" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(224,135,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 361.8778,446.1597 l -0.0000,-50.0105 h -8.2275 l -0.0000,50.0105 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.8" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(224,135,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 353.6503,446.1597 l -0.0000,-69.3694 h -8.2275 l -0.0000,69.3694 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.8" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(224,135,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 345.4228,446.1597 l -0.0000,-32.2648 h -8.2275 l -0.0000,32.2648 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.8" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(224,135,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 337.1952,446.1597 l -0.0000,-17.7457 h -8.2275 l -0.0000,17.7457 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.8" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(224,135,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 328.9677,446.1597 l -0.0000,-14.5192 h -8.2275 l -0.0000,14.5192 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.8" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(224,135,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 320.7402,446.1597 l -0.0000,-38.7178 h -8.2275 l -0.0000,38.7178 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.8" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(224,135,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 312.5126,446.1597 l -0.0000,-38.7178 h -8.2275 l -0.0000,38.7178 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.8" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(224,135,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 304.2851,446.1597 l -0.0000,-8.0662 h -8.2275 l -0.0000,8.0662 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.8" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(224,135,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 296.0576,446.1597 l -0.0000,6.4530 h -8.2275 l -0.0000,-6.4530 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.8" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(224,135,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 287.8301,446.1597 l -0.0000,29.0383 h -8.2275 l -0.0000,-29.0383 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.8" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(224,135,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 279.6025,446.1597 l -0.0000,27.4251 h -8.2275 l -0.0000,-27.4251 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.8" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(224,135,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 271.3750,446.1597 l -0.0000,40.3310 h -8.2275 l -0.0000,-40.3310 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.8" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(224,135,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 263.1475,446.1597 l -0.0000,11.2927 h -8.2275 l -0.0000,-11.2927 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.8" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(224,135,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 254.9199,446.1597 l -0.0000,8.0662 h -8.2275 l -0.0000,-8.0662 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.8" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(224,135,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 246.6924,446.1597 l -0.0000,9.6794 h -8.2275 l -0.0000,-9.6794 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.8" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(224,135,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 238.4649,446.1597 l -0.0000,11.2927 h -8.2275 l -0.0000,-11.2927 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.8" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(224,135,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 230.2373,446.1597 l -0.0000,20.9721 h -8.2275 l -0.0000,-20.9721 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.8" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(224,135,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 222.0098,446.1597 l -0.0000,14.5192 h -8.2275 l -0.0000,-14.5192 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.8" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(224,135,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 213.7823,446.1597 l -0.0000,12.9059 h -8.2275 l -0.0000,-12.9059 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.8" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(224,135,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 205.5548,446.1597 l -0.0000,14.5192 h -8.2275 l -0.0000,-14.5192 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.8" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(224,135,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 197.3272,446.1597 l -0.0000,6.4530 h -8.2275 l -0.0000,-6.4530 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.8" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(224,135,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 189.0997,446.1597 l -0.0000,-0.0000 h -8.2275 l -0.0000,0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.8" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(224,135,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 180.8722,446.1597 l -0.0000,1.6132 h -8.2275 l -0.0000,-1.6132 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.8" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(224,135,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 172.6446,446.1597 l -0.0000,3.2265 h -8.2275 l -0.0000,-3.2265 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.8" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(224,135,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 164.4171,446.1597 l -0.0000,-0.0000 h -8.2275 l -0.0000,0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.8" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(224,135,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 156.1896,446.1597 l -0.0000,1.6132 h -8.2275 l -0.0000,-1.6132 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.8" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(224,135,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 147.9620,446.1597 l -0.0000,-0.0000 h -8.2275 l -0.0000,0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.8" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(224,135,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 551.1110,376.7903 l -0.0000,-0.0000 h -8.2275 l -0.0000,0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.8" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(224,135,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 542.8835,376.7903 l -0.0000,-2.7425 h -8.2275 l -0.0000,2.7425 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.8" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(224,135,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 534.6560,376.7903 l -0.0000,-0.0000 h -8.2275 l -0.0000,0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.8" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(224,135,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 526.4284,376.7903 l -0.0000,-5.4850 h -8.2275 l -0.0000,5.4850 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.8" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(224,135,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 518.2009,376.7903 l -0.0000,-8.2275 h -8.2275 l -0.0000,8.2275 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.8" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(224,135,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 509.9734,376.7903 l -0.0000,-10.9700 h -8.2275 l -0.0000,10.9700 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.8" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(224,135,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 501.7458,376.7903 l -0.0000,-8.2275 h -8.2275 l -0.0000,8.2275 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.8" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(224,135,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 493.5183,376.7903 l -0.0000,-5.4850 h -8.2275 l -0.0000,5.4850 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.8" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(224,135,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 485.2908,376.7903 l -0.0000,-5.4850 h -8.2275 l -0.0000,5.4850 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.8" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(224,135,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 477.0633,376.7903 l -0.0000,-10.9700 h -8.2275 l -0.0000,10.9700 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.8" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(224,135,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 468.8357,376.7903 l -0.0000,-10.9700 h -8.2275 l -0.0000,10.9700 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.8" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(224,135,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 460.6082,376.7903 l -0.0000,-30.1676 h -8.2275 l -0.0000,30.1676 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.8" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(224,135,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 452.3807,376.7903 l -0.0000,-38.3951 h -8.2275 l -0.0000,38.3951 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.8" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(224,135,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 444.1531,376.7903 l -0.0000,-32.9101 h -8.2275 l -0.0000,32.9101 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.8" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(224,135,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 435.9256,376.7903 l -0.0000,-57.5927 h -8.2275 l -0.0000,57.5927 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.8" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(224,135,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 427.6981,376.7903 l -0.0000,-74.0478 h -8.2275 l -0.0000,74.0478 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.8" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(224,135,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 419.4705,376.7903 l -0.0000,-52.1077 h -8.2275 l -0.0000,52.1077 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.8" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(224,135,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 411.2430,376.7903 l -0.0000,-93.2453 h -8.2275 l -0.0000,93.2453 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.8" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(224,135,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 403.0155,376.7903 l -0.0000,-109.7004 h -8.2275 l -0.0000,109.7004 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.8" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(224,135,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 394.7880,376.7903 l -0.0000,-104.2154 h -8.2275 l -0.0000,104.2154 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.8" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(224,135,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 386.5604,376.7903 l -0.0000,-117.9279 h -8.2275 l -0.0000,117.9279 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.8" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(224,135,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 378.3329,376.7903 l -0.0000,-139.8680 h -8.2275 l -0.0000,139.8680 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.8" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(224,135,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 370.1054,376.7903 l -0.0000,-115.1854 h -8.2275 l -0.0000,115.1854 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.8" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(224,135,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 361.8778,376.7903 l -0.0000,-123.4130 h -8.2275 l -0.0000,123.4130 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.8" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(224,135,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 353.6503,376.7903 l -0.0000,-156.3231 h -8.2275 l -0.0000,156.3231 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.8" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(224,135,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 345.4228,376.7903 l -0.0000,-153.5806 h -8.2275 l -0.0000,153.5806 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.8" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(224,135,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 337.1952,376.7903 l -0.0000,-159.0656 h -8.2275 l -0.0000,159.0656 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.8" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(224,135,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 328.9677,376.7903 l -0.0000,-139.8680 h -8.2275 l -0.0000,139.8680 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.8" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(224,135,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 320.7402,376.7903 l -0.0000,-106.9579 h -8.2275 l -0.0000,106.9579 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.8" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(224,135,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 312.5126,376.7903 l -0.0000,-104.2154 h -8.2275 l -0.0000,104.2154 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.8" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(224,135,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 304.2851,376.7903 l -0.0000,-95.9879 h -8.2275 l -0.0000,95.9879 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.8" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(224,135,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 296.0576,376.7903 l -0.0000,-95.9879 h -8.2275 l -0.0000,95.9879 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.8" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(224,135,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 287.8301,376.7903 l -0.0000,-112.4429 h -8.2275 l -0.0000,112.4429 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.8" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(224,135,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 279.6025,376.7903 l -0.0000,-87.7603 h -8.2275 l -0.0000,87.7603 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.8" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(224,135,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 271.3750,376.7903 l -0.0000,-95.9879 h -8.2275 l -0.0000,95.9879 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.8" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(224,135,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 263.1475,376.7903 l -0.0000,-54.8502 h -8.2275 l -0.0000,54.8502 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.8" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(224,135,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 254.9199,376.7903 l -0.0000,-30.1676 h -8.2275 l -0.0000,30.1676 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.8" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(224,135,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 246.6924,376.7903 l -0.0000,-32.9101 h -8.2275 l -0.0000,32.9101 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.8" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(224,135,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 238.4649,376.7903 l -0.0000,-27.4251 h -8.2275 l -0.0000,27.4251 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.8" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(224,135,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 230.2373,376.7903 l -0.0000,-35.6526 h -8.2275 l -0.0000,35.6526 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.8" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(224,135,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 222.0098,376.7903 l -0.0000,-24.6826 h -8.2275 l -0.0000,24.6826 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.8" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(224,135,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 213.7823,376.7903 l -0.0000,-21.9401 h -8.2275 l -0.0000,21.9401 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.8" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(224,135,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 205.5548,376.7903 l -0.0000,-24.6826 h -8.2275 l -0.0000,24.6826 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.8" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(224,135,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 197.3272,376.7903 l -0.0000,-10.9700 h -8.2275 l -0.0000,10.9700 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.8" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(224,135,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 189.0997,376.7903 l -0.0000,-2.7425 h -8.2275 l -0.0000,2.7425 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.8" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(224,135,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 180.8722,376.7903 l -0.0000,-2.7425 h -8.2275 l -0.0000,2.7425 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.8" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(224,135,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 172.6446,376.7903 l -0.0000,-5.4850 h -8.2275 l -0.0000,5.4850 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.8" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(224,135,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 164.4171,376.7903 l -0.0000,-0.0000 h -8.2275 l -0.0000,0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.8" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(224,135,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 156.1896,376.7903 l -0.0000,-2.7425 h -8.2275 l -0.0000,2.7425 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.8" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(224,135,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 147.9620,376.7903 l -0.0000,-0.0000 h -8.2275 l -0.0000,0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.2" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 551.1110,376.7903 l -0.0000,-0.0000 h -8.2275 l -0.0000,0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.2" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 542.8835,376.7903 l -0.0000,-0.0000 h -8.2275 l -0.0000,0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.2" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 534.6560,376.7903 l -0.0000,-0.0000 h -8.2275 l -0.0000,0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.2" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 526.4284,376.7903 l -0.0000,-0.0000 h -8.2275 l -0.0000,0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.2" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 518.2009,376.7903 l -0.0000,-0.0000 h -8.2275 l -0.0000,0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.2" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 509.9734,376.7903 l -0.0000,-0.0000 h -8.2275 l -0.0000,0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.2" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 501.7458,376.7903 l -0.0000,-0.0000 h -8.2275 l -0.0000,0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.2" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 493.5183,376.7903 l -0.0000,-0.0000 h -8.2275 l -0.0000,0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.2" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 485.2908,376.7903 l -0.0000,-0.0000 h -8.2275 l -0.0000,0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.2" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 477.0633,376.7903 l -0.0000,-2.7425 h -8.2275 l -0.0000,2.7425 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.2" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 468.8357,376.7903 l -0.0000,-2.7425 h -8.2275 l -0.0000,2.7425 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.2" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 460.6082,376.7903 l -0.0000,-5.4850 h -8.2275 l -0.0000,5.4850 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.2" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 452.3807,376.7903 l -0.0000,-5.4850 h -8.2275 l -0.0000,5.4850 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.2" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 444.1531,376.7903 l -0.0000,-16.4551 h -8.2275 l -0.0000,16.4551 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.2" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 435.9256,376.7903 l -0.0000,-21.9401 h -8.2275 l -0.0000,21.9401 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.2" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 427.6981,376.7903 l -0.0000,-46.6227 h -8.2275 l -0.0000,46.6227 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.2" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 419.4705,376.7903 l -0.0000,-65.8202 h -8.2275 l -0.0000,65.8202 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.2" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 411.2430,376.7903 l -0.0000,-74.0478 h -8.2275 l -0.0000,74.0478 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.2" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 403.0155,376.7903 l -0.0000,-82.2753 h -8.2275 l -0.0000,82.2753 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.2" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 394.7880,376.7903 l -0.0000,-148.0955 h -8.2275 l -0.0000,148.0955 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.2" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 386.5604,376.7903 l -0.0000,-148.0955 h -8.2275 l -0.0000,148.0955 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.2" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 378.3329,376.7903 l -0.0000,-153.5806 h -8.2275 l -0.0000,153.5806 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.2" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 370.1054,376.7903 l -0.0000,-175.5206 h -8.2275 l -0.0000,175.5206 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.2" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 361.8778,376.7903 l -0.0000,-208.4308 h -8.2275 l -0.0000,208.4308 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.2" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 353.6503,376.7903 l -0.0000,-274.2510 h -8.2275 l -0.0000,274.2510 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.2" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 345.4228,376.7903 l -0.0000,-208.4308 h -8.2275 l -0.0000,208.4308 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.2" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 337.1952,376.7903 l -0.0000,-189.2332 h -8.2275 l -0.0000,189.2332 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.2" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 328.9677,376.7903 l -0.0000,-164.5506 h -8.2275 l -0.0000,164.5506 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.2" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 320.7402,376.7903 l -0.0000,-172.7781 h -8.2275 l -0.0000,172.7781 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.2" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 312.5126,376.7903 l -0.0000,-170.0356 h -8.2275 l -0.0000,170.0356 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.2" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 304.2851,376.7903 l -0.0000,-109.7004 h -8.2275 l -0.0000,109.7004 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.2" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 296.0576,376.7903 l -0.0000,-85.0178 h -8.2275 l -0.0000,85.0178 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.2" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 287.8301,376.7903 l -0.0000,-63.0777 h -8.2275 l -0.0000,63.0777 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.2" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 279.6025,376.7903 l -0.0000,-41.1377 h -8.2275 l -0.0000,41.1377 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.2" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 271.3750,376.7903 l -0.0000,-27.4251 h -8.2275 l -0.0000,27.4251 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.2" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 263.1475,376.7903 l -0.0000,-35.6526 h -8.2275 l -0.0000,35.6526 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.2" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 254.9199,376.7903 l -0.0000,-16.4551 h -8.2275 l -0.0000,16.4551 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.2" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 246.6924,376.7903 l -0.0000,-16.4551 h -8.2275 l -0.0000,16.4551 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.2" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 238.4649,376.7903 l -0.0000,-8.2275 h -8.2275 l -0.0000,8.2275 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.2" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 230.2373,376.7903 l -0.0000,-0.0000 h -8.2275 l -0.0000,0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.2" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 222.0098,376.7903 l -0.0000,-0.0000 h -8.2275 l -0.0000,0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.2" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 213.7823,376.7903 l -0.0000,-0.0000 h -8.2275 l -0.0000,0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.2" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 205.5548,376.7903 l -0.0000,-0.0000 h -8.2275 l -0.0000,0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.2" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 197.3272,376.7903 l -0.0000,-0.0000 h -8.2275 l -0.0000,0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.2" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 189.0997,376.7903 l -0.0000,-2.7425 h -8.2275 l -0.0000,2.7425 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.2" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 180.8722,376.7903 l -0.0000,-0.0000 h -8.2275 l -0.0000,0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.2" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 172.6446,376.7903 l -0.0000,-0.0000 h -8.2275 l -0.0000,0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.2" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 164.4171,376.7903 l -0.0000,-0.0000 h -8.2275 l -0.0000,0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.2" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 156.1896,376.7903 l -0.0000,-0.0000 h -8.2275 l -0.0000,0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.2" stroke="rgb(0,0,0)" stroke-width="2.5169819947905516" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 147.9620,376.7903 l -0.0000,-0.0000 h -8.2275 l -0.0000,0.0000 Z"/>
-  </g>
-</svg>
diff --git a/other/hud.svg b/other/hud.svg
deleted file mode 100644
--- a/other/hud.svg
+++ /dev/null
@@ -1,239 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
-    "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
-<svg xmlns="http://www.w3.org/2000/svg" height="100.0000" stroke-opacity="1" viewBox="0 0 100 100" font-size="1" width="100.0000" xmlns:xlink="http://www.w3.org/1999/xlink" stroke="rgb(0,0,0)" version="1.1">
-  <defs>
-  </defs>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.1" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 17.7005,79.1840 l -0.0000,-67.7213 h -1.3544 l -0.0000,67.7213 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 14.6530,14.2094 l -0.0000,-4.6484 h -6.9726 l -0.0000,4.6484 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="4.225809946906491px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,11.1667,11.8852)" stroke="none" text-anchor="middle">0.5
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.4691225674740754" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 15.6688,11.4626 h 2.0316 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 14.6530,20.9816 l -0.0000,-4.6484 h -6.9726 l -0.0000,4.6484 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="4.225809946906491px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,11.1667,18.6574)" stroke="none" text-anchor="middle">0.4
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.4691225674740754" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 15.6688,18.2348 h 2.0316 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 14.6530,27.7537 l -0.0000,-4.6484 h -6.9726 l -0.0000,4.6484 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="4.225809946906491px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,11.1667,25.4295)" stroke="none" text-anchor="middle">0.3
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.4691225674740754" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 15.6688,25.0069 h 2.0316 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 14.6530,34.5258 l -0.0000,-4.6484 h -6.9726 l -0.0000,4.6484 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="4.225809946906491px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,11.1667,32.2016)" stroke="none" text-anchor="middle">0.2
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.4691225674740754" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 15.6688,31.7790 h 2.0316 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 14.6530,41.2979 l -0.0000,-4.6484 h -6.9726 l -0.0000,4.6484 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="4.225809946906491px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,11.1667,38.9738)" stroke="none" text-anchor="middle">0.1
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.4691225674740754" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 15.6688,38.5512 h 2.0316 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 14.6530,48.0701 l -0.0000,-4.6484 h -6.9726 l -0.0000,4.6484 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="4.225809946906491px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,11.1667,45.7459)" stroke="none" text-anchor="middle">0.0
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.4691225674740754" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 15.6688,45.3233 h 2.0316 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 14.6530,54.8422 l -0.0000,-4.6484 h -9.2968 l -0.0000,4.6484 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="4.225809946906491px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,10.0046,52.5180)" stroke="none" text-anchor="middle">-0.1
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.4691225674740754" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 15.6688,52.0954 h 2.0316 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 14.6530,61.6143 l -0.0000,-4.6484 h -9.2968 l -0.0000,4.6484 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="4.225809946906491px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,10.0046,59.2901)" stroke="none" text-anchor="middle">-0.2
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.4691225674740754" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 15.6688,58.8676 h 2.0316 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 14.6530,68.3865 l -0.0000,-4.6484 h -9.2968 l -0.0000,4.6484 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="4.225809946906491px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,10.0046,66.0623)" stroke="none" text-anchor="middle">-0.3
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.4691225674740754" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 15.6688,65.6397 h 2.0316 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 14.6530,75.1586 l -0.0000,-4.6484 h -9.2968 l -0.0000,4.6484 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="4.225809946906491px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,10.0046,72.8344)" stroke="none" text-anchor="middle">-0.4
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.4691225674740754" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 15.6688,72.4118 h 2.0316 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 14.6530,81.9307 l -0.0000,-4.6484 h -9.2968 l -0.0000,4.6484 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="4.225809946906491px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,10.0046,79.6065)" stroke="none" text-anchor="middle">-0.5
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.4691225674740754" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 15.6688,79.1840 h 2.0316 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.1" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 92.7790,83.2472 l -0.0000,-1.3544 h -67.7213 l -0.0000,1.3544 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 96.2653,89.5887 l -0.0000,-4.6484 h -6.9726 l -0.0000,4.6484 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="4.225809946906491px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,92.7790,87.2645)" stroke="none" text-anchor="middle">0.5
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.4691225674740754" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 92.7790,81.8928 v 2.0316 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 89.4932,89.5887 l -0.0000,-4.6484 h -6.9726 l -0.0000,4.6484 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="4.225809946906491px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,86.0069,87.2645)" stroke="none" text-anchor="middle">0.4
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.4691225674740754" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 86.0069,81.8928 v 2.0316 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 82.7210,89.5887 l -0.0000,-4.6484 h -6.9726 l -0.0000,4.6484 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="4.225809946906491px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,79.2347,87.2645)" stroke="none" text-anchor="middle">0.3
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.4691225674740754" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 79.2347,81.8928 v 2.0316 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 75.9489,89.5887 l -0.0000,-4.6484 h -6.9726 l -0.0000,4.6484 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="4.225809946906491px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,72.4626,87.2645)" stroke="none" text-anchor="middle">0.2
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.4691225674740754" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 72.4626,81.8928 v 2.0316 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 69.1768,89.5887 l -0.0000,-4.6484 h -6.9726 l -0.0000,4.6484 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="4.225809946906491px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,65.6905,87.2645)" stroke="none" text-anchor="middle">0.1
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.4691225674740754" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 65.6905,81.8928 v 2.0316 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 62.4046,89.5887 l -0.0000,-4.6484 h -6.9726 l -0.0000,4.6484 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="4.225809946906491px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,58.9184,87.2645)" stroke="none" text-anchor="middle">0.0
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.4691225674740754" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 58.9184,81.8928 v 2.0316 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 56.7946,89.5887 l -0.0000,-4.6484 h -9.2968 l -0.0000,4.6484 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="4.225809946906491px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,52.1462,87.2645)" stroke="none" text-anchor="middle">-0.1
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.4691225674740754" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 52.1462,81.8928 v 2.0316 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 50.0225,89.5887 l -0.0000,-4.6484 h -9.2968 l -0.0000,4.6484 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="4.225809946906491px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,45.3741,87.2645)" stroke="none" text-anchor="middle">-0.2
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.4691225674740754" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 45.3741,81.8928 v 2.0316 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 43.2504,89.5887 l -0.0000,-4.6484 h -9.2968 l -0.0000,4.6484 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="4.225809946906491px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,38.6020,87.2645)" stroke="none" text-anchor="middle">-0.3
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.4691225674740754" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 38.6020,81.8928 v 2.0316 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 36.4782,89.5887 l -0.0000,-4.6484 h -9.2968 l -0.0000,4.6484 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="4.225809946906491px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,31.8298,87.2645)" stroke="none" text-anchor="middle">-0.4
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.4691225674740754" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 31.8298,81.8928 v 2.0316 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 29.7061,89.5887 l -0.0000,-4.6484 h -9.2968 l -0.0000,4.6484 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="4.225809946906491px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,25.0577,87.2645)" stroke="none" text-anchor="middle">-0.5
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.4691225674740754" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 25.0577,81.8928 v 2.0316 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 92.7790,79.1840 l -0.0000,-67.7213 h -67.7213 l -0.0000,67.7213 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 60.9184,45.3233 c 0.0000,-1.1046 -0.8954,-2.0000 -2.0000 -2.0000c -1.1046,-0.0000 -2.0000,0.8954 -2.0000 2.0000c -0.0000,1.1046 0.8954,2.0000 2.0000 2.0000c 1.1046,0.0000 2.0000,-0.8954 2.0000 -2.0000Z"/>
-  </g>
-</svg>
diff --git a/other/legendExample.svg b/other/legendExample.svg
--- a/other/legendExample.svg
+++ b/other/legendExample.svg
@@ -11,7 +11,7 @@
     <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,134.9320,274.6623)" stroke="none" text-anchor="middle">line 3
     </text>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(44,160,44)" stroke-width="1.498900770352478" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(33,127,33)" stroke-width="1.498900770352478" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 72.5522,272.5348 h 19.4827 "/>
   </g>
   <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
@@ -21,7 +21,7 @@
     <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,193.4387,239.5700)" stroke="none" text-anchor="middle">much longer name
     </text>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(255,127,14)" stroke-width="5.995603081409912" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(203,100,9)" stroke-width="5.995603081409912" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 72.5522,237.4425 h 19.4827 "/>
   </g>
   <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
@@ -31,7 +31,7 @@
     <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,129.0814,204.4777)" stroke="none" text-anchor="middle">short
     </text>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(31,119,180)" stroke-width="2.997801540704956" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(22,93,143)" stroke-width="2.997801540704956" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 72.5522,202.3501 h 19.4827 "/>
   </g>
   <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
diff --git a/other/lglyphHudExample.svg b/other/lglyphHudExample.svg
deleted file mode 100644
--- a/other/lglyphHudExample.svg
+++ /dev/null
@@ -1,384 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
-    "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
-<svg xmlns="http://www.w3.org/2000/svg" height="400.0000" stroke-opacity="1" viewBox="0 0 600 400" font-size="1" width="600.0000" xmlns:xlink="http://www.w3.org/1999/xlink" stroke="rgb(0,0,0)" version="1.1">
-  <defs>
-  </defs>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 588.2257,94.8196 l -0.0000,-16.6568 h -24.9852 l -0.0000,16.6568 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="15.14252742156408px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,575.7331,86.4912)" stroke="none" text-anchor="middle">5,5
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 576.5420,98.0552 c 0.0000,-0.4467 -0.3622,-0.8089 -0.8089 -0.8089c -0.4467,-0.0000 -0.8089,0.3622 -0.8089 0.8089c -0.0000,0.4467 0.3622,0.8089 0.8089 0.8089c 0.4467,0.0000 0.8089,-0.3622 0.8089 -0.8089Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 588.2257,127.1754 l -0.0000,-16.6568 h -24.9852 l -0.0000,16.6568 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="15.14252742156408px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,575.7331,118.8471)" stroke="none" text-anchor="middle">5,4
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 576.5420,130.4110 c 0.0000,-0.4467 -0.3622,-0.8089 -0.8089 -0.8089c -0.4467,-0.0000 -0.8089,0.3622 -0.8089 0.8089c -0.0000,0.4467 0.3622,0.8089 0.8089 0.8089c 0.4467,0.0000 0.8089,-0.3622 0.8089 -0.8089Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 588.2257,159.5313 l -0.0000,-16.6568 h -24.9852 l -0.0000,16.6568 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="15.14252742156408px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,575.7331,151.2029)" stroke="none" text-anchor="middle">5,3
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 576.5420,162.7669 c 0.0000,-0.4467 -0.3622,-0.8089 -0.8089 -0.8089c -0.4467,-0.0000 -0.8089,0.3622 -0.8089 0.8089c -0.0000,0.4467 0.3622,0.8089 0.8089 0.8089c 0.4467,0.0000 0.8089,-0.3622 0.8089 -0.8089Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 588.2257,191.8871 l -0.0000,-16.6568 h -24.9852 l -0.0000,16.6568 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="15.14252742156408px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,575.7331,183.5587)" stroke="none" text-anchor="middle">5,2
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 576.5420,195.1227 c 0.0000,-0.4467 -0.3622,-0.8089 -0.8089 -0.8089c -0.4467,-0.0000 -0.8089,0.3622 -0.8089 0.8089c -0.0000,0.4467 0.3622,0.8089 0.8089 0.8089c 0.4467,0.0000 0.8089,-0.3622 0.8089 -0.8089Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 588.2257,224.2429 l -0.0000,-16.6568 h -24.9852 l -0.0000,16.6568 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="15.14252742156408px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,575.7331,215.9145)" stroke="none" text-anchor="middle">5,1
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 576.5420,227.4785 c 0.0000,-0.4467 -0.3622,-0.8089 -0.8089 -0.8089c -0.4467,-0.0000 -0.8089,0.3622 -0.8089 0.8089c -0.0000,0.4467 0.3622,0.8089 0.8089 0.8089c 0.4467,0.0000 0.8089,-0.3622 0.8089 -0.8089Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 588.2257,256.5988 l -0.0000,-16.6568 h -24.9852 l -0.0000,16.6568 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="15.14252742156408px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,575.7331,248.2704)" stroke="none" text-anchor="middle">5,0
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 576.5420,259.8343 c 0.0000,-0.4467 -0.3622,-0.8089 -0.8089 -0.8089c -0.4467,-0.0000 -0.8089,0.3622 -0.8089 0.8089c -0.0000,0.4467 0.3622,0.8089 0.8089 0.8089c 0.4467,0.0000 0.8089,-0.3622 0.8089 -0.8089Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 491.1582,94.8196 l -0.0000,-16.6568 h -24.9852 l -0.0000,16.6568 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="15.14252742156408px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,478.6656,86.4912)" stroke="none" text-anchor="middle">4,5
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 479.4745,98.0552 c 0.0000,-0.4467 -0.3622,-0.8089 -0.8089 -0.8089c -0.4467,-0.0000 -0.8089,0.3622 -0.8089 0.8089c -0.0000,0.4467 0.3622,0.8089 0.8089 0.8089c 0.4467,0.0000 0.8089,-0.3622 0.8089 -0.8089Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 491.1582,127.1754 l -0.0000,-16.6568 h -24.9852 l -0.0000,16.6568 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="15.14252742156408px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,478.6656,118.8471)" stroke="none" text-anchor="middle">4,4
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 479.4745,130.4110 c 0.0000,-0.4467 -0.3622,-0.8089 -0.8089 -0.8089c -0.4467,-0.0000 -0.8089,0.3622 -0.8089 0.8089c -0.0000,0.4467 0.3622,0.8089 0.8089 0.8089c 0.4467,0.0000 0.8089,-0.3622 0.8089 -0.8089Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 491.1582,159.5313 l -0.0000,-16.6568 h -24.9852 l -0.0000,16.6568 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="15.14252742156408px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,478.6656,151.2029)" stroke="none" text-anchor="middle">4,3
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 479.4745,162.7669 c 0.0000,-0.4467 -0.3622,-0.8089 -0.8089 -0.8089c -0.4467,-0.0000 -0.8089,0.3622 -0.8089 0.8089c -0.0000,0.4467 0.3622,0.8089 0.8089 0.8089c 0.4467,0.0000 0.8089,-0.3622 0.8089 -0.8089Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 491.1582,191.8871 l -0.0000,-16.6568 h -24.9852 l -0.0000,16.6568 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="15.14252742156408px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,478.6656,183.5587)" stroke="none" text-anchor="middle">4,2
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 479.4745,195.1227 c 0.0000,-0.4467 -0.3622,-0.8089 -0.8089 -0.8089c -0.4467,-0.0000 -0.8089,0.3622 -0.8089 0.8089c -0.0000,0.4467 0.3622,0.8089 0.8089 0.8089c 0.4467,0.0000 0.8089,-0.3622 0.8089 -0.8089Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 491.1582,224.2429 l -0.0000,-16.6568 h -24.9852 l -0.0000,16.6568 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="15.14252742156408px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,478.6656,215.9145)" stroke="none" text-anchor="middle">4,1
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 479.4745,227.4785 c 0.0000,-0.4467 -0.3622,-0.8089 -0.8089 -0.8089c -0.4467,-0.0000 -0.8089,0.3622 -0.8089 0.8089c -0.0000,0.4467 0.3622,0.8089 0.8089 0.8089c 0.4467,0.0000 0.8089,-0.3622 0.8089 -0.8089Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 491.1582,256.5988 l -0.0000,-16.6568 h -24.9852 l -0.0000,16.6568 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="15.14252742156408px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,478.6656,248.2704)" stroke="none" text-anchor="middle">4,0
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 479.4745,259.8343 c 0.0000,-0.4467 -0.3622,-0.8089 -0.8089 -0.8089c -0.4467,-0.0000 -0.8089,0.3622 -0.8089 0.8089c -0.0000,0.4467 0.3622,0.8089 0.8089 0.8089c 0.4467,0.0000 0.8089,-0.3622 0.8089 -0.8089Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 394.0907,94.8196 l -0.0000,-16.6568 h -24.9852 l -0.0000,16.6568 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="15.14252742156408px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,381.5982,86.4912)" stroke="none" text-anchor="middle">3,5
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 382.4071,98.0552 c 0.0000,-0.4467 -0.3622,-0.8089 -0.8089 -0.8089c -0.4467,-0.0000 -0.8089,0.3622 -0.8089 0.8089c -0.0000,0.4467 0.3622,0.8089 0.8089 0.8089c 0.4467,0.0000 0.8089,-0.3622 0.8089 -0.8089Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 394.0907,127.1754 l -0.0000,-16.6568 h -24.9852 l -0.0000,16.6568 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="15.14252742156408px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,381.5982,118.8471)" stroke="none" text-anchor="middle">3,4
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 382.4071,130.4110 c 0.0000,-0.4467 -0.3622,-0.8089 -0.8089 -0.8089c -0.4467,-0.0000 -0.8089,0.3622 -0.8089 0.8089c -0.0000,0.4467 0.3622,0.8089 0.8089 0.8089c 0.4467,0.0000 0.8089,-0.3622 0.8089 -0.8089Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 394.0907,159.5313 l -0.0000,-16.6568 h -24.9852 l -0.0000,16.6568 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="15.14252742156408px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,381.5982,151.2029)" stroke="none" text-anchor="middle">3,3
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 382.4071,162.7669 c 0.0000,-0.4467 -0.3622,-0.8089 -0.8089 -0.8089c -0.4467,-0.0000 -0.8089,0.3622 -0.8089 0.8089c -0.0000,0.4467 0.3622,0.8089 0.8089 0.8089c 0.4467,0.0000 0.8089,-0.3622 0.8089 -0.8089Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 394.0907,191.8871 l -0.0000,-16.6568 h -24.9852 l -0.0000,16.6568 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="15.14252742156408px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,381.5982,183.5587)" stroke="none" text-anchor="middle">3,2
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 382.4071,195.1227 c 0.0000,-0.4467 -0.3622,-0.8089 -0.8089 -0.8089c -0.4467,-0.0000 -0.8089,0.3622 -0.8089 0.8089c -0.0000,0.4467 0.3622,0.8089 0.8089 0.8089c 0.4467,0.0000 0.8089,-0.3622 0.8089 -0.8089Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 394.0907,224.2429 l -0.0000,-16.6568 h -24.9852 l -0.0000,16.6568 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="15.14252742156408px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,381.5982,215.9145)" stroke="none" text-anchor="middle">3,1
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 382.4071,227.4785 c 0.0000,-0.4467 -0.3622,-0.8089 -0.8089 -0.8089c -0.4467,-0.0000 -0.8089,0.3622 -0.8089 0.8089c -0.0000,0.4467 0.3622,0.8089 0.8089 0.8089c 0.4467,0.0000 0.8089,-0.3622 0.8089 -0.8089Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 394.0907,256.5988 l -0.0000,-16.6568 h -24.9852 l -0.0000,16.6568 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="15.14252742156408px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,381.5982,248.2704)" stroke="none" text-anchor="middle">3,0
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 382.4071,259.8343 c 0.0000,-0.4467 -0.3622,-0.8089 -0.8089 -0.8089c -0.4467,-0.0000 -0.8089,0.3622 -0.8089 0.8089c -0.0000,0.4467 0.3622,0.8089 0.8089 0.8089c 0.4467,0.0000 0.8089,-0.3622 0.8089 -0.8089Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 297.0233,94.8196 l -0.0000,-16.6568 h -24.9852 l -0.0000,16.6568 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="15.14252742156408px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,284.5307,86.4912)" stroke="none" text-anchor="middle">2,5
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 285.3396,98.0552 c 0.0000,-0.4467 -0.3622,-0.8089 -0.8089 -0.8089c -0.4467,-0.0000 -0.8089,0.3622 -0.8089 0.8089c -0.0000,0.4467 0.3622,0.8089 0.8089 0.8089c 0.4467,0.0000 0.8089,-0.3622 0.8089 -0.8089Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 297.0233,127.1754 l -0.0000,-16.6568 h -24.9852 l -0.0000,16.6568 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="15.14252742156408px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,284.5307,118.8471)" stroke="none" text-anchor="middle">2,4
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 285.3396,130.4110 c 0.0000,-0.4467 -0.3622,-0.8089 -0.8089 -0.8089c -0.4467,-0.0000 -0.8089,0.3622 -0.8089 0.8089c -0.0000,0.4467 0.3622,0.8089 0.8089 0.8089c 0.4467,0.0000 0.8089,-0.3622 0.8089 -0.8089Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 297.0233,159.5313 l -0.0000,-16.6568 h -24.9852 l -0.0000,16.6568 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="15.14252742156408px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,284.5307,151.2029)" stroke="none" text-anchor="middle">2,3
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 285.3396,162.7669 c 0.0000,-0.4467 -0.3622,-0.8089 -0.8089 -0.8089c -0.4467,-0.0000 -0.8089,0.3622 -0.8089 0.8089c -0.0000,0.4467 0.3622,0.8089 0.8089 0.8089c 0.4467,0.0000 0.8089,-0.3622 0.8089 -0.8089Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 297.0233,191.8871 l -0.0000,-16.6568 h -24.9852 l -0.0000,16.6568 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="15.14252742156408px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,284.5307,183.5587)" stroke="none" text-anchor="middle">2,2
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 285.3396,195.1227 c 0.0000,-0.4467 -0.3622,-0.8089 -0.8089 -0.8089c -0.4467,-0.0000 -0.8089,0.3622 -0.8089 0.8089c -0.0000,0.4467 0.3622,0.8089 0.8089 0.8089c 0.4467,0.0000 0.8089,-0.3622 0.8089 -0.8089Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 297.0233,224.2429 l -0.0000,-16.6568 h -24.9852 l -0.0000,16.6568 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="15.14252742156408px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,284.5307,215.9145)" stroke="none" text-anchor="middle">2,1
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 285.3396,227.4785 c 0.0000,-0.4467 -0.3622,-0.8089 -0.8089 -0.8089c -0.4467,-0.0000 -0.8089,0.3622 -0.8089 0.8089c -0.0000,0.4467 0.3622,0.8089 0.8089 0.8089c 0.4467,0.0000 0.8089,-0.3622 0.8089 -0.8089Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 297.0233,256.5988 l -0.0000,-16.6568 h -24.9852 l -0.0000,16.6568 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="15.14252742156408px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,284.5307,248.2704)" stroke="none" text-anchor="middle">2,0
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 285.3396,259.8343 c 0.0000,-0.4467 -0.3622,-0.8089 -0.8089 -0.8089c -0.4467,-0.0000 -0.8089,0.3622 -0.8089 0.8089c -0.0000,0.4467 0.3622,0.8089 0.8089 0.8089c 0.4467,0.0000 0.8089,-0.3622 0.8089 -0.8089Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 199.9558,94.8196 l -0.0000,-16.6568 h -24.9852 l -0.0000,16.6568 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="15.14252742156408px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,187.4632,86.4912)" stroke="none" text-anchor="middle">1,5
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 188.2721,98.0552 c 0.0000,-0.4467 -0.3622,-0.8089 -0.8089 -0.8089c -0.4467,-0.0000 -0.8089,0.3622 -0.8089 0.8089c -0.0000,0.4467 0.3622,0.8089 0.8089 0.8089c 0.4467,0.0000 0.8089,-0.3622 0.8089 -0.8089Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 199.9558,127.1754 l -0.0000,-16.6568 h -24.9852 l -0.0000,16.6568 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="15.14252742156408px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,187.4632,118.8471)" stroke="none" text-anchor="middle">1,4
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 188.2721,130.4110 c 0.0000,-0.4467 -0.3622,-0.8089 -0.8089 -0.8089c -0.4467,-0.0000 -0.8089,0.3622 -0.8089 0.8089c -0.0000,0.4467 0.3622,0.8089 0.8089 0.8089c 0.4467,0.0000 0.8089,-0.3622 0.8089 -0.8089Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 199.9558,159.5313 l -0.0000,-16.6568 h -24.9852 l -0.0000,16.6568 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="15.14252742156408px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,187.4632,151.2029)" stroke="none" text-anchor="middle">1,3
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 188.2721,162.7669 c 0.0000,-0.4467 -0.3622,-0.8089 -0.8089 -0.8089c -0.4467,-0.0000 -0.8089,0.3622 -0.8089 0.8089c -0.0000,0.4467 0.3622,0.8089 0.8089 0.8089c 0.4467,0.0000 0.8089,-0.3622 0.8089 -0.8089Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 199.9558,191.8871 l -0.0000,-16.6568 h -24.9852 l -0.0000,16.6568 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="15.14252742156408px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,187.4632,183.5587)" stroke="none" text-anchor="middle">1,2
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 188.2721,195.1227 c 0.0000,-0.4467 -0.3622,-0.8089 -0.8089 -0.8089c -0.4467,-0.0000 -0.8089,0.3622 -0.8089 0.8089c -0.0000,0.4467 0.3622,0.8089 0.8089 0.8089c 0.4467,0.0000 0.8089,-0.3622 0.8089 -0.8089Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 199.9558,224.2429 l -0.0000,-16.6568 h -24.9852 l -0.0000,16.6568 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="15.14252742156408px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,187.4632,215.9145)" stroke="none" text-anchor="middle">1,1
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 188.2721,227.4785 c 0.0000,-0.4467 -0.3622,-0.8089 -0.8089 -0.8089c -0.4467,-0.0000 -0.8089,0.3622 -0.8089 0.8089c -0.0000,0.4467 0.3622,0.8089 0.8089 0.8089c 0.4467,0.0000 0.8089,-0.3622 0.8089 -0.8089Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 199.9558,256.5988 l -0.0000,-16.6568 h -24.9852 l -0.0000,16.6568 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="15.14252742156408px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,187.4632,248.2704)" stroke="none" text-anchor="middle">1,0
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 188.2721,259.8343 c 0.0000,-0.4467 -0.3622,-0.8089 -0.8089 -0.8089c -0.4467,-0.0000 -0.8089,0.3622 -0.8089 0.8089c -0.0000,0.4467 0.3622,0.8089 0.8089 0.8089c 0.4467,0.0000 0.8089,-0.3622 0.8089 -0.8089Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 102.8883,94.8196 l -0.0000,-16.6568 h -24.9852 l -0.0000,16.6568 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="15.14252742156408px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,90.3957,86.4912)" stroke="none" text-anchor="middle">0,5
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 91.2046,98.0552 c 0.0000,-0.4467 -0.3622,-0.8089 -0.8089 -0.8089c -0.4467,-0.0000 -0.8089,0.3622 -0.8089 0.8089c -0.0000,0.4467 0.3622,0.8089 0.8089 0.8089c 0.4467,0.0000 0.8089,-0.3622 0.8089 -0.8089Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 102.8883,127.1754 l -0.0000,-16.6568 h -24.9852 l -0.0000,16.6568 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="15.14252742156408px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,90.3957,118.8471)" stroke="none" text-anchor="middle">0,4
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 91.2046,130.4110 c 0.0000,-0.4467 -0.3622,-0.8089 -0.8089 -0.8089c -0.4467,-0.0000 -0.8089,0.3622 -0.8089 0.8089c -0.0000,0.4467 0.3622,0.8089 0.8089 0.8089c 0.4467,0.0000 0.8089,-0.3622 0.8089 -0.8089Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 102.8883,159.5313 l -0.0000,-16.6568 h -24.9852 l -0.0000,16.6568 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="15.14252742156408px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,90.3957,151.2029)" stroke="none" text-anchor="middle">0,3
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 91.2046,162.7669 c 0.0000,-0.4467 -0.3622,-0.8089 -0.8089 -0.8089c -0.4467,-0.0000 -0.8089,0.3622 -0.8089 0.8089c -0.0000,0.4467 0.3622,0.8089 0.8089 0.8089c 0.4467,0.0000 0.8089,-0.3622 0.8089 -0.8089Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 102.8883,191.8871 l -0.0000,-16.6568 h -24.9852 l -0.0000,16.6568 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="15.14252742156408px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,90.3957,183.5587)" stroke="none" text-anchor="middle">0,2
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 91.2046,195.1227 c 0.0000,-0.4467 -0.3622,-0.8089 -0.8089 -0.8089c -0.4467,-0.0000 -0.8089,0.3622 -0.8089 0.8089c -0.0000,0.4467 0.3622,0.8089 0.8089 0.8089c 0.4467,0.0000 0.8089,-0.3622 0.8089 -0.8089Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 102.8883,224.2429 l -0.0000,-16.6568 h -24.9852 l -0.0000,16.6568 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="15.14252742156408px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,90.3957,215.9145)" stroke="none" text-anchor="middle">0,1
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 91.2046,227.4785 c 0.0000,-0.4467 -0.3622,-0.8089 -0.8089 -0.8089c -0.4467,-0.0000 -0.8089,0.3622 -0.8089 0.8089c -0.0000,0.4467 0.3622,0.8089 0.8089 0.8089c 0.4467,0.0000 0.8089,-0.3622 0.8089 -0.8089Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 102.8883,256.5988 l -0.0000,-16.6568 h -24.9852 l -0.0000,16.6568 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="15.14252742156408px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,90.3957,248.2704)" stroke="none" text-anchor="middle">0,0
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 91.2046,259.8343 c 0.0000,-0.4467 -0.3622,-0.8089 -0.8089 -0.8089c -0.4467,-0.0000 -0.8089,0.3622 -0.8089 0.8089c -0.0000,0.4467 0.3622,0.8089 0.8089 0.8089c 0.4467,0.0000 0.8089,-0.3622 0.8089 -0.8089Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 575.7331,308.8469 l -0.0000,-16.6568 h -324.8072 l -0.0000,16.6568 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" font-size="15.14252742156408px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(31,119,180)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,575.7331,300.5186)" stroke="none" text-anchor="end">Glyphs with text labels are very useful
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 58.0399,93.2665 l -27.7613,0.0000 l -0.0000,166.5678 l 27.7613,0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" font-size="25.237545702606806px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(31,119,180)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(0.0000,-1.0000,1.0000,0.0000,44.1592,259.8343)" stroke="none" text-anchor="start">LGlyph Chart
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 575.7331,259.8343 l -0.0000,-161.7791 h -485.3374 l -0.0000,161.7791 Z"/>
-  </g>
-</svg>
diff --git a/other/lineChart_Example.svg b/other/lineChart_Example.svg
--- a/other/lineChart_Example.svg
+++ b/other/lineChart_Example.svg
@@ -4,13 +4,13 @@
 <svg xmlns="http://www.w3.org/2000/svg" height="200.0000" stroke-opacity="1" viewBox="0 0 300 200" font-size="1" width="300.0000" xmlns:xlink="http://www.w3.org/1999/xlink" stroke="rgb(0,0,0)" version="1.1">
   <defs>
   </defs>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(44,160,44)" stroke-width="1.2247448713915892" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(33,127,33)" stroke-width="1.2247448713915892" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 50.0000,40.0000 v 160.0000 "/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(255,127,14)" stroke-width="4.898979485566357" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(203,100,9)" stroke-width="4.898979485566357" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 0.0000,200.0000 l 300.0000,-120.0000 "/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(31,119,180)" stroke-width="2.4494897427831783" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(22,93,143)" stroke-width="2.4494897427831783" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 0.0000,160.0000 h 100.0000 l 100.0000,-160.0000 "/>
   </g>
 </svg>
diff --git a/other/lineHudExample.svg b/other/lineHudExample.svg
deleted file mode 100644
--- a/other/lineHudExample.svg
+++ /dev/null
@@ -1,245 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
-    "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
-<svg xmlns="http://www.w3.org/2000/svg" height="400.0000" stroke-opacity="1" viewBox="0 0 600 400" font-size="1" width="600.0000" xmlns:xlink="http://www.w3.org/1999/xlink" stroke="rgb(0,0,0)" version="1.1">
-  <defs>
-  </defs>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(44,160,44)" stroke-width="1.8341212792306685" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 145.6608,133.9858 v 131.3525 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(255,127,14)" stroke-width="7.336485116922674" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 104.6131,265.3384 l 246.2860,-98.5144 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(31,119,180)" stroke-width="3.668242558461337" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 104.6131,232.5002 h 82.0953 l 82.0953,-131.3525 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 48.8802,124.4628 l -28.1751,0.0000 l -0.0000,140.8756 l 28.1751,0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" font-size="25.613744729479446px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(31,119,180)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(0.0000,-1.0000,1.0000,0.0000,34.7927,265.3384)" stroke="none" text-anchor="start">Line Chart
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 500.7822,260.6195 l -0.0000,-28.1751 h -112.7005 l -0.0000,28.1751 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.63" font-size="25.613744729479446px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,444.4320,246.5320)" stroke="none" text-anchor="middle">vertical
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(44,160,44)" stroke-width="1.8341212792306685" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 376.5884,243.9706 h 8.2095 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 458.5195,227.5187 l -0.0000,-28.1751 h -70.4378 l -0.0000,28.1751 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.63" font-size="25.613744729479446px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,423.3006,213.4311)" stroke="none" text-anchor="middle">slope
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(255,127,14)" stroke-width="7.336485116922674" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 376.5884,210.8698 h 8.2095 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 557.1324,194.4178 l -0.0000,-28.1751 h -169.0507 l -0.0000,28.1751 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.63" font-size="25.613744729479446px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,472.6071,180.3303)" stroke="none" text-anchor="middle">hockey stick
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(31,119,180)" stroke-width="3.668242558461337" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 376.5884,177.7689 h 8.2095 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.2" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.7336485116922673" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 566.1596,265.3384 l -0.0000,-103.8145 h -198.5985 l -0.0000,103.8145 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.1" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 79.7415,265.3384 l -0.0000,-164.1907 h -3.2838 l -0.0000,164.1907 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 72.3529,107.8073 l -0.0000,-11.2700 h -16.9051 l -0.0000,11.2700 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="10.245497891791777px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,63.9004,102.1722)" stroke="none" text-anchor="middle">5.0
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="1.8341212792306685" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 74.8158,101.1477 h 4.9257 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 72.3529,124.2263 l -0.0000,-11.2700 h -16.9051 l -0.0000,11.2700 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="10.245497891791777px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,63.9004,118.5913)" stroke="none" text-anchor="middle">4.5
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="1.8341212792306685" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 74.8158,117.5668 h 4.9257 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 72.3529,140.6454 l -0.0000,-11.2700 h -16.9051 l -0.0000,11.2700 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="10.245497891791777px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,63.9004,135.0104)" stroke="none" text-anchor="middle">4.0
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="1.8341212792306685" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 74.8158,133.9858 h 4.9257 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 72.3529,157.0645 l -0.0000,-11.2700 h -16.9051 l -0.0000,11.2700 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="10.245497891791777px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,63.9004,151.4294)" stroke="none" text-anchor="middle">3.5
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="1.8341212792306685" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 74.8158,150.4049 h 4.9257 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 72.3529,173.4835 l -0.0000,-11.2700 h -16.9051 l -0.0000,11.2700 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="10.245497891791777px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,63.9004,167.8485)" stroke="none" text-anchor="middle">3.0
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="1.8341212792306685" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 74.8158,166.8240 h 4.9257 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 72.3529,189.9026 l -0.0000,-11.2700 h -16.9051 l -0.0000,11.2700 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="10.245497891791777px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,63.9004,184.2676)" stroke="none" text-anchor="middle">2.5
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="1.8341212792306685" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 74.8158,183.2430 h 4.9257 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 72.3529,206.3217 l -0.0000,-11.2700 h -16.9051 l -0.0000,11.2700 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="10.245497891791777px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,63.9004,200.6866)" stroke="none" text-anchor="middle">2.0
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="1.8341212792306685" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 74.8158,199.6621 h 4.9257 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 72.3529,222.7407 l -0.0000,-11.2700 h -16.9051 l -0.0000,11.2700 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="10.245497891791777px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,63.9004,217.1057)" stroke="none" text-anchor="middle">1.5
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="1.8341212792306685" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 74.8158,216.0812 h 4.9257 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 72.3529,239.1598 l -0.0000,-11.2700 h -16.9051 l -0.0000,11.2700 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="10.245497891791777px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,63.9004,233.5248)" stroke="none" text-anchor="middle">1.0
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="1.8341212792306685" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 74.8158,232.5002 h 4.9257 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 72.3529,255.5789 l -0.0000,-11.2700 h -16.9051 l -0.0000,11.2700 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="10.245497891791777px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,63.9004,249.9438)" stroke="none" text-anchor="middle">0.5
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="1.8341212792306685" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 74.8158,248.9193 h 4.9257 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 72.3529,271.9979 l -0.0000,-11.2700 h -16.9051 l -0.0000,11.2700 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="10.245497891791777px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,63.9004,266.3629)" stroke="none" text-anchor="middle">0.0
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="1.8341212792306685" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 74.8158,265.3384 h 4.9257 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.1" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 350.8991,285.0412 l -0.0000,-3.2838 h -246.2860 l -0.0000,3.2838 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 359.3516,300.4161 l -0.0000,-11.2700 h -16.9051 l -0.0000,11.2700 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="10.245497891791777px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,350.8991,294.7810)" stroke="none" text-anchor="middle">3.0
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="1.8341212792306685" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 350.8991,281.7574 v 4.9257 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 318.3040,300.4161 l -0.0000,-11.2700 h -16.9051 l -0.0000,11.2700 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="10.245497891791777px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,309.8514,294.7810)" stroke="none" text-anchor="middle">2.5
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="1.8341212792306685" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 309.8514,281.7574 v 4.9257 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 277.2563,300.4161 l -0.0000,-11.2700 h -16.9051 l -0.0000,11.2700 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="10.245497891791777px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,268.8038,294.7810)" stroke="none" text-anchor="middle">2.0
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="1.8341212792306685" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 268.8038,281.7574 v 4.9257 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 236.2086,300.4161 l -0.0000,-11.2700 h -16.9051 l -0.0000,11.2700 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="10.245497891791777px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,227.7561,294.7810)" stroke="none" text-anchor="middle">1.5
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="1.8341212792306685" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 227.7561,281.7574 v 4.9257 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 195.1610,300.4161 l -0.0000,-11.2700 h -16.9051 l -0.0000,11.2700 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="10.245497891791777px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,186.7084,294.7810)" stroke="none" text-anchor="middle">1.0
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="1.8341212792306685" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 186.7084,281.7574 v 4.9257 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 154.1133,300.4161 l -0.0000,-11.2700 h -16.9051 l -0.0000,11.2700 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="10.245497891791777px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,145.6608,294.7810)" stroke="none" text-anchor="middle">0.5
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="1.8341212792306685" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 145.6608,281.7574 v 4.9257 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 113.0656,300.4161 l -0.0000,-11.2700 h -16.9051 l -0.0000,11.2700 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="10.245497891791777px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,104.6131,294.7810)" stroke="none" text-anchor="middle">0.0
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="1.8341212792306685" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 104.6131,281.7574 v 4.9257 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 350.8991,265.3384 l -0.0000,-164.1907 h -246.2860 l -0.0000,164.1907 Z"/>
-  </g>
-</svg>
diff --git a/other/linesExample.svg b/other/linesExample.svg
--- a/other/linesExample.svg
+++ b/other/linesExample.svg
@@ -4,7 +4,7 @@
 <svg xmlns="http://www.w3.org/2000/svg" height="100.0000" stroke-opacity="1" viewBox="0 0 400 100" font-size="1" width="400.0000" xmlns:xlink="http://www.w3.org/1999/xlink" stroke="rgb(0,0,0)" version="1.1">
   <defs>
   </defs>
-  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(255,0,0)" stroke-width="3.1915382432114643" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="0.5" fill-opacity="0.0" stroke="rgb(188,0,0)" stroke-width="3.1915382432114643" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 0.0000,18.1690 l 4.0000,0.2510 l 4.0000,0.7490 l 4.0000,1.2353 l 4.0000,1.7020 l 4.0000,2.1419 l 4.0000,2.5480 l 4.0000,2.9140 l 4.0000,3.2339 l 4.0000,3.5029 l 4.0000,3.7167 l 4.0000,3.8718 l 4.0000,3.9658 l 4.0000,3.9974 l 4.0000,3.9658 l 4.0000,3.8718 l 4.0000,3.7167 l 4.0000,3.5029 l 4.0000,3.2339 l 4.0000,2.9140 l 4.0000,2.5480 l 4.0000,2.1419 l 4.0000,1.7020 l 4.0000,1.2353 l 4.0000,0.7490 l 4.0000,0.2510 l 4.0000,-0.2510 l 4.0000,-0.7490 l 4.0000,-1.2353 l 4.0000,-1.7020 l 4.0000,-2.1419 l 4.0000,-2.5480 l 4.0000,-2.9140 l 4.0000,-3.2339 l 4.0000,-3.5029 l 4.0000,-3.7167 l 4.0000,-3.8718 l 4.0000,-3.9658 l 4.0000,-3.9974 l 4.0000,-3.9658 l 4.0000,-3.8718 l 4.0000,-3.7167 l 4.0000,-3.5029 l 4.0000,-3.2339 l 4.0000,-2.9140 l 4.0000,-2.5480 l 4.0000,-2.1419 l 4.0000,-1.7020 l 4.0000,-1.2353 l 4.0000,-0.7490 l 4.0000,-0.2510 l 4.0000,0.2510 l 4.0000,0.7490 l 4.0000,1.2353 l 4.0000,1.7020 l 4.0000,2.1419 l 4.0000,2.5480 l 4.0000,2.9140 l 4.0000,3.2339 l 4.0000,3.5029 l 4.0000,3.7167 l 4.0000,3.8718 l 4.0000,3.9658 l 4.0000,3.9974 l 4.0000,3.9658 l 4.0000,3.8718 l 4.0000,3.7167 l 4.0000,3.5029 l 4.0000,3.2339 l 4.0000,2.9140 l 4.0000,2.5480 l 4.0000,2.1419 l 4.0000,1.7020 l 4.0000,1.2353 l 4.0000,0.7490 l 4.0000,0.2510 l 4.0000,-0.2510 l 4.0000,-0.7490 l 4.0000,-1.2353 l 4.0000,-1.7020 l 4.0000,-2.1419 l 4.0000,-2.5480 l 4.0000,-2.9140 l 4.0000,-3.2339 l 4.0000,-3.5029 l 4.0000,-3.7167 l 4.0000,-3.8718 l 4.0000,-3.9658 l 4.0000,-3.9974 l 4.0000,-3.9658 l 4.0000,-3.8718 l 4.0000,-3.7167 l 4.0000,-3.5029 l 4.0000,-3.2339 l 4.0000,-2.9140 l 4.0000,-2.5480 l 4.0000,-2.1419 l 4.0000,-1.7020 l 4.0000,-1.2353 l 4.0000,-0.7490 l 4.0000,-0.2510 "/>
   </g>
 </svg>
diff --git a/other/mainExample.svg b/other/mainExample.svg
--- a/other/mainExample.svg
+++ b/other/mainExample.svg
@@ -32,7 +32,7 @@
     <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,486.9918,288.5548)" stroke="none" text-anchor="middle">line 3
     </text>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(44,160,44)" stroke-width="2.222841225713686" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(33,127,33)" stroke-width="2.222841225713686" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 456.7832,287.5245 h 9.4349 "/>
   </g>
   <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
@@ -42,7 +42,7 @@
     <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,515.3248,271.5606)" stroke="none" text-anchor="middle">much longer name
     </text>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(255,127,14)" stroke-width="8.891364902854743" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(203,100,9)" stroke-width="8.891364902854743" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 456.7832,270.5304 h 9.4349 "/>
   </g>
   <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
@@ -52,7 +52,7 @@
     <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,484.1585,254.5665)" stroke="none" text-anchor="middle">short
     </text>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(31,119,180)" stroke-width="4.445682451427372" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(22,93,143)" stroke-width="4.445682451427372" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 456.7832,253.5362 h 9.4349 "/>
   </g>
   <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
@@ -483,13 +483,13 @@
   <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 376.5730,300.8250 l -0.0000,-188.6979 h -283.0468 l -0.0000,188.6979 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(44,160,44)" stroke-width="2.222841225713686" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(33,127,33)" stroke-width="2.222841225713686" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 140.7007,149.8668 v 150.9583 "/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(255,127,14)" stroke-width="8.891364902854743" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(203,100,9)" stroke-width="8.891364902854743" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 93.5262,300.8250 l 283.0468,-113.2187 "/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(31,119,180)" stroke-width="4.445682451427372" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(22,93,143)" stroke-width="4.445682451427372" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 93.5262,263.0855 h 94.3489 l 94.3489,-150.9583 "/>
   </g>
 </svg>
diff --git a/other/pixelHudExample.svg b/other/pixelHudExample.svg
deleted file mode 100644
--- a/other/pixelHudExample.svg
+++ /dev/null
@@ -1,5066 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
-    "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
-<svg xmlns="http://www.w3.org/2000/svg" height="400.0000" stroke-opacity="1" viewBox="0 0 600 400" font-size="1" width="600.0000" xmlns:xlink="http://www.w3.org/1999/xlink" stroke="rgb(0,0,0)" version="1.1">
-  <defs>
-  </defs>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(120,186,219)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 429.6581,51.4251 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(117,182,215)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 429.6581,57.8618 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(114,178,210)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 429.6581,64.2986 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(111,173,205)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 429.6581,70.7353 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(108,169,200)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 429.6581,77.1721 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(105,165,196)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 429.6581,83.6088 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(103,160,191)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 429.6581,90.0455 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(100,156,186)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 429.6581,96.4823 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(97,152,181)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 429.6581,102.9190 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(94,147,176)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 429.6581,109.3558 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(91,143,172)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 429.6581,115.7925 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(88,138,167)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 429.6581,122.2292 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(85,134,162)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 429.6581,128.6660 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(82,129,157)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 429.6581,135.1027 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(79,125,152)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 429.6581,141.5395 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(76,120,147)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 429.6581,147.9762 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(72,116,143)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 429.6581,154.4129 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(69,111,138)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 429.6581,160.8497 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(66,107,133)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 429.6581,167.2864 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(63,102,128)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 429.6581,173.7232 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(60,97,123)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 429.6581,180.1599 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(57,93,118)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 429.6581,186.5966 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(53,88,114)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 429.6581,193.0334 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(50,83,109)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 429.6581,199.4701 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(47,78,104)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 429.6581,205.9069 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(44,74,100)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 429.6581,212.3436 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(40,69,95)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 429.6581,218.7803 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(37,64,90)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 429.6581,225.2171 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(34,59,86)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 429.6581,231.6538 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(30,54,82)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 429.6581,238.0906 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(27,49,78)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 429.6581,244.5273 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(23,44,74)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 429.6581,250.9641 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(20,39,70)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 429.6581,257.4008 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(16,35,67)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 429.6581,263.8375 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(12,30,64)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 429.6581,270.2743 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(9,25,61)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 429.6581,276.7110 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(6,22,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 429.6581,283.1478 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(4,18,57)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 429.6581,289.5845 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(3,16,56)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 429.6581,296.0212 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(3,15,56)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 429.6581,302.4580 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(117,182,215)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 423.2214,51.4251 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(114,178,210)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 423.2214,57.8618 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(111,173,205)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 423.2214,64.2986 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(108,169,200)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 423.2214,70.7353 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(105,165,196)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 423.2214,77.1721 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(103,160,191)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 423.2214,83.6088 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(100,156,186)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 423.2214,90.0455 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(97,152,181)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 423.2214,96.4823 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(94,147,176)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 423.2214,102.9190 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(91,143,172)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 423.2214,109.3558 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(88,138,167)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 423.2214,115.7925 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(85,134,162)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 423.2214,122.2292 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(82,129,157)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 423.2214,128.6660 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(79,125,152)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 423.2214,135.1027 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(76,120,147)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 423.2214,141.5395 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(72,116,143)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 423.2214,147.9762 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(69,111,138)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 423.2214,154.4129 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(66,107,133)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 423.2214,160.8497 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(63,102,128)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 423.2214,167.2864 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(60,97,123)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 423.2214,173.7232 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(57,93,118)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 423.2214,180.1599 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(53,88,114)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 423.2214,186.5966 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(50,83,109)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 423.2214,193.0334 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(47,78,104)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 423.2214,199.4701 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(44,74,100)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 423.2214,205.9069 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(40,69,95)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 423.2214,212.3436 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(37,64,90)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 423.2214,218.7803 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(34,59,86)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 423.2214,225.2171 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(30,54,82)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 423.2214,231.6538 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(27,49,78)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 423.2214,238.0906 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(23,44,74)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 423.2214,244.5273 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(20,39,70)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 423.2214,250.9641 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(16,35,67)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 423.2214,257.4008 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(12,30,64)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 423.2214,263.8375 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(9,25,61)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 423.2214,270.2743 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(6,22,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 423.2214,276.7110 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(4,18,57)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 423.2214,283.1478 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(3,16,56)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 423.2214,289.5845 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(3,15,56)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 423.2214,296.0212 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(3,16,56)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 423.2214,302.4580 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(114,178,210)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 416.7846,51.4251 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(111,173,205)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 416.7846,57.8618 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(108,169,200)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 416.7846,64.2986 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(105,165,196)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 416.7846,70.7353 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(103,160,191)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 416.7846,77.1721 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(100,156,186)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 416.7846,83.6088 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(97,152,181)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 416.7846,90.0455 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(94,147,176)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 416.7846,96.4823 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(91,143,172)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 416.7846,102.9190 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(88,138,167)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 416.7846,109.3558 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(85,134,162)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 416.7846,115.7925 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(82,129,157)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 416.7846,122.2292 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(79,125,152)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 416.7846,128.6660 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(76,120,147)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 416.7846,135.1027 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(72,116,143)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 416.7846,141.5395 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(69,111,138)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 416.7846,147.9762 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(66,107,133)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 416.7846,154.4129 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(63,102,128)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 416.7846,160.8497 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(60,97,123)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 416.7846,167.2864 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(57,93,118)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 416.7846,173.7232 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(53,88,114)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 416.7846,180.1599 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(50,83,109)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 416.7846,186.5966 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(47,78,104)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 416.7846,193.0334 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(44,74,100)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 416.7846,199.4701 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(40,69,95)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 416.7846,205.9069 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(37,64,90)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 416.7846,212.3436 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(34,59,86)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 416.7846,218.7803 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(30,54,82)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 416.7846,225.2171 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(27,49,78)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 416.7846,231.6538 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(23,44,74)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 416.7846,238.0906 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(20,39,70)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 416.7846,244.5273 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(16,35,67)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 416.7846,250.9641 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(12,30,64)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 416.7846,257.4008 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(9,25,61)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 416.7846,263.8375 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(6,22,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 416.7846,270.2743 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(4,18,57)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 416.7846,276.7110 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(3,16,56)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 416.7846,283.1478 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(3,15,56)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 416.7846,289.5845 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(3,16,56)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 416.7846,296.0212 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(4,18,57)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 416.7846,302.4580 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(111,173,205)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 410.3479,51.4251 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(108,169,200)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 410.3479,57.8618 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(105,165,196)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 410.3479,64.2986 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(103,160,191)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 410.3479,70.7353 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(100,156,186)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 410.3479,77.1721 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(97,152,181)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 410.3479,83.6088 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(94,147,176)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 410.3479,90.0455 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(91,143,172)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 410.3479,96.4823 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(88,138,167)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 410.3479,102.9190 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(85,134,162)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 410.3479,109.3558 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(82,129,157)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 410.3479,115.7925 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(79,125,152)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 410.3479,122.2292 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(76,120,147)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 410.3479,128.6660 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(72,116,143)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 410.3479,135.1027 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(69,111,138)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 410.3479,141.5395 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(66,107,133)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 410.3479,147.9762 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(63,102,128)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 410.3479,154.4129 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(60,97,123)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 410.3479,160.8497 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(57,93,118)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 410.3479,167.2864 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(53,88,114)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 410.3479,173.7232 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(50,83,109)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 410.3479,180.1599 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(47,78,104)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 410.3479,186.5966 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(44,74,100)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 410.3479,193.0334 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(40,69,95)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 410.3479,199.4701 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(37,64,90)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 410.3479,205.9069 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(34,59,86)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 410.3479,212.3436 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(30,54,82)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 410.3479,218.7803 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(27,49,78)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 410.3479,225.2171 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(23,44,74)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 410.3479,231.6538 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(20,39,70)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 410.3479,238.0906 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(16,35,67)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 410.3479,244.5273 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(12,30,64)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 410.3479,250.9641 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(9,25,61)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 410.3479,257.4008 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(6,22,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 410.3479,263.8375 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(4,18,57)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 410.3479,270.2743 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(3,16,56)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 410.3479,276.7110 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(3,15,56)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 410.3479,283.1478 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(3,16,56)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 410.3479,289.5845 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(4,18,57)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 410.3479,296.0212 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(6,22,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 410.3479,302.4580 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(108,169,200)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 403.9111,51.4251 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(105,165,196)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 403.9111,57.8618 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(103,160,191)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 403.9111,64.2986 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(100,156,186)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 403.9111,70.7353 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(97,152,181)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 403.9111,77.1721 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(94,147,176)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 403.9111,83.6088 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(91,143,172)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 403.9111,90.0455 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(88,138,167)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 403.9111,96.4823 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(85,134,162)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 403.9111,102.9190 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(82,129,157)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 403.9111,109.3558 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(79,125,152)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 403.9111,115.7925 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(76,120,147)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 403.9111,122.2292 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(72,116,143)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 403.9111,128.6660 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(69,111,138)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 403.9111,135.1027 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(66,107,133)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 403.9111,141.5395 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(63,102,128)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 403.9111,147.9762 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(60,97,123)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 403.9111,154.4129 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(57,93,118)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 403.9111,160.8497 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(53,88,114)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 403.9111,167.2864 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(50,83,109)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 403.9111,173.7232 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(47,78,104)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 403.9111,180.1599 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(44,74,100)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 403.9111,186.5966 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(40,69,95)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 403.9111,193.0334 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(37,64,90)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 403.9111,199.4701 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(34,59,86)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 403.9111,205.9069 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(30,54,82)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 403.9111,212.3436 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(27,49,78)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 403.9111,218.7803 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(23,44,74)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 403.9111,225.2171 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(20,39,70)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 403.9111,231.6538 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(16,35,67)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 403.9111,238.0906 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(12,30,64)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 403.9111,244.5273 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(9,25,61)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 403.9111,250.9641 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(6,22,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 403.9111,257.4008 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(4,18,57)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 403.9111,263.8375 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(3,16,56)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 403.9111,270.2743 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(3,15,56)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 403.9111,276.7110 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(3,16,56)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 403.9111,283.1478 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(4,18,57)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 403.9111,289.5845 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(6,22,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 403.9111,296.0212 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(9,25,61)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 403.9111,302.4580 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(105,165,196)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 397.4744,51.4251 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(103,160,191)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 397.4744,57.8618 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(100,156,186)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 397.4744,64.2986 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(97,152,181)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 397.4744,70.7353 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(94,147,176)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 397.4744,77.1721 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(91,143,172)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 397.4744,83.6088 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(88,138,167)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 397.4744,90.0455 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(85,134,162)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 397.4744,96.4823 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(82,129,157)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 397.4744,102.9190 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(79,125,152)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 397.4744,109.3558 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(76,120,147)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 397.4744,115.7925 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(72,116,143)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 397.4744,122.2292 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(69,111,138)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 397.4744,128.6660 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(66,107,133)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 397.4744,135.1027 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(63,102,128)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 397.4744,141.5395 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(60,97,123)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 397.4744,147.9762 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(57,93,118)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 397.4744,154.4129 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(53,88,114)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 397.4744,160.8497 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(50,83,109)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 397.4744,167.2864 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(47,78,104)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 397.4744,173.7232 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(44,74,100)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 397.4744,180.1599 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(40,69,95)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 397.4744,186.5966 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(37,64,90)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 397.4744,193.0334 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(34,59,86)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 397.4744,199.4701 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(30,54,82)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 397.4744,205.9069 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(27,49,78)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 397.4744,212.3436 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(23,44,74)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 397.4744,218.7803 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(20,39,70)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 397.4744,225.2171 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(16,35,67)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 397.4744,231.6538 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(12,30,64)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 397.4744,238.0906 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(9,25,61)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 397.4744,244.5273 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(6,22,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 397.4744,250.9641 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(4,18,57)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 397.4744,257.4008 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(3,16,56)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 397.4744,263.8375 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(3,15,56)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 397.4744,270.2743 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(3,16,56)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 397.4744,276.7110 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(4,18,57)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 397.4744,283.1478 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(6,22,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 397.4744,289.5845 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(9,25,61)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 397.4744,296.0212 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(12,30,64)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 397.4744,302.4580 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(103,160,191)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 391.0377,51.4251 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(100,156,186)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 391.0377,57.8618 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(97,152,181)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 391.0377,64.2986 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(94,147,176)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 391.0377,70.7353 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(91,143,172)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 391.0377,77.1721 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(88,138,167)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 391.0377,83.6088 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(85,134,162)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 391.0377,90.0455 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(82,129,157)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 391.0377,96.4823 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(79,125,152)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 391.0377,102.9190 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(76,120,147)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 391.0377,109.3558 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(72,116,143)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 391.0377,115.7925 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(69,111,138)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 391.0377,122.2292 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(66,107,133)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 391.0377,128.6660 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(63,102,128)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 391.0377,135.1027 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(60,97,123)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 391.0377,141.5395 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(57,93,118)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 391.0377,147.9762 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(53,88,114)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 391.0377,154.4129 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(50,83,109)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 391.0377,160.8497 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(47,78,104)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 391.0377,167.2864 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(44,74,100)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 391.0377,173.7232 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(40,69,95)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 391.0377,180.1599 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(37,64,90)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 391.0377,186.5966 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(34,59,86)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 391.0377,193.0334 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(30,54,82)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 391.0377,199.4701 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(27,49,78)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 391.0377,205.9069 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(23,44,74)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 391.0377,212.3436 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(20,39,70)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 391.0377,218.7803 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(16,35,67)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 391.0377,225.2171 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(12,30,64)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 391.0377,231.6538 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(9,25,61)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 391.0377,238.0906 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(6,22,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 391.0377,244.5273 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(4,18,57)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 391.0377,250.9641 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(3,16,56)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 391.0377,257.4008 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(3,15,56)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 391.0377,263.8375 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(3,16,56)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 391.0377,270.2743 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(4,18,57)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 391.0377,276.7110 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(6,22,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 391.0377,283.1478 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(9,25,61)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 391.0377,289.5845 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(12,30,64)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 391.0377,296.0212 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(16,35,67)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 391.0377,302.4580 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(100,156,186)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 384.6009,51.4251 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(97,152,181)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 384.6009,57.8618 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(94,147,176)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 384.6009,64.2986 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(91,143,172)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 384.6009,70.7353 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(88,138,167)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 384.6009,77.1721 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(85,134,162)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 384.6009,83.6088 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(82,129,157)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 384.6009,90.0455 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(79,125,152)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 384.6009,96.4823 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(76,120,147)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 384.6009,102.9190 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(72,116,143)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 384.6009,109.3558 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(69,111,138)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 384.6009,115.7925 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(66,107,133)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 384.6009,122.2292 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(63,102,128)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 384.6009,128.6660 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(60,97,123)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 384.6009,135.1027 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(57,93,118)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 384.6009,141.5395 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(53,88,114)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 384.6009,147.9762 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(50,83,109)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 384.6009,154.4129 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(47,78,104)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 384.6009,160.8497 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(44,74,100)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 384.6009,167.2864 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(40,69,95)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 384.6009,173.7232 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(37,64,90)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 384.6009,180.1599 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(34,59,86)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 384.6009,186.5966 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(30,54,82)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 384.6009,193.0334 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(27,49,78)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 384.6009,199.4701 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(23,44,74)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 384.6009,205.9069 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(20,39,70)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 384.6009,212.3436 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(16,35,67)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 384.6009,218.7803 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(12,30,64)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 384.6009,225.2171 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(9,25,61)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 384.6009,231.6538 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(6,22,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 384.6009,238.0906 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(4,18,57)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 384.6009,244.5273 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(3,16,56)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 384.6009,250.9641 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(3,15,56)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 384.6009,257.4008 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(3,16,56)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 384.6009,263.8375 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(4,18,57)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 384.6009,270.2743 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(6,22,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 384.6009,276.7110 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(9,25,61)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 384.6009,283.1478 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(12,30,64)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 384.6009,289.5845 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(16,35,67)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 384.6009,296.0212 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(20,39,70)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 384.6009,302.4580 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(97,152,181)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 378.1642,51.4251 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(94,147,176)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 378.1642,57.8618 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(91,143,172)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 378.1642,64.2986 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(88,138,167)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 378.1642,70.7353 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(85,134,162)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 378.1642,77.1721 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(82,129,157)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 378.1642,83.6088 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(79,125,152)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 378.1642,90.0455 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(76,120,147)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 378.1642,96.4823 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(72,116,143)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 378.1642,102.9190 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(69,111,138)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 378.1642,109.3558 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(66,107,133)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 378.1642,115.7925 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(63,102,128)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 378.1642,122.2292 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(60,97,123)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 378.1642,128.6660 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(57,93,118)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 378.1642,135.1027 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(53,88,114)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 378.1642,141.5395 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(50,83,109)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 378.1642,147.9762 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(47,78,104)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 378.1642,154.4129 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(44,74,100)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 378.1642,160.8497 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(40,69,95)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 378.1642,167.2864 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(37,64,90)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 378.1642,173.7232 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(34,59,86)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 378.1642,180.1599 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(30,54,82)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 378.1642,186.5966 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(27,49,78)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 378.1642,193.0334 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(23,44,74)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 378.1642,199.4701 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(20,39,70)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 378.1642,205.9069 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(16,35,67)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 378.1642,212.3436 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(12,30,64)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 378.1642,218.7803 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(9,25,61)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 378.1642,225.2171 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(6,22,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 378.1642,231.6538 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(4,18,57)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 378.1642,238.0906 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(3,16,56)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 378.1642,244.5273 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(3,15,56)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 378.1642,250.9641 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(3,16,56)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 378.1642,257.4008 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(4,18,57)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 378.1642,263.8375 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(6,22,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 378.1642,270.2743 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(9,25,61)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 378.1642,276.7110 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(12,30,64)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 378.1642,283.1478 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(16,35,67)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 378.1642,289.5845 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(20,39,70)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 378.1642,296.0212 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(23,44,74)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 378.1642,302.4580 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(94,147,176)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 371.7274,51.4251 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(91,143,172)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 371.7274,57.8618 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(88,138,167)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 371.7274,64.2986 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(85,134,162)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 371.7274,70.7353 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(82,129,157)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 371.7274,77.1721 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(79,125,152)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 371.7274,83.6088 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(76,120,147)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 371.7274,90.0455 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(72,116,143)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 371.7274,96.4823 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(69,111,138)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 371.7274,102.9190 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(66,107,133)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 371.7274,109.3558 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(63,102,128)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 371.7274,115.7925 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(60,97,123)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 371.7274,122.2292 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(57,93,118)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 371.7274,128.6660 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(53,88,114)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 371.7274,135.1027 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(50,83,109)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 371.7274,141.5395 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(47,78,104)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 371.7274,147.9762 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(44,74,100)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 371.7274,154.4129 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(40,69,95)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 371.7274,160.8497 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(37,64,90)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 371.7274,167.2864 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(34,59,86)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 371.7274,173.7232 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(30,54,82)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 371.7274,180.1599 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(27,49,78)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 371.7274,186.5966 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(23,44,74)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 371.7274,193.0334 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(20,39,70)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 371.7274,199.4701 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(16,35,67)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 371.7274,205.9069 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(12,30,64)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 371.7274,212.3436 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(9,25,61)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 371.7274,218.7803 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(6,22,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 371.7274,225.2171 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(4,18,57)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 371.7274,231.6538 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(3,16,56)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 371.7274,238.0906 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(3,15,56)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 371.7274,244.5273 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(3,16,56)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 371.7274,250.9641 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(4,18,57)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 371.7274,257.4008 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(6,22,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 371.7274,263.8375 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(9,25,61)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 371.7274,270.2743 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(12,30,64)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 371.7274,276.7110 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(16,35,67)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 371.7274,283.1478 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(20,39,70)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 371.7274,289.5845 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(23,44,74)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 371.7274,296.0212 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(27,49,78)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 371.7274,302.4580 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(91,143,172)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 365.2907,51.4251 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(88,138,167)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 365.2907,57.8618 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(85,134,162)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 365.2907,64.2986 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(82,129,157)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 365.2907,70.7353 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(79,125,152)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 365.2907,77.1721 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(76,120,147)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 365.2907,83.6088 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(72,116,143)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 365.2907,90.0455 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(69,111,138)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 365.2907,96.4823 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(66,107,133)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 365.2907,102.9190 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(63,102,128)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 365.2907,109.3558 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(60,97,123)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 365.2907,115.7925 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(57,93,118)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 365.2907,122.2292 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(53,88,114)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 365.2907,128.6660 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(50,83,109)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 365.2907,135.1027 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(47,78,104)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 365.2907,141.5395 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(44,74,100)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 365.2907,147.9762 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(40,69,95)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 365.2907,154.4129 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(37,64,90)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 365.2907,160.8497 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(34,59,86)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 365.2907,167.2864 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(30,54,82)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 365.2907,173.7232 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(27,49,78)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 365.2907,180.1599 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(23,44,74)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 365.2907,186.5966 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(20,39,70)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 365.2907,193.0334 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(16,35,67)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 365.2907,199.4701 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(12,30,64)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 365.2907,205.9069 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(9,25,61)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 365.2907,212.3436 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(6,22,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 365.2907,218.7803 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(4,18,57)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 365.2907,225.2171 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(3,16,56)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 365.2907,231.6538 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(3,15,56)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 365.2907,238.0906 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(3,16,56)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 365.2907,244.5273 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(4,18,57)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 365.2907,250.9641 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(6,22,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 365.2907,257.4008 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(9,25,61)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 365.2907,263.8375 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(12,30,64)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 365.2907,270.2743 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(16,35,67)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 365.2907,276.7110 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(20,39,70)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 365.2907,283.1478 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(23,44,74)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 365.2907,289.5845 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(27,49,78)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 365.2907,296.0212 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(30,54,82)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 365.2907,302.4580 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(88,138,167)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 358.8540,51.4251 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(85,134,162)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 358.8540,57.8618 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(82,129,157)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 358.8540,64.2986 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(79,125,152)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 358.8540,70.7353 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(76,120,147)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 358.8540,77.1721 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(72,116,143)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 358.8540,83.6088 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(69,111,138)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 358.8540,90.0455 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(66,107,133)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 358.8540,96.4823 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(63,102,128)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 358.8540,102.9190 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(60,97,123)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 358.8540,109.3558 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(57,93,118)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 358.8540,115.7925 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(53,88,114)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 358.8540,122.2292 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(50,83,109)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 358.8540,128.6660 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(47,78,104)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 358.8540,135.1027 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(44,74,100)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 358.8540,141.5395 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(40,69,95)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 358.8540,147.9762 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(37,64,90)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 358.8540,154.4129 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(34,59,86)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 358.8540,160.8497 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(30,54,82)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 358.8540,167.2864 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(27,49,78)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 358.8540,173.7232 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(23,44,74)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 358.8540,180.1599 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(20,39,70)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 358.8540,186.5966 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(16,35,67)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 358.8540,193.0334 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(12,30,64)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 358.8540,199.4701 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(9,25,61)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 358.8540,205.9069 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(6,22,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 358.8540,212.3436 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(4,18,57)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 358.8540,218.7803 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(3,16,56)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 358.8540,225.2171 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(3,15,56)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 358.8540,231.6538 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(3,16,56)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 358.8540,238.0906 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(4,18,57)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 358.8540,244.5273 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(6,22,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 358.8540,250.9641 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(9,25,61)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 358.8540,257.4008 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(12,30,64)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 358.8540,263.8375 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(16,35,67)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 358.8540,270.2743 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(20,39,70)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 358.8540,276.7110 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(23,44,74)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 358.8540,283.1478 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(27,49,78)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 358.8540,289.5845 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(30,54,82)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 358.8540,296.0212 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(34,59,86)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 358.8540,302.4580 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(85,134,162)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 352.4172,51.4251 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(82,129,157)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 352.4172,57.8618 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(79,125,152)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 352.4172,64.2986 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(76,120,147)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 352.4172,70.7353 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(72,116,143)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 352.4172,77.1721 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(69,111,138)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 352.4172,83.6088 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(66,107,133)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 352.4172,90.0455 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(63,102,128)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 352.4172,96.4823 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(60,97,123)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 352.4172,102.9190 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(57,93,118)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 352.4172,109.3558 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(53,88,114)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 352.4172,115.7925 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(50,83,109)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 352.4172,122.2292 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(47,78,104)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 352.4172,128.6660 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(44,74,100)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 352.4172,135.1027 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(40,69,95)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 352.4172,141.5395 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(37,64,90)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 352.4172,147.9762 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(34,59,86)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 352.4172,154.4129 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(30,54,82)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 352.4172,160.8497 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(27,49,78)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 352.4172,167.2864 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(23,44,74)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 352.4172,173.7232 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(20,39,70)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 352.4172,180.1599 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(16,35,67)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 352.4172,186.5966 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(12,30,64)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 352.4172,193.0334 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(9,25,61)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 352.4172,199.4701 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(6,22,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 352.4172,205.9069 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(4,18,57)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 352.4172,212.3436 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(3,16,56)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 352.4172,218.7803 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(3,15,56)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 352.4172,225.2171 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(3,16,56)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 352.4172,231.6538 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(4,18,57)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 352.4172,238.0906 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(6,22,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 352.4172,244.5273 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(9,25,61)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 352.4172,250.9641 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(12,30,64)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 352.4172,257.4008 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(16,35,67)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 352.4172,263.8375 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(20,39,70)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 352.4172,270.2743 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(23,44,74)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 352.4172,276.7110 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(27,49,78)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 352.4172,283.1478 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(30,54,82)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 352.4172,289.5845 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(34,59,86)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 352.4172,296.0212 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(37,64,90)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 352.4172,302.4580 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(82,129,157)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 345.9805,51.4251 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(79,125,152)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 345.9805,57.8618 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(76,120,147)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 345.9805,64.2986 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(72,116,143)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 345.9805,70.7353 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(69,111,138)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 345.9805,77.1721 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(66,107,133)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 345.9805,83.6088 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(63,102,128)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 345.9805,90.0455 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(60,97,123)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 345.9805,96.4823 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(57,93,118)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 345.9805,102.9190 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(53,88,114)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 345.9805,109.3558 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(50,83,109)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 345.9805,115.7925 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(47,78,104)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 345.9805,122.2292 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(44,74,100)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 345.9805,128.6660 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(40,69,95)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 345.9805,135.1027 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(37,64,90)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 345.9805,141.5395 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(34,59,86)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 345.9805,147.9762 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(30,54,82)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 345.9805,154.4129 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(27,49,78)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 345.9805,160.8497 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(23,44,74)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 345.9805,167.2864 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(20,39,70)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 345.9805,173.7232 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(16,35,67)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 345.9805,180.1599 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(12,30,64)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 345.9805,186.5966 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(9,25,61)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 345.9805,193.0334 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(6,22,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 345.9805,199.4701 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(4,18,57)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 345.9805,205.9069 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(3,16,56)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 345.9805,212.3436 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(3,15,56)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 345.9805,218.7803 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(3,16,56)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 345.9805,225.2171 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(4,18,57)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 345.9805,231.6538 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(6,22,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 345.9805,238.0906 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(9,25,61)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 345.9805,244.5273 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(12,30,64)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 345.9805,250.9641 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(16,35,67)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 345.9805,257.4008 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(20,39,70)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 345.9805,263.8375 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(23,44,74)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 345.9805,270.2743 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(27,49,78)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 345.9805,276.7110 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(30,54,82)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 345.9805,283.1478 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(34,59,86)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 345.9805,289.5845 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(37,64,90)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 345.9805,296.0212 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(40,69,95)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 345.9805,302.4580 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(79,125,152)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 339.5437,51.4251 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(76,120,147)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 339.5437,57.8618 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(72,116,143)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 339.5437,64.2986 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(69,111,138)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 339.5437,70.7353 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(66,107,133)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 339.5437,77.1721 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(63,102,128)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 339.5437,83.6088 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(60,97,123)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 339.5437,90.0455 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(57,93,118)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 339.5437,96.4823 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(53,88,114)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 339.5437,102.9190 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(50,83,109)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 339.5437,109.3558 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(47,78,104)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 339.5437,115.7925 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(44,74,100)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 339.5437,122.2292 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(40,69,95)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 339.5437,128.6660 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(37,64,90)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 339.5437,135.1027 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(34,59,86)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 339.5437,141.5395 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(30,54,82)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 339.5437,147.9762 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(27,49,78)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 339.5437,154.4129 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(23,44,74)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 339.5437,160.8497 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(20,39,70)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 339.5437,167.2864 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(16,35,67)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 339.5437,173.7232 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(12,30,64)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 339.5437,180.1599 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(9,25,61)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 339.5437,186.5966 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(6,22,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 339.5437,193.0334 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(4,18,57)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 339.5437,199.4701 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(3,16,56)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 339.5437,205.9069 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(3,15,56)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 339.5437,212.3436 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(3,16,56)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 339.5437,218.7803 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(4,18,57)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 339.5437,225.2171 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(6,22,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 339.5437,231.6538 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(9,25,61)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 339.5437,238.0906 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(12,30,64)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 339.5437,244.5273 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(16,35,67)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 339.5437,250.9641 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(20,39,70)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 339.5437,257.4008 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(23,44,74)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 339.5437,263.8375 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(27,49,78)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 339.5437,270.2743 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(30,54,82)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 339.5437,276.7110 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(34,59,86)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 339.5437,283.1478 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(37,64,90)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 339.5437,289.5845 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(40,69,95)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 339.5437,296.0212 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(44,74,100)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 339.5437,302.4580 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(76,120,147)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 333.1070,51.4251 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(72,116,143)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 333.1070,57.8618 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(69,111,138)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 333.1070,64.2986 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(66,107,133)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 333.1070,70.7353 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(63,102,128)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 333.1070,77.1721 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(60,97,123)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 333.1070,83.6088 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(57,93,118)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 333.1070,90.0455 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(53,88,114)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 333.1070,96.4823 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(50,83,109)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 333.1070,102.9190 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(47,78,104)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 333.1070,109.3558 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(44,74,100)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 333.1070,115.7925 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(40,69,95)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 333.1070,122.2292 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(37,64,90)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 333.1070,128.6660 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(34,59,86)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 333.1070,135.1027 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(30,54,82)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 333.1070,141.5395 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(27,49,78)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 333.1070,147.9762 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(23,44,74)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 333.1070,154.4129 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(20,39,70)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 333.1070,160.8497 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(16,35,67)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 333.1070,167.2864 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(12,30,64)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 333.1070,173.7232 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(9,25,61)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 333.1070,180.1599 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(6,22,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 333.1070,186.5966 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(4,18,57)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 333.1070,193.0334 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(3,16,56)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 333.1070,199.4701 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(3,15,56)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 333.1070,205.9069 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(3,16,56)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 333.1070,212.3436 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(4,18,57)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 333.1070,218.7803 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(6,22,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 333.1070,225.2171 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(9,25,61)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 333.1070,231.6538 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(12,30,64)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 333.1070,238.0906 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(16,35,67)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 333.1070,244.5273 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(20,39,70)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 333.1070,250.9641 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(23,44,74)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 333.1070,257.4008 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(27,49,78)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 333.1070,263.8375 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(30,54,82)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 333.1070,270.2743 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(34,59,86)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 333.1070,276.7110 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(37,64,90)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 333.1070,283.1478 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(40,69,95)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 333.1070,289.5845 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(44,74,100)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 333.1070,296.0212 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(47,78,104)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 333.1070,302.4580 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(72,116,143)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 326.6702,51.4251 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(69,111,138)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 326.6702,57.8618 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(66,107,133)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 326.6702,64.2986 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(63,102,128)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 326.6702,70.7353 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(60,97,123)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 326.6702,77.1721 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(57,93,118)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 326.6702,83.6088 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(53,88,114)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 326.6702,90.0455 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(50,83,109)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 326.6702,96.4823 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(47,78,104)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 326.6702,102.9190 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(44,74,100)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 326.6702,109.3558 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(40,69,95)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 326.6702,115.7925 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(37,64,90)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 326.6702,122.2292 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(34,59,86)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 326.6702,128.6660 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(30,54,82)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 326.6702,135.1027 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(27,49,78)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 326.6702,141.5395 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(23,44,74)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 326.6702,147.9762 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(20,39,70)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 326.6702,154.4129 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(16,35,67)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 326.6702,160.8497 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(12,30,64)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 326.6702,167.2864 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(9,25,61)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 326.6702,173.7232 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(6,22,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 326.6702,180.1599 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(4,18,57)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 326.6702,186.5966 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(3,16,56)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 326.6702,193.0334 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(3,15,56)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 326.6702,199.4701 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(3,16,56)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 326.6702,205.9069 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(4,18,57)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 326.6702,212.3436 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(6,22,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 326.6702,218.7803 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(9,25,61)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 326.6702,225.2171 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(12,30,64)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 326.6702,231.6538 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(16,35,67)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 326.6702,238.0906 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(20,39,70)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 326.6702,244.5273 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(23,44,74)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 326.6702,250.9641 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(27,49,78)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 326.6702,257.4008 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(30,54,82)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 326.6702,263.8375 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(34,59,86)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 326.6702,270.2743 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(37,64,90)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 326.6702,276.7110 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(40,69,95)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 326.6702,283.1478 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(44,74,100)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 326.6702,289.5845 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(47,78,104)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 326.6702,296.0212 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(50,83,109)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 326.6702,302.4580 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(69,111,138)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 320.2335,51.4251 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(66,107,133)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 320.2335,57.8618 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(63,102,128)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 320.2335,64.2986 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(60,97,123)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 320.2335,70.7353 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(57,93,118)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 320.2335,77.1721 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(53,88,114)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 320.2335,83.6088 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(50,83,109)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 320.2335,90.0455 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(47,78,104)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 320.2335,96.4823 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(44,74,100)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 320.2335,102.9190 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(40,69,95)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 320.2335,109.3558 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(37,64,90)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 320.2335,115.7925 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(34,59,86)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 320.2335,122.2292 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(30,54,82)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 320.2335,128.6660 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(27,49,78)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 320.2335,135.1027 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(23,44,74)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 320.2335,141.5395 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(20,39,70)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 320.2335,147.9762 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(16,35,67)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 320.2335,154.4129 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(12,30,64)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 320.2335,160.8497 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(9,25,61)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 320.2335,167.2864 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(6,22,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 320.2335,173.7232 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(4,18,57)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 320.2335,180.1599 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(3,16,56)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 320.2335,186.5966 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(3,15,56)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 320.2335,193.0334 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(3,16,56)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 320.2335,199.4701 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(4,18,57)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 320.2335,205.9069 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(6,22,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 320.2335,212.3436 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(9,25,61)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 320.2335,218.7803 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(12,30,64)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 320.2335,225.2171 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(16,35,67)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 320.2335,231.6538 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(20,39,70)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 320.2335,238.0906 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(23,44,74)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 320.2335,244.5273 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(27,49,78)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 320.2335,250.9641 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(30,54,82)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 320.2335,257.4008 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(34,59,86)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 320.2335,263.8375 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(37,64,90)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 320.2335,270.2743 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(40,69,95)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 320.2335,276.7110 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(44,74,100)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 320.2335,283.1478 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(47,78,104)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 320.2335,289.5845 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(50,83,109)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 320.2335,296.0212 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(53,88,114)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 320.2335,302.4580 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(66,107,133)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 313.7968,51.4251 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(63,102,128)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 313.7968,57.8618 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(60,97,123)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 313.7968,64.2986 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(57,93,118)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 313.7968,70.7353 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(53,88,114)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 313.7968,77.1721 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(50,83,109)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 313.7968,83.6088 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(47,78,104)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 313.7968,90.0455 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(44,74,100)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 313.7968,96.4823 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(40,69,95)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 313.7968,102.9190 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(37,64,90)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 313.7968,109.3558 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(34,59,86)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 313.7968,115.7925 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(30,54,82)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 313.7968,122.2292 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(27,49,78)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 313.7968,128.6660 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(23,44,74)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 313.7968,135.1027 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(20,39,70)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 313.7968,141.5395 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(16,35,67)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 313.7968,147.9762 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(12,30,64)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 313.7968,154.4129 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(9,25,61)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 313.7968,160.8497 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(6,22,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 313.7968,167.2864 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(4,18,57)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 313.7968,173.7232 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(3,16,56)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 313.7968,180.1599 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(3,15,56)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 313.7968,186.5966 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(3,16,56)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 313.7968,193.0334 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(4,18,57)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 313.7968,199.4701 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(6,22,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 313.7968,205.9069 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(9,25,61)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 313.7968,212.3436 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(12,30,64)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 313.7968,218.7803 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(16,35,67)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 313.7968,225.2171 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(20,39,70)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 313.7968,231.6538 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(23,44,74)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 313.7968,238.0906 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(27,49,78)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 313.7968,244.5273 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(30,54,82)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 313.7968,250.9641 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(34,59,86)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 313.7968,257.4008 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(37,64,90)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 313.7968,263.8375 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(40,69,95)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 313.7968,270.2743 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(44,74,100)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 313.7968,276.7110 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(47,78,104)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 313.7968,283.1478 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(50,83,109)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 313.7968,289.5845 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(53,88,114)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 313.7968,296.0212 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(57,93,118)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 313.7968,302.4580 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(63,102,128)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 307.3600,51.4251 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(60,97,123)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 307.3600,57.8618 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(57,93,118)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 307.3600,64.2986 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(53,88,114)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 307.3600,70.7353 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(50,83,109)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 307.3600,77.1721 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(47,78,104)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 307.3600,83.6088 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(44,74,100)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 307.3600,90.0455 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(40,69,95)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 307.3600,96.4823 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(37,64,90)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 307.3600,102.9190 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(34,59,86)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 307.3600,109.3558 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(30,54,82)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 307.3600,115.7925 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(27,49,78)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 307.3600,122.2292 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(23,44,74)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 307.3600,128.6660 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(20,39,70)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 307.3600,135.1027 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(16,35,67)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 307.3600,141.5395 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(12,30,64)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 307.3600,147.9762 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(9,25,61)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 307.3600,154.4129 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(6,22,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 307.3600,160.8497 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(4,18,57)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 307.3600,167.2864 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(3,16,56)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 307.3600,173.7232 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(3,15,56)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 307.3600,180.1599 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(3,16,56)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 307.3600,186.5966 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(4,18,57)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 307.3600,193.0334 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(6,22,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 307.3600,199.4701 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(9,25,61)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 307.3600,205.9069 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(12,30,64)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 307.3600,212.3436 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(16,35,67)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 307.3600,218.7803 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(20,39,70)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 307.3600,225.2171 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(23,44,74)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 307.3600,231.6538 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(27,49,78)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 307.3600,238.0906 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(30,54,82)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 307.3600,244.5273 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(34,59,86)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 307.3600,250.9641 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(37,64,90)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 307.3600,257.4008 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(40,69,95)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 307.3600,263.8375 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(44,74,100)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 307.3600,270.2743 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(47,78,104)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 307.3600,276.7110 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(50,83,109)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 307.3600,283.1478 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(53,88,114)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 307.3600,289.5845 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(57,93,118)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 307.3600,296.0212 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(60,97,123)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 307.3600,302.4580 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(60,97,123)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 300.9233,51.4251 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(57,93,118)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 300.9233,57.8618 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(53,88,114)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 300.9233,64.2986 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(50,83,109)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 300.9233,70.7353 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(47,78,104)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 300.9233,77.1721 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(44,74,100)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 300.9233,83.6088 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(40,69,95)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 300.9233,90.0455 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(37,64,90)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 300.9233,96.4823 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(34,59,86)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 300.9233,102.9190 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(30,54,82)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 300.9233,109.3558 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(27,49,78)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 300.9233,115.7925 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(23,44,74)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 300.9233,122.2292 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(20,39,70)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 300.9233,128.6660 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(16,35,67)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 300.9233,135.1027 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(12,30,64)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 300.9233,141.5395 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(9,25,61)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 300.9233,147.9762 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(6,22,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 300.9233,154.4129 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(4,18,57)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 300.9233,160.8497 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(3,16,56)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 300.9233,167.2864 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(3,15,56)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 300.9233,173.7232 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(3,16,56)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 300.9233,180.1599 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(4,18,57)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 300.9233,186.5966 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(6,22,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 300.9233,193.0334 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(9,25,61)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 300.9233,199.4701 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(12,30,64)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 300.9233,205.9069 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(16,35,67)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 300.9233,212.3436 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(20,39,70)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 300.9233,218.7803 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(23,44,74)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 300.9233,225.2171 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(27,49,78)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 300.9233,231.6538 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(30,54,82)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 300.9233,238.0906 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(34,59,86)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 300.9233,244.5273 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(37,64,90)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 300.9233,250.9641 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(40,69,95)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 300.9233,257.4008 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(44,74,100)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 300.9233,263.8375 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(47,78,104)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 300.9233,270.2743 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(50,83,109)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 300.9233,276.7110 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(53,88,114)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 300.9233,283.1478 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(57,93,118)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 300.9233,289.5845 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(60,97,123)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 300.9233,296.0212 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(63,102,128)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 300.9233,302.4580 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(57,93,118)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 294.4865,51.4251 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(53,88,114)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 294.4865,57.8618 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(50,83,109)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 294.4865,64.2986 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(47,78,104)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 294.4865,70.7353 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(44,74,100)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 294.4865,77.1721 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(40,69,95)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 294.4865,83.6088 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(37,64,90)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 294.4865,90.0455 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(34,59,86)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 294.4865,96.4823 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(30,54,82)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 294.4865,102.9190 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(27,49,78)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 294.4865,109.3558 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(23,44,74)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 294.4865,115.7925 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(20,39,70)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 294.4865,122.2292 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(16,35,67)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 294.4865,128.6660 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(12,30,64)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 294.4865,135.1027 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(9,25,61)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 294.4865,141.5395 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(6,22,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 294.4865,147.9762 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(4,18,57)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 294.4865,154.4129 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(3,16,56)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 294.4865,160.8497 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(3,15,56)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 294.4865,167.2864 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(3,16,56)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 294.4865,173.7232 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(4,18,57)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 294.4865,180.1599 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(6,22,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 294.4865,186.5966 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(9,25,61)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 294.4865,193.0334 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(12,30,64)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 294.4865,199.4701 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(16,35,67)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 294.4865,205.9069 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(20,39,70)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 294.4865,212.3436 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(23,44,74)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 294.4865,218.7803 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(27,49,78)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 294.4865,225.2171 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(30,54,82)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 294.4865,231.6538 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(34,59,86)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 294.4865,238.0906 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(37,64,90)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 294.4865,244.5273 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(40,69,95)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 294.4865,250.9641 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(44,74,100)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 294.4865,257.4008 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(47,78,104)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 294.4865,263.8375 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(50,83,109)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 294.4865,270.2743 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(53,88,114)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 294.4865,276.7110 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(57,93,118)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 294.4865,283.1478 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(60,97,123)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 294.4865,289.5845 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(63,102,128)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 294.4865,296.0212 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(66,107,133)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 294.4865,302.4580 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(53,88,114)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 288.0498,51.4251 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(50,83,109)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 288.0498,57.8618 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(47,78,104)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 288.0498,64.2986 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(44,74,100)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 288.0498,70.7353 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(40,69,95)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 288.0498,77.1721 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(37,64,90)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 288.0498,83.6088 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(34,59,86)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 288.0498,90.0455 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(30,54,82)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 288.0498,96.4823 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(27,49,78)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 288.0498,102.9190 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(23,44,74)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 288.0498,109.3558 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(20,39,70)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 288.0498,115.7925 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(16,35,67)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 288.0498,122.2292 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(12,30,64)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 288.0498,128.6660 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(9,25,61)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 288.0498,135.1027 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(6,22,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 288.0498,141.5395 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(4,18,57)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 288.0498,147.9762 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(3,16,56)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 288.0498,154.4129 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(3,15,56)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 288.0498,160.8497 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(3,16,56)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 288.0498,167.2864 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(4,18,57)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 288.0498,173.7232 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(6,22,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 288.0498,180.1599 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(9,25,61)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 288.0498,186.5966 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(12,30,64)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 288.0498,193.0334 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(16,35,67)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 288.0498,199.4701 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(20,39,70)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 288.0498,205.9069 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(23,44,74)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 288.0498,212.3436 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(27,49,78)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 288.0498,218.7803 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(30,54,82)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 288.0498,225.2171 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(34,59,86)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 288.0498,231.6538 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(37,64,90)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 288.0498,238.0906 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(40,69,95)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 288.0498,244.5273 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(44,74,100)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 288.0498,250.9641 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(47,78,104)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 288.0498,257.4008 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(50,83,109)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 288.0498,263.8375 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(53,88,114)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 288.0498,270.2743 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(57,93,118)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 288.0498,276.7110 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(60,97,123)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 288.0498,283.1478 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(63,102,128)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 288.0498,289.5845 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(66,107,133)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 288.0498,296.0212 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(69,111,138)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 288.0498,302.4580 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(50,83,109)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 281.6131,51.4251 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(47,78,104)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 281.6131,57.8618 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(44,74,100)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 281.6131,64.2986 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(40,69,95)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 281.6131,70.7353 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(37,64,90)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 281.6131,77.1721 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(34,59,86)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 281.6131,83.6088 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(30,54,82)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 281.6131,90.0455 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(27,49,78)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 281.6131,96.4823 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(23,44,74)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 281.6131,102.9190 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(20,39,70)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 281.6131,109.3558 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(16,35,67)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 281.6131,115.7925 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(12,30,64)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 281.6131,122.2292 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(9,25,61)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 281.6131,128.6660 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(6,22,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 281.6131,135.1027 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(4,18,57)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 281.6131,141.5395 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(3,16,56)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 281.6131,147.9762 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(3,15,56)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 281.6131,154.4129 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(3,16,56)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 281.6131,160.8497 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(4,18,57)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 281.6131,167.2864 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(6,22,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 281.6131,173.7232 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(9,25,61)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 281.6131,180.1599 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(12,30,64)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 281.6131,186.5966 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(16,35,67)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 281.6131,193.0334 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(20,39,70)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 281.6131,199.4701 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(23,44,74)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 281.6131,205.9069 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(27,49,78)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 281.6131,212.3436 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(30,54,82)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 281.6131,218.7803 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(34,59,86)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 281.6131,225.2171 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(37,64,90)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 281.6131,231.6538 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(40,69,95)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 281.6131,238.0906 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(44,74,100)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 281.6131,244.5273 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(47,78,104)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 281.6131,250.9641 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(50,83,109)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 281.6131,257.4008 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(53,88,114)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 281.6131,263.8375 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(57,93,118)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 281.6131,270.2743 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(60,97,123)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 281.6131,276.7110 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(63,102,128)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 281.6131,283.1478 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(66,107,133)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 281.6131,289.5845 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(69,111,138)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 281.6131,296.0212 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(72,116,143)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 281.6131,302.4580 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(47,78,104)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 275.1763,51.4251 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(44,74,100)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 275.1763,57.8618 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(40,69,95)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 275.1763,64.2986 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(37,64,90)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 275.1763,70.7353 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(34,59,86)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 275.1763,77.1721 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(30,54,82)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 275.1763,83.6088 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(27,49,78)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 275.1763,90.0455 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(23,44,74)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 275.1763,96.4823 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(20,39,70)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 275.1763,102.9190 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(16,35,67)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 275.1763,109.3558 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(12,30,64)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 275.1763,115.7925 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(9,25,61)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 275.1763,122.2292 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(6,22,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 275.1763,128.6660 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(4,18,57)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 275.1763,135.1027 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(3,16,56)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 275.1763,141.5395 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(3,15,56)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 275.1763,147.9762 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(3,16,56)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 275.1763,154.4129 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(4,18,57)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 275.1763,160.8497 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(6,22,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 275.1763,167.2864 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(9,25,61)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 275.1763,173.7232 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(12,30,64)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 275.1763,180.1599 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(16,35,67)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 275.1763,186.5966 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(20,39,70)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 275.1763,193.0334 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(23,44,74)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 275.1763,199.4701 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(27,49,78)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 275.1763,205.9069 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(30,54,82)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 275.1763,212.3436 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(34,59,86)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 275.1763,218.7803 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(37,64,90)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 275.1763,225.2171 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(40,69,95)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 275.1763,231.6538 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(44,74,100)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 275.1763,238.0906 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(47,78,104)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 275.1763,244.5273 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(50,83,109)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 275.1763,250.9641 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(53,88,114)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 275.1763,257.4008 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(57,93,118)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 275.1763,263.8375 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(60,97,123)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 275.1763,270.2743 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(63,102,128)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 275.1763,276.7110 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(66,107,133)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 275.1763,283.1478 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(69,111,138)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 275.1763,289.5845 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(72,116,143)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 275.1763,296.0212 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(76,120,147)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 275.1763,302.4580 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(44,74,100)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 268.7396,51.4251 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(40,69,95)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 268.7396,57.8618 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(37,64,90)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 268.7396,64.2986 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(34,59,86)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 268.7396,70.7353 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(30,54,82)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 268.7396,77.1721 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(27,49,78)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 268.7396,83.6088 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(23,44,74)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 268.7396,90.0455 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(20,39,70)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 268.7396,96.4823 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(16,35,67)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 268.7396,102.9190 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(12,30,64)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 268.7396,109.3558 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(9,25,61)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 268.7396,115.7925 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(6,22,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 268.7396,122.2292 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(4,18,57)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 268.7396,128.6660 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(3,16,56)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 268.7396,135.1027 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(3,15,56)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 268.7396,141.5395 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(3,16,56)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 268.7396,147.9762 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(4,18,57)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 268.7396,154.4129 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(6,22,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 268.7396,160.8497 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(9,25,61)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 268.7396,167.2864 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(12,30,64)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 268.7396,173.7232 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(16,35,67)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 268.7396,180.1599 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(20,39,70)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 268.7396,186.5966 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(23,44,74)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 268.7396,193.0334 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(27,49,78)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 268.7396,199.4701 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(30,54,82)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 268.7396,205.9069 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(34,59,86)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 268.7396,212.3436 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(37,64,90)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 268.7396,218.7803 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(40,69,95)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 268.7396,225.2171 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(44,74,100)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 268.7396,231.6538 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(47,78,104)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 268.7396,238.0906 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(50,83,109)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 268.7396,244.5273 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(53,88,114)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 268.7396,250.9641 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(57,93,118)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 268.7396,257.4008 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(60,97,123)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 268.7396,263.8375 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(63,102,128)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 268.7396,270.2743 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(66,107,133)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 268.7396,276.7110 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(69,111,138)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 268.7396,283.1478 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(72,116,143)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 268.7396,289.5845 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(76,120,147)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 268.7396,296.0212 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(79,125,152)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 268.7396,302.4580 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(40,69,95)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 262.3028,51.4251 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(37,64,90)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 262.3028,57.8618 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(34,59,86)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 262.3028,64.2986 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(30,54,82)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 262.3028,70.7353 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(27,49,78)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 262.3028,77.1721 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(23,44,74)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 262.3028,83.6088 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(20,39,70)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 262.3028,90.0455 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(16,35,67)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 262.3028,96.4823 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(12,30,64)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 262.3028,102.9190 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(9,25,61)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 262.3028,109.3558 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(6,22,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 262.3028,115.7925 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(4,18,57)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 262.3028,122.2292 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(3,16,56)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 262.3028,128.6660 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(3,15,56)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 262.3028,135.1027 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(3,16,56)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 262.3028,141.5395 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(4,18,57)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 262.3028,147.9762 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(6,22,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 262.3028,154.4129 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(9,25,61)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 262.3028,160.8497 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(12,30,64)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 262.3028,167.2864 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(16,35,67)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 262.3028,173.7232 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(20,39,70)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 262.3028,180.1599 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(23,44,74)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 262.3028,186.5966 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(27,49,78)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 262.3028,193.0334 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(30,54,82)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 262.3028,199.4701 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(34,59,86)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 262.3028,205.9069 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(37,64,90)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 262.3028,212.3436 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(40,69,95)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 262.3028,218.7803 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(44,74,100)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 262.3028,225.2171 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(47,78,104)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 262.3028,231.6538 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(50,83,109)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 262.3028,238.0906 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(53,88,114)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 262.3028,244.5273 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(57,93,118)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 262.3028,250.9641 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(60,97,123)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 262.3028,257.4008 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(63,102,128)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 262.3028,263.8375 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(66,107,133)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 262.3028,270.2743 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(69,111,138)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 262.3028,276.7110 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(72,116,143)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 262.3028,283.1478 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(76,120,147)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 262.3028,289.5845 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(79,125,152)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 262.3028,296.0212 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(82,129,157)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 262.3028,302.4580 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(37,64,90)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 255.8661,51.4251 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(34,59,86)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 255.8661,57.8618 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(30,54,82)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 255.8661,64.2986 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(27,49,78)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 255.8661,70.7353 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(23,44,74)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 255.8661,77.1721 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(20,39,70)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 255.8661,83.6088 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(16,35,67)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 255.8661,90.0455 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(12,30,64)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 255.8661,96.4823 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(9,25,61)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 255.8661,102.9190 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(6,22,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 255.8661,109.3558 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(4,18,57)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 255.8661,115.7925 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(3,16,56)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 255.8661,122.2292 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(3,15,56)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 255.8661,128.6660 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(3,16,56)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 255.8661,135.1027 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(4,18,57)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 255.8661,141.5395 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(6,22,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 255.8661,147.9762 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(9,25,61)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 255.8661,154.4129 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(12,30,64)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 255.8661,160.8497 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(16,35,67)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 255.8661,167.2864 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(20,39,70)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 255.8661,173.7232 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(23,44,74)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 255.8661,180.1599 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(27,49,78)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 255.8661,186.5966 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(30,54,82)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 255.8661,193.0334 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(34,59,86)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 255.8661,199.4701 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(37,64,90)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 255.8661,205.9069 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(40,69,95)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 255.8661,212.3436 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(44,74,100)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 255.8661,218.7803 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(47,78,104)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 255.8661,225.2171 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(50,83,109)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 255.8661,231.6538 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(53,88,114)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 255.8661,238.0906 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(57,93,118)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 255.8661,244.5273 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(60,97,123)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 255.8661,250.9641 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(63,102,128)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 255.8661,257.4008 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(66,107,133)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 255.8661,263.8375 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(69,111,138)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 255.8661,270.2743 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(72,116,143)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 255.8661,276.7110 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(76,120,147)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 255.8661,283.1478 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(79,125,152)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 255.8661,289.5845 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(82,129,157)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 255.8661,296.0212 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(85,134,162)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 255.8661,302.4580 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(34,59,86)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 249.4294,51.4251 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(30,54,82)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 249.4294,57.8618 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(27,49,78)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 249.4294,64.2986 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(23,44,74)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 249.4294,70.7353 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(20,39,70)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 249.4294,77.1721 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(16,35,67)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 249.4294,83.6088 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(12,30,64)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 249.4294,90.0455 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(9,25,61)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 249.4294,96.4823 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(6,22,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 249.4294,102.9190 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(4,18,57)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 249.4294,109.3558 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(3,16,56)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 249.4294,115.7925 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(3,15,56)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 249.4294,122.2292 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(3,16,56)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 249.4294,128.6660 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(4,18,57)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 249.4294,135.1027 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(6,22,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 249.4294,141.5395 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(9,25,61)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 249.4294,147.9762 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(12,30,64)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 249.4294,154.4129 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(16,35,67)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 249.4294,160.8497 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(20,39,70)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 249.4294,167.2864 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(23,44,74)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 249.4294,173.7232 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(27,49,78)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 249.4294,180.1599 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(30,54,82)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 249.4294,186.5966 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(34,59,86)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 249.4294,193.0334 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(37,64,90)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 249.4294,199.4701 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(40,69,95)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 249.4294,205.9069 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(44,74,100)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 249.4294,212.3436 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(47,78,104)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 249.4294,218.7803 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(50,83,109)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 249.4294,225.2171 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(53,88,114)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 249.4294,231.6538 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(57,93,118)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 249.4294,238.0906 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(60,97,123)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 249.4294,244.5273 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(63,102,128)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 249.4294,250.9641 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(66,107,133)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 249.4294,257.4008 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(69,111,138)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 249.4294,263.8375 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(72,116,143)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 249.4294,270.2743 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(76,120,147)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 249.4294,276.7110 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(79,125,152)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 249.4294,283.1478 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(82,129,157)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 249.4294,289.5845 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(85,134,162)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 249.4294,296.0212 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(88,138,167)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 249.4294,302.4580 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(30,54,82)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 242.9926,51.4251 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(27,49,78)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 242.9926,57.8618 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(23,44,74)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 242.9926,64.2986 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(20,39,70)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 242.9926,70.7353 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(16,35,67)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 242.9926,77.1721 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(12,30,64)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 242.9926,83.6088 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(9,25,61)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 242.9926,90.0455 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(6,22,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 242.9926,96.4823 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(4,18,57)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 242.9926,102.9190 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(3,16,56)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 242.9926,109.3558 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(3,15,56)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 242.9926,115.7925 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(3,16,56)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 242.9926,122.2292 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(4,18,57)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 242.9926,128.6660 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(6,22,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 242.9926,135.1027 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(9,25,61)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 242.9926,141.5395 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(12,30,64)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 242.9926,147.9762 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(16,35,67)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 242.9926,154.4129 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(20,39,70)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 242.9926,160.8497 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(23,44,74)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 242.9926,167.2864 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(27,49,78)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 242.9926,173.7232 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(30,54,82)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 242.9926,180.1599 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(34,59,86)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 242.9926,186.5966 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(37,64,90)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 242.9926,193.0334 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(40,69,95)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 242.9926,199.4701 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(44,74,100)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 242.9926,205.9069 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(47,78,104)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 242.9926,212.3436 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(50,83,109)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 242.9926,218.7803 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(53,88,114)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 242.9926,225.2171 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(57,93,118)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 242.9926,231.6538 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(60,97,123)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 242.9926,238.0906 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(63,102,128)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 242.9926,244.5273 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(66,107,133)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 242.9926,250.9641 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(69,111,138)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 242.9926,257.4008 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(72,116,143)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 242.9926,263.8375 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(76,120,147)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 242.9926,270.2743 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(79,125,152)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 242.9926,276.7110 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(82,129,157)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 242.9926,283.1478 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(85,134,162)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 242.9926,289.5845 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(88,138,167)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 242.9926,296.0212 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(91,143,172)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 242.9926,302.4580 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(27,49,78)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 236.5559,51.4251 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(23,44,74)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 236.5559,57.8618 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(20,39,70)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 236.5559,64.2986 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(16,35,67)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 236.5559,70.7353 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(12,30,64)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 236.5559,77.1721 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(9,25,61)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 236.5559,83.6088 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(6,22,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 236.5559,90.0455 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(4,18,57)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 236.5559,96.4823 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(3,16,56)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 236.5559,102.9190 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(3,15,56)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 236.5559,109.3558 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(3,16,56)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 236.5559,115.7925 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(4,18,57)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 236.5559,122.2292 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(6,22,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 236.5559,128.6660 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(9,25,61)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 236.5559,135.1027 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(12,30,64)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 236.5559,141.5395 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(16,35,67)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 236.5559,147.9762 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(20,39,70)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 236.5559,154.4129 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(23,44,74)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 236.5559,160.8497 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(27,49,78)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 236.5559,167.2864 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(30,54,82)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 236.5559,173.7232 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(34,59,86)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 236.5559,180.1599 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(37,64,90)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 236.5559,186.5966 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(40,69,95)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 236.5559,193.0334 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(44,74,100)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 236.5559,199.4701 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(47,78,104)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 236.5559,205.9069 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(50,83,109)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 236.5559,212.3436 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(53,88,114)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 236.5559,218.7803 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(57,93,118)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 236.5559,225.2171 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(60,97,123)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 236.5559,231.6538 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(63,102,128)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 236.5559,238.0906 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(66,107,133)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 236.5559,244.5273 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(69,111,138)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 236.5559,250.9641 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(72,116,143)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 236.5559,257.4008 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(76,120,147)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 236.5559,263.8375 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(79,125,152)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 236.5559,270.2743 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(82,129,157)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 236.5559,276.7110 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(85,134,162)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 236.5559,283.1478 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(88,138,167)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 236.5559,289.5845 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(91,143,172)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 236.5559,296.0212 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(94,147,176)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 236.5559,302.4580 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(23,44,74)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 230.1191,51.4251 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(20,39,70)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 230.1191,57.8618 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(16,35,67)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 230.1191,64.2986 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(12,30,64)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 230.1191,70.7353 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(9,25,61)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 230.1191,77.1721 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(6,22,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 230.1191,83.6088 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(4,18,57)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 230.1191,90.0455 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(3,16,56)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 230.1191,96.4823 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(3,15,56)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 230.1191,102.9190 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(3,16,56)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 230.1191,109.3558 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(4,18,57)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 230.1191,115.7925 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(6,22,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 230.1191,122.2292 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(9,25,61)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 230.1191,128.6660 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(12,30,64)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 230.1191,135.1027 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(16,35,67)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 230.1191,141.5395 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(20,39,70)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 230.1191,147.9762 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(23,44,74)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 230.1191,154.4129 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(27,49,78)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 230.1191,160.8497 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(30,54,82)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 230.1191,167.2864 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(34,59,86)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 230.1191,173.7232 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(37,64,90)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 230.1191,180.1599 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(40,69,95)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 230.1191,186.5966 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(44,74,100)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 230.1191,193.0334 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(47,78,104)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 230.1191,199.4701 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(50,83,109)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 230.1191,205.9069 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(53,88,114)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 230.1191,212.3436 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(57,93,118)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 230.1191,218.7803 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(60,97,123)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 230.1191,225.2171 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(63,102,128)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 230.1191,231.6538 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(66,107,133)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 230.1191,238.0906 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(69,111,138)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 230.1191,244.5273 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(72,116,143)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 230.1191,250.9641 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(76,120,147)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 230.1191,257.4008 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(79,125,152)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 230.1191,263.8375 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(82,129,157)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 230.1191,270.2743 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(85,134,162)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 230.1191,276.7110 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(88,138,167)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 230.1191,283.1478 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(91,143,172)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 230.1191,289.5845 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(94,147,176)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 230.1191,296.0212 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(97,152,181)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 230.1191,302.4580 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(20,39,70)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 223.6824,51.4251 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(16,35,67)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 223.6824,57.8618 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(12,30,64)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 223.6824,64.2986 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(9,25,61)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 223.6824,70.7353 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(6,22,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 223.6824,77.1721 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(4,18,57)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 223.6824,83.6088 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(3,16,56)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 223.6824,90.0455 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(3,15,56)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 223.6824,96.4823 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(3,16,56)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 223.6824,102.9190 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(4,18,57)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 223.6824,109.3558 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(6,22,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 223.6824,115.7925 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(9,25,61)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 223.6824,122.2292 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(12,30,64)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 223.6824,128.6660 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(16,35,67)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 223.6824,135.1027 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(20,39,70)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 223.6824,141.5395 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(23,44,74)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 223.6824,147.9762 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(27,49,78)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 223.6824,154.4129 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(30,54,82)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 223.6824,160.8497 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(34,59,86)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 223.6824,167.2864 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(37,64,90)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 223.6824,173.7232 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(40,69,95)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 223.6824,180.1599 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(44,74,100)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 223.6824,186.5966 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(47,78,104)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 223.6824,193.0334 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(50,83,109)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 223.6824,199.4701 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(53,88,114)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 223.6824,205.9069 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(57,93,118)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 223.6824,212.3436 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(60,97,123)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 223.6824,218.7803 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(63,102,128)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 223.6824,225.2171 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(66,107,133)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 223.6824,231.6538 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(69,111,138)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 223.6824,238.0906 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(72,116,143)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 223.6824,244.5273 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(76,120,147)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 223.6824,250.9641 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(79,125,152)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 223.6824,257.4008 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(82,129,157)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 223.6824,263.8375 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(85,134,162)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 223.6824,270.2743 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(88,138,167)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 223.6824,276.7110 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(91,143,172)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 223.6824,283.1478 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(94,147,176)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 223.6824,289.5845 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(97,152,181)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 223.6824,296.0212 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(100,156,186)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 223.6824,302.4580 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(16,35,67)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 217.2457,51.4251 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(12,30,64)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 217.2457,57.8618 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(9,25,61)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 217.2457,64.2986 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(6,22,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 217.2457,70.7353 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(4,18,57)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 217.2457,77.1721 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(3,16,56)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 217.2457,83.6088 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(3,15,56)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 217.2457,90.0455 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(3,16,56)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 217.2457,96.4823 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(4,18,57)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 217.2457,102.9190 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(6,22,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 217.2457,109.3558 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(9,25,61)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 217.2457,115.7925 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(12,30,64)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 217.2457,122.2292 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(16,35,67)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 217.2457,128.6660 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(20,39,70)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 217.2457,135.1027 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(23,44,74)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 217.2457,141.5395 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(27,49,78)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 217.2457,147.9762 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(30,54,82)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 217.2457,154.4129 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(34,59,86)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 217.2457,160.8497 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(37,64,90)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 217.2457,167.2864 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(40,69,95)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 217.2457,173.7232 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(44,74,100)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 217.2457,180.1599 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(47,78,104)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 217.2457,186.5966 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(50,83,109)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 217.2457,193.0334 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(53,88,114)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 217.2457,199.4701 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(57,93,118)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 217.2457,205.9069 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(60,97,123)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 217.2457,212.3436 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(63,102,128)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 217.2457,218.7803 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(66,107,133)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 217.2457,225.2171 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(69,111,138)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 217.2457,231.6538 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(72,116,143)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 217.2457,238.0906 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(76,120,147)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 217.2457,244.5273 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(79,125,152)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 217.2457,250.9641 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(82,129,157)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 217.2457,257.4008 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(85,134,162)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 217.2457,263.8375 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(88,138,167)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 217.2457,270.2743 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(91,143,172)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 217.2457,276.7110 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(94,147,176)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 217.2457,283.1478 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(97,152,181)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 217.2457,289.5845 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(100,156,186)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 217.2457,296.0212 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(103,160,191)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 217.2457,302.4580 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(12,30,64)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 210.8089,51.4251 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(9,25,61)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 210.8089,57.8618 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(6,22,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 210.8089,64.2986 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(4,18,57)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 210.8089,70.7353 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(3,16,56)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 210.8089,77.1721 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(3,15,56)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 210.8089,83.6088 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(3,16,56)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 210.8089,90.0455 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(4,18,57)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 210.8089,96.4823 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(6,22,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 210.8089,102.9190 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(9,25,61)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 210.8089,109.3558 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(12,30,64)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 210.8089,115.7925 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(16,35,67)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 210.8089,122.2292 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(20,39,70)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 210.8089,128.6660 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(23,44,74)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 210.8089,135.1027 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(27,49,78)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 210.8089,141.5395 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(30,54,82)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 210.8089,147.9762 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(34,59,86)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 210.8089,154.4129 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(37,64,90)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 210.8089,160.8497 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(40,69,95)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 210.8089,167.2864 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(44,74,100)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 210.8089,173.7232 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(47,78,104)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 210.8089,180.1599 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(50,83,109)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 210.8089,186.5966 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(53,88,114)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 210.8089,193.0334 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(57,93,118)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 210.8089,199.4701 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(60,97,123)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 210.8089,205.9069 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(63,102,128)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 210.8089,212.3436 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(66,107,133)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 210.8089,218.7803 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(69,111,138)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 210.8089,225.2171 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(72,116,143)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 210.8089,231.6538 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(76,120,147)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 210.8089,238.0906 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(79,125,152)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 210.8089,244.5273 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(82,129,157)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 210.8089,250.9641 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(85,134,162)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 210.8089,257.4008 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(88,138,167)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 210.8089,263.8375 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(91,143,172)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 210.8089,270.2743 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(94,147,176)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 210.8089,276.7110 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(97,152,181)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 210.8089,283.1478 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(100,156,186)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 210.8089,289.5845 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(103,160,191)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 210.8089,296.0212 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(105,165,196)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 210.8089,302.4580 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(9,25,61)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 204.3722,51.4251 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(6,22,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 204.3722,57.8618 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(4,18,57)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 204.3722,64.2986 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(3,16,56)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 204.3722,70.7353 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(3,15,56)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 204.3722,77.1721 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(3,16,56)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 204.3722,83.6088 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(4,18,57)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 204.3722,90.0455 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(6,22,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 204.3722,96.4823 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(9,25,61)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 204.3722,102.9190 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(12,30,64)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 204.3722,109.3558 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(16,35,67)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 204.3722,115.7925 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(20,39,70)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 204.3722,122.2292 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(23,44,74)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 204.3722,128.6660 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(27,49,78)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 204.3722,135.1027 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(30,54,82)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 204.3722,141.5395 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(34,59,86)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 204.3722,147.9762 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(37,64,90)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 204.3722,154.4129 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(40,69,95)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 204.3722,160.8497 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(44,74,100)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 204.3722,167.2864 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(47,78,104)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 204.3722,173.7232 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(50,83,109)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 204.3722,180.1599 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(53,88,114)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 204.3722,186.5966 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(57,93,118)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 204.3722,193.0334 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(60,97,123)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 204.3722,199.4701 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(63,102,128)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 204.3722,205.9069 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(66,107,133)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 204.3722,212.3436 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(69,111,138)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 204.3722,218.7803 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(72,116,143)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 204.3722,225.2171 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(76,120,147)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 204.3722,231.6538 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(79,125,152)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 204.3722,238.0906 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(82,129,157)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 204.3722,244.5273 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(85,134,162)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 204.3722,250.9641 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(88,138,167)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 204.3722,257.4008 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(91,143,172)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 204.3722,263.8375 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(94,147,176)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 204.3722,270.2743 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(97,152,181)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 204.3722,276.7110 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(100,156,186)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 204.3722,283.1478 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(103,160,191)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 204.3722,289.5845 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(105,165,196)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 204.3722,296.0212 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(108,169,200)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 204.3722,302.4580 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(6,22,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 197.9354,51.4251 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(4,18,57)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 197.9354,57.8618 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(3,16,56)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 197.9354,64.2986 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(3,15,56)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 197.9354,70.7353 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(3,16,56)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 197.9354,77.1721 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(4,18,57)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 197.9354,83.6088 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(6,22,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 197.9354,90.0455 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(9,25,61)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 197.9354,96.4823 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(12,30,64)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 197.9354,102.9190 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(16,35,67)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 197.9354,109.3558 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(20,39,70)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 197.9354,115.7925 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(23,44,74)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 197.9354,122.2292 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(27,49,78)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 197.9354,128.6660 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(30,54,82)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 197.9354,135.1027 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(34,59,86)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 197.9354,141.5395 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(37,64,90)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 197.9354,147.9762 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(40,69,95)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 197.9354,154.4129 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(44,74,100)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 197.9354,160.8497 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(47,78,104)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 197.9354,167.2864 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(50,83,109)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 197.9354,173.7232 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(53,88,114)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 197.9354,180.1599 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(57,93,118)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 197.9354,186.5966 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(60,97,123)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 197.9354,193.0334 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(63,102,128)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 197.9354,199.4701 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(66,107,133)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 197.9354,205.9069 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(69,111,138)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 197.9354,212.3436 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(72,116,143)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 197.9354,218.7803 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(76,120,147)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 197.9354,225.2171 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(79,125,152)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 197.9354,231.6538 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(82,129,157)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 197.9354,238.0906 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(85,134,162)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 197.9354,244.5273 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(88,138,167)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 197.9354,250.9641 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(91,143,172)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 197.9354,257.4008 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(94,147,176)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 197.9354,263.8375 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(97,152,181)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 197.9354,270.2743 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(100,156,186)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 197.9354,276.7110 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(103,160,191)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 197.9354,283.1478 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(105,165,196)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 197.9354,289.5845 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(108,169,200)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 197.9354,296.0212 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(111,173,205)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 197.9354,302.4580 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(4,18,57)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 191.4987,51.4251 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(3,16,56)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 191.4987,57.8618 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(3,15,56)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 191.4987,64.2986 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(3,16,56)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 191.4987,70.7353 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(4,18,57)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 191.4987,77.1721 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(6,22,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 191.4987,83.6088 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(9,25,61)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 191.4987,90.0455 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(12,30,64)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 191.4987,96.4823 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(16,35,67)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 191.4987,102.9190 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(20,39,70)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 191.4987,109.3558 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(23,44,74)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 191.4987,115.7925 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(27,49,78)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 191.4987,122.2292 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(30,54,82)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 191.4987,128.6660 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(34,59,86)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 191.4987,135.1027 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(37,64,90)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 191.4987,141.5395 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(40,69,95)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 191.4987,147.9762 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(44,74,100)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 191.4987,154.4129 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(47,78,104)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 191.4987,160.8497 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(50,83,109)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 191.4987,167.2864 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(53,88,114)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 191.4987,173.7232 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(57,93,118)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 191.4987,180.1599 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(60,97,123)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 191.4987,186.5966 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(63,102,128)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 191.4987,193.0334 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(66,107,133)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 191.4987,199.4701 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(69,111,138)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 191.4987,205.9069 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(72,116,143)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 191.4987,212.3436 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(76,120,147)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 191.4987,218.7803 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(79,125,152)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 191.4987,225.2171 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(82,129,157)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 191.4987,231.6538 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(85,134,162)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 191.4987,238.0906 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(88,138,167)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 191.4987,244.5273 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(91,143,172)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 191.4987,250.9641 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(94,147,176)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 191.4987,257.4008 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(97,152,181)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 191.4987,263.8375 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(100,156,186)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 191.4987,270.2743 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(103,160,191)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 191.4987,276.7110 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(105,165,196)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 191.4987,283.1478 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(108,169,200)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 191.4987,289.5845 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(111,173,205)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 191.4987,296.0212 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(114,178,210)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 191.4987,302.4580 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(3,16,56)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 185.0620,51.4251 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(3,15,56)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 185.0620,57.8618 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(3,16,56)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 185.0620,64.2986 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(4,18,57)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 185.0620,70.7353 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(6,22,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 185.0620,77.1721 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(9,25,61)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 185.0620,83.6088 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(12,30,64)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 185.0620,90.0455 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(16,35,67)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 185.0620,96.4823 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(20,39,70)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 185.0620,102.9190 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(23,44,74)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 185.0620,109.3558 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(27,49,78)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 185.0620,115.7925 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(30,54,82)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 185.0620,122.2292 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(34,59,86)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 185.0620,128.6660 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(37,64,90)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 185.0620,135.1027 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(40,69,95)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 185.0620,141.5395 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(44,74,100)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 185.0620,147.9762 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(47,78,104)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 185.0620,154.4129 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(50,83,109)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 185.0620,160.8497 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(53,88,114)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 185.0620,167.2864 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(57,93,118)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 185.0620,173.7232 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(60,97,123)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 185.0620,180.1599 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(63,102,128)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 185.0620,186.5966 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(66,107,133)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 185.0620,193.0334 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(69,111,138)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 185.0620,199.4701 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(72,116,143)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 185.0620,205.9069 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(76,120,147)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 185.0620,212.3436 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(79,125,152)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 185.0620,218.7803 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(82,129,157)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 185.0620,225.2171 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(85,134,162)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 185.0620,231.6538 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(88,138,167)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 185.0620,238.0906 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(91,143,172)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 185.0620,244.5273 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(94,147,176)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 185.0620,250.9641 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(97,152,181)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 185.0620,257.4008 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(100,156,186)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 185.0620,263.8375 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(103,160,191)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 185.0620,270.2743 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(105,165,196)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 185.0620,276.7110 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(108,169,200)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 185.0620,283.1478 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(111,173,205)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 185.0620,289.5845 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(114,178,210)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 185.0620,296.0212 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(117,182,215)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 185.0620,302.4580 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(3,15,56)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 178.6252,51.4251 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(3,16,56)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 178.6252,57.8618 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(4,18,57)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 178.6252,64.2986 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(6,22,59)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 178.6252,70.7353 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(9,25,61)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 178.6252,77.1721 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(12,30,64)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 178.6252,83.6088 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(16,35,67)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 178.6252,90.0455 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(20,39,70)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 178.6252,96.4823 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(23,44,74)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 178.6252,102.9190 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(27,49,78)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 178.6252,109.3558 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(30,54,82)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 178.6252,115.7925 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(34,59,86)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 178.6252,122.2292 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(37,64,90)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 178.6252,128.6660 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(40,69,95)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 178.6252,135.1027 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(44,74,100)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 178.6252,141.5395 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(47,78,104)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 178.6252,147.9762 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(50,83,109)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 178.6252,154.4129 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(53,88,114)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 178.6252,160.8497 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(57,93,118)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 178.6252,167.2864 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(60,97,123)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 178.6252,173.7232 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(63,102,128)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 178.6252,180.1599 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(66,107,133)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 178.6252,186.5966 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(69,111,138)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 178.6252,193.0334 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(72,116,143)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 178.6252,199.4701 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(76,120,147)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 178.6252,205.9069 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(79,125,152)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 178.6252,212.3436 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(82,129,157)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 178.6252,218.7803 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(85,134,162)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 178.6252,225.2171 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(88,138,167)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 178.6252,231.6538 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(91,143,172)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 178.6252,238.0906 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(94,147,176)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 178.6252,244.5273 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(97,152,181)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 178.6252,250.9641 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(100,156,186)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 178.6252,257.4008 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(103,160,191)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 178.6252,263.8375 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(105,165,196)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 178.6252,270.2743 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(108,169,200)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 178.6252,276.7110 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(111,173,205)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 178.6252,283.1478 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(114,178,210)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 178.6252,289.5845 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(117,182,215)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 178.6252,296.0212 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(120,186,219)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 178.6252,302.4580 l -0.0000,-6.4367 h -6.4367 l -0.0000,6.4367 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 71.5384,59.4581 l -44.1818,0.0000 l -0.0000,242.9998 l 44.1818,0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" font-size="40.165261168603124px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(31,119,180)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(0.0000,-1.0000,1.0000,0.0000,49.4476,302.4580)" stroke="none" text-anchor="start">Pixel Chart
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 567.4919,297.6536 l -0.0000,-44.1818 h -88.3636 l -0.0000,44.1818 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.63" font-size="40.165261168603124px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,523.3101,275.5627)" stroke="none" text-anchor="middle">blue
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.2" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(76,76,76)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 473.9789,277.9829 l -0.0000,-12.8735 h -12.8735 l -0.0000,12.8735 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 545.4010,245.7477 l -0.0000,-44.1818 h -66.2727 l -0.0000,44.1818 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.63" font-size="40.165261168603124px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,512.2647,223.6568)" stroke="none" text-anchor="middle">red
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 473.9789,226.0770 l -0.0000,-12.8735 h -12.8735 l -0.0000,12.8735 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.2" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.9187065230579992" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 572.8112,302.4580 l -0.0000,-105.6964 h -117.0251 l -0.0000,105.6964 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.1" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 128.7688,302.4580 l -0.0000,-257.4696 h -5.1494 l -0.0000,257.4696 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 117.1827,55.4313 l -0.0000,-17.6727 h -26.5091 l -0.0000,17.6727 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="16.066104467441246px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,103.9281,46.5950)" stroke="none" text-anchor="middle">0.5
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.296766307644998" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 121.0447,44.9884 h 7.7241 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 117.1827,81.1783 l -0.0000,-17.6727 h -26.5091 l -0.0000,17.6727 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="16.066104467441246px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,103.9281,72.3419)" stroke="none" text-anchor="middle">0.4
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.296766307644998" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 121.0447,70.7353 h 7.7241 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 117.1827,106.9252 l -0.0000,-17.6727 h -26.5091 l -0.0000,17.6727 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="16.066104467441246px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,103.9281,98.0889)" stroke="none" text-anchor="middle">0.3
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.296766307644998" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 121.0447,96.4823 h 7.7241 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 117.1827,132.6722 l -0.0000,-17.6727 h -26.5091 l -0.0000,17.6727 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="16.066104467441246px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,103.9281,123.8359)" stroke="none" text-anchor="middle">0.2
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.296766307644998" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 121.0447,122.2292 h 7.7241 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 117.1827,158.4192 l -0.0000,-17.6727 h -26.5091 l -0.0000,17.6727 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="16.066104467441246px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,103.9281,149.5828)" stroke="none" text-anchor="middle">0.1
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.296766307644998" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 121.0447,147.9762 h 7.7241 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 117.1827,184.1661 l -0.0000,-17.6727 h -26.5091 l -0.0000,17.6727 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="16.066104467441246px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,103.9281,175.3298)" stroke="none" text-anchor="middle">0.0
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.296766307644998" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 121.0447,173.7232 h 7.7241 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 117.1827,209.9131 l -0.0000,-17.6727 h -35.3454 l -0.0000,17.6727 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="16.066104467441246px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,99.5099,201.0767)" stroke="none" text-anchor="middle">-0.1
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.296766307644998" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 121.0447,199.4701 h 7.7241 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 117.1827,235.6601 l -0.0000,-17.6727 h -35.3454 l -0.0000,17.6727 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="16.066104467441246px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,99.5099,226.8237)" stroke="none" text-anchor="middle">-0.2
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.296766307644998" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 121.0447,225.2171 h 7.7241 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 117.1827,261.4070 l -0.0000,-17.6727 h -35.3454 l -0.0000,17.6727 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="16.066104467441246px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,99.5099,252.5707)" stroke="none" text-anchor="middle">-0.3
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.296766307644998" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 121.0447,250.9641 h 7.7241 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 117.1827,287.1540 l -0.0000,-17.6727 h -35.3454 l -0.0000,17.6727 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="16.066104467441246px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,99.5099,278.3176)" stroke="none" text-anchor="middle">-0.4
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.296766307644998" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 121.0447,276.7110 h 7.7241 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 117.1827,312.9009 l -0.0000,-17.6727 h -35.3454 l -0.0000,17.6727 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="16.066104467441246px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,99.5099,304.0646)" stroke="none" text-anchor="middle">-0.5
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.296766307644998" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 121.0447,302.4580 h 7.7241 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.1" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 429.6581,333.3543 l -0.0000,-5.1494 h -257.4696 l -0.0000,5.1494 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 442.9126,357.4638 l -0.0000,-17.6727 h -26.5091 l -0.0000,17.6727 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="16.066104467441246px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,429.6581,348.6274)" stroke="none" text-anchor="middle">0.5
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.296766307644998" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 429.6581,328.2049 v 7.7241 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 417.1657,357.4638 l -0.0000,-17.6727 h -26.5091 l -0.0000,17.6727 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="16.066104467441246px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,403.9111,348.6274)" stroke="none" text-anchor="middle">0.4
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.296766307644998" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 403.9111,328.2049 v 7.7241 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 391.4187,357.4638 l -0.0000,-17.6727 h -26.5091 l -0.0000,17.6727 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="16.066104467441246px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,378.1642,348.6274)" stroke="none" text-anchor="middle">0.3
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.296766307644998" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 378.1642,328.2049 v 7.7241 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 365.6717,357.4638 l -0.0000,-17.6727 h -26.5091 l -0.0000,17.6727 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="16.066104467441246px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,352.4172,348.6274)" stroke="none" text-anchor="middle">0.2
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.296766307644998" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 352.4172,328.2049 v 7.7241 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 339.9248,357.4638 l -0.0000,-17.6727 h -26.5091 l -0.0000,17.6727 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="16.066104467441246px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,326.6702,348.6274)" stroke="none" text-anchor="middle">0.1
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.296766307644998" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 326.6702,328.2049 v 7.7241 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 314.1778,357.4638 l -0.0000,-17.6727 h -26.5091 l -0.0000,17.6727 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="16.066104467441246px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,300.9233,348.6274)" stroke="none" text-anchor="middle">0.0
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.296766307644998" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 300.9233,328.2049 v 7.7241 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 292.8490,357.4638 l -0.0000,-17.6727 h -35.3454 l -0.0000,17.6727 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="16.066104467441246px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,275.1763,348.6274)" stroke="none" text-anchor="middle">-0.1
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.296766307644998" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 275.1763,328.2049 v 7.7241 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 267.1021,357.4638 l -0.0000,-17.6727 h -35.3454 l -0.0000,17.6727 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="16.066104467441246px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,249.4294,348.6274)" stroke="none" text-anchor="middle">-0.2
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.296766307644998" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 249.4294,328.2049 v 7.7241 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 241.3551,357.4638 l -0.0000,-17.6727 h -35.3454 l -0.0000,17.6727 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="16.066104467441246px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,223.6824,348.6274)" stroke="none" text-anchor="middle">-0.3
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.296766307644998" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 223.6824,328.2049 v 7.7241 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 215.6082,357.4638 l -0.0000,-17.6727 h -35.3454 l -0.0000,17.6727 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="16.066104467441246px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,197.9354,348.6274)" stroke="none" text-anchor="middle">-0.4
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.296766307644998" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 197.9354,328.2049 v 7.7241 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 189.8612,357.4638 l -0.0000,-17.6727 h -35.3454 l -0.0000,17.6727 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="16.066104467441246px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,172.1885,348.6274)" stroke="none" text-anchor="middle">-0.5
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.296766307644998" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 172.1885,328.2049 v 7.7241 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 429.6581,302.4580 l -0.0000,-257.4696 h -257.4696 l -0.0000,257.4696 Z"/>
-  </g>
-</svg>
diff --git a/other/pixelsExample.svg b/other/pixelsExample.svg
--- a/other/pixelsExample.svg
+++ b/other/pixelsExample.svg
@@ -7,301 +7,301 @@
   <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 271.4577,78.2852 l -0.0000,-4.7630 h -4.7630 l -0.0000,4.7630 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.99" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.99" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,164,217)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 269.0761,74.1658 l -0.0000,-4.7630 h -4.7630 l -0.0000,4.7630 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.98" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.98" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(92,163,216)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 266.6946,69.8288 l -0.0000,-4.7630 h -4.7630 l -0.0000,4.7630 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.97" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.97" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(92,163,215)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 264.3131,65.3173 l -0.0000,-4.7630 h -4.7630 l -0.0000,4.7630 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.96" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.96" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(91,162,214)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 261.9316,60.6765 l -0.0000,-4.7630 h -4.7630 l -0.0000,4.7630 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.9500000000000001" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.9500000000000001" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(91,161,213)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 259.5501,55.9527 l -0.0000,-4.7630 h -4.7630 l -0.0000,4.7630 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.9400000000000001" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.9400000000000001" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(90,160,212)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 257.1685,51.1931 l -0.0000,-4.7630 h -4.7630 l -0.0000,4.7630 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.93" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.93" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(90,160,211)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 254.7870,46.4454 l -0.0000,-4.7630 h -4.7630 l -0.0000,4.7630 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.92" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.92" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(89,159,210)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 252.4055,41.7568 l -0.0000,-4.7630 h -4.7630 l -0.0000,4.7630 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.91" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.91" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(89,158,209)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 250.0240,37.1744 l -0.0000,-4.7630 h -4.7630 l -0.0000,4.7630 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.9" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.9" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(88,157,208)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 247.6424,32.7438 l -0.0000,-4.7630 h -4.7630 l -0.0000,4.7630 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.89" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.89" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(88,157,207)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 245.2609,28.5093 l -0.0000,-4.7630 h -4.7630 l -0.0000,4.7630 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.88" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.88" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(88,156,206)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 242.8794,24.5133 l -0.0000,-4.7630 h -4.7630 l -0.0000,4.7630 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.87" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.87" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(87,155,205)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 240.4979,20.7957 l -0.0000,-4.7630 h -4.7630 l -0.0000,4.7630 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.86" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.86" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(87,154,204)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 238.1163,17.3935 l -0.0000,-4.7630 h -4.7630 l -0.0000,4.7630 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.85" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.85" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(86,153,203)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 235.7348,14.3409 l -0.0000,-4.7630 h -4.7630 l -0.0000,4.7630 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.84" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.84" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(86,152,202)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 233.3533,11.6683 l -0.0000,-4.7630 h -4.7630 l -0.0000,4.7630 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.8300000000000001" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.8300000000000001" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(85,152,201)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 230.9718,9.4023 l -0.0000,-4.7630 h -4.7630 l -0.0000,4.7630 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.8200000000000001" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.8200000000000001" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(85,151,200)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 228.5903,7.5658 l -0.0000,-4.7630 h -4.7630 l -0.0000,4.7630 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.81" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.81" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(84,150,199)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 226.2087,6.1769 l -0.0000,-4.7630 h -4.7630 l -0.0000,4.7630 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.8" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.8" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(84,149,197)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 223.8272,5.2496 l -0.0000,-4.7630 h -4.7630 l -0.0000,4.7630 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.79" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.79" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(83,148,196)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 221.4457,4.7932 l -0.0000,-4.7630 h -4.7630 l -0.0000,4.7630 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.78" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.78" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(83,147,195)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 219.0642,4.8121 l -0.0000,-4.7630 h -4.7630 l -0.0000,4.7630 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.77" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.77" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(82,147,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 216.6826,5.3063 l -0.0000,-4.7630 h -4.7630 l -0.0000,4.7630 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.76" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.76" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(82,146,193)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 214.3011,6.2707 l -0.0000,-4.7630 h -4.7630 l -0.0000,4.7630 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.75" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.75" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(81,145,192)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 211.9196,7.6958 l -0.0000,-4.7630 h -4.7630 l -0.0000,4.7630 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.74" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.74" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(80,144,191)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 209.5381,9.5673 l -0.0000,-4.7630 h -4.7630 l -0.0000,4.7630 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.73" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.73" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(80,143,190)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 207.1566,11.8665 l -0.0000,-4.7630 h -4.7630 l -0.0000,4.7630 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.72" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.72" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(79,142,188)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 204.7750,14.5704 l -0.0000,-4.7630 h -4.7630 l -0.0000,4.7630 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.71" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.71" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(79,141,187)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 202.3935,17.6521 l -0.0000,-4.7630 h -4.7630 l -0.0000,4.7630 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.7000000000000001" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.7000000000000001" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(78,140,186)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 200.0120,21.0806 l -0.0000,-4.7630 h -4.7630 l -0.0000,4.7630 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.6900000000000001" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.6900000000000001" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(78,139,185)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 197.6305,24.8218 l -0.0000,-4.7630 h -4.7630 l -0.0000,4.7630 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.68" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.68" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(77,138,184)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 195.2489,28.8383 l -0.0000,-4.7630 h -4.7630 l -0.0000,4.7630 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.67" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.67" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(77,137,182)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 192.8674,33.0900 l -0.0000,-4.7630 h -4.7630 l -0.0000,4.7630 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.66" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.66" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(76,137,181)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 190.4859,37.5343 l -0.0000,-4.7630 h -4.7630 l -0.0000,4.7630 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.65" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.65" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(75,136,180)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 188.1044,42.1269 l -0.0000,-4.7630 h -4.7630 l -0.0000,4.7630 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.64" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.64" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(75,135,179)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 185.7228,46.8219 l -0.0000,-4.7630 h -4.7630 l -0.0000,4.7630 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.63" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.63" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(74,134,177)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 183.3413,51.5723 l -0.0000,-4.7630 h -4.7630 l -0.0000,4.7630 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.62" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.62" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(74,133,176)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 180.9598,56.3308 l -0.0000,-4.7630 h -4.7630 l -0.0000,4.7630 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.61" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.61" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(73,132,175)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 178.5783,61.0497 l -0.0000,-4.7630 h -4.7630 l -0.0000,4.7630 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.6" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.6" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(73,131,174)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 176.1968,65.6819 l -0.0000,-4.7630 h -4.7630 l -0.0000,4.7630 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.59" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.59" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(72,130,172)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 173.8152,70.1811 l -0.0000,-4.7630 h -4.7630 l -0.0000,4.7630 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.58" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.58" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(71,129,171)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 171.4337,74.5024 l -0.0000,-4.7630 h -4.7630 l -0.0000,4.7630 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5700000000000001" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5700000000000001" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(71,128,170)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 169.0522,78.6026 l -0.0000,-4.7630 h -4.7630 l -0.0000,4.7630 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.56" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.56" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(70,127,168)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 166.6707,82.4407 l -0.0000,-4.7630 h -4.7630 l -0.0000,4.7630 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.55" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.55" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(69,126,167)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 164.2891,85.9784 l -0.0000,-4.7630 h -4.7630 l -0.0000,4.7630 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.54" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.54" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(69,124,165)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 161.9076,89.1803 l -0.0000,-4.7630 h -4.7630 l -0.0000,4.7630 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.53" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.53" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(68,123,164)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 159.5261,92.0145 l -0.0000,-4.7630 h -4.7630 l -0.0000,4.7630 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.52" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.52" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(68,122,163)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 157.1446,94.4525 l -0.0000,-4.7630 h -4.7630 l -0.0000,4.7630 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.51" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.51" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(67,121,161)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 154.7630,96.4702 l -0.0000,-4.7630 h -4.7630 l -0.0000,4.7630 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.5" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(66,120,160)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 152.3815,98.0472 l -0.0000,-4.7630 h -4.7630 l -0.0000,4.7630 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.49" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.49" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(66,119,158)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 150.0000,99.1679 l -0.0000,-4.7630 h -4.7630 l -0.0000,4.7630 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.48" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.48" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(65,118,157)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 147.6185,99.8210 l -0.0000,-4.7630 h -4.7630 l -0.0000,4.7630 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.47000000000000003" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.47000000000000003" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(64,117,155)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 145.2370,100.0000 l -0.0000,-4.7630 h -4.7630 l -0.0000,4.7630 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.46" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.46" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(63,116,154)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 142.8554,99.7032 l -0.0000,-4.7630 h -4.7630 l -0.0000,4.7630 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.45" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.45" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(63,114,152)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 140.4739,98.9334 l -0.0000,-4.7630 h -4.7630 l -0.0000,4.7630 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.44" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.44" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(62,113,151)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 138.0924,97.6984 l -0.0000,-4.7630 h -4.7630 l -0.0000,4.7630 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.43" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.43" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(61,112,149)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 135.7109,96.0106 l -0.0000,-4.7630 h -4.7630 l -0.0000,4.7630 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.42" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.42" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(61,111,148)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 133.3293,93.8868 l -0.0000,-4.7630 h -4.7630 l -0.0000,4.7630 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.41000000000000003" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.41000000000000003" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(60,109,146)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 130.9478,91.3481 l -0.0000,-4.7630 h -4.7630 l -0.0000,4.7630 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.4" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.4" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(59,108,144)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 128.5663,88.4200 l -0.0000,-4.7630 h -4.7630 l -0.0000,4.7630 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.39" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.39" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(58,107,143)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 126.1848,85.1318 l -0.0000,-4.7630 h -4.7630 l -0.0000,4.7630 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.38" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.38" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(58,106,141)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 123.8032,81.5163 l -0.0000,-4.7630 h -4.7630 l -0.0000,4.7630 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.37" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.37" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(57,104,139)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 121.4217,77.6095 l -0.0000,-4.7630 h -4.7630 l -0.0000,4.7630 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.36" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.36" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(56,103,138)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 119.0402,73.4506 l -0.0000,-4.7630 h -4.7630 l -0.0000,4.7630 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.35000000000000003" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.35000000000000003" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(55,102,136)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 116.6587,69.0812 l -0.0000,-4.7630 h -4.7630 l -0.0000,4.7630 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.34" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.34" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(54,100,134)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 114.2772,64.5447 l -0.0000,-4.7630 h -4.7630 l -0.0000,4.7630 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.33" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.33" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(53,99,132)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 111.8956,59.8867 l -0.0000,-4.7630 h -4.7630 l -0.0000,4.7630 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.32" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.32" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(53,97,130)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 109.5141,55.1536 l -0.0000,-4.7630 h -4.7630 l -0.0000,4.7630 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.31" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.31" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(52,96,128)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 107.1326,50.3927 l -0.0000,-4.7630 h -4.7630 l -0.0000,4.7630 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(51,94,126)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 104.7511,45.6516 l -0.0000,-4.7630 h -4.7630 l -0.0000,4.7630 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.29" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.29" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(50,93,125)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 102.3695,40.9776 l -0.0000,-4.7630 h -4.7630 l -0.0000,4.7630 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.28" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.28" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(49,91,123)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 99.9880,36.4176 l -0.0000,-4.7630 h -4.7630 l -0.0000,4.7630 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.27" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.27" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(48,90,120)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 97.6065,32.0169 l -0.0000,-4.7630 h -4.7630 l -0.0000,4.7630 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.26" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.26" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(47,88,118)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 95.2250,27.8196 l -0.0000,-4.7630 h -4.7630 l -0.0000,4.7630 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.25" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.25" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(46,86,116)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 92.8434,23.8677 l -0.0000,-4.7630 h -4.7630 l -0.0000,4.7630 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.24" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.24" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(45,85,114)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 90.4619,20.2006 l -0.0000,-4.7630 h -4.7630 l -0.0000,4.7630 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.23" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.23" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(44,83,112)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 88.0804,16.8549 l -0.0000,-4.7630 h -4.7630 l -0.0000,4.7630 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.22" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.22" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(43,81,109)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 85.6989,13.8641 l -0.0000,-4.7630 h -4.7630 l -0.0000,4.7630 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.21" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.21" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(42,79,107)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 83.3174,11.2581 l -0.0000,-4.7630 h -4.7630 l -0.0000,4.7630 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.2" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.2" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(41,78,105)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 80.9358,9.0629 l -0.0000,-4.7630 h -4.7630 l -0.0000,4.7630 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.19" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.19" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(40,76,102)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 78.5543,7.3005 l -0.0000,-4.7630 h -4.7630 l -0.0000,4.7630 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.18" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.18" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(38,74,100)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 76.1728,5.9884 l -0.0000,-4.7630 h -4.7630 l -0.0000,4.7630 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.17" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.17" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(37,72,97)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 73.7913,5.1397 l -0.0000,-4.7630 h -4.7630 l -0.0000,4.7630 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.16" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.16" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(36,69,94)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 71.4097,4.7630 l -0.0000,-4.7630 h -4.7630 l -0.0000,4.7630 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.15" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.15" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(35,67,91)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 69.0282,4.8621 l -0.0000,-4.7630 h -4.7630 l -0.0000,4.7630 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.14" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.14" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(33,65,88)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 66.6467,5.4358 l -0.0000,-4.7630 h -4.7630 l -0.0000,4.7630 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.13" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.13" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(32,62,85)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 64.2652,6.4785 l -0.0000,-4.7630 h -4.7630 l -0.0000,4.7630 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.12" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.12" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(30,60,82)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 61.8837,7.9797 l -0.0000,-4.7630 h -4.7630 l -0.0000,4.7630 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.11" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.11" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(29,57,78)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 59.5021,9.9246 l -0.0000,-4.7630 h -4.7630 l -0.0000,4.7630 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.1" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.1" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(27,55,75)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 57.1206,12.2935 l -0.0000,-4.7630 h -4.7630 l -0.0000,4.7630 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="9.0e-2" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="9.0e-2" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(25,52,71)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 54.7391,15.0630 l -0.0000,-4.7630 h -4.7630 l -0.0000,4.7630 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="8.0e-2" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="8.0e-2" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(23,48,67)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 52.3576,18.2052 l -0.0000,-4.7630 h -4.7630 l -0.0000,4.7630 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="7.0e-2" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="7.0e-2" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(21,45,63)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 49.9760,21.6888 l -0.0000,-4.7630 h -4.7630 l -0.0000,4.7630 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="6.0e-2" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="6.0e-2" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(19,41,58)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 47.5945,25.4790 l -0.0000,-4.7630 h -4.7630 l -0.0000,4.7630 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="5.0e-2" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="5.0e-2" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(17,37,53)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 45.2130,29.5379 l -0.0000,-4.7630 h -4.7630 l -0.0000,4.7630 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="4.0e-2" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="4.0e-2" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(14,33,47)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 42.8315,33.8250 l -0.0000,-4.7630 h -4.7630 l -0.0000,4.7630 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="3.0e-2" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="3.0e-2" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(11,28,40)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 40.4499,38.2974 l -0.0000,-4.7630 h -4.7630 l -0.0000,4.7630 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="2.0e-2" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="2.0e-2" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(7,21,31)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 38.0684,42.9105 l -0.0000,-4.7630 h -4.7630 l -0.0000,4.7630 Z"/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0e-2" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="1.0e-2" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(4,12,20)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 35.6869,47.6181 l -0.0000,-4.7630 h -4.7630 l -0.0000,4.7630 Z"/>
   </g>
   <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
diff --git a/other/q24Example.svg b/other/q24Example.svg
deleted file mode 100644
--- a/other/q24Example.svg
+++ /dev/null
@@ -1,213 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
-    "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
-<svg xmlns="http://www.w3.org/2000/svg" height="400.0000" stroke-opacity="1" viewBox="0 0 600 400" font-size="1" width="600.0000" xmlns:xlink="http://www.w3.org/1999/xlink" stroke="rgb(0,0,0)" version="1.1">
-  <defs>
-  </defs>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 554.7378,27.5392 l -0.0000,-27.5392 h -509.4757 l -0.0000,27.5392 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="25.03565856075178px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,300.0000,13.7696)" stroke="none" text-anchor="middle">Which editors do you use for Haskell?
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.1" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 500.6062,321.9115 l -0.0000,-5.3495 h -401.2125 l -0.0000,5.3495 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 500.3145,374.0358 l 12.9821,-12.9821 l -32.4553,-32.4553 l -12.9821,12.9821 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="16.690439040501186px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(0.7071,0.7071,-0.7071,0.7071,474.3503,335.0894)" stroke="none" text-anchor="start">Other
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.257156732952541" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 475.5305,316.5620 v 8.0242 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 430.6898,354.5626 l 12.9821,-12.9821 l -12.9821,-12.9821 l -12.9821,12.9821 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="16.690439040501186px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(0.7071,0.7071,-0.7071,0.7071,424.1987,335.0894)" stroke="none" text-anchor="start">VS
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.257156732952541" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 425.3789,316.5620 v 8.0242 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 425.9756,400.0000 l 12.9821,-12.9821 l -58.4195,-58.4195 l -12.9821,12.9821 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="16.690439040501186px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(0.7071,0.7071,-0.7071,0.7071,374.0471,335.0894)" stroke="none" text-anchor="start">Notepad++
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.257156732952541" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 375.2273,316.5620 v 8.0242 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 362.8419,387.0179 l 12.9821,-12.9821 l -45.4374,-45.4374 l -12.9821,12.9821 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="16.690439040501186px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(0.7071,0.7071,-0.7071,0.7071,323.8956,335.0894)" stroke="none" text-anchor="start">Sublime
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.257156732952541" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 325.0758,316.5620 v 8.0242 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 293.2172,367.5447 l 12.9821,-12.9821 l -25.9642,-25.9642 l -12.9821,12.9821 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="16.690439040501186px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(0.7071,0.7071,-0.7071,0.7071,273.7440,335.0894)" stroke="none" text-anchor="start">Atom
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.257156732952541" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 274.9242,316.5620 v 8.0242 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 262.5388,387.0179 l 12.9821,-12.9821 l -45.4374,-45.4374 l -12.9821,12.9821 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="16.690439040501186px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(0.7071,0.7071,-0.7071,0.7071,223.5925,335.0894)" stroke="none" text-anchor="start">VS Code
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.257156732952541" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 224.7727,316.5620 v 8.0242 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 199.4051,374.0358 l 12.9821,-12.9821 l -32.4553,-32.4553 l -12.9821,12.9821 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="16.690439040501186px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(0.7071,0.7071,-0.7071,0.7071,173.4409,335.0894)" stroke="none" text-anchor="start">Emacs
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.257156732952541" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 174.6211,316.5620 v 8.0242 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 136.2715,361.0537 l 12.9821,-12.9821 l -19.4732,-19.4732 l -12.9821,12.9821 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="16.690439040501186px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(0.7071,0.7071,-0.7071,0.7071,123.2893,335.0894)" stroke="none" text-anchor="start">Vim
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.257156732952541" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 124.4695,316.5620 v 8.0242 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.1" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 88.6948,305.7132 l -0.0000,-267.4750 h -5.3495 l -0.0000,267.4750 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 76.6584,116.2062 l -0.0000,-18.3595 h -27.5392 l -0.0000,18.3595 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="16.690439040501186px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,62.8888,107.0265)" stroke="none" text-anchor="middle">400
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.257156732952541" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 80.6705,105.3574 h 8.0242 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 76.6584,216.3841 l -0.0000,-18.3595 h -27.5392 l -0.0000,18.3595 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="16.690439040501186px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,62.8888,207.2044)" stroke="none" text-anchor="middle">200
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.257156732952541" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 80.6705,205.5353 h 8.0242 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 76.6584,316.5620 l -0.0000,-18.3595 h -9.1797 l -0.0000,18.3595 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="16.690439040501186px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,72.0685,307.3823)" stroke="none" text-anchor="middle">0
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.257156732952541" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 80.6705,305.7132 h 8.0242 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 500.6062,305.7132 l -0.0000,-267.4750 h -401.2125 l -0.0000,267.4750 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(87,57,99)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 490.5759,305.7132 l -0.0000,-67.1192 h -30.0909 l -0.0000,67.1192 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(87,57,99)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 440.4244,305.7132 l -0.0000,-1.5027 h -30.0909 l -0.0000,1.5027 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(87,57,99)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 390.2728,305.7132 l -0.0000,-14.0249 h -30.0909 l -0.0000,14.0249 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(87,57,99)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 340.1212,305.7132 l -0.0000,-46.0818 h -30.0909 l -0.0000,46.0818 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(87,57,99)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 289.9697,305.7132 l -0.0000,-84.6503 h -30.0909 l -0.0000,84.6503 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(87,57,99)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 239.8181,305.7132 l -0.0000,-101.1797 h -30.0909 l -0.0000,101.1797 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(87,57,99)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 189.6666,305.7132 l -0.0000,-250.9456 h -30.0909 l -0.0000,250.9456 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(87,57,99)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 139.5150,305.7132 l -0.0000,-267.4750 h -30.0909 l -0.0000,267.4750 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 489.3001,241.4186 l -0.0000,-18.3595 h -27.5392 l -0.0000,18.3595 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" font-size="16.690439040501186px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(84,84,84)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,475.5305,232.2388)" stroke="none" text-anchor="middle">134
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 429.9688,307.0351 l -0.0000,-18.3595 h -9.1797 l -0.0000,18.3595 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" font-size="16.690439040501186px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(84,84,84)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,425.3789,297.8553)" stroke="none" text-anchor="middle">3
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 384.4071,294.5128 l -0.0000,-18.3595 h -18.3595 l -0.0000,18.3595 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" font-size="16.690439040501186px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(84,84,84)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,375.2273,285.3331)" stroke="none" text-anchor="middle">28
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 334.2555,262.4559 l -0.0000,-18.3595 h -18.3595 l -0.0000,18.3595 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" font-size="16.690439040501186px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(84,84,84)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,325.0758,253.2762)" stroke="none" text-anchor="middle">92
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 288.6938,223.8874 l -0.0000,-18.3595 h -27.5392 l -0.0000,18.3595 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" font-size="16.690439040501186px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(84,84,84)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,274.9242,214.7077)" stroke="none" text-anchor="middle">169
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 238.5423,207.3581 l -0.0000,-18.3595 h -27.5392 l -0.0000,18.3595 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" font-size="16.690439040501186px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(84,84,84)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,224.7727,198.1783)" stroke="none" text-anchor="middle">202
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 188.3907,57.5921 l -0.0000,-18.3595 h -27.5392 l -0.0000,18.3595 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" font-size="16.690439040501186px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(84,84,84)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,174.6211,48.4124)" stroke="none" text-anchor="middle">501
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 138.2392,41.0628 l -0.0000,-18.3595 h -27.5392 l -0.0000,18.3595 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" font-size="16.690439040501186px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(84,84,84)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,124.4695,31.8830)" stroke="none" text-anchor="middle">534
-    </text>
-  </g>
-</svg>
diff --git a/other/q7Example.svg b/other/q7Example.svg
deleted file mode 100644
--- a/other/q7Example.svg
+++ /dev/null
@@ -1,173 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
-    "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
-<svg xmlns="http://www.w3.org/2000/svg" height="400.0000" stroke-opacity="1" viewBox="0 0 600 400" font-size="1" width="600.0000" xmlns:xlink="http://www.w3.org/1999/xlink" stroke="rgb(0,0,0)" version="1.1">
-  <defs>
-  </defs>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 579.5670,31.7510 l -0.0000,-31.7510 h -539.7677 l -0.0000,31.7510 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="28.864580534029983px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,309.6832,15.8755)" stroke="none" text-anchor="middle">How frequently do you use Haskell?
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.1" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 540.9699,371.1442 l -0.0000,-6.1676 h -462.5734 l -0.0000,6.1676 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 526.4319,400.0000 l -0.0000,-21.1462 h -63.4386 l -0.0000,21.1462 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="19.223829859493833px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,494.7126,389.4269)" stroke="none" text-anchor="middle">Rarely
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.3646015786681254" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 494.7126,364.9766 v 9.2515 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 433.9172,400.0000 l -0.0000,-21.1462 h -63.4386 l -0.0000,21.1462 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="19.223829859493833px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,402.1979,389.4269)" stroke="none" text-anchor="middle">Yearly
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.3646015786681254" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 402.1979,364.9766 v 9.2515 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 346.6891,400.0000 l -0.0000,-21.1462 h -74.0117 l -0.0000,21.1462 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="19.223829859493833px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,309.6832,389.4269)" stroke="none" text-anchor="middle">Monthly
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.3646015786681254" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 309.6832,364.9766 v 9.2515 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 248.8878,400.0000 l -0.0000,-21.1462 h -63.4386 l -0.0000,21.1462 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="19.223829859493833px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,217.1685,389.4269)" stroke="none" text-anchor="middle">Weekly
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.3646015786681254" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 217.1685,364.9766 v 9.2515 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 151.0866,400.0000 l -0.0000,-21.1462 h -52.8655 l -0.0000,21.1462 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="19.223829859493833px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,124.6538,389.4269)" stroke="none" text-anchor="middle">Daily
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.3646015786681254" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 124.6538,364.9766 v 9.2515 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.1" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 66.0612,352.4686 l -0.0000,-308.3823 h -6.1676 l -0.0000,308.3823 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 52.1840,101.9640 l -0.0000,-21.1674 h -31.7510 l -0.0000,21.1674 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="19.243053689353324px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,36.3085,91.3803)" stroke="none" text-anchor="middle">400
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.3646015786681254" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 56.8097,89.4560 h 9.2515 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 52.1840,167.7171 l -0.0000,-21.1674 h -31.7510 l -0.0000,21.1674 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="19.243053689353324px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,36.3085,157.1335)" stroke="none" text-anchor="middle">300
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.3646015786681254" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 56.8097,155.2092 h 9.2515 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 52.1840,233.4703 l -0.0000,-21.1674 h -31.7510 l -0.0000,21.1674 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="19.243053689353324px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,36.3085,222.8866)" stroke="none" text-anchor="middle">200
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.3646015786681254" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 56.8097,220.9623 h 9.2515 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 52.1840,299.2234 l -0.0000,-21.1674 h -31.7510 l -0.0000,21.1674 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="19.243053689353324px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,36.3085,288.6398)" stroke="none" text-anchor="middle">100
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.3646015786681254" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 56.8097,286.7155 h 9.2515 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 52.1840,364.9766 l -0.0000,-21.1674 h -10.5837 l -0.0000,21.1674 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="19.243053689353324px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,46.8922,354.3929)" stroke="none" text-anchor="middle">0
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.3646015786681254" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 56.8097,352.4686 h 9.2515 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 540.9699,352.4686 l -0.0000,-308.3823 h -462.5734 l -0.0000,308.3823 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(87,57,99)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 522.4670,352.4686 l -0.0000,-33.5341 h -55.5088 l -0.0000,33.5341 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(87,57,99)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 429.9523,352.4686 l -0.0000,-23.6711 h -55.5088 l -0.0000,23.6711 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(87,57,99)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 337.4376,352.4686 l -0.0000,-141.3693 h -55.5088 l -0.0000,141.3693 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(87,57,99)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 244.9229,352.4686 l -0.0000,-297.2042 h -55.5088 l -0.0000,297.2042 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(87,57,99)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 152.4082,352.4686 l -0.0000,-308.3823 h -55.5088 l -0.0000,308.3823 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 505.2962,353.0292 l -0.0000,-21.1674 h -21.1674 l -0.0000,21.1674 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" font-size="19.243053689353324px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(255,255,84)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,494.7126,342.4456)" stroke="none" text-anchor="middle">51
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 412.7816,362.8922 l -0.0000,-21.1674 h -21.1674 l -0.0000,21.1674 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" font-size="19.243053689353324px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(255,255,84)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,402.1979,352.3085)" stroke="none" text-anchor="middle">36
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 325.5587,245.1941 l -0.0000,-21.1674 h -31.7510 l -0.0000,21.1674 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" font-size="19.243053689353324px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(255,255,84)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,309.6832,234.6104)" stroke="none" text-anchor="middle">215
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 233.0440,89.3591 l -0.0000,-21.1674 h -31.7510 l -0.0000,21.1674 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" font-size="19.243053689353324px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(255,255,84)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,217.1685,78.7754)" stroke="none" text-anchor="middle">452
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 140.5294,78.1811 l -0.0000,-21.1674 h -31.7510 l -0.0000,21.1674 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" font-size="19.243053689353324px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(255,255,84)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,124.6538,67.5974)" stroke="none" text-anchor="middle">469
-    </text>
-  </g>
-</svg>
diff --git a/other/rectHudExample.svg b/other/rectHudExample.svg
deleted file mode 100644
--- a/other/rectHudExample.svg
+++ /dev/null
@@ -1,453 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
-    "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
-<svg xmlns="http://www.w3.org/2000/svg" height="400.0000" stroke-opacity="1" viewBox="0 0 600 400" font-size="1" width="600.0000" xmlns:xlink="http://www.w3.org/1999/xlink" stroke="rgb(0,0,0)" version="1.1">
-  <defs>
-  </defs>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.2" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(76,76,76)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 571.7708,221.5990 l -0.0000,-4.1768 h -10.0296 l -0.0000,4.1768 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.2" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(76,76,76)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 561.7412,221.5990 l -0.0000,-5.3098 h -10.0296 l -0.0000,5.3098 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.2" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(76,76,76)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 551.7117,221.5990 l -0.0000,-6.6829 h -10.0296 l -0.0000,6.6829 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.2" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(76,76,76)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 541.6821,221.5990 l -0.0000,-8.3274 h -10.0296 l -0.0000,8.3274 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.2" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(76,76,76)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 531.6525,221.5990 l -0.0000,-10.2733 h -10.0296 l -0.0000,10.2733 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.2" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(76,76,76)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 521.6230,221.5990 l -0.0000,-12.5479 h -10.0296 l -0.0000,12.5479 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.2" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(76,76,76)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 511.5934,221.5990 l -0.0000,-15.1735 h -10.0296 l -0.0000,15.1735 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.2" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(76,76,76)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 501.5638,221.5990 l -0.0000,-18.1660 h -10.0296 l -0.0000,18.1660 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.2" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(76,76,76)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 491.5343,221.5990 l -0.0000,-21.5322 h -10.0296 l -0.0000,21.5322 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.2" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(76,76,76)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 481.5047,221.5990 l -0.0000,-25.2683 h -10.0296 l -0.0000,25.2683 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.2" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(76,76,76)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 471.4751,221.5990 l -0.0000,-29.3576 h -10.0296 l -0.0000,29.3576 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.2" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(76,76,76)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 461.4456,221.5990 l -0.0000,-33.7693 h -10.0296 l -0.0000,33.7693 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.2" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(76,76,76)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 451.4160,221.5990 l -0.0000,-38.4574 h -10.0296 l -0.0000,38.4574 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.2" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(76,76,76)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 441.3864,221.5990 l -0.0000,-43.3606 h -10.0296 l -0.0000,43.3606 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.2" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(76,76,76)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 431.3569,221.5990 l -0.0000,-48.4025 h -10.0296 l -0.0000,48.4025 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.2" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(76,76,76)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 421.3273,221.5990 l -0.0000,-53.4930 h -10.0296 l -0.0000,53.4930 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.2" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(76,76,76)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 411.2977,221.5990 l -0.0000,-58.5307 h -10.0296 l -0.0000,58.5307 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.2" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(76,76,76)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 401.2682,221.5990 l -0.0000,-63.4055 h -10.0296 l -0.0000,63.4055 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.2" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(76,76,76)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 391.2386,221.5990 l -0.0000,-68.0029 h -10.0296 l -0.0000,68.0029 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.2" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(76,76,76)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 381.2091,221.5990 l -0.0000,-72.2080 h -10.0296 l -0.0000,72.2080 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.2" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(76,76,76)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 371.1795,221.5990 l -0.0000,-75.9102 h -10.0296 l -0.0000,75.9102 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.2" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(76,76,76)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 361.1499,221.5990 l -0.0000,-79.0081 h -10.0296 l -0.0000,79.0081 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.2" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(76,76,76)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 351.1204,221.5990 l -0.0000,-81.4143 h -10.0296 l -0.0000,81.4143 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.2" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(76,76,76)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 341.0908,221.5990 l -0.0000,-83.0590 h -10.0296 l -0.0000,83.0590 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.2" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(76,76,76)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 331.0612,221.5990 l -0.0000,-83.8937 h -10.0296 l -0.0000,83.8937 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.2" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(76,76,76)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 321.0317,221.5990 l -0.0000,-83.8937 h -10.0296 l -0.0000,83.8937 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.2" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(76,76,76)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 311.0021,221.5990 l -0.0000,-83.0590 h -10.0296 l -0.0000,83.0590 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.2" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(76,76,76)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 300.9725,221.5990 l -0.0000,-81.4143 h -10.0296 l -0.0000,81.4143 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.2" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(76,76,76)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 290.9430,221.5990 l -0.0000,-79.0081 h -10.0296 l -0.0000,79.0081 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.2" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(76,76,76)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 280.9134,221.5990 l -0.0000,-75.9102 h -10.0296 l -0.0000,75.9102 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.2" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(76,76,76)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 270.8838,221.5990 l -0.0000,-72.2080 h -10.0296 l -0.0000,72.2080 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.2" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(76,76,76)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 260.8543,221.5990 l -0.0000,-68.0029 h -10.0296 l -0.0000,68.0029 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.2" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(76,76,76)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 250.8247,221.5990 l -0.0000,-63.4055 h -10.0296 l -0.0000,63.4055 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.2" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(76,76,76)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 240.7951,221.5990 l -0.0000,-58.5307 h -10.0296 l -0.0000,58.5307 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.2" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(76,76,76)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 230.7656,221.5990 l -0.0000,-53.4930 h -10.0296 l -0.0000,53.4930 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.2" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(76,76,76)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 220.7360,221.5990 l -0.0000,-48.4025 h -10.0296 l -0.0000,48.4025 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.2" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(76,76,76)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 210.7064,221.5990 l -0.0000,-43.3606 h -10.0296 l -0.0000,43.3606 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.2" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(76,76,76)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 200.6769,221.5990 l -0.0000,-38.4574 h -10.0296 l -0.0000,38.4574 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.2" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(76,76,76)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 190.6473,221.5990 l -0.0000,-33.7693 h -10.0296 l -0.0000,33.7693 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.2" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(76,76,76)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 180.6178,221.5990 l -0.0000,-29.3576 h -10.0296 l -0.0000,29.3576 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.2" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(76,76,76)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 170.5882,221.5990 l -0.0000,-25.2683 h -10.0296 l -0.0000,25.2683 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.2" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(76,76,76)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 160.5586,221.5990 l -0.0000,-21.5322 h -10.0296 l -0.0000,21.5322 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.2" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(76,76,76)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 150.5291,221.5990 l -0.0000,-18.1660 h -10.0296 l -0.0000,18.1660 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.2" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(76,76,76)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 140.4995,221.5990 l -0.0000,-15.1735 h -10.0296 l -0.0000,15.1735 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.2" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(76,76,76)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 130.4699,221.5990 l -0.0000,-12.5479 h -10.0296 l -0.0000,12.5479 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.2" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(76,76,76)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 120.4404,221.5990 l -0.0000,-10.2733 h -10.0296 l -0.0000,10.2733 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.2" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(76,76,76)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 110.4108,221.5990 l -0.0000,-8.3274 h -10.0296 l -0.0000,8.3274 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.2" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(76,76,76)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 100.3812,221.5990 l -0.0000,-6.6829 h -10.0296 l -0.0000,6.6829 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.2" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(76,76,76)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 90.3517,221.5990 l -0.0000,-5.3098 h -10.0296 l -0.0000,5.3098 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.2" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(76,76,76)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 80.3221,221.5990 l -0.0000,-4.1768 h -10.0296 l -0.0000,4.1768 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 571.7708,221.5990 l -0.0000,-0.0010 h -10.0296 l -0.0000,0.0010 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 561.7412,221.5990 l -0.0000,-0.0027 h -10.0296 l -0.0000,0.0027 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 551.7117,221.5990 l -0.0000,-0.0067 h -10.0296 l -0.0000,0.0067 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 541.6821,221.5990 l -0.0000,-0.0162 h -10.0296 l -0.0000,0.0162 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 531.6525,221.5990 l -0.0000,-0.0376 h -10.0296 l -0.0000,0.0376 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 521.6230,221.5990 l -0.0000,-0.0837 h -10.0296 l -0.0000,0.0837 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 511.5934,221.5990 l -0.0000,-0.1789 h -10.0296 l -0.0000,0.1789 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 501.5638,221.5990 l -0.0000,-0.3675 h -10.0296 l -0.0000,0.3675 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 491.5343,221.5990 l -0.0000,-0.7254 h -10.0296 l -0.0000,0.7254 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 481.5047,221.5990 l -0.0000,-1.3757 h -10.0296 l -0.0000,1.3757 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 471.4751,221.5990 l -0.0000,-2.5067 h -10.0296 l -0.0000,2.5067 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 461.4456,221.5990 l -0.0000,-4.3883 h -10.0296 l -0.0000,4.3883 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 451.4160,221.5990 l -0.0000,-7.3813 h -10.0296 l -0.0000,7.3813 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 441.3864,221.5990 l -0.0000,-11.9287 h -10.0296 l -0.0000,11.9287 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 431.3569,221.5990 l -0.0000,-18.5218 h -10.0296 l -0.0000,18.5218 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 421.3273,221.5990 l -0.0000,-27.6313 h -10.0296 l -0.0000,27.6313 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 411.2977,221.5990 l -0.0000,-39.6047 h -10.0296 l -0.0000,39.6047 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 401.2682,221.5990 l -0.0000,-54.5407 h -10.0296 l -0.0000,54.5407 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 391.2386,221.5990 l -0.0000,-72.1645 h -10.0296 l -0.0000,72.1645 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 381.2091,221.5990 l -0.0000,-91.7390 h -10.0296 l -0.0000,91.7390 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 371.1795,221.5990 l -0.0000,-112.0503 h -10.0296 l -0.0000,112.0503 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 361.1499,221.5990 l -0.0000,-131.4923 h -10.0296 l -0.0000,131.4923 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 351.1204,221.5990 l -0.0000,-148.2571 h -10.0296 l -0.0000,148.2571 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 341.0908,221.5990 l -0.0000,-160.6050 h -10.0296 l -0.0000,160.6050 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 331.0612,221.5990 l -0.0000,-167.1594 h -10.0296 l -0.0000,167.1594 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 321.0317,221.5990 l -0.0000,-167.1594 h -10.0296 l -0.0000,167.1594 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 311.0021,221.5990 l -0.0000,-160.6050 h -10.0296 l -0.0000,160.6050 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 300.9725,221.5990 l -0.0000,-148.2571 h -10.0296 l -0.0000,148.2571 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 290.9430,221.5990 l -0.0000,-131.4923 h -10.0296 l -0.0000,131.4923 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 280.9134,221.5990 l -0.0000,-112.0503 h -10.0296 l -0.0000,112.0503 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 270.8838,221.5990 l -0.0000,-91.7390 h -10.0296 l -0.0000,91.7390 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 260.8543,221.5990 l -0.0000,-72.1645 h -10.0296 l -0.0000,72.1645 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 250.8247,221.5990 l -0.0000,-54.5407 h -10.0296 l -0.0000,54.5407 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 240.7951,221.5990 l -0.0000,-39.6047 h -10.0296 l -0.0000,39.6047 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 230.7656,221.5990 l -0.0000,-27.6313 h -10.0296 l -0.0000,27.6313 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 220.7360,221.5990 l -0.0000,-18.5218 h -10.0296 l -0.0000,18.5218 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 210.7064,221.5990 l -0.0000,-11.9287 h -10.0296 l -0.0000,11.9287 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 200.6769,221.5990 l -0.0000,-7.3813 h -10.0296 l -0.0000,7.3813 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 190.6473,221.5990 l -0.0000,-4.3883 h -10.0296 l -0.0000,4.3883 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 180.6178,221.5990 l -0.0000,-2.5067 h -10.0296 l -0.0000,2.5067 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 170.5882,221.5990 l -0.0000,-1.3757 h -10.0296 l -0.0000,1.3757 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 160.5586,221.5990 l -0.0000,-0.7254 h -10.0296 l -0.0000,0.7254 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 150.5291,221.5990 l -0.0000,-0.3675 h -10.0296 l -0.0000,0.3675 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 140.4995,221.5990 l -0.0000,-0.1789 h -10.0296 l -0.0000,0.1789 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 130.4699,221.5990 l -0.0000,-0.0837 h -10.0296 l -0.0000,0.0837 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 120.4404,221.5990 l -0.0000,-0.0376 h -10.0296 l -0.0000,0.0376 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 110.4108,221.5990 l -0.0000,-0.0162 h -10.0296 l -0.0000,0.0162 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 100.3812,221.5990 l -0.0000,-0.0067 h -10.0296 l -0.0000,0.0067 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 90.3517,221.5990 l -0.0000,-0.0027 h -10.0296 l -0.0000,0.0027 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 80.3221,221.5990 l -0.0000,-0.0010 h -10.0296 l -0.0000,0.0010 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 57.8693,78.1762 l -28.6846,0.0000 l -0.0000,143.4228 l 28.6846,0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" font-size="26.076868814405135px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(31,119,180)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(0.0000,-1.0000,1.0000,0.0000,43.5270,221.5990)" stroke="none" text-anchor="start">Rect Chart
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 491.8184,331.1720 l -0.0000,-28.6846 h -329.8724 l -0.0000,28.6846 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.63" font-size="26.076868814405135px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,326.8822,316.8297)" stroke="none" text-anchor="middle">grey wider distribution
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.2" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(76,76,76)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 158.6029,318.4010 l -0.0000,-8.3580 h -8.3580 l -0.0000,8.3580 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 348.3957,297.4727 l -0.0000,-28.6846 h -186.4496 l -0.0000,28.6846 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.63" font-size="26.076868814405135px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,255.1709,283.1304)" stroke="none" text-anchor="middle">blue gaussian
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 158.6029,284.7017 l -0.0000,-8.3580 h -8.3580 l -0.0000,8.3580 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.2" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.8595395526206677" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 508.8971,334.2912 l -0.0000,-68.6223 h -375.7309 l -0.0000,68.6223 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.1" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 571.7708,241.6581 l -0.0000,-3.3432 h -501.4782 l -0.0000,3.3432 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 574.6392,257.3109 l -0.0000,-11.4738 h -5.7369 l -0.0000,11.4738 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="10.430747525762053px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,571.7708,251.5740)" stroke="none" text-anchor="middle">5
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.148848881551669" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 571.7708,238.3149 v 5.0148 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 524.4914,257.3109 l -0.0000,-11.4738 h -5.7369 l -0.0000,11.4738 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="10.430747525762053px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,521.6230,251.5740)" stroke="none" text-anchor="middle">4
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.148848881551669" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 521.6230,238.3149 v 5.0148 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 474.3436,257.3109 l -0.0000,-11.4738 h -5.7369 l -0.0000,11.4738 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="10.430747525762053px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,471.4751,251.5740)" stroke="none" text-anchor="middle">3
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.148848881551669" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 471.4751,238.3149 v 5.0148 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 424.1958,257.3109 l -0.0000,-11.4738 h -5.7369 l -0.0000,11.4738 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="10.430747525762053px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,421.3273,251.5740)" stroke="none" text-anchor="middle">2
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.148848881551669" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 421.3273,238.3149 v 5.0148 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 374.0479,257.3109 l -0.0000,-11.4738 h -5.7369 l -0.0000,11.4738 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="10.430747525762053px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,371.1795,251.5740)" stroke="none" text-anchor="middle">1
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.148848881551669" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 371.1795,238.3149 v 5.0148 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 323.9001,257.3109 l -0.0000,-11.4738 h -5.7369 l -0.0000,11.4738 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="10.430747525762053px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,321.0317,251.5740)" stroke="none" text-anchor="middle">0
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.148848881551669" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 321.0317,238.3149 v 5.0148 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 276.6207,257.3109 l -0.0000,-11.4738 h -11.4738 l -0.0000,11.4738 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="10.430747525762053px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,270.8838,251.5740)" stroke="none" text-anchor="middle">-1
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.148848881551669" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 270.8838,238.3149 v 5.0148 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 226.4729,257.3109 l -0.0000,-11.4738 h -11.4738 l -0.0000,11.4738 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="10.430747525762053px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,220.7360,251.5740)" stroke="none" text-anchor="middle">-2
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.148848881551669" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 220.7360,238.3149 v 5.0148 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 176.3251,257.3109 l -0.0000,-11.4738 h -11.4738 l -0.0000,11.4738 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="10.430747525762053px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,170.5882,251.5740)" stroke="none" text-anchor="middle">-3
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.148848881551669" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 170.5882,238.3149 v 5.0148 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 126.1773,257.3109 l -0.0000,-11.4738 h -11.4738 l -0.0000,11.4738 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="10.430747525762053px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,120.4404,251.5740)" stroke="none" text-anchor="middle">-4
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.148848881551669" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 120.4404,238.3149 v 5.0148 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 76.0295,257.3109 l -0.0000,-11.4738 h -11.4738 l -0.0000,11.4738 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="10.430747525762053px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,70.2925,251.5740)" stroke="none" text-anchor="middle">-5
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.148848881551669" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 70.2925,238.3149 v 5.0148 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 571.7708,221.5990 l -0.0000,-167.1594 h -501.4782 l -0.0000,167.1594 Z"/>
-  </g>
-</svg>
diff --git a/other/scatterHistExample.svg b/other/scatterHistExample.svg
deleted file mode 100644
--- a/other/scatterHistExample.svg
+++ /dev/null
@@ -1,6663 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
-    "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
-<svg xmlns="http://www.w3.org/2000/svg" height="400.0000" stroke-opacity="1" viewBox="0 0 600 400" font-size="1" width="600.0000" xmlns:xlink="http://www.w3.org/1999/xlink" stroke="rgb(0,0,0)" version="1.1">
-  <defs>
-  </defs>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 422.5320,100.8251 l 1.8461,0.0000 l 0.0000,4.6220 l -1.8461,0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 422.5320,105.4471 l 0.9230,0.0000 l 0.0000,4.6220 l -0.9230,0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 422.5320,110.0691 l 1.8461,0.0000 l 0.0000,4.6220 l -1.8461,0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 422.5320,114.6912 l 0.9230,0.0000 l 0.0000,4.6220 l -0.9230,0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 422.5320,119.3132 l 0.9230,0.0000 l 0.0000,4.6220 l -0.9230,0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 422.5320,123.9352 l 4.6151,-0.0000 l 0.0000,4.6220 l -4.6151,0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 422.5320,128.5573 l 3.6921,-0.0000 l 0.0000,4.6220 l -3.6921,0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 422.5320,133.1793 l 4.6151,-0.0000 l 0.0000,4.6220 l -4.6151,0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 422.5320,137.8013 l 7.3842,-0.0000 l 0.0000,4.6220 l -7.3842,0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 422.5320,142.4234 l 9.2303,-0.0000 l 0.0000,4.6220 l -9.2303,0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 422.5320,147.0454 l 11.0763,-0.0000 l 0.0000,4.6220 l -11.0763,0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 422.5320,151.6674 l 10.1533,-0.0000 l 0.0000,4.6220 l -10.1533,0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 422.5320,156.2895 l 16.6145,-0.0000 l 0.0000,4.6220 l -16.6145,0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 422.5320,160.9115 l 19.3836,-0.0000 l 0.0000,4.6220 l -19.3836,0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 422.5320,165.5335 l 19.3836,-0.0000 l 0.0000,4.6220 l -19.3836,0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 422.5320,170.1555 l 28.6139,-0.0000 l 0.0000,4.6220 l -28.6139,0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 422.5320,174.7776 l 27.6908,-0.0000 l 0.0000,4.6220 l -27.6908,0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 422.5320,179.3996 l 29.5369,-0.0000 l 0.0000,4.6220 l -29.5369,0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 422.5320,184.0216 l 40.6132,-0.0000 l 0.0000,4.6220 l -40.6132,0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 422.5320,188.6437 l 26.7678,-0.0000 l 0.0000,4.6220 l -26.7678,0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 422.5320,193.2657 l 28.6139,-0.0000 l 0.0000,4.6220 l -28.6139,0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 422.5320,197.8877 l 43.3823,-0.0000 l 0.0000,4.6220 l -43.3823,0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 422.5320,202.5098 l 54.4587,-0.0000 l 0.0000,4.6220 l -54.4587,0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 422.5320,207.1318 l 52.6126,-0.0000 l 0.0000,4.6220 l -52.6126,0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 422.5320,211.7538 l 51.6896,-0.0000 l 0.0000,4.6220 l -51.6896,0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 422.5320,216.3759 l 41.5363,-0.0000 l 0.0000,4.6220 l -41.5363,0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 422.5320,220.9979 l 40.6132,-0.0000 l 0.0000,4.6220 l -40.6132,0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 422.5320,225.6199 l 35.9981,-0.0000 l 0.0000,4.6220 l -35.9981,0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 422.5320,230.2420 l 33.2290,-0.0000 l 0.0000,4.6220 l -33.2290,0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 422.5320,234.8640 l 36.9211,-0.0000 l 0.0000,4.6220 l -36.9211,0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 422.5320,239.4860 l 31.3830,-0.0000 l 0.0000,4.6220 l -31.3830,0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 422.5320,244.1081 l 29.5369,-0.0000 l 0.0000,4.6220 l -29.5369,0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 422.5320,248.7301 l 28.6139,-0.0000 l 0.0000,4.6220 l -28.6139,0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 422.5320,253.3521 l 26.7678,-0.0000 l 0.0000,4.6220 l -26.7678,0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 422.5320,257.9742 l 23.9987,-0.0000 l 0.0000,4.6220 l -23.9987,0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 422.5320,262.5962 l 12.9224,-0.0000 l 0.0000,4.6220 l -12.9224,0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 422.5320,267.2182 l 17.5375,-0.0000 l 0.0000,4.6220 l -17.5375,0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 422.5320,271.8403 l 12.9224,-0.0000 l 0.0000,4.6220 l -12.9224,0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 422.5320,276.4623 l 8.3073,-0.0000 l 0.0000,4.6220 l -8.3073,0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 422.5320,281.0843 l 8.3073,-0.0000 l 0.0000,4.6220 l -8.3073,0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 422.5320,285.7063 l 6.4612,-0.0000 l 0.0000,4.6220 l -6.4612,0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 422.5320,290.3284 l 6.4612,-0.0000 l 0.0000,4.6220 l -6.4612,0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 422.5320,294.9504 l 5.5382,-0.0000 l 0.0000,4.6220 l -5.5382,0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 422.5320,299.5724 l 6.4612,-0.0000 l 0.0000,4.6220 l -6.4612,0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 422.5320,304.1945 l 2.7691,0.0000 l 0.0000,4.6220 l -2.7691,0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 422.5320,308.8165 l 2.7691,0.0000 l 0.0000,4.6220 l -2.7691,0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 422.5320,313.4385 l 3.6921,-0.0000 l 0.0000,4.6220 l -3.6921,0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 422.5320,318.0606 l 1.8461,0.0000 l 0.0000,4.6220 l -1.8461,0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 422.5320,322.6826 l 0.0000,0.0000 l 0.0000,4.6220 l -0.0000,0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 422.5320,327.3046 l 0.0000,0.0000 l 0.0000,4.6220 l -0.0000,0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 422.5320,59.6333 l 1.8442,0.0000 l 0.0000,4.6552 l -1.8442,0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 422.5320,64.2885 l 0.9221,0.0000 l 0.0000,4.6552 l -0.9221,0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 422.5320,68.9438 l 4.6105,-0.0000 l 0.0000,4.6552 l -4.6105,0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 422.5320,73.5990 l 0.9221,0.0000 l 0.0000,4.6552 l -0.9221,0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 422.5320,78.2542 l 1.8442,0.0000 l 0.0000,4.6552 l -1.8442,0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 422.5320,82.9094 l 3.6884,-0.0000 l 0.0000,4.6552 l -3.6884,0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 422.5320,87.5646 l 2.7663,0.0000 l 0.0000,4.6552 l -2.7663,0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 422.5320,92.2198 l 5.5326,-0.0000 l 0.0000,4.6552 l -5.5326,0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 422.5320,96.8750 l 1.8442,0.0000 l 0.0000,4.6552 l -1.8442,0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 422.5320,101.5302 l 5.5326,-0.0000 l 0.0000,4.6552 l -5.5326,0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 422.5320,106.1854 l 14.7537,-0.0000 l 0.0000,4.6552 l -14.7537,0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 422.5320,110.8407 l 11.9874,-0.0000 l 0.0000,4.6552 l -11.9874,0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 422.5320,115.4959 l 10.1431,-0.0000 l 0.0000,4.6552 l -10.1431,0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 422.5320,120.1511 l 25.8189,-0.0000 l 0.0000,4.6552 l -25.8189,0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 422.5320,124.8063 l 23.0526,-0.0000 l 0.0000,4.6552 l -23.0526,0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 422.5320,129.4615 l 23.0526,-0.0000 l 0.0000,4.6552 l -23.0526,0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 422.5320,134.1167 l 30.4294,-0.0000 l 0.0000,4.6552 l -30.4294,0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 422.5320,138.7719 l 20.2863,-0.0000 l 0.0000,4.6552 l -20.2863,0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 422.5320,143.4271 l 31.3515,-0.0000 l 0.0000,4.6552 l -31.3515,0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 422.5320,148.0823 l 32.2737,-0.0000 l 0.0000,4.6552 l -32.2737,0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 422.5320,152.7376 l 35.0400,-0.0000 l 0.0000,4.6552 l -35.0400,0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 422.5320,157.3928 l 34.1179,-0.0000 l 0.0000,4.6552 l -34.1179,0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 422.5320,162.0480 l 40.5726,-0.0000 l 0.0000,4.6552 l -40.5726,0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 422.5320,166.7032 l 44.2610,-0.0000 l 0.0000,4.6552 l -44.2610,0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 422.5320,171.3584 l 46.1052,-0.0000 l 0.0000,4.6552 l -46.1052,0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 422.5320,176.0136 l 35.9621,-0.0000 l 0.0000,4.6552 l -35.9621,0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 422.5320,180.6688 l 44.2610,-0.0000 l 0.0000,4.6552 l -44.2610,0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 422.5320,185.3240 l 52.5599,-0.0000 l 0.0000,4.6552 l -52.5599,0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 422.5320,189.9792 l 45.1831,-0.0000 l 0.0000,4.6552 l -45.1831,0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 422.5320,194.6345 l 33.1958,-0.0000 l 0.0000,4.6552 l -33.1958,0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 422.5320,199.2897 l 39.6505,-0.0000 l 0.0000,4.6552 l -39.6505,0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 422.5320,203.9449 l 33.1958,-0.0000 l 0.0000,4.6552 l -33.1958,0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 422.5320,208.6001 l 23.9747,-0.0000 l 0.0000,4.6552 l -23.9747,0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 422.5320,213.2553 l 25.8189,-0.0000 l 0.0000,4.6552 l -25.8189,0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 422.5320,217.9105 l 23.9747,-0.0000 l 0.0000,4.6552 l -23.9747,0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 422.5320,222.5657 l 29.5073,-0.0000 l 0.0000,4.6552 l -29.5073,0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 422.5320,227.2209 l 11.0653,-0.0000 l 0.0000,4.6552 l -11.0653,0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 422.5320,231.8761 l 11.9874,-0.0000 l 0.0000,4.6552 l -11.9874,0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 422.5320,236.5314 l 15.6758,-0.0000 l 0.0000,4.6552 l -15.6758,0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 422.5320,241.1866 l 7.3768,-0.0000 l 0.0000,4.6552 l -7.3768,0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 422.5320,245.8418 l 6.4547,-0.0000 l 0.0000,4.6552 l -6.4547,0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 422.5320,250.4970 l 5.5326,-0.0000 l 0.0000,4.6552 l -5.5326,0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 422.5320,255.1522 l 7.3768,-0.0000 l 0.0000,4.6552 l -7.3768,0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 422.5320,259.8074 l 5.5326,-0.0000 l 0.0000,4.6552 l -5.5326,0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 422.5320,264.4626 l 2.7663,0.0000 l 0.0000,4.6552 l -2.7663,0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 422.5320,269.1178 l 0.9221,0.0000 l 0.0000,4.6552 l -0.9221,0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 422.5320,273.7730 l 0.9221,0.0000 l 0.0000,4.6552 l -0.9221,0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 422.5320,278.4283 l 2.7663,0.0000 l 0.0000,4.6552 l -2.7663,0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 422.5320,283.0835 l 0.0000,0.0000 l 0.0000,4.6552 l -0.0000,0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 422.5320,287.7387 l 2.7663,0.0000 l 0.0000,4.6552 l -2.7663,0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 408.9173,345.5413 l -0.0000,0.0000 h -5.0067 l -0.0000,-0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 403.9107,345.5413 l -0.0000,0.0000 h -5.0067 l -0.0000,-0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 398.9040,345.5413 l -0.0000,0.0000 h -5.0067 l -0.0000,-0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 393.8973,345.5413 l -0.0000,0.0000 h -5.0067 l -0.0000,-0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 388.8906,345.5413 l -0.0000,0.0000 h -5.0067 l -0.0000,-0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 383.8839,345.5413 l -0.0000,0.0000 h -5.0067 l -0.0000,-0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 378.8772,345.5413 l -0.0000,0.0000 h -5.0067 l -0.0000,-0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 373.8706,345.5413 l -0.0000,0.0000 h -5.0067 l -0.0000,-0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 368.8639,345.5413 l -0.0000,0.6296 h -5.0067 l -0.0000,-0.6296 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 363.8572,345.5413 l -0.0000,0.6296 h -5.0067 l -0.0000,-0.6296 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 358.8505,345.5413 l -0.0000,0.0000 h -5.0067 l -0.0000,-0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 353.8438,345.5413 l -0.0000,0.0000 h -5.0067 l -0.0000,-0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 348.8372,345.5413 l -0.0000,0.3148 h -5.0067 l -0.0000,-0.3148 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 343.8305,345.5413 l -0.0000,0.3148 h -5.0067 l -0.0000,-0.3148 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 338.8238,345.5413 l -0.0000,0.0000 h -5.0067 l -0.0000,-0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 333.8171,345.5413 l -0.0000,0.6296 h -5.0067 l -0.0000,-0.6296 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 328.8104,345.5413 l -0.0000,0.0000 h -5.0067 l -0.0000,-0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 323.8037,345.5413 l -0.0000,0.6296 h -5.0067 l -0.0000,-0.6296 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 318.7971,345.5413 l -0.0000,0.9444 h -5.0067 l -0.0000,-0.9444 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 313.7904,345.5413 l -0.0000,1.8887 h -5.0067 l -0.0000,-1.8887 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 308.7837,345.5413 l -0.0000,0.0000 h -5.0067 l -0.0000,-0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 303.7770,345.5413 l -0.0000,1.2592 h -5.0067 l -0.0000,-1.2592 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 298.7703,345.5413 l -0.0000,0.6296 h -5.0067 l -0.0000,-0.6296 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 293.7637,345.5413 l -0.0000,2.2035 h -5.0067 l -0.0000,-2.2035 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 288.7570,345.5413 l -0.0000,0.9444 h -5.0067 l -0.0000,-0.9444 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 283.7503,345.5413 l -0.0000,0.9444 h -5.0067 l -0.0000,-0.9444 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 278.7436,345.5413 l -0.0000,0.3148 h -5.0067 l -0.0000,-0.3148 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 273.7369,345.5413 l -0.0000,1.8887 h -5.0067 l -0.0000,-1.8887 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 268.7302,345.5413 l -0.0000,2.5183 h -5.0067 l -0.0000,-2.5183 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 263.7236,345.5413 l -0.0000,3.4627 h -5.0067 l -0.0000,-3.4627 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 258.7169,345.5413 l -0.0000,4.4071 h -5.0067 l -0.0000,-4.4071 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 253.7102,345.5413 l -0.0000,3.4627 h -5.0067 l -0.0000,-3.4627 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 248.7035,345.5413 l -0.0000,4.0923 h -5.0067 l -0.0000,-4.0923 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 243.6968,345.5413 l -0.0000,3.7775 h -5.0067 l -0.0000,-3.7775 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 238.6902,345.5413 l -0.0000,7.8697 h -5.0067 l -0.0000,-7.8697 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 233.6835,345.5413 l -0.0000,5.6662 h -5.0067 l -0.0000,-5.6662 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 228.6768,345.5413 l -0.0000,7.2402 h -5.0067 l -0.0000,-7.2402 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 223.6701,345.5413 l -0.0000,7.2402 h -5.0067 l -0.0000,-7.2402 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 218.6634,345.5413 l -0.0000,8.1845 h -5.0067 l -0.0000,-8.1845 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 213.6567,345.5413 l -0.0000,10.0733 h -5.0067 l -0.0000,-10.0733 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 208.6501,345.5413 l -0.0000,13.8508 h -5.0067 l -0.0000,-13.8508 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 203.6434,345.5413 l -0.0000,11.0176 h -5.0067 l -0.0000,-11.0176 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 198.6367,345.5413 l -0.0000,14.1655 h -5.0067 l -0.0000,-14.1655 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 193.6300,345.5413 l -0.0000,21.4057 h -5.0067 l -0.0000,-21.4057 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 188.6233,345.5413 l -0.0000,19.5170 h -5.0067 l -0.0000,-19.5170 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 183.6167,345.5413 l -0.0000,18.5726 h -5.0067 l -0.0000,-18.5726 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 178.6100,345.5413 l -0.0000,21.0909 h -5.0067 l -0.0000,-21.0909 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 173.6033,345.5413 l -0.0000,30.2198 h -5.0067 l -0.0000,-30.2198 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 168.5966,345.5413 l -0.0000,27.7015 h -5.0067 l -0.0000,-27.7015 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 163.5899,345.5413 l -0.0000,54.4587 h -5.0067 l -0.0000,-54.4587 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 363.6176,345.5413 l -0.0000,0.3145 h -4.5399 l -0.0000,-0.3145 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 359.0778,345.5413 l -0.0000,0.0000 h -4.5399 l -0.0000,-0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 354.5379,345.5413 l -0.0000,0.0000 h -4.5399 l -0.0000,-0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 349.9980,345.5413 l -0.0000,0.0000 h -4.5399 l -0.0000,-0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 345.4581,345.5413 l -0.0000,0.3145 h -4.5399 l -0.0000,-0.3145 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 340.9183,345.5413 l -0.0000,0.0000 h -4.5399 l -0.0000,-0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 336.3784,345.5413 l -0.0000,0.0000 h -4.5399 l -0.0000,-0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 331.8385,345.5413 l -0.0000,0.0000 h -4.5399 l -0.0000,-0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 327.2987,345.5413 l -0.0000,0.6289 h -4.5399 l -0.0000,-0.6289 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 322.7588,345.5413 l -0.0000,0.3145 h -4.5399 l -0.0000,-0.3145 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 318.2189,345.5413 l -0.0000,0.0000 h -4.5399 l -0.0000,-0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 313.6790,345.5413 l -0.0000,0.0000 h -4.5399 l -0.0000,-0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 309.1392,345.5413 l -0.0000,0.3145 h -4.5399 l -0.0000,-0.3145 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 304.5993,345.5413 l -0.0000,0.3145 h -4.5399 l -0.0000,-0.3145 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 300.0594,345.5413 l -0.0000,0.0000 h -4.5399 l -0.0000,-0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 295.5195,345.5413 l -0.0000,1.5724 h -4.5399 l -0.0000,-1.5724 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 290.9797,345.5413 l -0.0000,0.0000 h -4.5399 l -0.0000,-0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 286.4398,345.5413 l -0.0000,0.6289 h -4.5399 l -0.0000,-0.6289 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 281.8999,345.5413 l -0.0000,0.6289 h -4.5399 l -0.0000,-0.6289 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 277.3601,345.5413 l -0.0000,0.0000 h -4.5399 l -0.0000,-0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 272.8202,345.5413 l -0.0000,1.5724 h -4.5399 l -0.0000,-1.5724 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 268.2803,345.5413 l -0.0000,2.2013 h -4.5399 l -0.0000,-2.2013 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 263.7404,345.5413 l -0.0000,1.2579 h -4.5399 l -0.0000,-1.2579 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 259.2006,345.5413 l -0.0000,2.2013 h -4.5399 l -0.0000,-2.2013 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 254.6607,345.5413 l -0.0000,2.2013 h -4.5399 l -0.0000,-2.2013 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 250.1208,345.5413 l -0.0000,1.5724 h -4.5399 l -0.0000,-1.5724 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 245.5809,345.5413 l -0.0000,3.7737 h -4.5399 l -0.0000,-3.7737 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 241.0411,345.5413 l -0.0000,3.7737 h -4.5399 l -0.0000,-3.7737 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 236.5012,345.5413 l -0.0000,3.4592 h -4.5399 l -0.0000,-3.4592 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 231.9613,345.5413 l -0.0000,1.8868 h -4.5399 l -0.0000,-1.8868 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 227.4215,345.5413 l -0.0000,3.7737 h -4.5399 l -0.0000,-3.7737 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 222.8816,345.5413 l -0.0000,3.4592 h -4.5399 l -0.0000,-3.4592 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 218.3417,345.5413 l -0.0000,5.3461 h -4.5399 l -0.0000,-5.3461 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 213.8018,345.5413 l -0.0000,7.8619 h -4.5399 l -0.0000,-7.8619 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 209.2620,345.5413 l -0.0000,5.3461 h -4.5399 l -0.0000,-5.3461 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 204.7221,345.5413 l -0.0000,6.2895 h -4.5399 l -0.0000,-6.2895 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 200.1822,345.5413 l -0.0000,8.1763 h -4.5399 l -0.0000,-8.1763 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 195.6423,345.5413 l -0.0000,7.5474 h -4.5399 l -0.0000,-7.5474 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 191.1025,345.5413 l -0.0000,8.4908 h -4.5399 l -0.0000,-8.4908 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 186.5626,345.5413 l -0.0000,11.9500 h -4.5399 l -0.0000,-11.9500 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 182.0227,345.5413 l -0.0000,7.8619 h -4.5399 l -0.0000,-7.8619 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 177.4829,345.5413 l -0.0000,13.2079 h -4.5399 l -0.0000,-13.2079 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 172.9430,345.5413 l -0.0000,14.7803 h -4.5399 l -0.0000,-14.7803 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 168.4031,345.5413 l -0.0000,22.0132 h -4.5399 l -0.0000,-22.0132 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 163.8632,345.5413 l -0.0000,17.6106 h -4.5399 l -0.0000,-17.6106 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 159.3234,345.5413 l -0.0000,17.6106 h -4.5399 l -0.0000,-17.6106 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 154.7835,345.5413 l -0.0000,20.1264 h -4.5399 l -0.0000,-20.1264 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 150.2436,345.5413 l -0.0000,21.3843 h -4.5399 l -0.0000,-21.3843 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 145.7037,345.5413 l -0.0000,29.5606 h -4.5399 l -0.0000,-29.5606 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 141.1639,345.5413 l -0.0000,52.8318 h -4.5399 l -0.0000,-52.8318 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.1" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 408.9173,48.7416 l -0.0000,-5.4459 h -272.2933 l -0.0000,5.4459 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 401.2295,36.4884 l -0.0000,-18.6902 h -18.6902 l -0.0000,18.6902 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="16.991104176707484px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,391.8844,27.1433)" stroke="none" text-anchor="middle">20
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="1.8814391752452142" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 391.8844,40.5728 v 8.1688 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 346.3348,36.4884 l -0.0000,-18.6902 h -18.6902 l -0.0000,18.6902 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="16.991104176707484px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,336.9897,27.1433)" stroke="none" text-anchor="middle">15
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="1.8814391752452142" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 336.9897,40.5728 v 8.1688 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 291.4401,36.4884 l -0.0000,-18.6902 h -18.6902 l -0.0000,18.6902 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="16.991104176707484px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,282.0950,27.1433)" stroke="none" text-anchor="middle">10
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="1.8814391752452142" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 282.0950,40.5728 v 8.1688 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 231.8728,36.4884 l -0.0000,-18.6902 h -9.3451 l -0.0000,18.6902 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="16.991104176707484px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,227.2003,27.1433)" stroke="none" text-anchor="middle">5
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="1.8814391752452142" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 227.2003,40.5728 v 8.1688 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 176.9781,36.4884 l -0.0000,-18.6902 h -9.3451 l -0.0000,18.6902 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="16.991104176707484px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,172.3056,27.1433)" stroke="none" text-anchor="middle">0
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="1.8814391752452142" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 172.3056,40.5728 v 8.1688 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 408.9173,331.9267 l -0.0000,-272.2933 h -272.2933 l -0.0000,272.2933 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 169.9055,199.9085 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 167.9392,220.5216 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 197.2676,189.6876 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 167.4139,192.6905 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 171.7726,203.0411 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 161.3924,200.3408 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 299.9033,261.6646 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 210.9712,261.6329 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 225.0095,273.0142 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 205.7833,228.3757 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 206.4943,301.6840 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 192.9606,259.8891 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 194.4546,189.3292 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 161.7669,197.7981 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 162.5887,159.2454 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 229.8250,200.6856 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 204.0836,225.4685 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 173.6038,183.1635 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 190.3311,180.6307 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 215.9357,260.5913 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 191.1364,185.1472 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 191.6786,294.0923 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 169.9657,220.0330 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 161.5211,182.3152 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 259.1027,221.4735 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 177.8093,188.1005 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 208.8034,196.5444 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 205.4539,213.6695 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 240.3030,209.8819 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 161.3669,196.5843 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 214.7396,209.8902 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 234.9995,216.3525 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 192.6467,252.9091 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 265.4812,195.0224 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 191.5860,165.2855 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 180.9196,231.4813 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 206.1973,235.6759 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 207.5987,283.1138 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 194.7109,194.3951 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 203.1366,236.4487 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 167.5445,204.2706 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 208.5390,174.9633 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 283.6344,305.4685 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 176.4363,175.0731 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 171.9388,252.5662 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 263.7349,240.5117 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 177.9468,240.3950 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 170.9842,224.3954 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 210.1504,206.5008 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 224.7618,222.4342 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 253.0507,300.3432 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 169.2875,238.3317 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 239.9112,246.3755 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 187.4739,214.8401 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 217.4382,270.2115 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 211.1764,203.2548 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 184.4939,237.9569 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 168.0991,210.2723 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 296.2478,251.8434 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 210.4649,257.3699 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 182.2656,205.3549 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 292.5664,256.4993 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 161.3261,225.7774 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 198.1652,188.7808 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 268.3503,252.7028 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 250.7972,281.6344 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 246.8471,206.4051 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 195.0269,259.0359 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 319.1868,175.9731 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 260.9366,224.4309 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 204.0166,213.5554 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 164.5184,147.8761 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 183.4857,227.7838 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 170.8978,223.2486 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 213.7253,271.4114 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 213.4865,224.3105 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 173.4213,247.6623 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 186.8610,284.2446 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 244.8171,231.4620 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 256.9124,226.7511 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 184.1421,209.3722 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 164.5479,205.3780 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 164.1223,209.9054 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 205.4665,200.9181 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 194.4312,227.1739 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 164.4029,205.2700 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 212.3709,223.2735 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 161.5240,170.7026 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 177.0052,238.7224 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 185.0809,202.5806 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 202.1359,189.9248 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 172.3384,169.0200 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 190.9694,278.3153 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 169.8666,194.5144 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 165.7064,210.6670 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 174.3236,215.3783 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 228.8102,281.0472 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 178.6854,289.2294 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 197.7389,229.5408 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 168.8409,172.8004 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 214.0448,258.8381 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 222.7035,147.4384 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 171.4303,261.4377 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 161.4079,211.0687 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 215.8999,243.9366 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 185.5600,193.0029 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 228.0527,251.3541 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 178.9598,202.3140 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 162.7572,171.5631 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 161.6377,212.2565 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 169.5659,185.7272 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 209.5926,254.1495 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 260.3224,252.9441 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 192.1477,223.9708 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 202.8040,250.3360 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 181.7826,184.8627 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 202.3654,239.4309 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 318.2010,282.8282 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 201.9120,218.5991 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 179.2764,210.5219 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 186.9730,144.6366 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 174.4602,205.2770 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 164.6565,197.6262 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 262.6447,235.6508 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 223.1108,189.4224 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 193.7298,212.4183 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 186.2454,251.2345 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 214.8834,173.1187 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 261.0135,213.6240 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 179.8469,212.7451 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 174.8134,241.8908 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 202.0985,267.9779 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 179.1551,211.4630 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 195.1836,233.7601 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 164.8415,206.0490 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 161.3282,184.4879 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 169.9181,169.3199 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 207.2945,222.0157 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 170.6012,206.6325 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 210.7775,233.3206 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 185.9627,188.4931 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 219.0020,267.3500 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 164.4517,202.0909 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 170.5943,220.3937 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 195.7681,262.9095 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 204.8235,266.7829 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 163.7031,232.6549 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 177.3944,176.9895 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 217.1931,189.1199 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 161.6975,208.9562 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 221.1076,200.4447 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 242.7195,212.8353 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 170.1640,180.5127 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 194.7847,200.8766 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 184.5064,215.8310 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 215.6633,212.9539 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 365.2534,280.8312 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 226.6582,228.1007 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 162.4169,229.4598 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 194.3346,211.0950 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 273.6494,291.6097 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 173.7628,218.0173 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 169.5909,218.8216 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 222.9519,205.8625 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 167.2430,229.9767 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 220.9113,234.6918 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 187.2345,254.4582 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 165.7946,154.6693 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 176.6301,245.1671 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 223.5913,255.9407 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 195.8916,188.6285 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 190.1973,205.5964 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 163.4212,167.4671 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 161.9169,143.6353 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 190.0874,252.5243 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 162.3147,218.4651 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 170.2652,161.8399 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 188.6609,232.2870 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 176.3142,120.3440 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 259.4027,215.7555 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 175.8434,238.7612 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 173.3904,205.8551 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 187.1211,217.4972 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 198.0304,153.2178 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 315.3685,246.0285 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 164.3079,172.1810 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 161.9701,187.8590 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 161.3982,141.5078 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 255.7378,302.7789 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 171.7391,169.6629 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 230.5959,295.5009 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 233.8923,265.8255 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 163.9584,130.7183 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 239.1789,200.1281 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 163.3516,232.4281 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 225.8975,256.4125 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 193.3690,284.5518 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 172.4395,202.0518 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 228.1250,173.1132 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 195.6228,259.0951 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 231.5678,182.0469 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 270.5739,247.2875 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 163.2460,181.6499 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 168.5911,231.9497 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 174.3905,166.5653 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 171.9141,164.8694 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 164.8856,188.8082 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 197.9529,211.8657 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 162.8769,280.8197 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 181.2332,250.4611 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 192.9180,231.5839 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 192.7850,218.5254 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 172.1841,187.7213 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 169.7900,157.6026 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 183.5626,259.4887 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 188.1629,154.8129 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 177.1951,269.4381 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 162.1956,226.2010 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 184.6479,204.4831 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 200.0588,281.4123 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 235.7568,273.0576 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 171.3653,227.7256 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 162.5469,205.4730 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 215.1713,204.6520 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 195.2447,191.7753 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 211.2047,262.9940 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 164.6692,226.7961 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 319.9965,240.6279 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 183.5815,210.5249 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 239.3028,193.1705 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 208.1437,220.9074 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 162.3065,179.7770 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 192.9492,234.3360 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 178.0845,170.7679 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 186.1465,172.5816 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 161.4727,217.6050 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 172.3721,156.6613 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 185.7996,214.0530 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 186.7181,217.0798 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 364.1577,321.8721 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 217.2315,242.8139 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 258.6452,212.9768 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 267.5952,272.0502 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 237.9138,246.0487 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 161.5308,177.5464 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 196.6931,220.5141 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 169.6174,218.1497 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 201.7317,250.7831 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 186.2991,191.3306 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 165.3836,133.4957 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 166.8106,255.9313 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 183.6285,205.8992 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 205.5865,229.8918 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 189.2125,168.0947 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 316.0635,290.7260 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 172.0130,224.8030 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 197.7901,203.0000 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 192.1288,220.0690 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 171.0461,283.2297 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 188.9738,209.7516 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 195.7326,263.2197 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 306.1029,257.0187 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 172.2918,162.6306 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 167.6396,258.2202 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 170.8387,212.6932 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 212.4437,211.2755 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 176.4793,250.7439 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 247.7731,295.4324 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 162.8000,164.4527 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 173.2898,243.0786 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 172.2122,251.4584 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 175.5499,229.2037 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 164.6298,170.0031 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 221.5401,227.0082 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 193.2097,238.0496 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 216.8537,230.9280 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 170.2672,223.5256 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 175.1519,208.7938 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 201.2153,242.3764 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 165.0157,193.1516 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 199.8515,185.6542 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 314.3001,211.7704 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 257.7012,250.4399 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 181.8300,188.4258 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 174.4457,167.0469 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 170.9628,161.7123 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 164.1105,206.0138 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 161.7365,195.1276 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 205.8240,240.1407 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 183.8067,155.8387 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 194.0413,219.3694 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 186.5738,263.6604 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 183.3196,225.4855 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 227.3752,240.7467 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 177.3614,193.0601 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 245.7815,260.6525 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 193.8370,226.7512 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 249.3572,274.5201 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 190.7824,165.9604 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 170.2412,200.2128 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 222.6510,247.8906 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 211.9719,221.6449 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 182.0738,163.5288 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 218.0750,200.1955 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 223.3097,216.8547 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 162.2649,193.1349 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 197.9838,216.5972 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 202.5067,221.1598 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 182.5311,201.8753 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 184.2266,194.3620 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 207.9081,232.2552 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 163.2485,188.0414 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 170.3928,201.3607 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 227.7904,204.8644 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 207.0144,269.3803 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 166.4189,204.4056 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 161.6826,134.7914 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 174.4794,228.9473 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 161.4487,201.0406 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 193.5639,206.8695 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 239.4674,288.9855 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 173.6096,174.3256 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 211.7120,213.2043 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 190.8779,219.6737 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 182.8711,203.7475 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 262.0441,245.6734 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 239.2219,195.0989 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 210.3084,204.2169 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 204.4272,252.9920 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 184.8912,222.5706 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 168.5069,190.3252 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 161.6830,208.1220 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 161.3712,170.1498 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 161.3212,127.3766 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 162.2149,158.8186 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 211.0229,256.8261 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 181.9809,264.4126 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 198.0430,175.7508 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 178.2429,197.1198 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 166.0636,244.8090 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 191.9853,242.6985 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 176.3485,216.7566 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 182.7765,230.8730 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 267.9259,211.1579 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 256.8187,239.9018 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 162.0226,138.5390 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 165.1334,172.1210 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 205.8664,239.8800 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 193.9988,105.9784 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 171.8922,177.3268 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 271.6203,184.0511 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 255.6832,230.6886 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 179.3551,206.4676 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 167.2638,161.0091 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 190.9808,229.8493 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 193.1101,269.3518 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 183.2778,135.9320 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 185.0428,220.3369 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 200.8090,189.6598 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 168.7252,213.4785 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 161.5479,177.3540 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 173.0679,180.8478 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 242.1819,261.3181 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 277.0389,248.1290 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 175.6111,233.5621 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 168.0772,171.7899 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 201.8895,189.9322 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 199.7343,178.1311 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 194.1879,205.6304 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 175.3714,230.1429 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 212.3505,224.9767 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 164.4674,253.3259 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 170.9194,205.9064 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 164.2239,216.2557 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 167.1481,127.5473 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 174.7983,213.6202 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 162.3733,283.6618 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 162.0542,143.3823 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 162.6502,203.6320 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 178.0582,204.1280 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 214.5245,203.4031 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 184.9512,219.0669 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 162.8354,265.6518 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 253.7704,210.2670 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 198.0333,196.5202 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 208.3093,200.3523 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 181.5072,241.3720 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 262.0339,228.1087 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 201.0193,270.1688 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 287.8493,228.8812 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 189.5291,186.9817 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 218.8709,179.2878 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 196.7098,208.7978 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 168.8257,152.5330 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 171.6679,152.5386 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 198.6896,259.2044 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 161.5179,154.5665 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 210.5562,243.3330 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 161.3062,305.5369 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 181.7544,169.7738 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 174.7089,237.1071 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 235.6861,285.0231 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 163.2569,148.1594 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 178.6859,196.2533 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 163.4488,283.6393 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 182.7144,213.9099 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 178.9078,208.3581 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 411.6403,283.9510 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 162.5006,150.3334 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 198.7423,208.8457 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 184.5385,179.5570 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 182.3677,215.9806 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 190.7070,217.7600 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 237.4070,214.4057 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 203.6836,215.1682 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 177.7373,246.8175 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 169.3124,229.4569 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 202.9997,174.6843 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 177.4044,258.2168 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 214.9794,213.5973 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 187.1443,202.7775 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 179.8953,190.1797 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 176.3000,158.3683 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 191.0188,172.6741 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 187.0903,187.2601 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 206.7568,194.2898 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 161.3217,217.3512 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 204.2416,272.7384 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 232.9371,256.2563 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 233.1168,212.6991 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 172.6766,177.3171 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 161.6521,174.4837 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 201.0082,237.5103 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 207.0451,229.2347 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 163.1829,134.8968 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 164.8853,176.7138 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 236.7750,234.6901 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 218.6486,216.5255 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 168.1881,216.6675 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 161.3126,200.2790 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 168.5803,182.9634 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 161.4007,210.7864 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 258.7953,225.1386 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 169.9759,205.4351 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 181.5512,168.2306 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 184.4699,236.6167 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 235.9011,201.6498 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 232.5160,292.6603 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 190.0045,202.2171 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 166.0558,152.1400 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 247.9880,217.5604 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 229.2546,227.3169 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 211.5117,216.2581 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 165.7869,230.2785 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 175.6632,234.5683 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 161.5149,211.5520 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 182.5523,189.5305 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 198.3127,199.0305 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 245.0484,238.9507 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 167.7761,208.3653 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 174.1136,214.2209 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 174.7444,212.2291 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 244.6498,196.3291 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 162.2046,146.5990 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 197.1437,225.6710 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 169.1402,232.8119 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 196.1521,233.4438 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 219.7985,238.0069 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 196.9051,260.1283 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 178.2271,267.2686 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 172.7232,202.7937 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 183.1335,208.6148 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 187.1916,184.4855 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 219.5707,245.2179 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 323.6434,270.2344 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 161.4238,115.9441 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 162.0475,202.9323 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 165.6642,207.7209 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 162.7337,182.3553 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 178.5354,244.9031 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 204.5872,307.1506 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 172.3968,243.6482 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 224.1128,250.3552 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 270.6867,241.1877 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 180.6248,229.0271 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 166.5684,163.7997 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 161.8913,183.4251 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 192.4910,219.7830 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 192.6167,232.7772 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 162.2517,217.9407 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 223.8722,245.2587 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 179.6022,239.4733 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 180.4040,198.3922 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 175.2714,186.7103 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 178.2774,162.1922 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 197.9868,199.3046 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 163.3427,217.2121 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 167.8201,209.5463 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 221.2958,216.2378 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 186.5946,216.6633 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 220.1609,232.7858 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 236.8689,243.2461 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 192.7109,218.7401 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 239.9992,211.1999 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 176.7566,224.0545 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 167.9101,165.7364 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 229.5888,188.8252 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 164.5320,180.9727 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 214.5642,261.5970 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 268.5099,265.3153 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 266.3392,274.2970 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 171.1710,241.7119 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 185.7139,215.1044 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 162.0697,164.1419 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 334.2080,216.0473 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 295.2707,310.5709 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 162.8893,275.6123 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 172.0226,260.6566 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 171.8883,232.2485 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 187.8611,188.2835 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 196.4559,231.4620 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 230.7769,245.3208 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 234.8589,193.1529 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 191.3323,268.5736 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 199.2033,209.6964 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 175.2670,214.9513 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 205.9664,237.5546 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 171.4269,217.8572 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 223.9648,185.2990 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 176.7015,189.0777 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 199.4125,226.9239 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 161.7120,194.6707 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 164.7239,179.1383 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 163.4872,157.7818 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 186.2912,199.8285 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 191.8351,207.5592 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 176.8820,199.3919 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 198.1744,213.5519 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 199.0097,240.1739 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 224.0182,240.0212 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 174.7034,138.2914 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 209.8463,187.7133 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 170.5218,191.3877 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 161.4387,180.7596 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 169.5053,247.3317 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 302.7437,261.9000 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 213.7486,229.3051 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 161.9809,196.9491 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 211.2029,276.9695 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 161.4881,132.4884 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 177.9783,258.6366 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 295.0518,218.7392 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 193.2053,215.0500 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 162.5200,174.4237 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 187.7379,199.3828 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 230.1962,239.9924 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 166.0940,210.2801 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 170.0481,208.6300 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 195.1689,203.6955 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 211.8630,205.4762 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 165.5300,158.2176 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 194.7449,166.1416 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 254.3484,289.5478 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 161.3599,186.2825 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 213.1101,256.2735 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 229.2422,223.2213 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 163.5834,168.5245 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 168.2376,143.8608 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 259.2004,245.7723 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 162.5325,142.6249 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 192.5196,218.6146 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 171.6498,238.0818 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 240.5418,165.8013 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 166.9306,193.5682 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 176.6108,199.1597 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 180.6491,221.8791 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 191.9146,265.6188 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 164.4976,163.3909 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 162.0332,182.5119 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 239.7161,223.6087 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 261.9938,192.5730 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 161.4565,185.1273 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 163.7310,246.6217 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 194.9738,265.0014 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 165.9267,179.4755 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 161.3113,207.5313 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 161.9133,140.8032 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 167.0120,201.1327 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 161.4572,210.3916 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 207.6258,181.5287 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 161.3337,191.6663 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 165.5044,203.7481 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 249.9284,310.3842 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 220.0938,235.3509 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 293.3540,288.3289 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 162.9095,235.7861 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 164.6239,152.5301 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 161.4131,151.3514 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 164.0240,184.9988 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 163.3179,210.5583 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 180.7685,233.1345 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 187.0915,198.9830 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 162.3091,186.2242 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 162.5164,104.6792 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 209.3519,172.2229 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 161.3125,148.0356 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 174.3856,127.1032 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 161.9515,145.5450 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 191.8661,216.5333 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 161.4238,141.3667 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 189.9286,256.3255 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 165.8085,239.2482 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 219.9961,214.6948 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 252.5884,254.8846 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 178.6569,196.1735 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 213.9000,257.1358 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 189.1172,212.5038 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 162.7056,199.9450 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 233.8547,214.7295 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 169.6875,182.4848 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 204.9289,236.9032 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 192.3152,224.5541 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 168.1611,179.0924 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 172.3657,185.7533 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 183.9701,180.0800 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 207.0675,248.9727 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 214.9099,213.3001 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 182.2305,245.1992 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 168.8611,195.6421 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 174.8395,149.2419 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 171.6854,259.2384 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 200.4019,294.7168 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 234.4425,212.1378 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 236.8436,252.7068 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 193.9509,220.0388 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 274.9344,235.8885 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 163.4952,199.7099 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 192.6908,276.0977 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 171.0132,248.5826 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 311.6912,292.2465 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 172.3025,204.0515 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 257.3740,316.0292 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 166.2277,247.9804 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 214.7600,269.0573 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 190.8778,241.1450 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 211.0573,226.8154 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 219.8416,211.1194 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 263.0209,257.0332 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 170.2847,205.8282 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 173.6937,261.4612 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 161.3325,191.7421 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 184.6549,182.8419 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 176.1935,185.2863 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 230.2598,219.0034 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 181.0098,180.2054 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 284.4841,254.0656 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 231.6778,248.3619 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 162.1736,184.0641 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 168.6812,143.2912 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 161.5799,208.2102 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 188.4416,216.0341 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 185.4889,249.3428 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 188.9022,218.0753 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 161.6835,126.6291 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 161.7246,219.5828 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 161.5652,199.8839 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 211.7172,195.9564 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 162.2271,189.1754 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 249.6487,263.5054 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 188.3386,172.4623 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 173.4175,259.2671 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 162.4679,188.9149 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 176.1521,102.3972 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 195.4255,264.0304 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 288.8523,207.9443 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 169.2864,212.8186 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 253.2552,248.0414 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 161.6748,239.6652 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 163.2206,199.2366 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 200.1628,188.2545 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 177.4096,183.3457 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 235.7610,256.6746 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 180.0607,205.3178 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 179.7335,134.4411 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 186.3812,197.2725 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 170.2871,169.4979 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 176.9073,158.7160 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 183.8025,182.8728 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 245.1585,262.6222 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 165.5604,175.7464 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 186.0628,181.2961 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 244.4289,274.4586 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 208.9425,225.4928 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 163.1550,205.0143 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 172.3069,242.1012 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 230.8899,210.0750 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 346.2614,292.7607 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 193.4965,224.6317 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 197.8353,185.2023 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 210.8640,184.4218 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 207.2156,201.8897 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 198.2375,214.4758 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 322.2637,320.5037 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 161.5557,205.0811 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 229.6331,254.0534 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 180.6519,206.9615 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 195.8510,261.7844 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 225.4625,278.4945 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 208.7107,250.0772 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 187.1054,218.4193 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 239.1215,206.3763 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 253.8771,188.2007 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 218.0173,242.4829 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 179.9520,217.7225 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 162.3238,149.9727 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 167.2699,188.8209 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 161.7474,214.2719 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 207.3568,201.9846 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 173.2671,257.7692 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 267.2513,297.7095 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 186.4223,251.2288 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 166.1215,204.2616 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 213.8900,263.7521 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 174.4169,226.5217 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 192.4158,267.0738 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 263.8300,160.0708 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 186.5773,153.8243 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 189.8500,230.5746 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 211.3146,194.1232 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 185.7009,146.0930 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 175.3451,201.2667 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 236.9983,253.3586 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 176.9727,221.9521 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 169.8705,215.1753 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 209.6291,198.0039 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 187.1140,229.9960 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 193.2931,194.2913 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 210.4026,234.1643 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 181.1038,250.6088 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 194.9600,216.2644 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 290.1161,203.1410 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 232.1562,248.9053 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 263.3166,305.3844 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 184.5839,218.2120 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 176.0375,206.0522 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 161.3251,149.4129 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 183.0990,211.8924 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 161.5539,187.9614 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 172.8277,271.8757 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 180.0336,177.9125 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 171.7651,231.8294 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 168.0393,204.8880 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 246.6459,231.1463 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 237.6106,233.5319 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 218.8831,257.4589 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 161.4843,175.4462 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 172.9642,239.8798 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 167.7758,171.4167 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 234.9035,263.8167 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 161.5758,163.5089 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 172.8461,215.8975 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 196.9546,226.0263 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 223.9116,203.8278 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 223.6875,180.8702 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 193.7164,240.4437 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 171.3705,165.1748 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 247.8194,239.6218 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 224.9457,231.5570 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 164.1896,145.5875 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 222.4669,176.0401 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 227.5058,222.9812 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 216.6456,264.6785 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 175.7856,161.2902 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 188.6980,240.1998 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 190.6798,220.3463 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 233.3988,158.4445 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 174.1683,210.2234 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 180.1791,157.0017 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 225.0848,249.3367 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 190.7125,252.2976 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 164.9477,213.1931 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 191.6859,160.1747 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 178.5217,245.7341 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 211.2472,290.0273 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 167.4905,243.2623 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 184.6555,271.9859 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 180.9232,207.4634 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 366.6724,315.3345 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 214.1995,229.3237 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 174.3428,208.9367 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 191.5352,172.7758 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 169.7225,208.4198 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 174.2457,215.9566 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 162.8721,166.8301 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 174.2443,270.8785 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 178.3833,239.9650 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 197.0553,208.2049 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 173.6423,229.5952 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 171.5799,187.5897 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 205.0997,206.2166 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 229.7504,249.4074 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 168.8518,161.9018 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 168.1639,162.4494 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 206.6026,244.7822 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 179.9450,126.9853 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 203.6514,179.9882 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 284.6590,257.1076 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 189.8275,233.3414 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 181.2200,220.8687 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 312.8332,297.4252 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 259.1862,218.6983 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 170.3367,170.5330 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 193.2388,207.2688 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 162.6613,236.1996 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 203.6230,226.0077 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 213.4291,240.7625 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 242.9047,300.6655 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 161.3305,186.8459 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 199.7628,163.3468 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 185.1040,218.1611 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 167.3039,181.2639 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 168.0539,208.4111 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 210.3337,193.0394 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 175.2045,273.1811 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 189.4662,196.8074 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 218.1654,150.6634 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 199.0096,227.0190 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 207.2072,203.6241 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 164.8927,216.9722 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 162.0672,176.1966 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 203.7733,229.5424 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 190.1125,211.4155 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 305.7414,310.6373 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 171.2050,223.0620 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 292.8914,277.4844 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 184.8361,236.5258 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 162.7393,177.3963 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 254.7613,281.3791 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 190.8663,183.9463 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 198.9751,207.2529 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 186.6240,247.1574 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 201.2287,191.3946 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 180.9334,195.0631 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 241.1895,242.5315 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 237.3355,275.8085 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 171.1756,198.6078 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 184.2044,252.1251 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 161.7970,207.8697 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 177.3913,196.5743 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 166.9615,227.5384 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 162.8763,149.9703 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 179.0980,240.4362 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 189.8259,174.5804 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 173.6156,170.4694 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 171.3911,232.5990 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 230.1904,226.0533 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 175.2005,177.1117 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 197.3477,247.7519 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 254.2104,235.8139 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 248.8244,310.8832 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 213.3685,237.2789 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 173.8929,221.6802 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 171.2363,211.9379 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 193.8645,265.3960 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 237.5959,261.5390 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 216.9448,231.2128 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 177.5174,191.2669 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 228.7999,263.3959 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 222.3926,190.7329 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 186.5762,272.5497 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 163.2489,188.6689 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 191.7798,248.8528 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 210.0372,275.6586 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 187.3915,180.0621 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 257.0474,219.7124 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 162.3245,246.1290 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 166.1515,205.1314 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 240.0051,301.6457 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 162.3812,222.8385 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 180.5116,173.5179 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 305.8909,315.7382 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 196.0781,174.9549 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 272.1692,233.9759 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 169.1420,187.7472 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 183.7613,192.9392 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 195.7018,201.9427 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 176.4628,160.4695 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 218.7951,273.2584 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 184.9015,277.8171 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 162.1678,208.9763 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 167.8226,192.0745 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 197.6126,221.5032 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 173.4172,210.6176 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 207.8092,245.1208 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 194.5086,260.2701 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 172.0028,226.6270 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 180.3400,249.5138 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 166.6108,202.2436 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 207.7633,240.9603 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 252.6669,243.0801 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 249.8512,216.5724 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 230.8037,231.0578 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 348.3326,333.4988 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 220.6893,180.5931 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 189.8550,153.3257 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 172.4483,222.8983 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 200.1346,297.7114 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 213.8796,156.8294 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 212.1529,240.0766 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 237.0754,245.9277 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 220.6926,196.3932 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 186.4433,241.7307 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 210.6794,226.0276 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 242.6013,233.9127 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 192.5951,222.8287 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 334.8952,318.1903 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 161.3073,209.9362 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 265.4412,235.2337 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 199.1969,183.7919 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 174.2222,168.3446 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 203.0206,305.7014 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 227.1810,277.7270 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 163.2396,122.4820 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 173.8638,193.8568 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 183.4514,165.1574 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 193.0454,246.3647 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 176.1818,179.7569 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 174.2165,196.4062 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 192.2975,200.4934 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 223.8181,241.1651 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 293.5702,233.6131 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 221.1889,172.6055 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 162.3111,164.1834 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 212.7925,206.4897 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 179.0441,259.2995 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 301.1418,272.0496 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 182.2258,241.8968 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 187.3161,176.8905 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 161.6058,158.1982 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 174.6951,206.7919 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 368.7078,309.6117 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 161.8161,170.1746 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 209.5122,281.6963 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 172.5389,189.1524 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 166.4425,213.6481 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 191.3582,188.9045 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 189.5090,233.0336 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 198.5470,214.0387 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 230.6864,262.6616 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 240.2772,249.5926 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 164.7538,211.7455 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 204.1729,242.6562 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 194.5484,259.3080 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 172.6143,218.7212 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 171.0041,172.3361 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 187.9668,178.1093 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 185.9662,220.5425 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 239.5263,222.2036 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 174.1166,185.9495 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 173.7269,255.5705 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 190.1411,236.4792 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 269.6713,228.8738 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 274.5728,252.7531 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 172.5503,168.2417 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 248.1361,211.2043 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 161.9531,244.8384 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 166.6208,226.1032 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 225.0977,296.8797 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 171.0045,242.6255 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 194.2067,218.4500 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 247.0954,273.8119 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 172.8346,245.7780 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 163.0220,178.8016 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 171.4201,174.0991 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 235.5423,223.4814 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 177.1470,218.6537 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 166.5272,158.8474 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 161.3063,107.9542 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 272.8694,250.9118 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 201.6031,189.9707 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 164.4755,254.4446 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 171.1105,231.6655 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 161.3133,165.8287 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 245.7344,185.4629 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 164.8708,181.4186 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 187.0864,175.1310 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 167.1724,148.1004 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 167.7461,223.6629 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 187.5757,210.9981 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 205.3059,201.1339 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 196.9521,173.1017 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 191.9114,216.5161 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 162.3895,115.8047 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 314.9467,277.7354 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 244.0640,233.6359 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 177.7209,274.8133 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 202.4228,206.6242 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 176.4722,248.5536 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 163.4946,167.3787 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(188,189,34)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 236.9665,205.8479 l -2.7229,-4.7163 l -2.7229,4.7163 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 138.4697,193.9171 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 170.8009,159.3555 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 157.6817,195.4413 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 200.1195,178.2237 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 229.8478,153.0002 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 164.9016,183.5249 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 144.2229,247.0111 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 172.3150,155.5560 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 164.1105,211.4950 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 166.8702,166.2118 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 138.4213,242.0305 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 247.3063,91.5779 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 148.1887,154.8666 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 139.3938,191.1044 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 184.7152,135.1096 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 142.5451,199.7230 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 200.6814,163.0609 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 187.4889,164.8594 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 257.2244,138.7397 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 144.3675,206.4440 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 152.6807,181.3227 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 165.5524,223.4162 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 205.3891,167.1610 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 139.5931,223.2462 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 140.1872,170.1474 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 259.2399,138.0997 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 196.7935,133.7859 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 215.2885,120.8346 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 177.8302,169.3287 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 159.1320,200.8153 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 154.3939,237.8716 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 170.1432,139.9591 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 228.5555,128.4076 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 143.6405,229.4545 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 205.6932,147.0626 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 219.2242,150.7482 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 173.1960,148.7034 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 138.1139,237.0832 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 172.7365,152.9572 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 170.6752,197.4499 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 246.6064,160.3616 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 141.2659,179.3448 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 197.9461,126.0814 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 173.3352,174.9620 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 183.5801,135.8588 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 158.0627,162.8280 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 177.3120,188.1703 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 157.4881,241.0942 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 177.8876,176.8820 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 155.5476,200.1504 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 150.9154,173.2240 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 138.0467,202.4645 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 267.8831,158.8989 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 168.1204,177.9328 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 150.5147,135.2464 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 210.4176,121.9498 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 241.2334,155.9687 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 206.9242,155.5970 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 214.9516,146.6370 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 168.5649,152.4602 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 303.7718,64.9421 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 164.1266,238.4092 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 193.9215,206.5987 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 147.4727,187.9899 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 148.0239,175.1626 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 137.9858,226.0127 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 137.9857,199.4763 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 143.4788,240.1822 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 165.6058,128.0315 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 327.1711,116.9416 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 138.0129,182.0903 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 163.4296,188.9176 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 242.4583,146.2338 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 141.8508,247.0324 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 147.5482,196.9880 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 138.1163,209.6417 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 138.1412,240.6941 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 157.8755,181.2082 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 144.0374,253.6315 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 225.2256,125.1797 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 254.7982,164.6409 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 266.6257,106.8262 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 178.1155,197.3472 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 173.8788,143.4959 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 138.5900,239.5118 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 168.7901,186.3477 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 163.3286,208.8855 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 169.4757,137.0711 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 217.1898,120.9749 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 184.2135,153.7782 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 138.1672,221.3218 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 137.9911,203.1087 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 225.5968,161.8047 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 199.7362,134.4623 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 148.8289,194.3235 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 166.3966,177.8457 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 181.3026,196.9517 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 204.8486,158.3982 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 173.6549,164.8485 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 139.8822,186.4785 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 167.2803,149.2027 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 153.9892,198.5260 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 191.1886,221.2882 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 149.3054,191.4455 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 279.4667,94.1125 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 145.7697,194.5637 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 145.5079,225.9473 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 294.0982,110.9691 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 175.7895,178.7663 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 193.5478,144.2119 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 187.2922,182.8126 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 164.8759,152.0689 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 148.5378,214.9223 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 219.7447,121.6886 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 150.3076,133.6484 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 138.8347,200.0708 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 234.9616,136.8162 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 140.8186,174.0561 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 189.9860,141.4526 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 189.1106,179.5967 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 146.2687,260.0102 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 166.1754,188.0113 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 172.0308,214.6472 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 196.6833,148.7971 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 166.5029,150.6043 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 158.4905,227.4621 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 167.2127,242.1514 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 155.8363,154.5174 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 184.2189,192.7185 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 143.8931,202.2803 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 164.2484,179.1452 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 141.9378,184.0141 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 195.6779,155.9459 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 167.1931,169.1843 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 173.2800,196.8304 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 148.9753,202.0965 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 139.7199,216.5656 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 138.7364,228.7330 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 187.6600,163.7909 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 200.2059,138.2703 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 214.4473,183.2433 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 147.5749,200.1600 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 153.0532,192.4992 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 156.8952,173.7974 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 169.6942,206.0752 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 195.0253,198.1262 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 141.9043,204.9566 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 161.6631,148.9023 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 181.1033,177.0153 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 140.2060,190.5551 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 165.9653,163.0098 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 236.0209,121.9472 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 225.6793,134.2088 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 188.9736,153.7825 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 211.0456,105.1365 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 159.3153,151.5669 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 141.6994,203.7025 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 214.8201,132.0988 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 161.4729,169.9095 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 260.4999,128.8121 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 146.7524,220.3059 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 161.1942,189.4436 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 164.0102,164.7287 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 264.8850,144.8653 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 238.8046,161.1283 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 203.4684,172.8083 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 171.6739,176.3802 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 145.1582,173.9928 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 162.6189,196.9785 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 154.6568,176.7463 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 143.2867,221.4906 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 153.3303,176.3645 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 197.4073,154.0549 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 165.4838,174.2123 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 139.5656,218.8006 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 160.9885,141.1883 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 231.2406,112.7625 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 144.6757,218.9203 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 153.5260,194.2855 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 145.0016,214.0815 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 222.0675,124.4029 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 215.1134,170.7809 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 138.1252,290.9884 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 139.7146,203.3496 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 343.1916,131.3198 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 193.6101,185.5891 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 211.0495,185.7133 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 210.8058,110.2964 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 144.0812,268.8697 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 141.7444,213.3047 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 160.5155,182.3896 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 175.8134,147.9006 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 260.7889,106.7037 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 170.7409,162.1512 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 218.2284,111.4015 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 161.8629,214.1665 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 153.5969,234.5266 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 157.5668,221.8787 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 169.1973,152.8267 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 158.2755,142.2065 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 138.3016,207.0572 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 142.0580,190.4251 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 170.8267,187.6711 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 138.1747,212.2403 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 153.3239,186.2792 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 139.0788,205.7224 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 180.9100,131.5908 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 195.0413,127.5335 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 226.3842,136.8674 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 257.6133,114.6551 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 242.6042,82.0719 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 320.2471,93.0538 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 141.6460,166.7363 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 245.6938,167.0377 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 239.8580,129.5291 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 142.3627,184.1150 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 215.3823,75.4529 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 182.6626,169.0320 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 142.7036,175.2493 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 160.5717,188.5736 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 159.2930,203.6180 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 144.6864,197.3052 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 248.2747,169.3476 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 167.3298,166.4111 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 152.3322,216.6682 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 152.3767,182.5723 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 146.7189,195.4723 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 155.1657,239.5809 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 141.0326,205.3302 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 205.7241,151.5642 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 200.8372,119.3718 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 178.7775,156.6306 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 244.0313,108.4010 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 145.4389,281.7637 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 144.4886,174.1983 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 138.2684,215.2956 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 170.5826,139.1154 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 143.2749,182.8081 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 206.3423,145.3792 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 141.1385,258.3986 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 219.1325,157.9267 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 161.1328,138.1827 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 180.7081,180.2274 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 140.7017,249.3252 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 155.8412,184.9626 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 167.4049,175.2729 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 139.6413,225.8106 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 141.0247,220.1958 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 138.2798,231.0652 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 181.6622,128.7990 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 191.5686,190.1094 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 183.2130,185.2235 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 158.0025,202.1915 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 166.7264,199.9242 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 138.4972,257.7168 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 138.9015,210.7593 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 203.2026,129.4296 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 176.3930,126.7679 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 207.5027,205.5228 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 187.2423,171.1821 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 173.5490,220.4855 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 152.9923,202.4906 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 160.7157,182.2676 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 157.5336,173.5186 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 177.0680,226.1892 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 137.9906,211.3470 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 144.7020,185.7695 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 155.0144,215.0749 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 192.9248,123.7426 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 138.6267,189.1816 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 174.4099,149.8464 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 157.5875,166.1113 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 182.6436,154.5373 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 183.7307,164.7191 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 145.0372,195.6455 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 168.8714,135.2151 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 166.8456,223.6073 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 203.3504,191.1681 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 138.5811,184.8912 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 139.0042,226.1845 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 161.3242,169.3283 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 148.7592,258.5217 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 137.9881,199.7265 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 155.4205,161.8906 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 140.6308,187.7499 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 204.7650,132.6226 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 198.1604,87.7149 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 142.6967,194.8592 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 178.8801,142.0412 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 146.1060,267.4526 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 145.0054,175.9956 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 215.6291,110.0620 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 272.4334,94.3691 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 168.6039,208.4510 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 153.2228,194.3465 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 193.1503,209.2715 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 142.8875,173.8991 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 296.5223,157.9991 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 203.1765,141.9919 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 146.2598,215.6190 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 252.3535,120.3475 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 145.0126,223.0441 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 150.6052,215.7279 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 170.0033,212.7356 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 138.0763,231.1059 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 156.6201,134.1019 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 142.1026,158.8112 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 254.6241,137.3652 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 139.8855,215.7443 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 191.8655,136.6319 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 181.3482,188.9222 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 157.6733,203.2043 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 150.3089,238.0339 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 183.7555,136.5701 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 169.4800,200.9379 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 142.1928,225.0359 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 190.7613,120.2386 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 141.5585,233.6125 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 139.9009,215.3780 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 211.5256,142.9215 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 175.1784,186.0572 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 153.5258,209.6438 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 153.0251,160.7156 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 140.5118,222.5593 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 138.6845,221.5454 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 169.4585,173.0483 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 174.9522,165.7850 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 138.1755,219.5140 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 138.5465,222.7609 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 143.2773,191.4491 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 156.2750,166.8073 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 164.0745,124.4266 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 198.7236,134.9040 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 191.4292,109.6148 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 173.7823,213.2149 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 151.7356,166.7356 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 169.2503,176.3313 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 142.5679,182.3044 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 172.9981,136.1443 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 152.9775,189.7734 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 198.8573,117.6402 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 154.2675,209.3396 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 169.6194,197.7483 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 162.4246,188.5909 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 160.6109,184.4219 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 188.5442,80.8151 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 161.6291,172.5687 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 177.7768,162.2994 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 142.6066,191.1301 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 225.4356,153.1769 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 139.2661,200.3485 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 222.1925,182.6343 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 139.6969,203.1881 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 159.0349,193.0786 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 364.9791,60.7408 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 156.5085,116.3252 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 220.0812,160.3046 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 138.0036,191.1425 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 167.8125,175.2536 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 151.8617,173.7635 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 234.8357,59.6333 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 216.0953,141.8704 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 152.7080,189.5651 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 177.7204,170.9660 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 137.9858,258.0384 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 146.3301,169.2771 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 177.4483,173.0847 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 295.1550,87.4447 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 186.8940,160.5384 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 237.1734,162.8552 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 265.5868,152.6088 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 144.6879,186.0432 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 174.8286,201.7501 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 138.3393,163.8378 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 198.9824,209.5641 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 171.1993,94.4230 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 167.0039,151.7009 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 187.0526,147.7368 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 141.2901,204.5691 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 153.3064,199.7842 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 161.2897,169.5379 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 145.2459,205.3713 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 160.8336,183.1090 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 206.4836,115.5668 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 145.9833,198.6593 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 142.9898,233.3592 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 212.9870,110.3491 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 138.2591,189.9847 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 144.8850,170.8214 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 206.7309,182.0357 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 190.5252,191.1507 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 187.1507,181.9876 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 234.3843,180.1109 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 207.0009,178.6932 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 138.9751,229.8576 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 267.7236,128.5818 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 185.5380,102.0462 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 166.3982,147.8508 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 209.6475,168.6993 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 216.0076,130.1829 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 166.4193,152.4357 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 140.2295,240.3578 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 227.2773,186.0175 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 185.3183,175.5188 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 144.2612,229.0239 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 221.0491,136.6624 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 163.6960,146.6990 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 149.2605,251.7276 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 245.9165,107.5415 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 151.8846,170.6597 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 141.2390,130.0476 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 175.5896,178.2449 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 140.8619,145.4613 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 138.1161,222.8326 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 178.4206,183.7865 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 142.4020,184.7076 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 187.0986,133.9719 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 167.1703,179.1447 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 177.8214,150.0964 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 138.1587,201.7793 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 214.0237,147.0808 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 172.2954,178.1715 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 229.1464,150.5315 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 152.9511,129.2610 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 168.4841,199.3878 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 160.7840,155.4090 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 155.8493,187.8292 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 165.9124,146.5935 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 159.8227,175.3194 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 256.3265,138.3349 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 248.4384,162.3313 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 196.1642,184.4837 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 221.1804,106.5160 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 263.9785,113.5684 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 192.1505,221.3669 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 158.9938,156.3598 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 196.3040,94.0393 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 194.1179,124.5799 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 193.0153,185.4606 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 150.0702,190.0603 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 159.8188,164.5050 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 161.7533,193.9842 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 235.8115,119.3218 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 139.8673,165.9567 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 194.8943,207.1516 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 166.6978,175.6401 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 143.9309,205.6087 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 145.3394,203.4264 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 150.4270,176.6387 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 164.6317,173.3275 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 242.3374,185.0509 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 158.3477,190.0165 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 173.4314,170.7209 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 137.9904,254.0329 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 178.0938,170.9055 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 144.6901,191.5214 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 156.7353,202.8618 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 147.1966,232.0898 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 217.9365,108.4377 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 185.7110,172.0403 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 148.0914,209.2292 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 141.0607,219.6057 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 139.4719,219.1513 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 140.2458,239.3663 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 177.5756,138.3089 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 185.1246,187.2525 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 149.2194,161.6404 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 166.5846,158.4749 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 295.5936,103.8086 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 225.0332,128.7665 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 157.4517,153.9266 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 169.4093,169.7037 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 245.4112,158.8541 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 232.7828,130.3509 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 141.7473,200.5648 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 152.1652,189.7410 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 148.1829,191.2587 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 137.9863,246.3617 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 214.6997,72.4107 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 156.5960,188.8333 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 142.2510,222.7449 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 141.8344,231.3020 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 169.8361,122.3883 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 226.8536,134.4259 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 211.3527,185.9413 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 148.4136,164.1162 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 144.1248,109.8368 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 210.2596,141.6405 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 142.8248,256.1063 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 167.2568,191.1575 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 147.8982,232.8121 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 207.7924,174.5067 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 236.5751,179.9959 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 146.1186,200.2832 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 138.0432,179.9711 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 156.8774,194.4479 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 189.4640,165.0251 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 151.8538,212.3655 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 162.8788,204.7177 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 144.1485,181.4380 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 139.2663,169.6917 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 154.8442,174.0866 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 143.4063,226.5488 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 146.6852,149.2474 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 156.2252,225.2111 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 147.2091,226.8824 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 211.4369,149.7554 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 139.5065,239.2623 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 159.8237,169.4114 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 268.0835,122.1845 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 148.6312,110.4591 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 255.9236,84.5521 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 201.2663,160.3277 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 165.9682,200.2082 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 162.3659,177.4522 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 156.4722,221.1156 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 213.2425,141.5811 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 215.7651,100.9641 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 251.1918,117.3005 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 146.0132,202.5975 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 184.3800,169.0065 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 172.4005,198.4945 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 189.5237,152.2778 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 143.4198,188.0791 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 252.2579,115.1376 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 164.6556,207.4256 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 139.7851,205.2856 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 139.0724,193.0889 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 138.3950,185.4588 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 190.8589,163.1615 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 138.9481,189.5817 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 174.5663,120.2840 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 171.3045,184.3805 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 170.8181,149.1226 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 234.3578,122.2030 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 221.9737,148.1742 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 188.0000,156.4651 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 187.5113,149.1399 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 155.5230,205.3831 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 238.5904,148.4528 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 156.5348,173.9304 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 143.3307,158.6572 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 139.7797,204.6793 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 151.8752,172.9554 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 155.7566,168.4549 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 143.0354,172.8107 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 143.1669,232.1413 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 141.8705,196.2243 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 147.5892,225.9578 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 149.4421,204.3130 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 152.3855,202.9649 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 149.7720,184.5238 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 150.8822,160.3473 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 216.1387,127.3722 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 234.9645,114.2660 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 182.4057,163.0383 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 138.5028,238.8531 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 147.7388,205.4366 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 142.0717,177.9276 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 186.9358,147.1610 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 148.5350,249.5199 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 171.3508,192.9625 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 185.7294,144.2741 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 138.0365,243.6701 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 147.5767,170.7399 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 196.1257,163.0834 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 159.2942,182.2441 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 145.0372,147.9095 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 184.8442,117.0650 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 273.1542,148.0735 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 163.8473,172.5490 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 180.8510,188.2085 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 167.4969,159.4100 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 175.1226,138.6150 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 139.3259,222.6974 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 157.9236,186.5795 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 165.9463,190.6709 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 253.8583,138.7704 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 175.5690,144.5247 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 142.2912,209.3979 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 166.3502,236.5874 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 148.6632,174.0978 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 174.9124,126.7732 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 156.3755,214.1455 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 138.8626,153.6737 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 273.2086,129.2642 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 324.2526,143.0266 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 146.3216,183.6907 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 175.3500,168.8563 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 178.5437,163.0507 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 187.9266,152.8993 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 140.7550,211.7838 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 175.2603,192.6359 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 168.7574,158.6174 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 149.2951,251.8622 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 159.7400,240.8061 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 138.0912,264.3607 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 166.8224,197.7442 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 198.7570,165.3319 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 139.1562,279.2464 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 148.8936,171.8034 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 145.0282,232.7051 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 183.5756,168.2806 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 139.7686,249.0741 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 197.5783,112.8032 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 143.1750,170.1805 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 177.0010,161.3652 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 158.1562,158.2384 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 145.5658,226.4431 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 165.4288,156.2809 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 196.8336,110.2833 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 145.2001,120.3411 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 142.0662,215.3491 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 176.5712,174.3262 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 143.3465,158.7185 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 157.0016,259.9801 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 138.0000,188.7114 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 174.1672,194.5695 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 205.7437,116.1030 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 140.1177,236.7476 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 181.1786,170.6668 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 140.8507,173.0244 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 273.6354,153.9675 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 205.3772,185.4258 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 151.6530,163.1625 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 169.9416,146.4314 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 189.9429,149.0250 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 152.1763,205.8618 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 152.9000,233.5267 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 143.4366,156.2173 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 209.3089,131.2913 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 149.6381,288.1617 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 153.1590,221.6241 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 161.4081,172.8097 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 155.0393,173.9310 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 140.3054,205.4934 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 204.0909,134.2571 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 182.7378,190.2761 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 139.6040,196.4371 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 182.0545,122.1021 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 141.6986,189.8912 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 229.5712,126.6487 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 225.2154,142.4216 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 210.8586,140.6136 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 243.7094,126.7184 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 160.0192,209.8672 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 225.8884,159.4483 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 148.5421,189.5175 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 203.7242,140.2951 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 147.5979,257.9512 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 177.2822,179.6537 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 149.6856,163.1194 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 236.8425,184.7904 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 169.2485,211.3356 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 174.4167,211.8813 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 139.7012,224.7409 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 189.0659,149.1316 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 143.6219,148.8915 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 143.2057,223.5513 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 208.1503,206.7117 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 139.0945,200.0205 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 174.3454,192.0986 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 170.3542,218.6098 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 158.7643,155.3430 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 191.7930,180.2216 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 138.8363,205.8418 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 155.1554,151.3194 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 140.0763,225.0333 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 161.6749,184.6385 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 181.7702,161.9905 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 141.5142,225.6069 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 163.6855,178.3325 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 138.0381,181.3385 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 251.6819,160.3190 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 140.0215,218.7528 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 187.5322,124.2434 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 212.3357,147.3175 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 148.5161,189.9625 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 177.5226,190.5158 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 189.1450,125.1143 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 171.9153,165.1296 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 167.9981,143.5023 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 148.3391,199.9517 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 152.7478,227.2432 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 143.8895,206.3081 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 166.1801,214.9283 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 158.9813,229.8170 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 154.2560,213.6129 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 141.1722,189.8255 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 200.2396,131.1164 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 169.3662,182.0150 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 143.5828,130.3308 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 175.1879,169.0202 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 149.2761,178.2258 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 153.3934,155.0638 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 143.8596,262.1152 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 186.2218,135.4151 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 138.5697,217.0013 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 163.9050,169.6970 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 185.1243,147.9067 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 216.3497,197.7709 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 197.5900,190.1584 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 155.2860,180.0109 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 170.9003,191.3269 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 258.4046,121.0827 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 221.1010,116.0482 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 160.7909,123.8685 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 148.1718,277.3295 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 146.3336,197.4008 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 163.5031,168.6268 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 147.4832,194.1428 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 139.6103,249.9102 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 157.9014,147.9934 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 138.6832,211.0381 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 151.1555,217.7651 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 147.7051,253.3603 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 202.0705,181.3825 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 145.7090,165.0172 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 222.5757,158.1429 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 159.0696,190.5115 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 143.9971,191.2408 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 138.2426,208.6026 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 180.4788,133.6246 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 177.8397,222.9923 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 234.1930,186.3278 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 141.1066,235.3292 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 146.2814,192.6928 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 147.5614,224.1402 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 167.5285,209.0036 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 163.2764,165.5708 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 165.5923,191.2153 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 172.6352,130.4679 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 176.2714,218.9530 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 185.7775,189.3452 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 184.6662,152.7446 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 186.4958,138.5984 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 140.2611,279.1890 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 152.3875,215.1933 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 183.4997,176.4934 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 191.1814,123.2214 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 137.9903,270.4916 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 216.8855,88.3481 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 138.3245,188.1229 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 211.5263,143.1236 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 238.7977,97.0912 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 138.0308,175.0429 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 201.5046,112.8224 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 296.5152,110.9994 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 189.0016,132.7678 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 142.3632,197.5101 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 164.6934,184.5092 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 225.8882,111.7444 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 142.5742,201.7764 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 147.3148,176.9025 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 140.5402,214.7277 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 199.9057,102.5063 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 211.5067,136.0603 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 212.3396,149.5517 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 142.6109,203.4310 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 156.1387,183.7372 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 241.3004,192.0968 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 215.5529,73.3562 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 178.2449,188.2672 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 147.7136,151.9224 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 184.1480,143.3983 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 262.8821,192.8736 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 137.9855,215.2688 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 197.5025,132.5718 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 198.1444,148.9695 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 169.5533,193.2539 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 200.1651,128.7711 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 139.9305,242.7734 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 145.7341,184.1107 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 201.0389,261.5887 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 188.1751,121.7870 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 221.7027,197.7710 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 202.6296,84.2740 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 147.1835,203.9435 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 162.9595,173.6047 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 272.8052,140.0697 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 167.3974,125.7110 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 196.9723,149.9313 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 140.9833,221.7853 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 154.8537,170.2027 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 164.3886,162.5499 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 286.8611,127.7498 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 212.2509,173.6405 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 172.7679,157.0728 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 157.2439,187.8974 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 138.5177,164.2102 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 153.3959,242.9988 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 143.6681,147.5714 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 192.2044,130.3880 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 194.0993,151.1939 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 151.8110,225.8547 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 141.4699,235.3258 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 207.8803,167.4555 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 141.3860,204.8814 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 169.0066,204.6674 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 154.4342,203.3668 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 159.6608,200.7584 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 191.3272,131.0860 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 241.7678,135.7598 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 150.6602,243.5776 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 139.2725,222.4543 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 144.1100,162.9909 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 141.7287,189.4517 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 169.1017,145.1746 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 180.4349,181.6126 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 174.0720,181.0350 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 196.0258,148.0488 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 154.4396,156.0620 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 138.4924,180.8976 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 240.7888,189.3447 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 240.4303,120.3783 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 147.2147,179.8978 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 169.5871,235.2460 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 246.2666,112.4510 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 144.8218,201.1717 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 144.5554,147.5991 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 143.0677,217.4520 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 144.3553,195.2013 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 139.7221,212.4057 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 215.2328,138.1558 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 229.8143,110.2099 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 223.8312,157.8506 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 141.2124,208.1834 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 157.0192,159.1154 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 213.4186,161.1759 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 162.0260,174.5744 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 173.7462,183.4433 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 193.4900,153.8167 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 149.4856,188.6579 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 170.7195,153.2695 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 170.2259,133.8086 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 151.5008,217.8612 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 245.0927,87.3536 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 160.2118,195.4407 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 144.1531,186.8850 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 182.3547,171.4687 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 173.5137,170.1340 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 142.8181,198.3334 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 138.1627,257.2600 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 176.4871,147.2940 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 198.2842,125.2010 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 149.2261,216.7557 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 171.8837,206.3321 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 257.6707,102.1711 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 266.1801,157.1534 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 141.8633,254.0571 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 143.6540,263.4962 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 156.0516,255.5704 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 149.2854,195.6844 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 153.4016,184.2758 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 141.8810,191.5204 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 146.3285,216.9623 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 165.5311,159.1049 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 164.0248,132.5766 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 201.6892,157.9729 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 240.3064,159.3478 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 173.8841,206.1759 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 194.2507,106.9716 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 166.2829,167.5994 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 169.0278,142.2893 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 160.0009,223.4841 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 141.2135,202.6938 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 140.4022,216.6503 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 169.2275,143.3052 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 204.6576,120.5223 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 162.7131,178.3618 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 209.1867,182.3939 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 158.5521,186.5158 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 138.7946,197.7256 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 198.3731,179.1686 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 213.2992,142.6389 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 154.8124,212.2104 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 168.0676,147.1000 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 138.0939,187.9146 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 160.0644,184.0401 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 138.3546,242.1156 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 147.7300,167.9193 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 141.5922,184.5011 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 161.2815,136.2837 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 160.5434,220.4615 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 139.2740,190.1413 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 209.3275,195.1558 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 201.8462,128.3764 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 169.1718,122.8432 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 162.1313,172.7144 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 211.7062,179.7159 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 164.7365,173.4230 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 143.3596,290.9527 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 245.7485,109.3137 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 150.4873,169.5840 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 161.2946,138.8286 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 215.8342,163.4337 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 247.8923,133.5519 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 141.4764,238.4718 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 143.4703,166.6475 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 155.1482,128.5699 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 162.8855,179.9199 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 140.9696,216.8370 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 138.0089,266.3050 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 154.3150,195.9135 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 152.5733,207.5241 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 245.0081,92.6336 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 184.8649,151.1097 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 159.5150,165.7234 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 168.6707,177.2509 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 146.7328,199.1851 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 268.2248,72.2763 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 210.9029,173.3852 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 163.7668,172.9019 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 173.1292,198.9245 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 172.3338,170.3851 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 186.0278,166.5051 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 138.5678,175.7401 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 137.9884,194.6613 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 159.1173,187.9323 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 210.2664,150.6389 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 139.1829,198.5658 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 138.9456,186.6395 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 169.6734,144.9078 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 163.7220,204.0306 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 148.6289,193.5176 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 169.8787,191.2258 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 165.5357,157.8443 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 164.3601,162.9621 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 161.3683,188.6477 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 210.4622,162.7977 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 185.2928,134.4179 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 168.3164,165.9730 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 180.3563,102.1574 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 177.6300,181.5086 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 145.7412,228.9770 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 148.1728,202.4415 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 175.1272,204.3432 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 202.7426,155.1454 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 167.6286,168.6759 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 188.2081,173.8707 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 138.4159,229.8802 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 173.9966,188.2390 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 154.9471,171.6637 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 162.3298,175.6198 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 149.7293,171.1038 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 183.1125,167.3512 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 170.3556,154.8570 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 184.2079,169.0499 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 164.1319,173.5045 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 142.4453,200.7452 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 199.1870,181.5673 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 202.8483,144.9321 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 171.6340,167.3552 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 164.5399,206.8831 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 142.7247,234.3635 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 160.8271,179.2769 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 148.9629,205.9172 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 185.1159,147.6965 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 147.2968,180.1900 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 191.2870,122.7461 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 165.6897,124.6351 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 139.0060,227.1062 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 182.1136,133.3554 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 143.2379,241.4763 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 146.2948,197.1307 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 149.9025,194.9845 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 157.6805,160.9810 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 166.0735,156.1564 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 138.2293,223.2252 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 155.8517,192.5681 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 138.9951,189.4484 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 185.6936,156.9612 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 152.1573,154.8989 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 139.4662,221.2498 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 241.2500,112.3108 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 280.4363,118.9319 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 210.6458,136.6203 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 147.8663,188.3509 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 200.7339,157.6506 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 176.3765,153.0944 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 168.9534,120.3161 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 179.0809,125.4815 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 193.0910,162.2263 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 151.3470,149.8603 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 138.1512,204.5599 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 144.6664,220.3445 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 141.6224,292.3939 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 140.8633,225.3121 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 308.2356,72.0671 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 146.3890,226.0085 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 181.8732,226.7787 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 181.8290,146.3482 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 141.2759,171.1203 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 154.5021,219.3241 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 287.6142,72.5663 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 195.1665,187.0896 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 138.2165,213.1417 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 149.1846,211.4681 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 138.2582,234.2526 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.3" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(227,119,194)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 143.2468,164.0093 c 0.0000,-0.7519 -0.6095,-1.3615 -1.3615 -1.3615c -0.7519,-0.0000 -1.3615,0.6095 -1.3615 1.3615c -0.0000,0.7519 0.6095,1.3615 1.3615 1.3615c 0.7519,0.0000 1.3615,-0.6095 1.3615 -1.3615Z"/>
-  </g>
-</svg>
diff --git a/other/schoolbookExample.svg b/other/schoolbookExample.svg
deleted file mode 100644
--- a/other/schoolbookExample.svg
+++ /dev/null
@@ -1,418 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
-    "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
-<svg xmlns="http://www.w3.org/2000/svg" height="400.0000" stroke-opacity="1" viewBox="0 0 400 400" font-size="1" width="400.0000" xmlns:xlink="http://www.w3.org/1999/xlink" stroke="rgb(0,0,0)" version="1.1">
-  <defs>
-  </defs>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 90.2922,277.8898 l -0.0000,-19.4007 h -77.6028 l -0.0000,19.4007 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="17.636998352466932px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,51.4908,268.1894)" stroke="none" text-anchor="middle">y = -2.0
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 245.7465,390.9475 l -0.0000,-19.4007 h -77.6028 l -0.0000,19.4007 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="17.636998352466932px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,206.9451,381.2471)" stroke="none" text-anchor="middle">x = -1.0
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="5.976502717529218" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 211.1848,266.4257 c 0.0000,-2.3415 -1.8982,-4.2397 -4.2397 -4.2397c -2.3415,-0.0000 -4.2397,1.8982 -4.2397 4.2397c -0.0000,2.3415 1.8982,4.2397 4.2397 4.2397c 2.3415,0.0000 4.2397,-1.8982 4.2397 -4.2397Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(51,51,51)" stroke-width="1.9921675725097396" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 206.9451,351.2190 v -84.7933 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(51,51,51)" stroke-width="1.9921675725097396" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 93.8875,266.4257 h 113.0577 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.0" stroke="rgb(153,153,153)" stroke-width="3.9843351450194793" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 150.4163,40.3104 l 3.3917,19.9434 l 3.3917,19.1294 l 3.3917,18.3153 l 3.3917,17.5013 l 3.3917,16.6873 l 3.3917,15.8733 l 3.3917,15.0593 l 3.3917,14.2453 l 3.3917,13.4313 l 3.3917,12.6172 l 3.3917,11.8032 l 3.3917,10.9892 l 3.3917,10.1752 l 3.3917,9.3612 l 3.3917,8.5472 l 3.3917,7.7331 l 3.3917,6.9191 l 3.3917,6.1051 l 3.3917,5.2911 l 3.3917,4.4771 l 3.3917,3.6631 l 3.3917,2.8491 l 3.3917,2.0350 l 3.3917,1.2210 l 3.3917,0.4070 l 3.3917,-0.4070 l 3.3917,-1.2210 l 3.3917,-2.0350 l 3.3917,-2.8491 l 3.3917,-3.6631 l 3.3917,-4.4771 l 3.3917,-5.2911 l 3.3917,-6.1051 l 3.3917,-6.9191 l 3.3917,-7.7331 l 3.3917,-8.5472 l 3.3917,-9.3612 l 3.3917,-10.1752 l 3.3917,-10.9892 l 3.3917,-11.8032 l 3.3917,-12.6172 l 3.3917,-13.4313 l 3.3917,-14.2453 l 3.3917,-15.0593 l 3.3917,-15.8733 l 3.3917,-16.6873 l 3.3917,-17.5013 l 3.3917,-18.3153 l 3.3917,-19.1294 l 3.3917,-19.9434 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 307.9622,57.2690 l -0.0000,-29.1010 h -145.5052 l -0.0000,29.1010 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="26.4554975287004px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,235.2096,42.7185)" stroke="none" text-anchor="middle">y = x² - 3
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 376.5317,351.2190 l -0.0000,-282.6442 h -282.6442 l -0.0000,282.6442 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="0.7968670290038958" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 93.8875,68.5748 h 282.6442 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="0.7968670290038958" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 93.8875,74.2277 h 282.6442 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="0.7968670290038958" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 93.8875,79.8806 h 282.6442 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="0.7968670290038958" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 93.8875,85.5334 h 282.6442 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="0.7968670290038958" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 93.8875,91.1863 h 282.6442 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="0.7968670290038958" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 93.8875,96.8392 h 282.6442 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="0.7968670290038958" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 93.8875,102.4921 h 282.6442 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="0.7968670290038958" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 93.8875,108.1450 h 282.6442 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="0.7968670290038958" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 93.8875,113.7979 h 282.6442 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="0.7968670290038958" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 93.8875,119.4508 h 282.6442 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="0.7968670290038958" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 93.8875,125.1036 h 282.6442 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="0.7968670290038958" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 93.8875,130.7565 h 282.6442 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="0.7968670290038958" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 93.8875,136.4094 h 282.6442 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="0.7968670290038958" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 93.8875,142.0623 h 282.6442 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="0.7968670290038958" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 93.8875,147.7152 h 282.6442 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="0.7968670290038958" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 93.8875,153.3681 h 282.6442 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="0.7968670290038958" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 93.8875,159.0209 h 282.6442 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="0.7968670290038958" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 93.8875,164.6738 h 282.6442 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="0.7968670290038958" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 93.8875,170.3267 h 282.6442 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="0.7968670290038958" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 93.8875,175.9796 h 282.6442 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="0.7968670290038958" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 93.8875,181.6325 h 282.6442 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="0.7968670290038958" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 93.8875,187.2854 h 282.6442 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="0.7968670290038958" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 93.8875,192.9382 h 282.6442 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="0.7968670290038958" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 93.8875,198.5911 h 282.6442 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="0.7968670290038958" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 93.8875,204.2440 h 282.6442 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="0.7968670290038958" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 93.8875,209.8969 h 282.6442 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="0.7968670290038958" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 93.8875,215.5498 h 282.6442 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="0.7968670290038958" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 93.8875,221.2027 h 282.6442 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="0.7968670290038958" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 93.8875,226.8556 h 282.6442 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="0.7968670290038958" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 93.8875,232.5084 h 282.6442 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="0.7968670290038958" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 93.8875,238.1613 h 282.6442 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="0.7968670290038958" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 93.8875,243.8142 h 282.6442 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="0.7968670290038958" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 93.8875,249.4671 h 282.6442 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="0.7968670290038958" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 93.8875,255.1200 h 282.6442 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="0.7968670290038958" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 93.8875,260.7729 h 282.6442 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="0.7968670290038958" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 93.8875,266.4257 h 282.6442 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="0.7968670290038958" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 93.8875,272.0786 h 282.6442 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="0.7968670290038958" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 93.8875,277.7315 h 282.6442 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="0.7968670290038958" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 93.8875,283.3844 h 282.6442 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="0.7968670290038958" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 93.8875,289.0373 h 282.6442 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="0.7968670290038958" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 93.8875,294.6902 h 282.6442 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="0.7968670290038958" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 93.8875,300.3430 h 282.6442 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="0.7968670290038958" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 93.8875,305.9959 h 282.6442 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="0.7968670290038958" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 93.8875,311.6488 h 282.6442 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="0.7968670290038958" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 93.8875,317.3017 h 282.6442 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="0.7968670290038958" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 93.8875,322.9546 h 282.6442 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="0.7968670290038958" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 93.8875,328.6075 h 282.6442 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="0.7968670290038958" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 93.8875,334.2603 h 282.6442 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="0.7968670290038958" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 93.8875,339.9132 h 282.6442 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="0.7968670290038958" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 93.8875,345.5661 h 282.6442 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="0.7968670290038958" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 93.8875,351.2190 h 282.6442 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="0.7968670290038958" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 376.5317,351.2190 v -282.6442 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="0.7968670290038958" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 370.8788,351.2190 v -282.6442 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="0.7968670290038958" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 365.2259,351.2190 v -282.6442 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="0.7968670290038958" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 359.5730,351.2190 v -282.6442 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="0.7968670290038958" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 353.9201,351.2190 v -282.6442 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="0.7968670290038958" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 348.2672,351.2190 v -282.6442 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="0.7968670290038958" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 342.6144,351.2190 v -282.6442 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="0.7968670290038958" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 336.9615,351.2190 v -282.6442 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="0.7968670290038958" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 331.3086,351.2190 v -282.6442 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="0.7968670290038958" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 325.6557,351.2190 v -282.6442 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="0.7968670290038958" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 320.0028,351.2190 v -282.6442 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="0.7968670290038958" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 314.3499,351.2190 v -282.6442 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="0.7968670290038958" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 308.6970,351.2190 v -282.6442 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="0.7968670290038958" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 303.0442,351.2190 v -282.6442 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="0.7968670290038958" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 297.3913,351.2190 v -282.6442 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="0.7968670290038958" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 291.7384,351.2190 v -282.6442 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="0.7968670290038958" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 286.0855,351.2190 v -282.6442 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="0.7968670290038958" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 280.4326,351.2190 v -282.6442 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="0.7968670290038958" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 274.7797,351.2190 v -282.6442 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="0.7968670290038958" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 269.1269,351.2190 v -282.6442 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="0.7968670290038958" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 263.4740,351.2190 v -282.6442 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="0.7968670290038958" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 257.8211,351.2190 v -282.6442 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="0.7968670290038958" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 252.1682,351.2190 v -282.6442 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="0.7968670290038958" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 246.5153,351.2190 v -282.6442 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="0.7968670290038958" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 240.8624,351.2190 v -282.6442 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="0.7968670290038958" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 235.2096,351.2190 v -282.6442 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="0.7968670290038958" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 229.5567,351.2190 v -282.6442 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="0.7968670290038958" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 223.9038,351.2190 v -282.6442 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="0.7968670290038958" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 218.2509,351.2190 v -282.6442 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="0.7968670290038958" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 212.5980,351.2190 v -282.6442 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="0.7968670290038958" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 206.9451,351.2190 v -282.6442 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="0.7968670290038958" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 201.2922,351.2190 v -282.6442 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="0.7968670290038958" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 195.6394,351.2190 v -282.6442 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="0.7968670290038958" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 189.9865,351.2190 v -282.6442 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="0.7968670290038958" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 184.3336,351.2190 v -282.6442 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="0.7968670290038958" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 178.6807,351.2190 v -282.6442 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="0.7968670290038958" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 173.0278,351.2190 v -282.6442 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="0.7968670290038958" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 167.3749,351.2190 v -282.6442 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="0.7968670290038958" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 161.7221,351.2190 v -282.6442 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="0.7968670290038958" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 156.0692,351.2190 v -282.6442 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="0.7968670290038958" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 150.4163,351.2190 v -282.6442 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="0.7968670290038958" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 144.7634,351.2190 v -282.6442 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="0.7968670290038958" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 139.1105,351.2190 v -282.6442 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="0.7968670290038958" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 133.4576,351.2190 v -282.6442 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="0.7968670290038958" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 127.8048,351.2190 v -282.6442 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="0.7968670290038958" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 122.1519,351.2190 v -282.6442 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="0.7968670290038958" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 116.4990,351.2190 v -282.6442 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="0.7968670290038958" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 110.8461,351.2190 v -282.6442 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="0.7968670290038958" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 105.1932,351.2190 v -282.6442 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="0.7968670290038958" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 99.5403,351.2190 v -282.6442 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="0.7968670290038958" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 93.8875,351.2190 v -282.6442 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.9921675725097396" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 93.8875,68.5748 h 282.6442 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.9921675725097396" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 93.8875,96.8392 h 282.6442 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.9921675725097396" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 93.8875,125.1036 h 282.6442 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.9921675725097396" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 93.8875,153.3681 h 282.6442 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.9921675725097396" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 93.8875,181.6325 h 282.6442 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.9921675725097396" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 93.8875,209.8969 h 282.6442 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.9921675725097396" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 93.8875,238.1613 h 282.6442 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.9921675725097396" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 93.8875,266.4257 h 282.6442 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.9921675725097396" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 93.8875,294.6902 h 282.6442 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.9921675725097396" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 93.8875,322.9546 h 282.6442 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.9921675725097396" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 93.8875,351.2190 h 282.6442 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.9921675725097396" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 376.5317,351.2190 v -282.6442 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.9921675725097396" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 348.2672,351.2190 v -282.6442 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.9921675725097396" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 320.0028,351.2190 v -282.6442 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.9921675725097396" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 291.7384,351.2190 v -282.6442 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.9921675725097396" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 263.4740,351.2190 v -282.6442 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.9921675725097396" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 235.2096,351.2190 v -282.6442 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.9921675725097396" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 206.9451,351.2190 v -282.6442 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.9921675725097396" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 178.6807,351.2190 v -282.6442 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.9921675725097396" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 150.4163,351.2190 v -282.6442 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.9921675725097396" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 122.1519,351.2190 v -282.6442 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.7" fill-opacity="0.0" stroke="rgb(48,189,227)" stroke-width="1.9921675725097396" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 93.8875,351.2190 v -282.6442 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.1" stroke="rgb(102,102,102)" stroke-width="1.9921675725097396" fill="rgb(255,255,255)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 398.4366,400.0000 l -0.0000,-400.0000 h -396.8732 l -0.0000,400.0000 Z"/>
-  </g>
-</svg>
diff --git a/other/skinnyExample.svg b/other/skinnyExample.svg
deleted file mode 100644
--- a/other/skinnyExample.svg
+++ /dev/null
@@ -1,201 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
-    "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
-<svg xmlns="http://www.w3.org/2000/svg" height="150.0000" stroke-opacity="1" viewBox="0 0 600 150" font-size="1" width="600.0000" xmlns:xlink="http://www.w3.org/1999/xlink" stroke="rgb(0,0,0)" version="1.1">
-  <defs>
-  </defs>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 588.7672,72.3731 l -12.7328,-12.7328 l -19.0992,19.0992 l 12.7328,12.7328 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="16.369932491517716px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(0.7071,-0.7071,0.7071,0.7071,563.3015,85.1059)" stroke="none" text-anchor="start">max
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 377.3556,59.6403 l -12.7328,-12.7328 l -31.8320,31.8320 l 12.7328,12.7328 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="16.369932491517716px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(0.7071,-0.7071,0.7071,0.7071,339.1572,85.1059)" stroke="none" text-anchor="start">1st Q
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 345.3096,53.2739 l -12.7328,-12.7328 l -38.1985,38.1985 l 12.7328,12.7328 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="16.369932491517716px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(0.7071,-0.7071,0.7071,0.7071,300.7447,85.1059)" stroke="none" text-anchor="start">median
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 300.2458,59.6403 l -12.7328,-12.7328 l -31.8320,31.8320 l 12.7328,12.7328 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="16.369932491517716px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(0.7071,-0.7071,0.7071,0.7071,262.0473,85.1059)" stroke="none" text-anchor="start">3rd Q
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 64.0899,72.3731 l -12.7328,-12.7328 l -19.0992,19.0992 l 12.7328,12.7328 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="16.369932491517716px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(0.7071,-0.7071,0.7071,0.7071,38.6242,85.1059)" stroke="none" text-anchor="start">min
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="4.414950119424813" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 563.7180,99.6887 c 0.0000,-0.8693 -0.7047,-1.5740 -1.5740 -1.5740c -0.8693,-0.0000 -1.5740,0.7047 -1.5740 1.5740c -0.0000,0.8693 0.7047,1.5740 1.5740 1.5740c 0.8693,0.0000 1.5740,-0.7047 1.5740 -1.5740Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="4.414950119424813" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 395.2276,99.6887 c 0.0000,-0.8693 -0.7047,-1.5740 -1.5740 -1.5740c -0.8693,-0.0000 -1.5740,0.7047 -1.5740 1.5740c -0.0000,0.8693 0.7047,1.5740 1.5740 1.5740c 0.8693,0.0000 1.5740,-0.7047 1.5740 -1.5740Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="4.414950119424813" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 374.1969,99.6887 c 0.0000,-0.8693 -0.7047,-1.5740 -1.5740 -1.5740c -0.8693,-0.0000 -1.5740,0.7047 -1.5740 1.5740c -0.0000,0.8693 0.7047,1.5740 1.5740 1.5740c 0.8693,0.0000 1.5740,-0.7047 1.5740 -1.5740Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="4.414950119424813" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 360.2453,99.6887 c 0.0000,-0.8693 -0.7047,-1.5740 -1.5740 -1.5740c -0.8693,-0.0000 -1.5740,0.7047 -1.5740 1.5740c -0.0000,0.8693 0.7047,1.5740 1.5740 1.5740c 0.8693,0.0000 1.5740,-0.7047 1.5740 -1.5740Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="4.414950119424813" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 349.0371,99.6887 c 0.0000,-0.8693 -0.7047,-1.5740 -1.5740 -1.5740c -0.8693,-0.0000 -1.5740,0.7047 -1.5740 1.5740c -0.0000,0.8693 0.7047,1.5740 1.5740 1.5740c 0.8693,0.0000 1.5740,-0.7047 1.5740 -1.5740Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="4.414950119424813" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 339.5737,99.6887 c 0.0000,-0.8693 -0.7047,-1.5740 -1.5740 -1.5740c -0.8693,-0.0000 -1.5740,0.7047 -1.5740 1.5740c -0.0000,0.8693 0.7047,1.5740 1.5740 1.5740c 0.8693,0.0000 1.5740,-0.7047 1.5740 -1.5740Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="4.414950119424813" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 330.8826,99.6887 c 0.0000,-0.8693 -0.7047,-1.5740 -1.5740 -1.5740c -0.8693,-0.0000 -1.5740,0.7047 -1.5740 1.5740c -0.0000,0.8693 0.7047,1.5740 1.5740 1.5740c 0.8693,0.0000 1.5740,-0.7047 1.5740 -1.5740Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="4.414950119424813" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 323.1373,99.6887 c 0.0000,-0.8693 -0.7047,-1.5740 -1.5740 -1.5740c -0.8693,-0.0000 -1.5740,0.7047 -1.5740 1.5740c -0.0000,0.8693 0.7047,1.5740 1.5740 1.5740c 0.8693,0.0000 1.5740,-0.7047 1.5740 -1.5740Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="4.414950119424813" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 315.6717,99.6887 c 0.0000,-0.8693 -0.7047,-1.5740 -1.5740 -1.5740c -0.8693,-0.0000 -1.5740,0.7047 -1.5740 1.5740c -0.0000,0.8693 0.7047,1.5740 1.5740 1.5740c 0.8693,0.0000 1.5740,-0.7047 1.5740 -1.5740Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="4.414950119424813" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 308.3943,99.6887 c 0.0000,-0.8693 -0.7047,-1.5740 -1.5740 -1.5740c -0.8693,-0.0000 -1.5740,0.7047 -1.5740 1.5740c -0.0000,0.8693 0.7047,1.5740 1.5740 1.5740c 0.8693,0.0000 1.5740,-0.7047 1.5740 -1.5740Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="4.414950119424813" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 301.1612,99.6887 c 0.0000,-0.8693 -0.7047,-1.5740 -1.5740 -1.5740c -0.8693,-0.0000 -1.5740,0.7047 -1.5740 1.5740c -0.0000,0.8693 0.7047,1.5740 1.5740 1.5740c 0.8693,0.0000 1.5740,-0.7047 1.5740 -1.5740Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="4.414950119424813" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 293.9874,99.6887 c 0.0000,-0.8693 -0.7047,-1.5740 -1.5740 -1.5740c -0.8693,-0.0000 -1.5740,0.7047 -1.5740 1.5740c -0.0000,0.8693 0.7047,1.5740 1.5740 1.5740c 0.8693,0.0000 1.5740,-0.7047 1.5740 -1.5740Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="4.414950119424813" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 286.7571,99.6887 c 0.0000,-0.8693 -0.7047,-1.5740 -1.5740 -1.5740c -0.8693,-0.0000 -1.5740,0.7047 -1.5740 1.5740c -0.0000,0.8693 0.7047,1.5740 1.5740 1.5740c 0.8693,0.0000 1.5740,-0.7047 1.5740 -1.5740Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="4.414950119424813" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 279.0823,99.6887 c 0.0000,-0.8693 -0.7047,-1.5740 -1.5740 -1.5740c -0.8693,-0.0000 -1.5740,0.7047 -1.5740 1.5740c -0.0000,0.8693 0.7047,1.5740 1.5740 1.5740c 0.8693,0.0000 1.5740,-0.7047 1.5740 -1.5740Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="4.414950119424813" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 271.0776,99.6887 c 0.0000,-0.8693 -0.7047,-1.5740 -1.5740 -1.5740c -0.8693,-0.0000 -1.5740,0.7047 -1.5740 1.5740c -0.0000,0.8693 0.7047,1.5740 1.5740 1.5740c 0.8693,0.0000 1.5740,-0.7047 1.5740 -1.5740Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="4.414950119424813" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 262.4638,99.6887 c 0.0000,-0.8693 -0.7047,-1.5740 -1.5740 -1.5740c -0.8693,-0.0000 -1.5740,0.7047 -1.5740 1.5740c -0.0000,0.8693 0.7047,1.5740 1.5740 1.5740c 0.8693,0.0000 1.5740,-0.7047 1.5740 -1.5740Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="4.414950119424813" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 253.0379,99.6887 c 0.0000,-0.8693 -0.7047,-1.5740 -1.5740 -1.5740c -0.8693,-0.0000 -1.5740,0.7047 -1.5740 1.5740c -0.0000,0.8693 0.7047,1.5740 1.5740 1.5740c 0.8693,0.0000 1.5740,-0.7047 1.5740 -1.5740Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="4.414950119424813" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 242.0179,99.6887 c 0.0000,-0.8693 -0.7047,-1.5740 -1.5740 -1.5740c -0.8693,-0.0000 -1.5740,0.7047 -1.5740 1.5740c -0.0000,0.8693 0.7047,1.5740 1.5740 1.5740c 0.8693,0.0000 1.5740,-0.7047 1.5740 -1.5740Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="4.414950119424813" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 228.1498,99.6887 c 0.0000,-0.8693 -0.7047,-1.5740 -1.5740 -1.5740c -0.8693,-0.0000 -1.5740,0.7047 -1.5740 1.5740c -0.0000,0.8693 0.7047,1.5740 1.5740 1.5740c 0.8693,0.0000 1.5740,-0.7047 1.5740 -1.5740Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="4.414950119424813" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 207.4283,99.6887 c 0.0000,-0.8693 -0.7047,-1.5740 -1.5740 -1.5740c -0.8693,-0.0000 -1.5740,0.7047 -1.5740 1.5740c -0.0000,0.8693 0.7047,1.5740 1.5740 1.5740c 0.8693,0.0000 1.5740,-0.7047 1.5740 -1.5740Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.5" stroke="rgb(102,102,102)" stroke-width="4.414950119424813" fill="rgb(93,165,218)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 39.0407,99.6887 c 0.0000,-0.8693 -0.7047,-1.5740 -1.5740 -1.5740c -0.8693,-0.0000 -1.5740,0.7047 -1.5740 1.5740c -0.0000,0.8693 0.7047,1.5740 1.5740 1.5740c 0.8693,0.0000 1.5740,-0.7047 1.5740 -1.5740Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.1" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 562.1440,116.4784 l -0.0000,-2.0987 h -524.6773 l -0.0000,2.0987 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 533.5343,141.6104 l -0.0000,-22.5087 h -11.2543 l -0.0000,22.5087 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="20.462415614397145px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,527.9072,130.3561)" stroke="none" text-anchor="middle">4
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="1.4716500398082712" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 527.9072,114.3797 v 3.1481 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 476.4260,141.6104 l -0.0000,-22.5087 h -11.2543 l -0.0000,22.5087 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="20.462415614397145px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,470.7989,130.3561)" stroke="none" text-anchor="middle">3
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="1.4716500398082712" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 470.7989,114.3797 v 3.1481 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 419.3178,141.6104 l -0.0000,-22.5087 h -11.2543 l -0.0000,22.5087 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="20.462415614397145px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,413.6906,130.3561)" stroke="none" text-anchor="middle">2
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="1.4716500398082712" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 413.6906,114.3797 v 3.1481 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 362.2095,141.6104 l -0.0000,-22.5087 h -11.2543 l -0.0000,22.5087 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="20.462415614397145px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,356.5823,130.3561)" stroke="none" text-anchor="middle">1
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="1.4716500398082712" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 356.5823,114.3797 v 3.1481 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 305.1012,141.6104 l -0.0000,-22.5087 h -11.2543 l -0.0000,22.5087 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="20.462415614397145px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,299.4740,130.3561)" stroke="none" text-anchor="middle">0
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="1.4716500398082712" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 299.4740,114.3797 v 3.1481 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 253.6201,141.6104 l -0.0000,-22.5087 h -22.5087 l -0.0000,22.5087 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="20.462415614397145px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,242.3657,130.3561)" stroke="none" text-anchor="middle">-1
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="1.4716500398082712" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 242.3657,114.3797 v 3.1481 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 196.5118,141.6104 l -0.0000,-22.5087 h -22.5087 l -0.0000,22.5087 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="20.462415614397145px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,185.2574,130.3561)" stroke="none" text-anchor="middle">-2
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="1.4716500398082712" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 185.2574,114.3797 v 3.1481 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 139.4035,141.6104 l -0.0000,-22.5087 h -22.5087 l -0.0000,22.5087 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="20.462415614397145px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,128.1492,130.3561)" stroke="none" text-anchor="middle">-3
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="1.4716500398082712" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 128.1492,114.3797 v 3.1481 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 82.2952,141.6104 l -0.0000,-22.5087 h -22.5087 l -0.0000,22.5087 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="20.462415614397145px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,71.0409,130.3561)" stroke="none" text-anchor="middle">-4
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="1.4716500398082712" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 71.0409,114.3797 v 3.1481 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 562.1440,110.1822 l -0.0000,-104.9355 h -524.6773 l -0.0000,104.9355 Z"/>
-  </g>
-</svg>
diff --git a/other/testTextDiffs.svg b/other/testTextDiffs.svg
deleted file mode 100644
--- a/other/testTextDiffs.svg
+++ /dev/null
@@ -1,187 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
-    "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
-<svg xmlns="http://www.w3.org/2000/svg" height="600.0000" stroke-opacity="1" viewBox="0 0 400 600" font-size="1" width="400.0000" xmlns:xlink="http://www.w3.org/1999/xlink" stroke="rgb(0,0,0)" version="1.1">
-  <defs>
-  </defs>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" font-family="san-serif" stroke-miterlimit="10.0">
-    <path d="M 380.7444,485.3644 l -0.0000,-44.7393 h -357.9144 l -0.0000,44.7393 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="40.672088837138496px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" font-family="san-serif" stroke-miterlimit="10.0">
-    <text dominant-baseline="text-before-edge" transform="matrix(1.0000,-0.0000,0.0000,1.0000,380.7444,440.6251)" stroke="none" text-anchor="end">abcdefghij012345
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,255)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 381.8182,450.7931 c 0.0000,-0.5930 -0.4807,-1.0737 -1.0737 -1.0737c -0.5930,-0.0000 -1.0737,0.4807 -1.0737 1.0737c -0.0000,0.5930 0.4807,1.0737 1.0737 1.0737c 0.5930,0.0000 1.0737,-0.4807 1.0737 -1.0737Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 380.7444,485.8133 l -0.0000,-45.3203 h -362.5626 l -0.0000,45.3203 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" font-size="41.20029778307536px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="text-before-edge" transform="matrix(1.0000,-0.0000,0.0000,1.0000,380.7444,440.4930)" stroke="none" text-anchor="end">abcdefghij012345
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 381.1070,450.7931 c 0.0000,-0.2002 -0.1623,-0.3626 -0.3626 -0.3626c -0.2002,-0.0000 -0.3626,0.1623 -0.3626 0.3626c -0.0000,0.2002 0.1623,0.3626 0.3626 0.3626c 0.2002,0.0000 0.3626,-0.1623 0.3626 -0.3626Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" font-family="san-serif" stroke-miterlimit="10.0">
-    <path d="M 380.7444,440.1497 l -0.0000,-44.7393 h -357.9144 l -0.0000,44.7393 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="40.672088837138496px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" font-family="san-serif" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,380.7444,417.7800)" stroke="none" text-anchor="end">abcdefghij012345
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,255)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 381.8182,413.7128 c 0.0000,-0.5930 -0.4807,-1.0737 -1.0737 -1.0737c -0.5930,-0.0000 -1.0737,0.4807 -1.0737 1.0737c -0.0000,0.5930 0.4807,1.0737 1.0737 1.0737c 0.5930,0.0000 1.0737,-0.4807 1.0737 -1.0737Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 380.7444,440.4930 l -0.0000,-45.3203 h -362.5626 l -0.0000,45.3203 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" font-size="41.20029778307536px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,380.7444,417.8329)" stroke="none" text-anchor="end">abcdefghij012345
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 381.1070,413.7128 c 0.0000,-0.2002 -0.1623,-0.3626 -0.3626 -0.3626c -0.2002,-0.0000 -0.3626,0.1623 -0.3626 0.3626c -0.0000,0.2002 0.1623,0.3626 0.3626 0.3626c 0.2002,0.0000 0.3626,-0.1623 0.3626 -0.3626Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" font-family="san-serif" stroke-miterlimit="10.0">
-    <path d="M 380.7444,395.0142 l -0.0000,-44.7393 h -357.9144 l -0.0000,44.7393 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="40.672088837138496px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" font-family="san-serif" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,380.7444,372.6446)" stroke="none" text-anchor="end">abcdefghij012345
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,255)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 381.8182,382.8126 c 0.0000,-0.5930 -0.4807,-1.0737 -1.0737 -1.0737c -0.5930,-0.0000 -1.0737,0.4807 -1.0737 1.0737c -0.0000,0.5930 0.4807,1.0737 1.0737 1.0737c 0.5930,0.0000 1.0737,-0.4807 1.0737 -1.0737Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 380.7444,395.1727 l -0.0000,-45.3203 h -362.5626 l -0.0000,45.3203 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" font-size="41.20029778307536px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,380.7444,372.5125)" stroke="none" text-anchor="end">abcdefghij012345
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 381.1070,382.8126 c 0.0000,-0.2002 -0.1623,-0.3626 -0.3626 -0.3626c -0.2002,-0.0000 -0.3626,0.1623 -0.3626 0.3626c -0.0000,0.2002 0.1623,0.3626 0.3626 0.3626c 0.2002,0.0000 0.3626,-0.1623 0.3626 -0.3626Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" font-family="san-serif" stroke-miterlimit="10.0">
-    <path d="M 378.9572,349.4034 l -0.0000,-44.7393 h -357.9144 l -0.0000,44.7393 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="40.672088837138496px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" font-family="san-serif" stroke-miterlimit="10.0">
-    <text dominant-baseline="text-before-edge" transform="matrix(1.0000,-0.0000,0.0000,1.0000,200.0000,304.6641)" stroke="none" text-anchor="middle">abcdefghij012345
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,255)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 201.0737,314.8321 c 0.0000,-0.5930 -0.4807,-1.0737 -1.0737 -1.0737c -0.5930,-0.0000 -1.0737,0.4807 -1.0737 1.0737c -0.0000,0.5930 0.4807,1.0737 1.0737 1.0737c 0.5930,0.0000 1.0737,-0.4807 1.0737 -1.0737Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 381.2813,349.8524 l -0.0000,-45.3203 h -362.5626 l -0.0000,45.3203 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" font-size="41.20029778307536px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="text-before-edge" transform="matrix(1.0000,-0.0000,0.0000,1.0000,200.0000,304.5320)" stroke="none" text-anchor="middle">abcdefghij012345
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 200.3626,314.8321 c 0.0000,-0.2002 -0.1623,-0.3626 -0.3626 -0.3626c -0.2002,-0.0000 -0.3626,0.1623 -0.3626 0.3626c -0.0000,0.2002 0.1623,0.3626 0.3626 0.3626c 0.2002,0.0000 0.3626,-0.1623 0.3626 -0.3626Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" font-family="san-serif" stroke-miterlimit="10.0">
-    <path d="M 378.9572,304.1887 l -0.0000,-44.7393 h -357.9144 l -0.0000,44.7393 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="40.672088837138496px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" font-family="san-serif" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,200.0000,281.8190)" stroke="none" text-anchor="middle">abcdefghij012345
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,255)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 201.0737,277.7518 c 0.0000,-0.5930 -0.4807,-1.0737 -1.0737 -1.0737c -0.5930,-0.0000 -1.0737,0.4807 -1.0737 1.0737c -0.0000,0.5930 0.4807,1.0737 1.0737 1.0737c 0.5930,0.0000 1.0737,-0.4807 1.0737 -1.0737Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 381.2813,304.5320 l -0.0000,-45.3203 h -362.5626 l -0.0000,45.3203 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" font-size="41.20029778307536px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,200.0000,281.8719)" stroke="none" text-anchor="middle">abcdefghij012345
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 200.3626,277.7518 c 0.0000,-0.2002 -0.1623,-0.3626 -0.3626 -0.3626c -0.2002,-0.0000 -0.3626,0.1623 -0.3626 0.3626c -0.0000,0.2002 0.1623,0.3626 0.3626 0.3626c 0.2002,0.0000 0.3626,-0.1623 0.3626 -0.3626Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" font-family="san-serif" stroke-miterlimit="10.0">
-    <path d="M 378.9572,259.0532 l -0.0000,-44.7393 h -357.9144 l -0.0000,44.7393 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="40.672088837138496px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" font-family="san-serif" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,200.0000,236.6836)" stroke="none" text-anchor="middle">abcdefghij012345
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,255)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 201.0737,246.8516 c 0.0000,-0.5930 -0.4807,-1.0737 -1.0737 -1.0737c -0.5930,-0.0000 -1.0737,0.4807 -1.0737 1.0737c -0.0000,0.5930 0.4807,1.0737 1.0737 1.0737c 0.5930,0.0000 1.0737,-0.4807 1.0737 -1.0737Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 381.2813,259.2117 l -0.0000,-45.3203 h -362.5626 l -0.0000,45.3203 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" font-size="41.20029778307536px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,200.0000,236.5515)" stroke="none" text-anchor="middle">abcdefghij012345
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 200.3626,246.8516 c 0.0000,-0.2002 -0.1623,-0.3626 -0.3626 -0.3626c -0.2002,-0.0000 -0.3626,0.1623 -0.3626 0.3626c -0.0000,0.2002 0.1623,0.3626 0.3626 0.3626c 0.2002,0.0000 0.3626,-0.1623 0.3626 -0.3626Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" font-family="san-serif" stroke-miterlimit="10.0">
-    <path d="M 377.1699,213.4424 l -0.0000,-44.7393 h -357.9144 l -0.0000,44.7393 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="40.672088837138496px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" font-family="san-serif" stroke-miterlimit="10.0">
-    <text dominant-baseline="text-before-edge" transform="matrix(1.0000,-0.0000,0.0000,1.0000,19.2556,168.7031)" stroke="none" text-anchor="start">abcdefghij012345
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,255)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 20.3293,178.8711 c 0.0000,-0.5930 -0.4807,-1.0737 -1.0737 -1.0737c -0.5930,-0.0000 -1.0737,0.4807 -1.0737 1.0737c -0.0000,0.5930 0.4807,1.0737 1.0737 1.0737c 0.5930,0.0000 1.0737,-0.4807 1.0737 -1.0737Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 381.8182,213.8914 l -0.0000,-45.3203 h -362.5626 l -0.0000,45.3203 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" font-size="41.20029778307536px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="text-before-edge" transform="matrix(1.0000,-0.0000,0.0000,1.0000,19.2556,168.5711)" stroke="none" text-anchor="start">abcdefghij012345
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 19.6181,178.8711 c 0.0000,-0.2002 -0.1623,-0.3626 -0.3626 -0.3626c -0.2002,-0.0000 -0.3626,0.1623 -0.3626 0.3626c -0.0000,0.2002 0.1623,0.3626 0.3626 0.3626c 0.2002,0.0000 0.3626,-0.1623 0.3626 -0.3626Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" font-family="san-serif" stroke-miterlimit="10.0">
-    <path d="M 377.1699,168.2277 l -0.0000,-44.7393 h -357.9144 l -0.0000,44.7393 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="40.672088837138496px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" font-family="san-serif" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,19.2556,145.8581)" stroke="none" text-anchor="start">abcdefghij012345
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,255)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 20.3293,141.7909 c 0.0000,-0.5930 -0.4807,-1.0737 -1.0737 -1.0737c -0.5930,-0.0000 -1.0737,0.4807 -1.0737 1.0737c -0.0000,0.5930 0.4807,1.0737 1.0737 1.0737c 0.5930,0.0000 1.0737,-0.4807 1.0737 -1.0737Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 381.8182,168.5711 l -0.0000,-45.3203 h -362.5626 l -0.0000,45.3203 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" font-size="41.20029778307536px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,19.2556,145.9109)" stroke="none" text-anchor="start">abcdefghij012345
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 19.6181,141.7909 c 0.0000,-0.2002 -0.1623,-0.3626 -0.3626 -0.3626c -0.2002,-0.0000 -0.3626,0.1623 -0.3626 0.3626c -0.0000,0.2002 0.1623,0.3626 0.3626 0.3626c 0.2002,0.0000 0.3626,-0.1623 0.3626 -0.3626Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" font-family="san-serif" stroke-miterlimit="10.0">
-    <path d="M 377.1699,123.0923 l -0.0000,-44.7393 h -357.9144 l -0.0000,44.7393 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="40.672088837138496px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" font-family="san-serif" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,19.2556,100.7226)" stroke="none" text-anchor="start">abcdefghij012345
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,255)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 20.3293,110.8906 c 0.0000,-0.5930 -0.4807,-1.0737 -1.0737 -1.0737c -0.5930,-0.0000 -1.0737,0.4807 -1.0737 1.0737c -0.0000,0.5930 0.4807,1.0737 1.0737 1.0737c 0.5930,0.0000 1.0737,-0.4807 1.0737 -1.0737Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 381.8182,123.2507 l -0.0000,-45.3203 h -362.5626 l -0.0000,45.3203 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" font-size="41.20029778307536px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,19.2556,100.5906)" stroke="none" text-anchor="start">abcdefghij012345
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 19.6181,110.8906 c 0.0000,-0.2002 -0.1623,-0.3626 -0.3626 -0.3626c -0.2002,-0.0000 -0.3626,0.1623 -0.3626 0.3626c -0.0000,0.2002 0.1623,0.3626 0.3626 0.3626c 0.2002,0.0000 0.3626,-0.1623 0.3626 -0.3626Z"/>
-  </g>
-</svg>
diff --git a/other/textHudExample.svg b/other/textHudExample.svg
deleted file mode 100644
--- a/other/textHudExample.svg
+++ /dev/null
@@ -1,372 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
-    "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
-<svg xmlns="http://www.w3.org/2000/svg" height="400.0000" stroke-opacity="1" viewBox="0 0 600 400" font-size="1" width="600.0000" xmlns:xlink="http://www.w3.org/1999/xlink" stroke="rgb(0,0,0)" version="1.1">
-  <defs>
-  </defs>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 390.7524,128.4854 l -0.0000,-43.5348 h -21.7674 l -0.0000,43.5348 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="39.57711123733441px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,379.8687,106.7180)" stroke="none" text-anchor="middle">z
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 426.2813,134.6357 l -0.0000,-43.5348 h -21.7674 l -0.0000,43.5348 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="39.57711123733441px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,415.3976,112.8683)" stroke="none" text-anchor="middle">y
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 458.6958,140.7860 l -0.0000,-43.5348 h -21.7674 l -0.0000,43.5348 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="39.57711123733441px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,447.8121,119.0186)" stroke="none" text-anchor="middle">x
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 487.6719,146.9363 l -0.0000,-43.5348 h -21.7674 l -0.0000,43.5348 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="39.57711123733441px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,476.7882,125.1689)" stroke="none" text-anchor="middle">w
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 512.9203,153.0866 l -0.0000,-43.5348 h -21.7674 l -0.0000,43.5348 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="39.57711123733441px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,502.0365,131.3192)" stroke="none" text-anchor="middle">v
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 534.1884,159.2369 l -0.0000,-43.5348 h -21.7674 l -0.0000,43.5348 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="39.57711123733441px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,523.3047,137.4695)" stroke="none" text-anchor="middle">u
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 551.2640,165.3872 l -0.0000,-43.5348 h -21.7674 l -0.0000,43.5348 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="39.57711123733441px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,540.3803,143.6198)" stroke="none" text-anchor="middle">t
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 563.9763,171.5375 l -0.0000,-43.5348 h -21.7674 l -0.0000,43.5348 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="39.57711123733441px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,553.0926,149.7700)" stroke="none" text-anchor="middle">s
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 572.1984,177.6878 l -0.0000,-43.5348 h -21.7674 l -0.0000,43.5348 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="39.57711123733441px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,561.3147,155.9203)" stroke="none" text-anchor="middle">r
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 575.8480,183.8380 l -0.0000,-43.5348 h -21.7674 l -0.0000,43.5348 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="39.57711123733441px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,564.9643,162.0706)" stroke="none" text-anchor="middle">q
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 574.8888,189.9883 l -0.0000,-43.5348 h -21.7674 l -0.0000,43.5348 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="39.57711123733441px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,564.0051,168.2209)" stroke="none" text-anchor="middle">p
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 569.3303,196.1386 l -0.0000,-43.5348 h -21.7674 l -0.0000,43.5348 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="39.57711123733441px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,558.4466,174.3712)" stroke="none" text-anchor="middle">o
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 559.2281,202.2889 l -0.0000,-43.5348 h -21.7674 l -0.0000,43.5348 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="39.57711123733441px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,548.3444,180.5215)" stroke="none" text-anchor="middle">n
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 544.6830,208.4392 l -0.0000,-43.5348 h -21.7674 l -0.0000,43.5348 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="39.57711123733441px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,533.7993,186.6718)" stroke="none" text-anchor="middle">m
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 525.8404,214.5895 l -0.0000,-43.5348 h -21.7674 l -0.0000,43.5348 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="39.57711123733441px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,514.9567,192.8221)" stroke="none" text-anchor="middle">l
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 502.8887,220.7398 l -0.0000,-43.5348 h -21.7674 l -0.0000,43.5348 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="39.57711123733441px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,492.0050,198.9724)" stroke="none" text-anchor="middle">k
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 476.0570,226.8901 l -0.0000,-43.5348 h -21.7674 l -0.0000,43.5348 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="39.57711123733441px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,465.1733,205.1227)" stroke="none" text-anchor="middle">j
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 445.6136,233.0404 l -0.0000,-43.5348 h -21.7674 l -0.0000,43.5348 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="39.57711123733441px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,434.7299,211.2729)" stroke="none" text-anchor="middle">i
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 411.8625,239.1906 l -0.0000,-43.5348 h -21.7674 l -0.0000,43.5348 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="39.57711123733441px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,400.9788,217.4232)" stroke="none" text-anchor="middle">h
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 375.1410,245.3409 l -0.0000,-43.5348 h -21.7674 l -0.0000,43.5348 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="39.57711123733441px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,364.2573,223.5735)" stroke="none" text-anchor="middle">g
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 335.8161,251.4912 l -0.0000,-43.5348 h -21.7674 l -0.0000,43.5348 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="39.57711123733441px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,324.9324,229.7238)" stroke="none" text-anchor="middle">f
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 294.2806,257.6415 l -0.0000,-43.5348 h -21.7674 l -0.0000,43.5348 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="39.57711123733441px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,283.3969,235.8741)" stroke="none" text-anchor="middle">e
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 250.9496,263.7918 l -0.0000,-43.5348 h -21.7674 l -0.0000,43.5348 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="39.57711123733441px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,240.0659,242.0244)" stroke="none" text-anchor="middle">d
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 206.2560,269.9421 l -0.0000,-43.5348 h -21.7674 l -0.0000,43.5348 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="39.57711123733441px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,195.3723,248.1747)" stroke="none" text-anchor="middle">c
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 160.6463,276.0924 l -0.0000,-43.5348 h -21.7674 l -0.0000,43.5348 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="39.57711123733441px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,149.7626,254.3250)" stroke="none" text-anchor="middle">b
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 114.5764,282.2427 l -0.0000,-43.5348 h -21.7674 l -0.0000,43.5348 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="39.57711123733441px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,103.6926,260.4753)" stroke="none" text-anchor="middle">a
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 564.9643,311.3474 l -0.0000,-15.8308 h -277.0398 l -0.0000,15.8308 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" font-size="14.391676813576149px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(31,119,180)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,564.9643,303.4320)" stroke="none" text-anchor="end">text and glyphs have a similar feel
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 56.7782,124.5938 l -26.3847,0.0000 l -0.0000,131.9237 l 26.3847,0.0000 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" font-size="23.986128022626918px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(31,119,180)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(0.0000,-1.0000,1.0000,0.0000,43.5859,256.5175)" stroke="none" text-anchor="start">Text Chart
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.1" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 80.4015,256.5175 l -0.0000,-153.7572 h -3.0751 l -0.0000,153.7572 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 73.4824,108.9967 l -0.0000,-10.5539 h -10.5539 l -0.0000,10.5539 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="9.594451209050765px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,68.2055,103.7198)" stroke="none" text-anchor="middle">25
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="1.9327562008694346" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 75.7888,102.7603 h 4.6127 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 73.4824,139.7482 l -0.0000,-10.5539 h -10.5539 l -0.0000,10.5539 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="9.594451209050765px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,68.2055,134.4712)" stroke="none" text-anchor="middle">20
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="1.9327562008694346" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 75.7888,133.5118 h 4.6127 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 73.4824,170.4996 l -0.0000,-10.5539 h -10.5539 l -0.0000,10.5539 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="9.594451209050765px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,68.2055,165.2227)" stroke="none" text-anchor="middle">15
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="1.9327562008694346" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 75.7888,164.2632 h 4.6127 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 73.4824,201.2510 l -0.0000,-10.5539 h -10.5539 l -0.0000,10.5539 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="9.594451209050765px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,68.2055,195.9741)" stroke="none" text-anchor="middle">10
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="1.9327562008694346" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 75.7888,195.0147 h 4.6127 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 73.4824,232.0025 l -0.0000,-10.5539 h -5.2769 l -0.0000,10.5539 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="9.594451209050765px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,70.8440,226.7255)" stroke="none" text-anchor="middle">5
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="1.9327562008694346" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 75.7888,225.7661 h 4.6127 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 73.4824,262.7539 l -0.0000,-10.5539 h -5.2769 l -0.0000,10.5539 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="9.594451209050765px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,70.8440,257.4770)" stroke="none" text-anchor="middle">0
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="1.9327562008694346" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 75.7888,256.5175 h 4.6127 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.1" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 564.9643,274.9684 l -0.0000,-3.0751 h -461.2717 l -0.0000,3.0751 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 526.9297,289.3662 l -0.0000,-10.5539 h -15.8308 l -0.0000,10.5539 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="9.594451209050765px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,519.0143,284.0893)" stroke="none" text-anchor="middle">0.9
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="1.9327562008694346" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 519.0143,271.8933 v 4.6127 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 480.7828,289.3662 l -0.0000,-10.5539 h -15.8308 l -0.0000,10.5539 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="9.594451209050765px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,472.8674,284.0893)" stroke="none" text-anchor="middle">0.8
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="1.9327562008694346" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 472.8674,271.8933 v 4.6127 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 434.6360,289.3662 l -0.0000,-10.5539 h -15.8308 l -0.0000,10.5539 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="9.594451209050765px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,426.7206,284.0893)" stroke="none" text-anchor="middle">0.7
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="1.9327562008694346" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 426.7206,271.8933 v 4.6127 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 388.4891,289.3662 l -0.0000,-10.5539 h -15.8308 l -0.0000,10.5539 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="9.594451209050765px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,380.5737,284.0893)" stroke="none" text-anchor="middle">0.6
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="1.9327562008694346" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 380.5737,271.8933 v 4.6127 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 342.3423,289.3662 l -0.0000,-10.5539 h -15.8308 l -0.0000,10.5539 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="9.594451209050765px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,334.4269,284.0893)" stroke="none" text-anchor="middle">0.5
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="1.9327562008694346" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 334.4269,271.8933 v 4.6127 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 296.1955,289.3662 l -0.0000,-10.5539 h -15.8308 l -0.0000,10.5539 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="9.594451209050765px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,288.2800,284.0893)" stroke="none" text-anchor="middle">0.4
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="1.9327562008694346" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 288.2800,271.8933 v 4.6127 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 250.0486,289.3662 l -0.0000,-10.5539 h -15.8308 l -0.0000,10.5539 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="9.594451209050765px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,242.1332,284.0893)" stroke="none" text-anchor="middle">0.3
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="1.9327562008694346" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 242.1332,271.8933 v 4.6127 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 203.9018,289.3662 l -0.0000,-10.5539 h -15.8308 l -0.0000,10.5539 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="9.594451209050765px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,195.9863,284.0893)" stroke="none" text-anchor="middle">0.2
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="1.9327562008694346" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 195.9863,271.8933 v 4.6127 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 157.7549,289.3662 l -0.0000,-10.5539 h -15.8308 l -0.0000,10.5539 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="9.594451209050765px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,149.8395,284.0893)" stroke="none" text-anchor="middle">0.1
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="1.9327562008694346" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 149.8395,271.8933 v 4.6127 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 111.6081,289.3662 l -0.0000,-10.5539 h -15.8308 l -0.0000,10.5539 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="9.594451209050765px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,103.6926,284.0893)" stroke="none" text-anchor="middle">0.0
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="1.9327562008694346" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 103.6926,271.8933 v 4.6127 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 564.9643,256.5175 l -0.0000,-153.7572 h -461.2717 l -0.0000,153.7572 Z"/>
-  </g>
-</svg>
diff --git a/other/timeExample.svg b/other/timeExample.svg
deleted file mode 100644
--- a/other/timeExample.svg
+++ /dev/null
@@ -1,665 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
-    "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
-<svg xmlns="http://www.w3.org/2000/svg" height="400.0000" stroke-opacity="1" viewBox="0 0 600 400" font-size="1" width="600.0000" xmlns:xlink="http://www.w3.org/1999/xlink" stroke="rgb(0,0,0)" version="1.1">
-  <defs>
-  </defs>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 511.1204,22.3457 l -0.0000,-17.8224 h -98.0233 l -0.0000,17.8224 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="16.202205207224342px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,462.1087,13.4345)" stroke="none" text-anchor="middle">Fri, 30 Nov
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,255)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 467.3017,45.7143 l -0.0000,-10.3860 h -10.3860 l -0.0000,10.3860 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 450.7790,61.6867 l -0.0000,-17.8224 h -98.0233 l -0.0000,17.8224 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="16.202205207224342px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,401.7674,52.7755)" stroke="none" text-anchor="middle">Wed, 31 Oct
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,255)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 406.9604,85.0553 l -0.0000,-10.3860 h -10.3860 l -0.0000,10.3860 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 387.6949,104.9618 l -0.0000,-17.8224 h -98.0233 l -0.0000,17.8224 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="16.202205207224342px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,338.6832,96.0506)" stroke="none" text-anchor="middle">Fri, 28 Sep
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,255)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 343.8762,128.3304 l -0.0000,-10.3860 h -10.3860 l -0.0000,10.3860 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 332.8391,141.6801 l -0.0000,-17.8224 h -98.0233 l -0.0000,17.8224 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="16.202205207224342px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,283.8274,132.7689)" stroke="none" text-anchor="middle">Fri, 31 Aug
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,255)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 289.0204,165.0487 l -0.0000,-10.3860 h -10.3860 l -0.0000,10.3860 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 269.7549,182.3325 l -0.0000,-17.8224 h -98.0233 l -0.0000,17.8224 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="16.202205207224342px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,220.7433,173.4213)" stroke="none" text-anchor="middle">Tue, 31 Jul
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,255)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 225.9363,205.7011 l -0.0000,-10.3860 h -10.3860 l -0.0000,10.3860 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 209.4136,224.2963 l -0.0000,-17.8224 h -98.0233 l -0.0000,17.8224 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.33" font-size="16.202205207224342px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,160.4019,215.3850)" stroke="none" text-anchor="middle">Fri, 29 Jun
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(0,0,255)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 165.5949,247.6648 l -0.0000,-10.3860 h -10.3860 l -0.0000,10.3860 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 504.5488,12.9825 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 501.8060,14.2939 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 499.0632,15.6053 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 496.3204,16.9166 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 493.5777,18.2280 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 490.8349,22.1621 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 488.0921,23.4735 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 485.3493,24.7848 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 482.6065,26.0962 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 479.8637,27.4076 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 477.1209,31.3417 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 474.3781,32.6530 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 471.6353,33.9644 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 468.8926,35.2758 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 466.1498,36.5871 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 463.4070,40.5212 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 460.6642,41.8326 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 457.9214,43.1440 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 455.1786,44.4554 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 452.4358,45.7667 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 449.6930,49.7008 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 446.9502,51.0122 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 444.2075,52.3236 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 441.4647,53.6349 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 438.7219,54.9463 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 435.9791,58.8804 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 433.2363,60.1918 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 430.4935,61.5031 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 427.7507,62.8145 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 425.0079,64.1259 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 422.2651,68.0600 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 419.5223,69.3713 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 416.7796,70.6827 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 414.0368,71.9941 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 411.2940,73.3054 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 408.5512,77.2395 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 405.8084,78.5509 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 403.0656,79.8623 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 400.3228,81.1736 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 397.5800,82.4850 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 394.8372,86.4191 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 392.0945,87.7305 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 389.3517,89.0418 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 386.6089,90.3532 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 383.8661,91.6646 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 381.1233,95.5987 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 378.3805,96.9100 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 375.6377,98.2214 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 372.8949,99.5328 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 370.1521,100.8441 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 367.4094,104.7782 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 364.6666,106.0896 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 361.9238,107.4010 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 359.1810,108.7123 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 356.4382,110.0237 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 353.6954,113.9578 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 350.9526,115.2692 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 348.2098,116.5806 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 345.4670,117.8919 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 342.7242,119.2033 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 339.9815,123.1374 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 337.2387,124.4488 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 334.4959,125.7601 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 331.7531,127.0715 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 329.0103,128.3829 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 326.2675,132.3170 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 323.5247,133.6283 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 320.7819,134.9397 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 318.0391,136.2511 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 315.2964,137.5624 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 312.5536,141.4965 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 309.8108,142.8079 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 307.0680,144.1193 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 304.3252,145.4306 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 301.5824,146.7420 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 298.8396,150.6761 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 296.0968,151.9875 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 293.3540,153.2988 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 290.6112,154.6102 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 287.8685,155.9216 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 285.1257,159.8557 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 282.3829,161.1670 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 279.6401,162.4784 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 276.8973,163.7898 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 274.1545,165.1011 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 271.4117,169.0352 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 268.6689,170.3466 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 265.9261,171.6580 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 263.1834,172.9693 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 260.4406,174.2807 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 257.6978,178.2148 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 254.9550,179.5262 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 252.2122,180.8376 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 249.4694,182.1489 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 246.7266,183.4603 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 243.9838,187.3944 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 241.2410,188.7058 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 238.4983,190.0171 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 235.7555,191.3285 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 233.0127,192.6399 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 230.2699,196.5740 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 227.5271,197.8853 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 224.7843,199.1967 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 222.0415,200.5081 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 219.2987,201.8194 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 216.5559,205.7535 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 213.8131,207.0649 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 211.0704,208.3763 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 208.3276,209.6876 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 205.5848,210.9990 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 202.8420,214.9331 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 200.0992,216.2445 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 197.3564,217.5558 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 194.6136,218.8672 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 191.8708,220.1786 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 189.1280,224.1127 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 186.3853,225.4240 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 183.6425,226.7354 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 180.8997,228.0468 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 178.1569,229.3581 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 175.4141,233.2922 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 172.6713,234.6036 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 169.9285,235.9150 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 167.1857,237.2263 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 164.4429,238.5377 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 161.7001,242.4718 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 158.9574,243.7832 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 156.2146,245.0945 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 153.4718,246.4059 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 150.7290,247.7173 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 147.9862,251.6514 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 145.2434,252.9628 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 142.5006,254.2741 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 139.7578,255.5855 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 137.0150,256.8969 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 134.2723,260.8310 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 131.5295,262.1423 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 128.7867,263.4537 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 126.0439,264.7651 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 123.3011,266.0764 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 120.5583,270.0105 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 117.8155,271.3219 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="1.0" stroke="rgb(102,102,102)" stroke-width="0.0" fill="rgb(255,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 115.0727,272.6333 c 0.0000,-0.7170 -0.5812,-1.2983 -1.2983 -1.2983c -0.7170,-0.0000 -1.2983,0.5812 -1.2983 1.2983c -0.0000,0.7170 0.5812,1.2983 1.2983 1.2983c 0.7170,0.0000 1.2983,-0.5812 1.2983 -1.2983Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.1" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 103.3884,272.6333 l -0.0000,-259.6507 h -5.1930 l -0.0000,259.6507 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 91.7042,47.1186 l -0.0000,-17.8224 h -26.7336 l -0.0000,17.8224 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="16.202205207224342px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,78.3373,38.2074)" stroke="none" text-anchor="middle">180
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.277646469480913" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 95.5989,36.5871 h 7.7895 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 91.7042,73.3459 l -0.0000,-17.8224 h -26.7336 l -0.0000,17.8224 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="16.202205207224342px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,78.3373,64.4347)" stroke="none" text-anchor="middle">160
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.277646469480913" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 95.5989,62.8145 h 7.7895 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 91.7042,99.5733 l -0.0000,-17.8224 h -26.7336 l -0.0000,17.8224 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="16.202205207224342px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,78.3373,90.6621)" stroke="none" text-anchor="middle">140
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.277646469480913" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 95.5989,89.0418 h 7.7895 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 91.7042,125.8006 l -0.0000,-17.8224 h -26.7336 l -0.0000,17.8224 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="16.202205207224342px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,78.3373,116.8894)" stroke="none" text-anchor="middle">120
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.277646469480913" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 95.5989,115.2692 h 7.7895 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 91.7042,152.0280 l -0.0000,-17.8224 h -26.7336 l -0.0000,17.8224 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="16.202205207224342px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,78.3373,143.1168)" stroke="none" text-anchor="middle">100
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.277646469480913" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 95.5989,141.4965 h 7.7895 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 91.7042,178.2553 l -0.0000,-17.8224 h -17.8224 l -0.0000,17.8224 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="16.202205207224342px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,82.7930,169.3441)" stroke="none" text-anchor="middle">80
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.277646469480913" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 95.5989,167.7239 h 7.7895 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 91.7042,204.4827 l -0.0000,-17.8224 h -17.8224 l -0.0000,17.8224 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="16.202205207224342px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,82.7930,195.5714)" stroke="none" text-anchor="middle">60
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.277646469480913" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 95.5989,193.9512 h 7.7895 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 91.7042,230.7100 l -0.0000,-17.8224 h -17.8224 l -0.0000,17.8224 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="16.202205207224342px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,82.7930,221.7988)" stroke="none" text-anchor="middle">40
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.277646469480913" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 95.5989,220.1786 h 7.7895 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 91.7042,256.9373 l -0.0000,-17.8224 h -17.8224 l -0.0000,17.8224 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="16.202205207224342px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,82.7930,248.0261)" stroke="none" text-anchor="middle">20
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.277646469480913" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 95.5989,246.4059 h 7.7895 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 91.7042,283.1647 l -0.0000,-17.8224 h -8.9112 l -0.0000,17.8224 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="16.202205207224342px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,87.2486,274.2535)" stroke="none" text-anchor="middle">0
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.277646469480913" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 95.5989,272.6333 h 7.7895 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.1" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 503.2506,288.2123 l -0.0000,-5.1930 h -389.4761 l -0.0000,5.1930 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 523.9748,376.6189 l 12.6024,-12.6024 l -69.3130,-69.3130 l -12.6024,12.6024 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="16.20220520722434px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(0.7071,0.7071,-0.7071,0.7071,460.9631,301.0048)" stroke="none" text-anchor="start">30 Nov 2018
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.277646469480913" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 462.1087,283.0193 v 7.7895 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 463.6335,376.6189 l 12.6024,-12.6024 l -69.3130,-69.3130 l -12.6024,12.6024 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="16.20220520722434px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(0.7071,0.7071,-0.7071,0.7071,400.6217,301.0048)" stroke="none" text-anchor="start">31 Oct 2018
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.277646469480913" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 401.7674,283.0193 v 7.7895 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 400.5493,376.6189 l 12.6024,-12.6024 l -69.3130,-69.3130 l -12.6024,12.6024 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="16.20220520722434px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(0.7071,0.7071,-0.7071,0.7071,337.5375,301.0048)" stroke="none" text-anchor="start">30 Sep 2018
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.277646469480913" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 338.6832,283.0193 v 7.7895 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 345.6935,376.6189 l 12.6024,-12.6024 l -69.3130,-69.3130 l -12.6024,12.6024 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="16.20220520722434px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(0.7071,0.7071,-0.7071,0.7071,282.6817,301.0048)" stroke="none" text-anchor="start">31 Aug 2018
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.277646469480913" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 283.8274,283.0193 v 7.7895 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 282.6094,376.6189 l 12.6024,-12.6024 l -69.3130,-69.3130 l -12.6024,12.6024 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="16.20220520722434px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(0.7071,0.7071,-0.7071,0.7071,219.5976,301.0048)" stroke="none" text-anchor="start">31 Jul 2018
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.277646469480913" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 220.7433,283.0193 v 7.7895 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 222.2680,376.6189 l 12.6024,-12.6024 l -69.3130,-69.3130 l -12.6024,12.6024 Z"/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="1.0" fill-opacity="0.6" font-size="16.20220520722434px" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <text dominant-baseline="middle" transform="matrix(0.7071,0.7071,-0.7071,0.7071,159.2562,301.0048)" stroke="none" text-anchor="start">30 Jun 2018
-    </text>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="2.277646469480913" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 160.4019,283.0193 v 7.7895 "/>
-  </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
-    <path d="M 503.2506,272.6333 l -0.0000,-259.6507 h -389.4761 l -0.0000,259.6507 Z"/>
-  </g>
-</svg>
diff --git a/other/withHudExample.svg b/other/withHudExample.svg
--- a/other/withHudExample.svg
+++ b/other/withHudExample.svg
@@ -4,13 +4,13 @@
 <svg xmlns="http://www.w3.org/2000/svg" height="200.0000" stroke-opacity="1" viewBox="0 0 300 200" font-size="1" width="300.0000" xmlns:xlink="http://www.w3.org/1999/xlink" stroke="rgb(0,0,0)" version="1.1">
   <defs>
   </defs>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(44,160,44)" stroke-width="1.1961709553130593" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(33,127,33)" stroke-width="1.1961709553130593" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 77.0340,61.9755 v 104.7398 "/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(255,127,14)" stroke-width="4.784683821252237" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(203,100,9)" stroke-width="4.784683821252237" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 44.3028,166.7153 l 196.3870,-78.5548 "/>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(31,119,180)" stroke-width="2.3923419106261186" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(22,93,143)" stroke-width="2.3923419106261186" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 44.3028,140.5304 h 65.4623 l 65.4623,-104.7398 "/>
   </g>
   <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
@@ -27,7 +27,7 @@
     <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,274.4112,161.2114)" stroke="none" text-anchor="middle">line3
     </text>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(44,160,44)" stroke-width="1.1961709553130593" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(33,127,33)" stroke-width="1.1961709553130593" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 255.4173,160.4965 h 6.5462 "/>
   </g>
   <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
@@ -37,7 +37,7 @@
     <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,274.4112,149.4203)" stroke="none" text-anchor="middle">line2
     </text>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(255,127,14)" stroke-width="4.784683821252237" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(203,100,9)" stroke-width="4.784683821252237" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 255.4173,148.7054 h 6.5462 "/>
   </g>
   <g stroke-linejoin="miter" stroke-opacity="0.0" fill-opacity="0.0" stroke="rgb(0,0,0)" fill-rule="evenodd" stroke-width="0.0" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
@@ -47,7 +47,7 @@
     <text dominant-baseline="middle" transform="matrix(1.0000,-0.0000,0.0000,1.0000,274.4112,137.6292)" stroke="none" text-anchor="middle">line1
     </text>
   </g>
-  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(31,119,180)" stroke-width="2.3923419106261186" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
+  <g stroke-linejoin="miter" stroke-opacity="0.6" fill-opacity="0.0" stroke="rgb(22,93,143)" stroke-width="2.3923419106261186" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
     <path d="M 255.4173,136.9143 h 6.5462 "/>
   </g>
   <g stroke-linejoin="miter" stroke-opacity="0.2" fill-opacity="0.0" stroke="rgb(0,0,0)" stroke-width="0.4784683821252237" fill="rgb(0,0,0)" stroke-linecap="butt" stroke-miterlimit="10.0">
diff --git a/src/Chart.hs b/src/Chart.hs
--- a/src/Chart.hs
+++ b/src/Chart.hs
@@ -121,7 +121,9 @@
 -- > 
 -- > main :: IO ()
 -- > main = fileSvg "other/mainExample.svg" def mainExample
--- > 
+-- >
+--
+-- ![main example](other/mainExample.svg)
 --
 -- There are three different ways of combining charts (and note adding a hud to a chart is a subset of combining charts):
 --
diff --git a/src/Chart/ADT.hs b/src/Chart/ADT.hs
--- a/src/Chart/ADT.hs
+++ b/src/Chart/ADT.hs
@@ -34,9 +34,9 @@
 -- | A single Chart specification
 data ChartSpec
   = GlyphChart [(GlyphOptions, [Pair Double])]
-  | LGlyphChart [(LabelOptions, GlyphOptions, [(Text, Pair Double)])]
+  | LGlyphChart [((LabelOptions, GlyphOptions), [(Text, Pair Double)])]
   | LineChart [(LineOptions, [Pair Double])]
-  | GlineChart [(LineOptions, GlyphOptions, [Pair Double])]
+  | GlineChart [((LineOptions, GlyphOptions), [Pair Double])]
   | TextChart [(TextOptions, [(Text, Pair Double)])]
   | RectChart [(RectOptions, [Rect Double])]
   | PixelChart [[Pixel]]
@@ -65,19 +65,19 @@
 renderSpec a r (GlyphChart xs) = glyphChart (fst <$> xs) a r (snd <$> xs)
 renderSpec a r (LGlyphChart xs) =
   lglyphChart
-  ((\(x,_,_) -> x) <$> xs)
-  ((\(_,x,_) -> x) <$> xs)
+  (fst . fst <$> xs)
+  (snd . fst <$> xs)
   a
   r
-  ((\(_,_,x) -> x) <$> xs)
+  (snd <$> xs)
 renderSpec a r (LineChart xs) = lineChart (fst <$> xs) a r (snd <$> xs)
 renderSpec a r (GlineChart xs) =
   glineChart
-  ((\(x,_,_) -> x) <$> xs)
-  ((\(_,x,_) -> x) <$> xs)
+  (fst . fst <$> xs)
+  (snd . fst <$> xs)
   a
   r
-  ((\(_,_,x) -> x) <$> xs)
+  (snd <$> xs)
 renderSpec a r (TextChart xs) = textChart (fst <$> xs) a r (snd <$> xs)
 renderSpec a r (RectChart xs) = rectChart (fst <$> xs) a r (snd <$> xs)
 renderSpec a r (PixelChart xs) = pixelChart a r xs
@@ -89,9 +89,9 @@
 rangeSpec :: ChartSpec -> Maybe (Rect Double)
 rangeSpec (GlyphChart xs) = Just $ range (snd <$> xs)
 rangeSpec (LGlyphChart xs) = Just $ range $ (\x -> fmap snd . toList <$> x)
-  ((\(_,_,x) -> x) <$> xs)
+  (snd <$> xs)
 rangeSpec (LineChart xs) = Just $ range (snd <$> xs)
-rangeSpec (GlineChart xs) = Just $ range ((\(_,_,x) -> x) <$> xs)
+rangeSpec (GlineChart xs) = Just $ range (snd <$> xs)
 rangeSpec (TextChart xs) = Just $ range $ (\x -> fmap snd . toList <$> x) (snd <$> xs)
 rangeSpec (RectChart xs) = Just $ (\rs -> fold $ fold <$> rs) (snd <$> xs)
 rangeSpec (PixelChart xs) = Just $ fold $ fold . map pixelRect <$> xs
diff --git a/src/Chart/Arrow.hs b/src/Chart/Arrow.hs
--- a/src/Chart/Arrow.hs
+++ b/src/Chart/Arrow.hs
@@ -1,3 +1,7 @@
+{-# LANGUAGE NoImplicitPrelude #-}
+{-# LANGUAGE DeriveGeneric #-}
+{-# LANGUAGE RankNTypes #-}
+{-# LANGUAGE FlexibleContexts #-}
 {-# OPTIONS_GHC -Wall #-}
 
 -- | Charts that depict gradients and similar data, using arrows in positions
@@ -46,7 +50,7 @@
   | Block
   | Quill2 a
   | Block2 a
-  deriving (Show)
+  deriving (Show, Generic)
 
 -- | conversion between unit and diagrams
 -- ToDo: abstract ArrowHT usage
@@ -83,7 +87,7 @@
   , maxHeadLength :: Double
   , minStaffWidth :: Double
   , maxStaffWidth :: Double
-  , color :: AlphaColour Double
+  , color :: UColor Double
   , hStyle :: ArrowHTStyle Double
   } deriving (Show, Generic)
 
@@ -109,7 +113,7 @@
 data Arrow = Arrow
   { arrowPos :: Pair Double -- position of arrow tail
   , arrowDir :: Pair Double -- direction and strength of arrow
-  } deriving (Eq, Show)
+  } deriving (Eq, Show, Generic)
 
 -- | Rescale data across position, and between position and arrow direction.
 --
@@ -131,7 +135,7 @@
 arrows opts xs = c
   where
     c =
-      fcA (color opts) $
+      fcA (acolor $ color opts) $
       position $
       getZipList $
       (\ps' as' hrel' wrel' srel' ->
@@ -168,9 +172,9 @@
     arropts lh lw'' =
       with & arrowHead .~ arrowHTStyle (hStyle opts) & headLength .~ global lh &
       shaftStyle %~
-      (lwG lw'' & lcA (color opts)) &
+      (lwG lw'' & lcA (acolor $ color opts)) &
       headStyle %~
-      (lcA (color opts) & fcA (color opts))
+      (lcA (acolor $ color opts) & fcA (acolor $ color opts))
 
 -- | A chart of arrows
 arrowChart ::
diff --git a/src/Chart/Bar.hs b/src/Chart/Bar.hs
--- a/src/Chart/Bar.hs
+++ b/src/Chart/Bar.hs
@@ -51,7 +51,7 @@
 instance Default BarOptions where
   def =
     BarOptions
-      ((\x -> RectOptions 0.002 ugrey (d3Colors1 x `withOpacity` 0.5)) <$>
+      ((\x -> RectOptions 0.002 ugrey (ucolor $ d3Colors1 x `withOpacity` 0.5)) <$>
        [0 .. 10])
       0.1
       zero
diff --git a/src/Chart/Core.hs b/src/Chart/Core.hs
--- a/src/Chart/Core.hs
+++ b/src/Chart/Core.hs
@@ -6,6 +6,8 @@
 {-# OPTIONS_GHC -Wall #-}
 {-# OPTIONS_GHC -fno-warn-orphans #-}
 {-# LANGUAGE CPP #-}
+{-# LANGUAGE DeriveGeneric #-}
+{-# LANGUAGE ViewPatterns #-}
 #if ( __GLASGOW_HASKELL__ < 820 )
 {-# OPTIONS_GHC -fno-warn-incomplete-patterns #-}
 #endif
@@ -69,9 +71,15 @@
     -- * Color
     --
     -- | chart-unit exposes the 'colour' and 'palette' libraries for color combinators
+  , UColor(..)
+  , acolor
   , ucolor
+  , ccolor
   , ublue
   , ugrey
+  , utrans
+  , ublack
+  , uwhite
     -- * Compatability
   , scaleX
   , scaleY
@@ -79,13 +87,14 @@
   ) where
 
 import Diagrams.Prelude
-       hiding (Color, D, aspect, project, scale, scaleX, scaleY, zero)
+       hiding (Color, D, aspect, project, scale, scaleX, scaleY, zero, over)
 import qualified Diagrams.Prelude as Diagrams
 import qualified Diagrams.TwoD.Text
 import NumHask.Pair
 import NumHask.Prelude
 import NumHask.Rect
 import NumHask.Space
+import Data.Colour (over)
 
 -- | A Chart is simply a type synonym for a typical Diagrams object.  A close relation to this type is 'Diagram' 'B', but this usage tends to force a single backend (B comes from the backend libraries), so making Chart b's maintains backend polymorphism.
 --
@@ -137,14 +146,14 @@
   = AlignLeft
   | AlignCenter
   | AlignRight
-  deriving (Eq, Show)
+  deriving (Eq, Show, Generic)
 
 -- | vertical alignment
 data AlignV
   = AlignTop
   | AlignMid
   | AlignBottom
-  deriving (Eq, Show)
+  deriving (Eq, Show, Generic)
 
 -- | conversion of horizontal alignment to (one :: Range Double) limits
 alignHU :: AlignH -> Double
@@ -182,7 +191,7 @@
 data Orientation
   = Hori
   | Vert
-  deriving (Eq, Show)
+  deriving (Eq, Show, Generic)
 
 -- | Placement of elements around (what is implicity but maybe shouldn't just be) a rectangular canvas
 data Place
@@ -190,7 +199,7 @@
   | PlaceRight
   | PlaceTop
   | PlaceBottom
-  deriving (Eq, Show)
+  deriving (Eq, Show, Generic)
 
 -- | position an element at a point
 positioned :: (R2 r) => r Double -> Chart b -> Chart b
@@ -244,17 +253,46 @@
 sepVert :: Double -> Chart b -> Chart b
 sepVert s x = beside (r2 (1, 0)) x (strutY s)
 
--- | convert an rgba spec to an AlphaColour
-ucolor :: (Floating a, Ord a) => a -> a -> a -> a -> AlphaColour a
-ucolor r g b o = withOpacity (sRGB r g b) o
 
+data UColor a =
+  UColor
+  { ucred :: a
+  , ucgreen :: a
+  , ucblue :: a
+  , ucopacity :: a
+  } deriving (Eq, Ord, Show, Generic)
+
+-- | convert a UColor to an AlphaColour
+acolor :: (Floating a, Num a, Ord a) => UColor a -> AlphaColour a
+acolor (UColor r g b o) = withOpacity (sRGB r g b) o
+
+-- | convert an AlphaColour to a UColor
+ucolor :: (Floating a, Num a, Ord a) => AlphaColour a -> UColor a
+ucolor a = let (RGB r g b) = toSRGB (a `over` black) in UColor r g b (alphaChannel a)
+
+-- | convert a Colour to a UColor
+ccolor :: (Floating a, Num a, Ord a) => Colour a -> UColor a
+ccolor (toSRGB -> RGB r g b) = UColor r g b 1
+
 -- | the official chart-unit blue
-ublue :: AlphaColour Double
-ublue = ucolor 0.365 0.647 0.855 0.5
+ublue :: UColor Double
+ublue = UColor 0.365 0.647 0.855 0.5
 
 -- | the official chart-unit grey
-ugrey :: AlphaColour Double
-ugrey = ucolor 0.4 0.4 0.4 1
+ugrey :: UColor Double
+ugrey = UColor 0.4 0.4 0.4 1
+
+-- | transparent
+utrans :: UColor Double
+utrans = UColor 0 0 0 0
+
+-- | black
+ublack :: UColor Double
+ublack = UColor 0 0 0 1
+
+-- | white
+uwhite :: UColor Double
+uwhite = UColor 1 1 1 1
 
 -- | These are difficult to avoid
 instance R1 Pair where
diff --git a/src/Chart/Glyph.hs b/src/Chart/Glyph.hs
--- a/src/Chart/Glyph.hs
+++ b/src/Chart/Glyph.hs
@@ -25,8 +25,8 @@
 -- | The actual shape of a glyph can be any Chart element
 data GlyphOptions = GlyphOptions
   { size :: Double -- ^ glyph radius
-  , color :: AlphaColour Double
-  , borderColor :: AlphaColour Double
+  , color :: UColor Double
+  , borderColor :: UColor Double
   , borderSize :: Double -- ^ normalized
   , shape :: GlyphShape
   } deriving (Show, Generic)
@@ -49,7 +49,7 @@
                 Double
   | VLine Double
   | HLine Double
-  deriving (Show)
+  deriving (Show, Generic)
 
 -- | convert from chart-unit to diagrams shapes
 glyphShape :: GlyphShape -> (Double -> Chart b)
@@ -73,7 +73,7 @@
 -- ![glyph_ example](other/glyph_Example.svg)
 --
 glyph_ :: GlyphOptions -> Chart b
-glyph_ (GlyphOptions s c bc bs sh) = glyphShape sh s # fcA c # lcA bc # lwN bs
+glyph_ (GlyphOptions s c bc bs sh) = glyphShape sh s # fcA (acolor c) # lcA (acolor bc) # lwN bs
 
 -- | Create positioned glyphs.
 --
diff --git a/src/Chart/Hud.hs b/src/Chart/Hud.hs
--- a/src/Chart/Hud.hs
+++ b/src/Chart/Hud.hs
@@ -201,13 +201,13 @@
     1
     Hori
     PlaceBottom
-    (RectOptions 0 transparent (withOpacity black 0.1))
+    (RectOptions 0 utrans (UColor 0 0 0 0.1))
     0.02
-    (GlyphOptions 0.03 transparent (withOpacity black 0.6) 0.005 (VLine 1.0))
+    (GlyphOptions 0.03 utrans (UColor 0 0 0 0.6) 0.005 (VLine 1.0))
     0
     0.04
     (LabelOptions
-       (field @"color" .~ withOpacity black 0.6 $ def)
+       (field @"color" .~ UColor 0 0 0 0.6 $ def)
        (Pair 0 -1)
        0.015)
     (TickRound 8)
@@ -219,13 +219,13 @@
     1
     Vert
     PlaceLeft
-    (RectOptions 0 transparent (withOpacity black 0.1))
+    (RectOptions 0 utrans (UColor 0 0 0 0.1))
     0.02
-    (GlyphOptions 0.03 transparent (withOpacity black 0.6) 0.005 (HLine 1.0))
+    (GlyphOptions 0.03 utrans (UColor 0 0 0 0.6) 0.005 (HLine 1.0))
     0
     0.04
     (LabelOptions
-       (field @"color" .~ withOpacity black 0.6 $ def)
+       (field @"color" .~ (UColor 0 0 0 0.6) $ def)
        (Pair -1 0)
        0.015)
     (TickRound 8)
@@ -390,7 +390,7 @@
   def =
     TitleOptions
        (field @"size" .~ 0.12 $
-        field @"color" .~ withOpacity black 0.6 $
+        field @"color" .~ UColor 0 0 0 0.6 $
         def)
       AlignCenter
       PlaceTop
@@ -453,9 +453,9 @@
       PlaceRight
       AlignRight
       0.02
-      (RectOptions 0.002 (withOpacity black 0.2) transparent)
+      (RectOptions 0.002 (UColor 0 0 0 0.2) utrans)
       (field @"size" .~ 0.07 $
-       field @"color" .~ withOpacity black 0.63 $
+       field @"color" .~ (UColor 0 0 0 0.63) $
        def)
 
 -- | Create a legend based on a LegendOptions
diff --git a/src/Chart/Line.hs b/src/Chart/Line.hs
--- a/src/Chart/Line.hs
+++ b/src/Chart/Line.hs
@@ -34,7 +34,7 @@
 --
 data LineOptions = LineOptions
   { size :: Double -- ^ normalized
-  , color :: AlphaColour Double
+  , color :: UColor Double
   } deriving (Show, Generic)
 
 instance Default LineOptions where
@@ -55,13 +55,13 @@
   case NumHask.Prelude.head xs of
     Nothing -> mempty
     Just p ->
-      trailLike (trailFromVertices (toList $ p_ <$> xs) `at` p_ p) # lcA c #
+      trailLike (trailFromVertices (toList $ p_ <$> xs) `at` p_ p) # lcA (acolor c) #
       lwN s
 
 -- | A single line connecting 2 points
 oneline :: (R2 r) => LineOptions -> Pair (r Double) -> Chart b
 oneline (LineOptions s c) (Pair x0 x1) =
-  stroke (trailFromVertices [p_ x0, p_ x1] `at` p_ x0) # lcA c # lwN s
+  stroke (trailFromVertices [p_ x0, p_ x1] `at` p_ x0) # lcA (acolor c) # lwN s
 
 -- | A chart of lines
 lineChart ::
diff --git a/src/Chart/Rect.hs b/src/Chart/Rect.hs
--- a/src/Chart/Rect.hs
+++ b/src/Chart/Rect.hs
@@ -37,29 +37,29 @@
 -- | Just about everything on a chart is a rectangle.
 data RectOptions = RectOptions
   { borderSize :: Double
-  , borderColor :: AlphaColour Double
-  , color :: AlphaColour Double
+  , borderColor :: UColor Double
+  , color :: UColor Double
   } deriving (Show, Generic)
 
 instance Default RectOptions where
   def = RectOptions 0.005 ugrey ublue
 
 -- | solid rectangle, no border
-blob :: AlphaColour Double -> RectOptions
-blob c = RectOptions 0 transparent c
+blob :: UColor Double -> RectOptions
+blob c = RectOptions 0 utrans c
 
--- | clear and transparent rect
+-- | clear and utrans rect
 clear :: RectOptions
-clear = RectOptions 0 transparent transparent
+clear = RectOptions 0 utrans utrans
 
 -- | clear rect, with border
-box :: AlphaColour Double -> RectOptions
-box c = RectOptions 0.015 c transparent
+box :: UColor Double -> RectOptions
+box c = RectOptions 0.015 c utrans
 
 -- | place a rect around an Chart, with a size equal to the chart range
 bound :: RectOptions -> Double -> Chart b -> Chart b
 bound (RectOptions bs bc c) p x =
-  (boundingRect x' # lcA bc # lwN bs # fcA c) <> x'
+  (boundingRect x' # lcA (acolor bc) # lwN bs # fcA (acolor c)) <> x'
   where
     x' = pad p x
 
@@ -99,8 +99,8 @@
 rect_ (RectOptions bs bc c) (Rect x z y w) =
   unitSquare # moveTo (p2 (0.5, 0.5)) # scaleX (z - x) # scaleY (w - y) #
   moveTo (p2 (x, y)) #
-  fcA c #
-  lcA bc #
+  fcA (acolor c) #
+  lcA (acolor bc) #
   lwN bs
 
 -- | Create rectangles (with the same configuration).
@@ -166,8 +166,8 @@
 -- | At some point, a color of a rect becomes more about data than stylistic option, hence the pixel.  Echewing rect border leaves a Pixel with no stylistic options to choose.
 data Pixel = Pixel
   { pixelRect :: Rect Double
-  , pixelColor :: AlphaColour Double
-  } deriving Show
+  , pixelColor :: UColor Double
+  } deriving (Show, Generic)
 
 -- | A pixel is a rectangle with a color.
 --
@@ -185,8 +185,8 @@
 pixel_ (Pixel (Rect x z y w) c) =
   unitSquare # moveTo (p2 (0.5, 0.5)) # scaleX (z - x) # scaleY (w - y) #
   moveTo (p2 (x, y)) #
-  fcA c #
-  lcA transparent #
+  fcA (acolor c) #
+  lcA (acolor utrans) #
   lw 0
 
 -- | Render multiple pixels
@@ -241,13 +241,13 @@
 instance Default PixelationOptions where
   def =
     PixelationOptions
-      (Range (ucolor 0.47 0.73 0.86 1) (ucolor 0.01 0.06 0.22 1))
+      (Range (acolor $ UColor 0.47 0.73 0.86 1) (acolor $ UColor 0.01 0.06 0.22 1))
       (Pair 40 40)
 
 -- | Transform a Rect into Pixels using a function over a Pair
 pixelate ::
      PixelationOptions -> Rect Double -> (Pair Double -> Double) -> [Pixel]
-pixelate (PixelationOptions (Range lc0 uc0) grain) xy f = zipWith Pixel g cs
+pixelate (PixelationOptions (Range lc0 uc0) grain) xy f = zipWith Pixel g (ucolor <$> cs)
   where
     g = gridSpace xy grain
     xs = f . mid <$> g
diff --git a/src/Chart/Text.hs b/src/Chart/Text.hs
--- a/src/Chart/Text.hs
+++ b/src/Chart/Text.hs
@@ -9,6 +9,7 @@
   , TextSvgOptions(..)
   , TextType(..)
   , TextFont(..)
+  , UFillRule(..)
   , textFont
   , text_
   , texts
@@ -43,7 +44,7 @@
 data TextFont
   = Lin2
   | FromFontFile Text
-  deriving (Show)
+  deriving (Show, Generic)
 
 -- | transform from chart-unit to SVGFonts rep of font
 textFont :: TextFont -> PreparedFont Double
@@ -71,13 +72,19 @@
   | TextSvg TextSvgOptions
   deriving (Show, Generic)
 
+data UFillRule = UWinding | UEvenOdd deriving (Show, Eq, Generic)
+
+uFillRule :: UFillRule -> FillRule
+uFillRule UWinding = Winding
+uFillRule UEvenOdd = EvenOdd
+
 -- | text options
 data TextOptions = TextOptions
   { size :: Double  -- ^ size as ratio to overall chart size (default: 0.08)
   , alignH :: AlignH -- ^ horizontal alignment (default: 'AlignCenter')
   , alignV :: AlignV -- ^ vertical alignment (default: 'AlignMid')
-  , color :: AlphaColour Double -- ^ default: greyish
-  , textFillRule :: FillRule -- ^ default: 'EvenOdd'
+  , color :: UColor Double -- ^ default: greyish
+  , textFillRule :: UFillRule -- ^ default: 'EvenOdd'
   , rotation :: Double -- ^ in degrees from the horozontal (default: 0 degrees)
   , textType :: TextType -- ^ default: 'TextPath' def
   } deriving (Show, Generic)
@@ -88,8 +95,8 @@
       0.08
       AlignCenter
       AlignMid
-      (withOpacity black 0.33)
-      EvenOdd
+      (UColor 0 0 0 0.33)
+      UEvenOdd
       0
       (TextSvg def)
 
@@ -126,7 +133,7 @@
 text_ :: TextOptions -> Text -> Chart b
 text_ (TextOptions s ah av c fr rot (TextPath (TextPathOptions f))) t =
   moveTo (p_ (Pair (alignHTU ah * D.width path) (av' * D.height path))) $
-  path # fcA c # lw 0 # fillRule fr # rotate (rot @@ deg)
+  path # fcA (acolor c) # lw 0 # fillRule (uFillRule fr) # rotate (rot @@ deg)
   where
     path =
       textSVG_ (TextOpts (textFont f) INSIDE_H KERN False s s) (Text.unpack t)
@@ -140,9 +147,9 @@
   Chart.Core.scaleX (s * ns) #
   Chart.Core.scaleY (s * ns) #
   maybe identity (D.font . Text.unpack) f #
-  fcA c #
+  fcA (acolor c) #
   lw 0 #
-  fillRule fr #
+  fillRule (uFillRule fr) #
   rotate (rot @@ deg)
   where
     txt =
diff --git a/stack.yaml b/stack.yaml
--- a/stack.yaml
+++ b/stack.yaml
@@ -3,12 +3,5 @@
 packages:
   - .
 
-extra-deps:
-  - generic-lens-labels-0.1.0.2
-  - numhask-histogram-0.1.2.1
-  # - numhask-0.2.0.0
-  # - numhask-prelude-0.0.3.0
-  # - numhask-range-0.2.1.0
-  # - mwc-probability-2.0.2
+extra-deps: []
 
-allow-newer: true
