packages feed

tensort 1.0.1.1 → 1.0.1.2

raw patch · 15 files changed

+2607/−54 lines, 15 filesbinary-addedPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

CHANGELOG.md view
@@ -72,3 +72,15 @@ * Cleanup and improve documentation  * Cleanup code a bit++## 1.0.1.1 -- 2024-08-22++* Make all pictures in README viewable on Hackage++## 1.0.1.2 -- 2024-08-22++* Include benchmarking results and README images in package++* Improve flow in README++* Cleanup code and documentation a bit
README.md view
@@ -15,8 +15,10 @@ for improved robustness and can be leveraged to include any further processing we wish to do on the elements. +      + <figure>-    <img src="https://raw.githubusercontent.com/kaBeech/tensort/b160df72bdd673b37cbf7b8a5b7d0f4d02af9920/assets/images/deck_shuffle_chart_censored.svg"+    <img src="https://raw.githubusercontent.com/kaBeech/tensort/4c498da1cf13a7b45c8eb951fe376b7d36777377/assets/images/deck_shuffle_chart_censored.svg"          alt="When sorting a randomly shuffled deck of cards, Quicksort makes         202 positional errors, Mergesort makes 201, Bubblesort makes 4, Tensort         makes 51, Mundane Robustsort makes 11, and Magic Robustsort makes@@ -29,6 +31,8 @@     </i></figcaption> </figure> +      + ## Table of Contents  - [Introduction](#introduction)@@ -36,8 +40,8 @@   - [Why?](#why)   - [But why would anyone care about this in the first      place?](#but-why-would-anyone-care-about-this-in-the-first-place)-  - [Why Haskell?](#why-haskell)   - [What's a tensor?](#whats-a-tensor)+  - [Why Haskell?](#why-haskell) - [Project structure](#project-structure) - [Algorithms overview](#algorithms-overview)   - [Tensort](#tensort)@@ -123,27 +127,6 @@ efficiency to the detriment of robustness. The rate of our technological progression precludes us from continuing to do so. -### Why Haskell?--1. Tensort can involve a lot of recursion, which Haskell handles well--2. All the other benefits we get from using a purely functional language, such-as strict dependency management, which even the smartest among us sometimes-falter without:--<figure>-    <img src="./assets/images/ackley_deps.png"-         alt="Comment from Ackley in the Beyond Efficiency code about Perl-        updates breaking their code">-    <figcaption><i><a href="http://livingcomputation.com/robusort2.tar">-            Source-        </a></i></figcaption>-</figure>--      --3. [Obviously](https://www.youtube.com/shorts/LGZKXZQeEBg)- ### What's a tensor?  If you want an in-depth explanation,@@ -173,6 +156,29 @@ densest possible cluster of short lists. This provides opportunities to add processing tailored to suit the current goals while preserving time efficiency. +### Why Haskell?++1. Tensort can involve a lot of recursion, which Haskell handles well++2. All the other benefits we get from using a purely functional language, such+as strict dependency management, which even the smartest among us sometimes+falter without:++      ++<figure>+    <img src="https://raw.githubusercontent.com/kaBeech/tensort/main/assets/images/ackley_deps.png"+         alt="Comment from Ackley in the Beyond Efficiency code about Perl+        updates breaking their code">+    <figcaption><i><a href="http://livingcomputation.com/robusort2.tar">+            Source+        </a></i></figcaption>+</figure>++      ++3. [Obviously](https://www.youtube.com/shorts/LGZKXZQeEBg)+ ## Project structure  - `src/` contains the Tensort library@@ -229,6 +235,8 @@  Alright, let's get started! Ready, Sir Michael? +      + <figure>     <img src="https://m.media-amazon.com/images/M/MV5BMzU2Nzk5NjA1M15BMl5BanBnXkFtZTYwNjcyNDU2._V1_.jpg"          alt="Sir Michael Caine, ready to go!">@@ -503,6 +511,8 @@ But now that we understand Tensort's basic structure, let's tune it for even more robustness! +      + <figure>     <img src="https://m.media-amazon.com/images/M/MV5BNjk2MTMzNTA4MF5BMl5BanBnXkFtZTcwMTM0OTk1Mw@@._V1_.jpg"          alt="Michael Caine sitting at a desk in front of a chalkboard full of@@ -690,7 +700,6 @@ this project while returning something besides [1,3,2] as its third most common result, [I'd love to hear about it](#contact)! -         <figure>@@ -817,6 +826,8 @@ Robustsort uses a Bytesize of 3, but we can use a logarithmic Bytesize by adding recursion. +      + <figure>     <img src="https://m.media-amazon.com/images/M/MV5BZWUzM2NhMTMtM2U0Yy00MmE4LWI2OGItMWQyZjQ3MmRkMGVlXkEyXkFqcGdeQXVyNTAyODkwOQ@@._V1_.jpg"          alt="Michael Caine reaching into a cage to gently retrieve a bird. The@@ -828,7 +839,6 @@         </a></i></figcaption> </figure> -         Let's take our base Robustsort example above and make it recursive.@@ -869,6 +879,8 @@ with an extremely reliable, theoretically non-deterministic algorithm - one that's so good it's robust against logic itself... +      + <figure>     <img src="https://raw.githubusercontent.com/kaBeech/tensort/main/assets/images/mc_confused.png"          alt="Michael Caine and Mike Meyers looking taken aback">@@ -877,10 +889,8 @@         </a></i></figcaption> </figure> -        - ...[Bogosort!](https://www.youtube.com/watch?v=kgBjXUE_Nwc&t=583)  Magicsort simply runs both Permutationsort and Bogosort on the same input and@@ -989,13 +999,17 @@ Now let's take a look at how everything compares. Here is a graph showing the benchmarking results for average error score for our algorithms: +      + <figure>-    <img src="https://raw.githubusercontent.com/kaBeech/tensort/b160df72bdd673b37cbf7b8a5b7d0f4d02af9920/assets/images/deck_shuffle_chart_uncensored.svg"+    <img src="https://raw.githubusercontent.com/kaBeech/tensort/4c498da1cf13a7b45c8eb951fe376b7d36777377/assets/images/deck_shuffle_chart_uncensored.svg"          alt="When sorting a randomly shuffled deck of cards, Quicksort makes         202 positional errors, Mergesort makes 201, Bubblesort makes 4, Tensort         makes 51, Mundane Robustsort makes 11, and Magic Robustsort makes 1"> </figure> +      + As shown above, when sorting a randomly shuffled deck of cards, Quicksort makes 202 positional errors, Mergesort makes 201, Bubblesort makes 4, Logarithmic Tensort makes 51, Basic Mundane Robustsort with Bogosort adjudicator makes 11,@@ -1028,9 +1042,13 @@      RobustsortRM | 0.249211013s    | 1824     |     ---------------------------------------------------------- +      + Well, there it is! I'm pretty happy with the results. What do you think, Sir Michael? +      + <figure>     <img src="https://raw.githubusercontent.com/kaBeech/tensort/main/assets/images/mc_doors.png"          alt="Michael Caine looking upset with Michael Standing">@@ -1038,6 +1056,8 @@             Source         </a></i></figcaption> </figure>++        ## Library 
+ assets/images/ackley_deps.png view

binary file changed (absent → 149431 bytes)

+ assets/images/deck_shuffle_chart_censored.svg view
@@ -0,0 +1,1096 @@+<?xml version="1.0" encoding="UTF-8" standalone="no"?>+<svg+   font-size="1"+   viewBox="0.0 0.0 800.0 600.0"+   stroke="rgb(0,0,0)"+   width="800.0000"+   stroke-opacity="1"+   height="600.0000"+   version="1.1"+   id="svg63"+   sodipodi:docname="deck_shuffle_chart_censored.svg"+   inkscape:version="1.3.2 (091e20ef0f, 2023-11-25)"+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"+   xmlns="http://www.w3.org/2000/svg"+   xmlns:svg="http://www.w3.org/2000/svg">+  <sodipodi:namedview+     id="namedview63"+     pagecolor="#ffffff"+     bordercolor="#000000"+     borderopacity="0.25"+     inkscape:showpageshadow="2"+     inkscape:pageopacity="0.0"+     inkscape:pagecheckerboard="0"+     inkscape:deskcolor="#d1d1d1"+     inkscape:zoom="1.3817989"+     inkscape:cx="421.19009"+     inkscape:cy="313.72148"+     inkscape:window-width="1876"+     inkscape:window-height="1006"+     inkscape:window-x="0"+     inkscape:window-y="0"+     inkscape:window-maximized="1"+     inkscape:current-layer="svg63" />+  <defs+     id="defs1">+    <rect+       x="437.02939"+       y="219.77409"+       width="280.69162"+       height="68.801841"+       id="rect66" />+    <rect+       x="97.172925"+       y="109.89411"+       width="44.628759"+       height="31.090587"+       id="rect64" />+    <rect+       x="93.266106"+       y="103.33563"+       width="48.001288"+       height="28.925158"+       id="rect63" />+    <rect+       x="97.172928"+       y="109.89411"+       width="44.628757"+       height="31.090588"+       id="rect64-3" />+    <rect+       x="97.172928"+       y="109.89411"+       width="44.628757"+       height="31.090588"+       id="rect64-9" />+    <rect+       x="97.172928"+       y="109.89411"+       width="44.628757"+       height="31.090588"+       id="rect64-9-4" />+    <rect+       x="97.172928"+       y="109.89411"+       width="44.628757"+       height="31.090588"+       id="rect64-9-0" />+    <rect+       x="97.172928"+       y="109.89411"+       width="44.628757"+       height="31.090588"+       id="rect64-9-1" />+  </defs>+  <g+     stroke-linejoin="bevel"+     fill-opacity="1.0"+     fill="rgb(255,255,255)"+     stroke="rgb(0,0,0)"+     stroke-linecap="butt"+     stroke-miterlimit="10.0"+     stroke-opacity="0.0"+     stroke-width="0.0"+     id="g1">+    <path+       d="M 0.0000,0.0000 v 600.0000 h 800.0000 v -600.0000 Z"+       id="path1" />+  </g>+  <g+     stroke-linejoin="bevel"+     fill-opacity="1"+     fill="#000000"+     stroke="#000000"+     stroke-linecap="butt"+     stroke-miterlimit="10"+     stroke-opacity="0"+     stroke-width="0"+     id="g61-2"+     transform="translate(123.0381,15.4622)">+    <path+       d="m 512.9619,562 z m 1.7017,-12.4034 h 1.8529 l 2.4013,6.6555 0.9076,2.5336 h 0.0756 l 0.8697,-2.5336 2.3824,-6.6555 h 1.8529 V 562 h -1.4937 v -6.8256 c 0,-0.8319 0.0662,-1.834 0.0662,-1.834 0.0662,-1.0021 0.1418,-1.834 0.1418,-1.834 h -0.0756 l -1.0021,2.7605 -2.3824,6.4853 h -0.8887 l -2.4013,-6.4853 -0.9832,-2.7605 h -0.0756 c 0.0567,0.8319 0.1324,1.834 0.1324,1.834 0.0756,1.0021 0.0756,1.834 0.0756,1.834 V 562 h -1.4559 V 549.5966 Z M 526.7077,562 Z m 1.0967,-2.3824 c 0,-1.5126 1.3519,-2.3162 1.3519,-2.3162 1.3519,-0.8036 4.3015,-1.125 4.3015,-1.125 0,-0.4349 -0.0851,-0.8508 -0.0851,-0.8508 -0.0851,-0.416 -0.3025,-0.7374 -0.3025,-0.7374 -0.2174,-0.3214 -0.5767,-0.52 -0.5767,-0.52 -0.3592,-0.1985 -0.9265,-0.1985 -0.9265,-0.1985 -0.813,0 -1.5032,0.3025 -1.5032,0.3025 -0.6901,0.3025 -1.2384,0.6807 -1.2384,0.6807 l -0.6239,-1.0777 c 0.6429,-0.416 1.5693,-0.8036 1.5693,-0.8036 0.9265,-0.3876 2.042,-0.3876 2.042,-0.3876 1.6828,0 2.4391,1.0305 2.4391,1.0305 0.7563,1.0305 0.7563,2.7511 0.7563,2.7511 v 5.6345 h -1.2857 l -0.1324,-1.0966 h -0.0378 c -0.6618,0.5483 -1.4275,0.9359 -1.4275,0.9359 -0.7658,0.3876 -1.6166,0.3876 -1.6166,0.3876 -1.1723,0 -1.938,-0.6807 -1.938,-0.6807 -0.7658,-0.6807 -0.7658,-1.9286 -0.7658,-1.9286 z m 0,0 z m 1.5315,-0.1134 c 0,0.7941 0.4632,1.1345 0.4632,1.1345 0.4632,0.3403 1.1439,0.3403 1.1439,0.3403 0.6618,0 1.2574,-0.312 1.2574,-0.312 0.5956,-0.312 1.2574,-0.917 1.2574,-0.917 v -2.5525 c -1.1534,0.1513 -1.9475,0.3592 -1.9475,0.3592 -0.7941,0.208 -1.2763,0.4916 -1.2763,0.4916 -0.4821,0.2836 -0.6901,0.6523 -0.6901,0.6523 -0.208,0.3687 -0.208,0.8036 -0.208,0.8036 z M 536.3884,562 Z m 2.2122,1.5504 c 0,0.7374 0.709,1.1723 0.709,1.1723 0.709,0.4349 1.9569,0.4349 1.9569,0.4349 0.6618,0 1.2006,-0.1607 1.2006,-0.1607 0.5389,-0.1607 0.917,-0.416 0.917,-0.416 0.3782,-0.2553 0.5861,-0.5956 0.5861,-0.5956 0.208,-0.3403 0.208,-0.6996 0.208,-0.6996 0,-0.6429 -0.4727,-0.8887 -0.4727,-0.8887 -0.4727,-0.2458 -1.3803,-0.2458 -1.3803,-0.2458 h -1.5882 c -0.2647,0 -0.5767,-0.0284 -0.5767,-0.0284 -0.312,-0.0284 -0.6145,-0.1229 -0.6145,-0.1229 -0.4916,0.3592 -0.7185,0.7563 -0.7185,0.7563 -0.2269,0.3971 -0.2269,0.7941 -0.2269,0.7941 z m 0,0 z m -1.3614,0.208 c 0,-0.5861 0.3592,-1.1155 0.3592,-1.1155 0.3592,-0.5294 0.9832,-0.9643 0.9832,-0.9643 v -0.0756 c -0.3403,-0.208 -0.5767,-0.5767 -0.5767,-0.5767 -0.2363,-0.3687 -0.2363,-0.917 -0.2363,-0.917 0,-0.5861 0.3214,-1.021 0.3214,-1.021 0.3214,-0.4349 0.6807,-0.6807 0.6807,-0.6807 v -0.0756 c -0.4538,-0.3782 -0.8225,-1.0116 -0.8225,-1.0116 -0.3687,-0.6334 -0.3687,-1.4653 -0.3687,-1.4653 0,-0.7563 0.2742,-1.3613 0.2742,-1.3613 0.2742,-0.605 0.7468,-1.0305 0.7468,-1.0305 0.4727,-0.4254 1.1061,-0.6523 1.1061,-0.6523 0.6334,-0.2269 1.333,-0.2269 1.333,-0.2269 0.3782,0 0.709,0.0662 0.709,0.0662 0.3309,0.0662 0.5956,0.1607 0.5956,0.1607 h 3.1954 v 1.1912 h -1.8908 c 0.3214,0.3214 0.5389,0.813 0.5389,0.813 0.2174,0.4916 0.2174,1.0777 0.2174,1.0777 0,0.7374 -0.2647,1.333 -0.2647,1.333 -0.2647,0.5956 -0.7185,1.0021 -0.7185,1.0021 -0.4538,0.4065 -1.0683,0.6334 -1.0683,0.6334 -0.6145,0.2269 -1.3141,0.2269 -1.3141,0.2269 -0.3403,0 -0.6996,-0.0851 -0.6996,-0.0851 -0.3592,-0.0851 -0.6807,-0.2363 -0.6807,-0.2363 -0.2458,0.208 -0.416,0.4632 -0.416,0.4632 -0.1702,0.2553 -0.1702,0.6334 -0.1702,0.6334 0,0.4349 0.3403,0.7185 0.3403,0.7185 0.3403,0.2836 1.2857,0.2836 1.2857,0.2836 h 1.7773 c 1.6071,0 2.4107,0.52 2.4107,0.52 0.8036,0.52 0.8036,1.6733 0.8036,1.6733 0,0.6429 -0.3214,1.2195 -0.3214,1.2195 -0.3214,0.5767 -0.9265,1.0116 -0.9265,1.0116 -0.605,0.4349 -1.4653,0.6901 -1.4653,0.6901 -0.8603,0.2553 -1.938,0.2553 -1.938,0.2553 -0.8508,0 -1.5504,-0.1607 -1.5504,-0.1607 -0.6996,-0.1607 -1.2006,-0.4821 -1.2006,-0.4821 -0.5011,-0.3214 -0.7752,-0.7752 -0.7752,-0.7752 -0.2742,-0.4538 -0.2742,-1.0588 -0.2742,-1.0588 z m 0,0 z m 3.8005,-5.7101 c 0.3971,0 0.7468,-0.1513 0.7468,-0.1513 0.3498,-0.1513 0.6239,-0.4349 0.6239,-0.4349 0.2742,-0.2836 0.4254,-0.6901 0.4254,-0.6901 0.1513,-0.4065 0.1513,-0.917 0.1513,-0.917 0,-1.021 -0.5672,-1.5788 -0.5672,-1.5788 -0.5672,-0.5578 -1.3803,-0.5578 -1.3803,-0.5578 -0.813,0 -1.3803,0.5578 -1.3803,0.5578 -0.5672,0.5578 -0.5672,1.5788 -0.5672,1.5788 0,0.5105 0.1513,0.917 0.1513,0.917 0.1513,0.4065 0.4254,0.6901 0.4254,0.6901 0.2742,0.2836 0.6239,0.4349 0.6239,0.4349 0.3498,0.1513 0.7468,0.1513 0.7468,0.1513 z M 545.9178,562 Z m 2.3445,-11.0798 c -0.4538,0 -0.7658,-0.2836 -0.7658,-0.2836 -0.312,-0.2836 -0.312,-0.7185 -0.312,-0.7185 0,-0.4538 0.312,-0.7279 0.312,-0.7279 0.312,-0.2742 0.7658,-0.2742 0.7658,-0.2742 0.4538,0 0.7658,0.2742 0.7658,0.2742 0.312,0.2742 0.312,0.7279 0.312,0.7279 0,0.4349 -0.312,0.7185 -0.312,0.7185 -0.312,0.2836 -0.7658,0.2836 -0.7658,0.2836 z m 0,0 z m -0.7941,1.8907 h 1.5504 V 562 h -1.5504 z M 550.5691,562 Z m 0.8697,-4.5756 c 0,-1.1534 0.3592,-2.0515 0.3592,-2.0515 0.3592,-0.8981 0.9643,-1.5221 0.9643,-1.5221 0.605,-0.6239 1.4086,-0.9454 1.4086,-0.9454 0.8036,-0.3214 1.6922,-0.3214 1.6922,-0.3214 0.9076,0 1.5599,0.3309 1.5599,0.3309 0.6523,0.3309 1.125,0.7658 1.125,0.7658 l -0.7752,1.0021 c -0.416,-0.3592 -0.8603,-0.5861 -0.8603,-0.5861 -0.4443,-0.2269 -0.9926,-0.2269 -0.9926,-0.2269 -0.6239,0 -1.1534,0.2553 -1.1534,0.2553 -0.5294,0.2553 -0.9076,0.7279 -0.9076,0.7279 -0.3782,0.4727 -0.5956,1.125 -0.5956,1.125 -0.2174,0.6523 -0.2174,1.4464 -0.2174,1.4464 0,0.7941 0.208,1.437 0.208,1.437 0.208,0.6429 0.5767,1.1061 0.5767,1.1061 0.3687,0.4632 0.8981,0.7185 0.8981,0.7185 0.5294,0.2553 1.1534,0.2553 1.1534,0.2553 0.6618,0 1.2006,-0.2742 1.2006,-0.2742 0.5389,-0.2742 0.9548,-0.6523 0.9548,-0.6523 l 0.6996,1.021 c -0.6239,0.5483 -1.3897,0.8697 -1.3897,0.8697 -0.7658,0.3214 -1.5977,0.3214 -1.5977,0.3214 -0.9076,0 -1.7017,-0.3214 -1.7017,-0.3214 -0.7941,-0.3214 -1.3708,-0.9359 -1.3708,-0.9359 -0.5767,-0.6145 -0.9076,-1.5126 -0.9076,-1.5126 -0.3309,-0.8981 -0.3309,-2.0326 -0.3309,-2.0326 z M 563.0102,562 Z m 3.271,-6.5231 h 2.0798 c 1.4559,0 2.2311,-0.5956 2.2311,-0.5956 0.7752,-0.5956 0.7752,-1.8057 0.7752,-1.8057 0,-1.229 -0.7752,-1.7206 -0.7752,-1.7206 -0.7752,-0.4916 -2.2311,-0.4916 -2.2311,-0.4916 h -2.0798 v 4.6134 z m 0,0 z m 5.2374,6.5231 -2.9874,-5.2374 h -2.25 V 562 h -1.5693 v -12.4034 h 3.8761 c 0.9454,0 1.7489,0.1796 1.7489,0.1796 0.8036,0.1796 1.3803,0.5956 1.3803,0.5956 0.5767,0.416 0.8981,1.0777 0.8981,1.0777 0.3214,0.6618 0.3214,1.6261 0.3214,1.6261 0,1.4559 -0.7563,2.3256 -0.7563,2.3256 -0.7563,0.8697 -2.0231,1.1912 -2.0231,1.1912 L 573.296,562 h -1.7773 z m 2.2879,0 z m 0.8697,-4.5756 c 0,-1.1534 0.3498,-2.0515 0.3498,-2.0515 0.3498,-0.8981 0.9359,-1.5221 0.9359,-1.5221 0.5861,-0.6239 1.3519,-0.9454 1.3519,-0.9454 0.7658,-0.3214 1.6166,-0.3214 1.6166,-0.3214 0.8508,0 1.6166,0.3214 1.6166,0.3214 0.7658,0.3214 1.3519,0.9454 1.3519,0.9454 0.5861,0.6239 0.9359,1.5221 0.9359,1.5221 0.3498,0.8981 0.3498,2.0515 0.3498,2.0515 0,1.1345 -0.3498,2.0326 -0.3498,2.0326 -0.3498,0.8981 -0.9359,1.5126 -0.9359,1.5126 -0.5861,0.6145 -1.3519,0.9359 -1.3519,0.9359 -0.7658,0.3214 -1.6166,0.3214 -1.6166,0.3214 -0.8508,0 -1.6166,-0.3214 -1.6166,-0.3214 -0.7658,-0.3214 -1.3519,-0.9359 -1.3519,-0.9359 -0.5861,-0.6145 -0.9359,-1.5126 -0.9359,-1.5126 -0.3498,-0.8981 -0.3498,-2.0326 -0.3498,-2.0326 z m 0,0 z m 1.6072,0 c 0,0.7941 0.1891,1.437 0.1891,1.437 0.1891,0.6429 0.5389,1.1061 0.5389,1.1061 0.3498,0.4632 0.8414,0.7185 0.8414,0.7185 0.4916,0.2553 1.0777,0.2553 1.0777,0.2553 0.5861,0 1.0777,-0.2553 1.0777,-0.2553 0.4916,-0.2553 0.8414,-0.7185 0.8414,-0.7185 0.3498,-0.4632 0.5389,-1.1061 0.5389,-1.1061 0.1891,-0.6429 0.1891,-1.437 0.1891,-1.437 0,-0.7941 -0.1891,-1.4464 -0.1891,-1.4464 -0.1891,-0.6523 -0.5389,-1.125 -0.5389,-1.125 -0.3498,-0.4727 -0.8414,-0.7279 -0.8414,-0.7279 -0.4916,-0.2553 -1.0777,-0.2553 -1.0777,-0.2553 -0.5861,0 -1.0777,0.2553 -1.0777,0.2553 -0.4916,0.2553 -0.8414,0.7279 -0.8414,0.7279 -0.3498,0.4727 -0.5389,1.125 -0.5389,1.125 -0.1891,0.6523 -0.1891,1.4464 -0.1891,1.4464 z m 7.771,4.5756 z m 1.5504,-13.4622 h 1.5504 v 3.6681 l -0.0378,1.6639 c 0.6239,-0.5483 1.3613,-0.917 1.3613,-0.917 0.7374,-0.3687 1.5126,-0.3687 1.5126,-0.3687 0.8887,0 1.5693,0.3309 1.5693,0.3309 0.6807,0.3309 1.1439,0.9454 1.1439,0.9454 0.4632,0.6145 0.6996,1.4748 0.6996,1.4748 0.2363,0.8603 0.2363,1.9191 0.2363,1.9191 0,1.1723 -0.3214,2.0987 -0.3214,2.0987 -0.3214,0.9265 -0.8697,1.5693 -0.8697,1.5693 -0.5483,0.6429 -1.2668,0.9737 -1.2668,0.9737 -0.7185,0.3309 -1.5126,0.3309 -1.5126,0.3309 -0.6429,0 -1.333,-0.2931 -1.333,-0.2931 -0.6901,-0.2931 -1.2952,-0.8414 -1.2952,-0.8414 H 586.985 L 586.8526,562 h -1.2479 v -13.4622 z m 0,0 z m 1.5504,11.4202 c 0.605,0.5294 1.2006,0.7468 1.2006,0.7468 0.5956,0.2174 1.0494,0.2174 1.0494,0.2174 0.5672,0 1.0494,-0.2553 1.0494,-0.2553 0.4821,-0.2553 0.8319,-0.7185 0.8319,-0.7185 0.3498,-0.4632 0.5483,-1.1439 0.5483,-1.1439 0.1985,-0.6807 0.1985,-1.5315 0.1985,-1.5315 0,-0.7563 -0.1324,-1.3803 -0.1324,-1.3803 -0.1324,-0.6239 -0.4254,-1.0683 -0.4254,-1.0683 -0.2931,-0.4443 -0.7563,-0.6901 -0.7563,-0.6901 -0.4632,-0.2458 -1.1061,-0.2458 -1.1061,-0.2458 -1.1155,0 -2.458,1.2479 -2.458,1.2479 v 4.8214 z m 7.3929,2.042 z m 1.418,-9.1891 h 1.5693 v 5.6155 c 0,1.3046 0.4065,1.8813 0.4065,1.8813 0.4065,0.5767 1.3141,0.5767 1.3141,0.5767 0.7185,0 1.2668,-0.3687 1.2668,-0.3687 0.5483,-0.3687 1.2101,-1.1817 1.2101,-1.1817 v -6.5231 h 1.5504 V 562 h -1.2857 l -0.1324,-1.437 h -0.0567 c -0.6429,0.7563 -1.3519,1.2101 -1.3519,1.2101 -0.709,0.4538 -1.6733,0.4538 -1.6733,0.4538 -1.4748,0 -2.146,-0.9076 -2.146,-0.9076 -0.6712,-0.9076 -0.6712,-2.6849 -0.6712,-2.6849 z M 604.8338,562 Z m 1.3046,-2.0798 c 0.605,0.4916 1.2384,0.7941 1.2384,0.7941 0.6334,0.3025 1.4653,0.3025 1.4653,0.3025 0.9076,0 1.3613,-0.416 1.3613,-0.416 0.4538,-0.416 0.4538,-1.021 0.4538,-1.021 0,-0.3592 -0.1891,-0.6239 -0.1891,-0.6239 -0.1891,-0.2647 -0.4821,-0.4632 -0.4821,-0.4632 -0.2931,-0.1985 -0.6712,-0.3498 -0.6712,-0.3498 l -0.7563,-0.3025 c -0.4916,-0.1702 -0.9832,-0.3876 -0.9832,-0.3876 -0.4916,-0.2174 -0.8792,-0.5294 -0.8792,-0.5294 -0.3876,-0.312 -0.6334,-0.7279 -0.6334,-0.7279 -0.2458,-0.416 -0.2458,-1.0021 -0.2458,-1.0021 0,-0.5483 0.2174,-1.0305 0.2174,-1.0305 0.2174,-0.4821 0.6239,-0.8319 0.6239,-0.8319 0.4065,-0.3498 0.9926,-0.5483 0.9926,-0.5483 0.5861,-0.1985 1.3235,-0.1985 1.3235,-0.1985 0.8697,0 1.5977,0.3025 1.5977,0.3025 0.7279,0.3025 1.2574,0.7374 1.2574,0.7374 l -0.7374,0.9832 c -0.4727,-0.3592 -0.9832,-0.5861 -0.9832,-0.5861 -0.5105,-0.2269 -1.1155,-0.2269 -1.1155,-0.2269 -0.8697,0 -1.2763,0.3971 -1.2763,0.3971 -0.4065,0.3971 -0.4065,0.9265 -0.4065,0.9265 0,0.3214 0.1702,0.5578 0.1702,0.5578 0.1702,0.2363 0.4538,0.416 0.4538,0.416 0.2836,0.1796 0.6523,0.3214 0.6523,0.3214 0.3687,0.1418 0.7658,0.2931 0.7658,0.2931 0.4916,0.1891 0.9926,0.3971 0.9926,0.3971 0.5011,0.208 0.8981,0.52 0.8981,0.52 0.3971,0.312 0.6523,0.7658 0.6523,0.7658 0.2553,0.4538 0.2553,1.0966 0.2553,1.0966 0,0.5672 -0.2174,1.0588 -0.2174,1.0588 -0.2174,0.4916 -0.6429,0.8697 -0.6429,0.8697 -0.4254,0.3782 -1.0588,0.5956 -1.0588,0.5956 -0.6334,0.2174 -1.4464,0.2174 -1.4464,0.2174 -0.9832,0 -1.8718,-0.3592 -1.8718,-0.3592 -0.8887,-0.3592 -1.5504,-0.9076 -1.5504,-0.9076 z M 612.756,562 Z m 1.8152,-7.9223 h -1.3613 v -1.1723 l 1.437,-0.0945 0.1891,-2.5714 h 1.3046 v 2.5714 h 2.4769 v 1.2668 h -2.4769 v 5.105 c 0,0.8508 0.312,1.3141 0.312,1.3141 0.312,0.4632 1.1061,0.4632 1.1061,0.4632 0.2458,0 0.5294,-0.0756 0.5294,-0.0756 0.2836,-0.0756 0.5105,-0.1702 0.5105,-0.1702 l 0.3025,1.1723 c -0.3782,0.1324 -0.8225,0.2363 -0.8225,0.2363 -0.4443,0.104 -0.8792,0.104 -0.8792,0.104 -0.7374,0 -1.2384,-0.2269 -1.2384,-0.2269 -0.5011,-0.2269 -0.813,-0.6239 -0.813,-0.6239 -0.312,-0.3971 -0.4443,-0.9643 -0.4443,-0.9643 -0.1324,-0.5672 -0.1324,-1.2479 -0.1324,-1.2479 v -5.0861 z"+       id="path60-7" />+  </g>+  <g+     stroke-linejoin="bevel"+     fill-opacity="1"+     fill="#000000"+     stroke="#000000"+     stroke-linecap="butt"+     stroke-miterlimit="10"+     stroke-opacity="0"+     stroke-width="0"+     id="g60-6"+     transform="translate(113.7531,-0.5967)">+    <path+       d="m 308.2469,562 z m 4.2731,-11.0798 h -3.7437 v -1.3235 h 9.0756 v 1.3235 h -3.7437 V 562 H 312.52 Z M 317.1335,562 Z m 0.8697,-4.5756 c 0,-1.1345 0.3498,-2.0326 0.3498,-2.0326 0.3498,-0.8981 0.9265,-1.5221 0.9265,-1.5221 0.5767,-0.6239 1.3141,-0.9548 1.3141,-0.9548 0.7374,-0.3309 1.5315,-0.3309 1.5315,-0.3309 0.8697,0 1.5599,0.3025 1.5599,0.3025 0.6901,0.3025 1.1534,0.8697 1.1534,0.8697 0.4632,0.5672 0.709,1.3613 0.709,1.3613 0.2458,0.7941 0.2458,1.7773 0.2458,1.7773 0,0.5105 -0.0567,0.8508 -0.0567,0.8508 h -6.2017 c 0.0945,1.4937 0.917,2.3634 0.917,2.3634 0.8225,0.8697 2.146,0.8697 2.146,0.8697 0.6618,0 1.2195,-0.1985 1.2195,-0.1985 0.5578,-0.1985 1.0683,-0.52 1.0683,-0.52 l 0.5483,1.021 c -0.605,0.3782 -1.3424,0.6618 -1.3424,0.6618 -0.7374,0.2836 -1.6828,0.2836 -1.6828,0.2836 -0.9265,0 -1.73,-0.3309 -1.73,-0.3309 -0.8036,-0.3309 -1.3992,-0.9454 -1.3992,-0.9454 -0.5956,-0.6145 -0.9359,-1.5032 -0.9359,-1.5032 -0.3403,-0.8887 -0.3403,-2.0231 -0.3403,-2.0231 z m 0,0 z m 6.4286,-0.6996 c 0,-1.4181 -0.5956,-2.1649 -0.5956,-2.1649 -0.5956,-0.7468 -1.6733,-0.7468 -1.6733,-0.7468 -0.4916,0 -0.9359,0.1985 -0.9359,0.1985 -0.4443,0.1985 -0.8036,0.5672 -0.8036,0.5672 -0.3592,0.3687 -0.5956,0.9076 -0.5956,0.9076 -0.2363,0.5389 -0.312,1.2384 -0.312,1.2384 z M 326.5116,562 Z m 1.5505,-9.1891 h 1.2857 l 0.1324,1.3235 h 0.0567 c 0.6618,-0.6618 1.3897,-1.1061 1.3897,-1.1061 0.7279,-0.4443 1.6922,-0.4443 1.6922,-0.4443 1.4559,0 2.1271,0.9076 2.1271,0.9076 0.6712,0.9076 0.6712,2.6849 0.6712,2.6849 V 562 h -1.5504 v -5.6155 c 0,-1.3046 -0.416,-1.8813 -0.416,-1.8813 -0.416,-0.5767 -1.3235,-0.5767 -1.3235,-0.5767 -0.7185,0 -1.2668,0.3592 -1.2668,0.3592 -0.5483,0.3592 -1.2479,1.0588 -1.2479,1.0588 V 562 h -1.5504 z m 8.792,9.1891 z m 1.3046,-2.0798 c 0.605,0.4916 1.2384,0.7941 1.2384,0.7941 0.6334,0.3025 1.4653,0.3025 1.4653,0.3025 0.9076,0 1.3613,-0.416 1.3613,-0.416 0.4538,-0.416 0.4538,-1.021 0.4538,-1.021 0,-0.3592 -0.1891,-0.6239 -0.1891,-0.6239 -0.1891,-0.2647 -0.4821,-0.4632 -0.4821,-0.4632 -0.2931,-0.1985 -0.6712,-0.3498 -0.6712,-0.3498 l -0.7563,-0.3025 c -0.4916,-0.1702 -0.9832,-0.3876 -0.9832,-0.3876 -0.4916,-0.2174 -0.8792,-0.5294 -0.8792,-0.5294 -0.3876,-0.312 -0.6334,-0.7279 -0.6334,-0.7279 -0.2458,-0.416 -0.2458,-1.0021 -0.2458,-1.0021 0,-0.5483 0.2174,-1.0305 0.2174,-1.0305 0.2174,-0.4821 0.6239,-0.8319 0.6239,-0.8319 0.4065,-0.3498 0.9926,-0.5483 0.9926,-0.5483 0.5861,-0.1985 1.3235,-0.1985 1.3235,-0.1985 0.8697,0 1.5977,0.3025 1.5977,0.3025 0.7279,0.3025 1.2574,0.7374 1.2574,0.7374 l -0.7374,0.9832 c -0.4727,-0.3592 -0.9832,-0.5861 -0.9832,-0.5861 -0.5105,-0.2269 -1.1155,-0.2269 -1.1155,-0.2269 -0.8697,0 -1.2763,0.3971 -1.2763,0.3971 -0.4065,0.3971 -0.4065,0.9265 -0.4065,0.9265 0,0.3214 0.1702,0.5578 0.1702,0.5578 0.1702,0.2363 0.4538,0.416 0.4538,0.416 0.2836,0.1796 0.6523,0.3214 0.6523,0.3214 0.3687,0.1418 0.7658,0.2931 0.7658,0.2931 0.4916,0.1891 0.9926,0.3971 0.9926,0.3971 0.5011,0.208 0.8981,0.52 0.8981,0.52 0.3971,0.312 0.6523,0.7658 0.6523,0.7658 0.2553,0.4538 0.2553,1.0966 0.2553,1.0966 0,0.5672 -0.2174,1.0588 -0.2174,1.0588 -0.2174,0.4916 -0.6429,0.8697 -0.6429,0.8697 -0.4254,0.3782 -1.0588,0.5956 -1.0588,0.5956 -0.6334,0.2174 -1.4464,0.2174 -1.4464,0.2174 -0.9832,0 -1.8718,-0.3592 -1.8718,-0.3592 -0.8887,-0.3592 -1.5504,-0.9076 -1.5504,-0.9076 z M 344.7763,562 Z m 0.8698,-4.5756 c 0,-1.1534 0.3498,-2.0515 0.3498,-2.0515 0.3498,-0.8981 0.9359,-1.5221 0.9359,-1.5221 0.5861,-0.6239 1.3519,-0.9454 1.3519,-0.9454 0.7658,-0.3214 1.6166,-0.3214 1.6166,-0.3214 0.8508,0 1.6166,0.3214 1.6166,0.3214 0.7658,0.3214 1.3519,0.9454 1.3519,0.9454 0.5861,0.6239 0.9359,1.5221 0.9359,1.5221 0.3498,0.8981 0.3498,2.0515 0.3498,2.0515 0,1.1345 -0.3498,2.0326 -0.3498,2.0326 -0.3498,0.8981 -0.9359,1.5126 -0.9359,1.5126 -0.5861,0.6145 -1.3519,0.9359 -1.3519,0.9359 -0.7658,0.3214 -1.6166,0.3214 -1.6166,0.3214 -0.8508,0 -1.6166,-0.3214 -1.6166,-0.3214 -0.7658,-0.3214 -1.3519,-0.9359 -1.3519,-0.9359 -0.5861,-0.6145 -0.9359,-1.5126 -0.9359,-1.5126 -0.3498,-0.8981 -0.3498,-2.0326 -0.3498,-2.0326 z m 0,0 z m 1.6071,0 c 0,0.7941 0.1891,1.437 0.1891,1.437 0.1891,0.6429 0.5389,1.1061 0.5389,1.1061 0.3498,0.4632 0.8414,0.7185 0.8414,0.7185 0.4916,0.2553 1.0777,0.2553 1.0777,0.2553 0.5861,0 1.0777,-0.2553 1.0777,-0.2553 0.4916,-0.2553 0.8414,-0.7185 0.8414,-0.7185 0.3498,-0.4632 0.5389,-1.1061 0.5389,-1.1061 0.1891,-0.6429 0.1891,-1.437 0.1891,-1.437 0,-0.7941 -0.1891,-1.4464 -0.1891,-1.4464 -0.1891,-0.6523 -0.5389,-1.125 -0.5389,-1.125 -0.3498,-0.4727 -0.8414,-0.7279 -0.8414,-0.7279 -0.4916,-0.2553 -1.0777,-0.2553 -1.0777,-0.2553 -0.5861,0 -1.0777,0.2553 -1.0777,0.2553 -0.4916,0.2553 -0.8414,0.7279 -0.8414,0.7279 -0.3498,0.4727 -0.5389,1.125 -0.5389,1.125 -0.1891,0.6523 -0.1891,1.4464 -0.1891,1.4464 z m 7.771,4.5756 z m 1.5505,-9.1891 h 1.2857 l 0.1324,1.6639 h 0.0567 c 0.4727,-0.8697 1.1439,-1.3803 1.1439,-1.3803 0.6712,-0.5105 1.4653,-0.5105 1.4653,-0.5105 0.5483,0 0.9832,0.1891 0.9832,0.1891 l -0.3025,1.3613 c -0.2269,-0.0756 -0.416,-0.1134 -0.416,-0.1134 -0.1891,-0.0378 -0.4727,-0.0378 -0.4727,-0.0378 -0.5861,0 -1.2195,0.4727 -1.2195,0.4727 -0.6334,0.4727 -1.1061,1.645 -1.1061,1.645 v 5.8992 h -1.5504 v -9.1891 z"+       id="path59-2" />+  </g>+  <g+     stroke-linejoin="bevel"+     fill-opacity="1"+     fill="#000000"+     stroke="#000000"+     stroke-linecap="butt"+     stroke-miterlimit="10"+     stroke-opacity="0"+     stroke-width="0"+     id="g59-7"+     transform="translate(114.5804,-1.5966)">+    <path+       d="m 81.4196,562 z m 1.7016,-12.4034 h 1.8529 l 2.4013,6.6555 0.9076,2.5336 h 0.0756 l 0.8697,-2.5336 2.3824,-6.6555 h 1.8529 V 562 h -1.4937 v -6.8256 c 0,-0.8319 0.0662,-1.834 0.0662,-1.834 0.0662,-1.0021 0.1418,-1.834 0.1418,-1.834 h -0.0756 l -1.0021,2.7605 -2.3824,6.4853 h -0.8887 l -2.4013,-6.4853 -0.9832,-2.7605 H 84.369 c 0.0567,0.8319 0.1324,1.834 0.1324,1.834 0.0756,1.0021 0.0756,1.834 0.0756,1.834 V 562 H 83.1211 V 549.5966 Z M 95.1654,562 Z m 0.8697,-4.5756 c 0,-1.1345 0.3498,-2.0326 0.3498,-2.0326 0.3498,-0.8981 0.9265,-1.5221 0.9265,-1.5221 0.5767,-0.6239 1.3141,-0.9548 1.3141,-0.9548 0.7374,-0.3309 1.5315,-0.3309 1.5315,-0.3309 0.8697,0 1.5599,0.3025 1.5599,0.3025 0.6901,0.3025 1.1534,0.8697 1.1534,0.8697 0.4632,0.5672 0.709,1.3613 0.709,1.3613 0.2458,0.7941 0.2458,1.7773 0.2458,1.7773 0,0.5105 -0.0567,0.8508 -0.0567,0.8508 h -6.2017 c 0.0945,1.4937 0.917,2.3634 0.917,2.3634 0.8225,0.8697 2.146,0.8697 2.146,0.8697 0.6618,0 1.2195,-0.1985 1.2195,-0.1985 0.5578,-0.1985 1.0683,-0.52 1.0683,-0.52 l 0.5483,1.021 c -0.605,0.3782 -1.3424,0.6618 -1.3424,0.6618 -0.7374,0.2836 -1.6828,0.2836 -1.6828,0.2836 -0.9265,0 -1.73,-0.3309 -1.73,-0.3309 -0.8036,-0.3309 -1.3992,-0.9454 -1.3992,-0.9454 -0.5956,-0.6145 -0.9359,-1.5032 -0.9359,-1.5032 -0.3403,-0.8887 -0.3403,-2.0231 -0.3403,-2.0231 z m 0,0 z m 6.4286,-0.6996 c 0,-1.4181 -0.5956,-2.1649 -0.5956,-2.1649 -0.5956,-0.7468 -1.6733,-0.7468 -1.6733,-0.7468 -0.4916,0 -0.9359,0.1985 -0.9359,0.1985 -0.4443,0.1985 -0.8036,0.5672 -0.8036,0.5672 -0.3592,0.3687 -0.5956,0.9076 -0.5956,0.9076 -0.2363,0.5389 -0.312,1.2384 -0.312,1.2384 z M 104.5435,562 Z m 1.5504,-9.1891 h 1.2857 l 0.1324,1.6639 h 0.0567 c 0.4727,-0.8697 1.1439,-1.3803 1.1439,-1.3803 0.6712,-0.5105 1.4653,-0.5105 1.4653,-0.5105 0.5483,0 0.9832,0.1891 0.9832,0.1891 l -0.3025,1.3613 c -0.2269,-0.0756 -0.416,-0.1134 -0.416,-0.1134 -0.1891,-0.0378 -0.4727,-0.0378 -0.4727,-0.0378 -0.5861,0 -1.2195,0.4727 -1.2195,0.4727 -0.6334,0.4727 -1.1061,1.645 -1.1061,1.645 v 5.8992 h -1.5504 V 552.811 Z M 110.9154,562 Z m 2.2121,1.5504 c 0,0.7374 0.709,1.1723 0.709,1.1723 0.709,0.4349 1.9569,0.4349 1.9569,0.4349 0.6618,0 1.2006,-0.1607 1.2006,-0.1607 0.5389,-0.1607 0.917,-0.416 0.917,-0.416 0.3782,-0.2553 0.5861,-0.5956 0.5861,-0.5956 0.208,-0.3403 0.208,-0.6996 0.208,-0.6996 0,-0.6429 -0.4727,-0.8887 -0.4727,-0.8887 -0.4727,-0.2458 -1.3803,-0.2458 -1.3803,-0.2458 h -1.5882 c -0.2647,0 -0.5767,-0.0284 -0.5767,-0.0284 -0.312,-0.0284 -0.6145,-0.1229 -0.6145,-0.1229 -0.4916,0.3592 -0.7185,0.7563 -0.7185,0.7563 -0.2269,0.3971 -0.2269,0.7941 -0.2269,0.7941 z m 0,0 z m -1.3613,0.208 c 0,-0.5861 0.3592,-1.1155 0.3592,-1.1155 0.3592,-0.5294 0.9832,-0.9643 0.9832,-0.9643 v -0.0756 c -0.3403,-0.208 -0.5767,-0.5767 -0.5767,-0.5767 -0.2363,-0.3687 -0.2363,-0.917 -0.2363,-0.917 0,-0.5861 0.3214,-1.021 0.3214,-1.021 0.3214,-0.4349 0.6807,-0.6807 0.6807,-0.6807 v -0.0756 c -0.4538,-0.3782 -0.8225,-1.0116 -0.8225,-1.0116 -0.3687,-0.6334 -0.3687,-1.4653 -0.3687,-1.4653 0,-0.7563 0.2742,-1.3613 0.2742,-1.3613 0.2742,-0.605 0.7468,-1.0305 0.7468,-1.0305 0.4727,-0.4254 1.1061,-0.6523 1.1061,-0.6523 0.6334,-0.2269 1.333,-0.2269 1.333,-0.2269 0.3782,0 0.709,0.0662 0.709,0.0662 0.3309,0.0662 0.5956,0.1607 0.5956,0.1607 h 3.1954 v 1.1912 h -1.8908 c 0.3214,0.3214 0.5389,0.813 0.5389,0.813 0.2174,0.4916 0.2174,1.0777 0.2174,1.0777 0,0.7374 -0.2647,1.333 -0.2647,1.333 -0.2647,0.5956 -0.7185,1.0021 -0.7185,1.0021 -0.4538,0.4065 -1.0683,0.6334 -1.0683,0.6334 -0.6145,0.2269 -1.3141,0.2269 -1.3141,0.2269 -0.3403,0 -0.6996,-0.0851 -0.6996,-0.0851 -0.3592,-0.0851 -0.6807,-0.2363 -0.6807,-0.2363 -0.2458,0.208 -0.416,0.4632 -0.416,0.4632 -0.1702,0.2553 -0.1702,0.6334 -0.1702,0.6334 0,0.4349 0.3403,0.7185 0.3403,0.7185 0.3403,0.2836 1.2857,0.2836 1.2857,0.2836 h 1.7773 c 1.6071,0 2.4107,0.52 2.4107,0.52 0.8036,0.52 0.8036,1.6733 0.8036,1.6733 0,0.6429 -0.3214,1.2195 -0.3214,1.2195 -0.3214,0.5767 -0.9265,1.0116 -0.9265,1.0116 -0.605,0.4349 -1.4653,0.6901 -1.4653,0.6901 -0.8603,0.2553 -1.938,0.2553 -1.938,0.2553 -0.8508,0 -1.5504,-0.1607 -1.5504,-0.1607 -0.6996,-0.1607 -1.2006,-0.4821 -1.2006,-0.4821 -0.5011,-0.3214 -0.7752,-0.7752 -0.7752,-0.7752 -0.2742,-0.4538 -0.2742,-1.0588 -0.2742,-1.0588 z m 0,0 z m 3.8004,-5.7101 c 0.3971,0 0.7468,-0.1513 0.7468,-0.1513 0.3498,-0.1513 0.6239,-0.4349 0.6239,-0.4349 0.2742,-0.2836 0.4254,-0.6901 0.4254,-0.6901 0.1513,-0.4065 0.1513,-0.917 0.1513,-0.917 0,-1.021 -0.5672,-1.5788 -0.5672,-1.5788 -0.5672,-0.5578 -1.3803,-0.5578 -1.3803,-0.5578 -0.813,0 -1.3803,0.5578 -1.3803,0.5578 -0.5672,0.5578 -0.5672,1.5788 -0.5672,1.5788 0,0.5105 0.1513,0.917 0.1513,0.917 0.1513,0.4065 0.4254,0.6901 0.4254,0.6901 0.2742,0.2836 0.6239,0.4349 0.6239,0.4349 0.3498,0.1513 0.7468,0.1513 0.7468,0.1513 z M 120.1801,562 Z m 0.8697,-4.5756 c 0,-1.1345 0.3498,-2.0326 0.3498,-2.0326 0.3498,-0.8981 0.9265,-1.5221 0.9265,-1.5221 0.5767,-0.6239 1.3141,-0.9548 1.3141,-0.9548 0.7374,-0.3309 1.5315,-0.3309 1.5315,-0.3309 0.8697,0 1.5599,0.3025 1.5599,0.3025 0.6901,0.3025 1.1534,0.8697 1.1534,0.8697 0.4632,0.5672 0.709,1.3613 0.709,1.3613 0.2458,0.7941 0.2458,1.7773 0.2458,1.7773 0,0.5105 -0.0567,0.8508 -0.0567,0.8508 h -6.2017 c 0.0945,1.4937 0.917,2.3634 0.917,2.3634 0.8225,0.8697 2.146,0.8697 2.146,0.8697 0.6618,0 1.2195,-0.1985 1.2195,-0.1985 0.5578,-0.1985 1.0683,-0.52 1.0683,-0.52 l 0.5483,1.021 c -0.605,0.3782 -1.3424,0.6618 -1.3424,0.6618 -0.7374,0.2836 -1.6828,0.2836 -1.6828,0.2836 -0.9265,0 -1.73,-0.3309 -1.73,-0.3309 -0.8036,-0.3309 -1.3992,-0.9454 -1.3992,-0.9454 -0.5956,-0.6145 -0.9359,-1.5032 -0.9359,-1.5032 -0.3403,-0.8887 -0.3403,-2.0231 -0.3403,-2.0231 z m 0,0 z m 6.4286,-0.6996 c 0,-1.4181 -0.5956,-2.1649 -0.5956,-2.1649 -0.5956,-0.7468 -1.6733,-0.7468 -1.6733,-0.7468 -0.4916,0 -0.9359,0.1985 -0.9359,0.1985 -0.4443,0.1985 -0.8036,0.5672 -0.8036,0.5672 -0.3592,0.3687 -0.5956,0.9076 -0.5956,0.9076 -0.2363,0.5389 -0.312,1.2384 -0.312,1.2384 z"+       id="path58-5" />+  </g>+  <g+     stroke-linejoin="bevel"+     fill-opacity="1.0"+     fill="rgb(0,0,0)"+     stroke="rgb(0,0,0)"+     stroke-linecap="butt"+     stroke-miterlimit="10.0"+     stroke-opacity="0.0"+     stroke-width="0.0"+     id="g2">+    <path+       d="M 163.1263,15.9220 ZM 164.5493,3.8727 h 7.5400 v 2.2916 h -4.8234 v 2.4209 h 4.1027 v 2.2731 h -4.1027 v 2.7721 h 5.0082 v 2.2916 h -7.7248 v -12.0493 ZM 173.2536,15.9220 ZM 174.4548,6.7556 h 2.2177 l 0.1848,1.6078 h 0.0739 c 0.4990,-0.9425 1.2012,-1.3860 1.2012 -1.3860c 0.7023,-0.4435 1.4045,-0.4435 1.4045 -0.4435c 0.3881,0.0000 0.6376,0.0462 0.6376 0.0462c 0.2495,0.0462 0.4528,0.1386 0.4528 0.1386l -0.4435,2.3470 c -0.2587,-0.0739 -0.4805,-0.1109 -0.4805 -0.1109c -0.2218,-0.0370 -0.5175,-0.0370 -0.5175 -0.0370c -0.5175,-0.0000 -1.0811,0.3696 -1.0811 0.3696c -0.5637,0.3696 -0.9333,1.3121 -0.9333 1.3121v 5.3224 h -2.7166 v -9.1663 ZM 180.6088,15.9220 ZM 181.8101,6.7556 h 2.2177 l 0.1848,1.6078 h 0.0739 c 0.4990,-0.9425 1.2012,-1.3860 1.2012 -1.3860c 0.7023,-0.4435 1.4045,-0.4435 1.4045 -0.4435c 0.3881,0.0000 0.6376,0.0462 0.6376 0.0462c 0.2495,0.0462 0.4528,0.1386 0.4528 0.1386l -0.4435,2.3470 c -0.2587,-0.0739 -0.4805,-0.1109 -0.4805 -0.1109c -0.2218,-0.0370 -0.5175,-0.0370 -0.5175 -0.0370c -0.5175,-0.0000 -1.0811,0.3696 -1.0811 0.3696c -0.5637,0.3696 -0.9333,1.3121 -0.9333 1.3121v 5.3224 h -2.7166 v -9.1663 ZM 187.7793,15.9220 ZM 188.4446,11.3388 c 0.0000,-1.1458 0.3696,-2.0421 0.3696 -2.0421c 0.3696,-0.8963 0.9887,-1.5062 0.9887 -1.5062c 0.6191,-0.6099 1.4322,-0.9333 1.4322 -0.9333c 0.8131,-0.3234 1.6817,-0.3234 1.6817 -0.3234c 0.8686,0.0000 1.6725,0.3234 1.6725 0.3234c 0.8039,0.3234 1.4230,0.9333 1.4230 0.9333c 0.6191,0.6099 0.9887,1.5062 0.9887 1.5062c 0.3696,0.8963 0.3696,2.0421 0.3696 2.0421c 0.0000,1.1458 -0.3696,2.0421 -0.3696 2.0421c -0.3696,0.8963 -0.9887,1.5062 -0.9887 1.5062c -0.6191,0.6099 -1.4230,0.9333 -1.4230 0.9333c -0.8039,0.3234 -1.6725,0.3234 -1.6725 0.3234c -0.8686,-0.0000 -1.6817,-0.3234 -1.6817 -0.3234c -0.8131,-0.3234 -1.4322,-0.9333 -1.4322 -0.9333c -0.6191,-0.6099 -0.9887,-1.5062 -0.9887 -1.5062c -0.3696,-0.8963 -0.3696,-2.0421 -0.3696 -2.0421ZM 188.4446,11.3388 ZM 191.2351,11.3388 c 0.0000,1.2012 0.4158,1.9035 0.4158 1.9035c 0.4158,0.7023 1.2659,0.7023 1.2659 0.7023c 0.8316,0.0000 1.2567,-0.7023 1.2567 -0.7023c 0.4251,-0.7023 0.4251,-1.9035 0.4251 -1.9035c 0.0000,-1.2012 -0.4251,-1.9035 -0.4251 -1.9035c -0.4251,-0.7023 -1.2567,-0.7023 -1.2567 -0.7023c -0.8501,-0.0000 -1.2659,0.7023 -1.2659 0.7023c -0.4158,0.7023 -0.4158,1.9035 -0.4158 1.9035ZM 198.0359,15.9220 ZM 199.2372,6.7556 h 2.2177 l 0.1848,1.6078 h 0.0739 c 0.4990,-0.9425 1.2012,-1.3860 1.2012 -1.3860c 0.7023,-0.4435 1.4045,-0.4435 1.4045 -0.4435c 0.3881,0.0000 0.6376,0.0462 0.6376 0.0462c 0.2495,0.0462 0.4528,0.1386 0.4528 0.1386l -0.4435,2.3470 c -0.2587,-0.0739 -0.4805,-0.1109 -0.4805 -0.1109c -0.2218,-0.0370 -0.5175,-0.0370 -0.5175 -0.0370c -0.5175,-0.0000 -1.0811,0.3696 -1.0811 0.3696c -0.5637,0.3696 -0.9333,1.3121 -0.9333 1.3121v 5.3224 h -2.7166 v -9.1663 ZM 205.2064,15.9220 ZM 206.8142,13.1684 c 0.6283,0.4805 1.2012,0.7207 1.2012 0.7207c 0.5729,0.2402 1.1643,0.2402 1.1643 0.2402c 0.6099,0.0000 0.8871,-0.2033 0.8871 -0.2033c 0.2772,-0.2033 0.2772,-0.5729 0.2772 -0.5729c 0.0000,-0.2218 -0.1571,-0.3973 -0.1571 -0.3973c -0.1571,-0.1756 -0.4251,-0.3234 -0.4251 -0.3234c -0.2680,-0.1478 -0.6006,-0.2680 -0.6006 -0.2680c -0.3326,-0.1201 -0.6838,-0.2680 -0.6838 -0.2680c -0.4251,-0.1663 -0.8501,-0.3881 -0.8501 -0.3881c -0.4251,-0.2218 -0.7762,-0.5452 -0.7762 -0.5452c -0.3511,-0.3234 -0.5729,-0.7577 -0.5729 -0.7577c -0.2218,-0.4343 -0.2218,-1.0072 -0.2218 -1.0072c 0.0000,-0.6283 0.2495,-1.1643 0.2495 -1.1643c 0.2495,-0.5359 0.7115,-0.9055 0.7115 -0.9055c 0.4620,-0.3696 1.1088,-0.5821 1.1088 -0.5821c 0.6468,-0.2125 1.4415,-0.2125 1.4415 -0.2125c 1.0534,0.0000 1.8480,0.3604 1.8480 0.3604c 0.7947,0.3604 1.3860,0.8039 1.3860 0.8039l -1.2197,1.6263 c -0.4990,-0.3696 -0.9795,-0.5729 -0.9795 -0.5729c -0.4805,-0.2033 -0.9610,-0.2033 -0.9610 -0.2033c -1.0349,-0.0000 -1.0349,0.7207 -1.0349 0.7207c 0.0000,0.2218 0.1478,0.3789 0.1478 0.3789c 0.1478,0.1571 0.3973,0.2864 0.3973 0.2864c 0.2495,0.1294 0.5729,0.2495 0.5729 0.2495c 0.3234,0.1201 0.6745,0.2495 0.6745 0.2495c 0.4435,0.1663 0.8778,0.3789 0.8778 0.3789c 0.4343,0.2125 0.7947,0.5267 0.7947 0.5267c 0.3604,0.3142 0.5821,0.7669 0.5821 0.7669c 0.2218,0.4528 0.2218,1.0811 0.2218 1.0811c 0.0000,0.6283 -0.2402,1.1643 -0.2402 1.1643c -0.2402,0.5359 -0.7207,0.9333 -0.7207 0.9333c -0.4805,0.3973 -1.1828,0.6283 -1.1828 0.6283c -0.7023,0.2310 -1.6263,0.2310 -1.6263 0.2310c -0.9055,-0.0000 -1.8573,-0.3511 -1.8573 -0.3511c -0.9517,-0.3511 -1.6540,-0.9240 -1.6540 -0.9240ZM 217.2372,15.9220 ZM 218.8450,13.1684 c 0.6283,0.4805 1.2012,0.7207 1.2012 0.7207c 0.5729,0.2402 1.1643,0.2402 1.1643 0.2402c 0.6099,0.0000 0.8871,-0.2033 0.8871 -0.2033c 0.2772,-0.2033 0.2772,-0.5729 0.2772 -0.5729c 0.0000,-0.2218 -0.1571,-0.3973 -0.1571 -0.3973c -0.1571,-0.1756 -0.4251,-0.3234 -0.4251 -0.3234c -0.2680,-0.1478 -0.6006,-0.2680 -0.6006 -0.2680c -0.3326,-0.1201 -0.6838,-0.2680 -0.6838 -0.2680c -0.4251,-0.1663 -0.8501,-0.3881 -0.8501 -0.3881c -0.4251,-0.2218 -0.7762,-0.5452 -0.7762 -0.5452c -0.3511,-0.3234 -0.5729,-0.7577 -0.5729 -0.7577c -0.2218,-0.4343 -0.2218,-1.0072 -0.2218 -1.0072c 0.0000,-0.6283 0.2495,-1.1643 0.2495 -1.1643c 0.2495,-0.5359 0.7115,-0.9055 0.7115 -0.9055c 0.4620,-0.3696 1.1088,-0.5821 1.1088 -0.5821c 0.6468,-0.2125 1.4415,-0.2125 1.4415 -0.2125c 1.0534,0.0000 1.8480,0.3604 1.8480 0.3604c 0.7947,0.3604 1.3860,0.8039 1.3860 0.8039l -1.2197,1.6263 c -0.4990,-0.3696 -0.9795,-0.5729 -0.9795 -0.5729c -0.4805,-0.2033 -0.9610,-0.2033 -0.9610 -0.2033c -1.0349,-0.0000 -1.0349,0.7207 -1.0349 0.7207c 0.0000,0.2218 0.1478,0.3789 0.1478 0.3789c 0.1478,0.1571 0.3973,0.2864 0.3973 0.2864c 0.2495,0.1294 0.5729,0.2495 0.5729 0.2495c 0.3234,0.1201 0.6745,0.2495 0.6745 0.2495c 0.4435,0.1663 0.8778,0.3789 0.8778 0.3789c 0.4343,0.2125 0.7947,0.5267 0.7947 0.5267c 0.3604,0.3142 0.5821,0.7669 0.5821 0.7669c 0.2218,0.4528 0.2218,1.0811 0.2218 1.0811c 0.0000,0.6283 -0.2402,1.1643 -0.2402 1.1643c -0.2402,0.5359 -0.7207,0.9333 -0.7207 0.9333c -0.4805,0.3973 -1.1828,0.6283 -1.1828 0.6283c -0.7023,0.2310 -1.6263,0.2310 -1.6263 0.2310c -0.9055,-0.0000 -1.8573,-0.3511 -1.8573 -0.3511c -0.9517,-0.3511 -1.6540,-0.9240 -1.6540 -0.9240ZM 225.4240,15.9220 ZM 226.0893,11.3388 c 0.0000,-1.1458 0.3696,-2.0421 0.3696 -2.0421c 0.3696,-0.8963 0.9887,-1.5062 0.9887 -1.5062c 0.6191,-0.6099 1.4322,-0.9333 1.4322 -0.9333c 0.8131,-0.3234 1.6817,-0.3234 1.6817 -0.3234c 0.8686,0.0000 1.6725,0.3234 1.6725 0.3234c 0.8039,0.3234 1.4230,0.9333 1.4230 0.9333c 0.6191,0.6099 0.9887,1.5062 0.9887 1.5062c 0.3696,0.8963 0.3696,2.0421 0.3696 2.0421c 0.0000,1.1458 -0.3696,2.0421 -0.3696 2.0421c -0.3696,0.8963 -0.9887,1.5062 -0.9887 1.5062c -0.6191,0.6099 -1.4230,0.9333 -1.4230 0.9333c -0.8039,0.3234 -1.6725,0.3234 -1.6725 0.3234c -0.8686,-0.0000 -1.6817,-0.3234 -1.6817 -0.3234c -0.8131,-0.3234 -1.4322,-0.9333 -1.4322 -0.9333c -0.6191,-0.6099 -0.9887,-1.5062 -0.9887 -1.5062c -0.3696,-0.8963 -0.3696,-2.0421 -0.3696 -2.0421ZM 226.0893,11.3388 ZM 228.8799,11.3388 c 0.0000,1.2012 0.4158,1.9035 0.4158 1.9035c 0.4158,0.7023 1.2659,0.7023 1.2659 0.7023c 0.8316,0.0000 1.2567,-0.7023 1.2567 -0.7023c 0.4251,-0.7023 0.4251,-1.9035 0.4251 -1.9035c 0.0000,-1.2012 -0.4251,-1.9035 -0.4251 -1.9035c -0.4251,-0.7023 -1.2567,-0.7023 -1.2567 -0.7023c -0.8501,-0.0000 -1.2659,0.7023 -1.2659 0.7023c -0.4158,0.7023 -0.4158,1.9035 -0.4158 1.9035ZM 235.6807,15.9220 ZM 236.8819,6.7556 h 2.2177 l 0.1848,1.6078 h 0.0739 c 0.4990,-0.9425 1.2012,-1.3860 1.2012 -1.3860c 0.7023,-0.4435 1.4045,-0.4435 1.4045 -0.4435c 0.3881,0.0000 0.6376,0.0462 0.6376 0.0462c 0.2495,0.0462 0.4528,0.1386 0.4528 0.1386l -0.4435,2.3470 c -0.2587,-0.0739 -0.4805,-0.1109 -0.4805 -0.1109c -0.2218,-0.0370 -0.5175,-0.0370 -0.5175 -0.0370c -0.5175,-0.0000 -1.0811,0.3696 -1.0811 0.3696c -0.5637,0.3696 -0.9333,1.3121 -0.9333 1.3121v 5.3224 h -2.7166 v -9.1663 ZM 243.0359,15.9220 ZM 244.6068,8.8809 h -1.2567 v -2.0144 l 1.4045,-0.1109 l 0.3142,-2.4394 h 2.2546 v 2.4394 h 2.1992 v 2.1253 h -2.1992 v 3.6776 c 0.0000,0.7762 0.3234,1.1181 0.3234 1.1181c 0.3234,0.3419 0.8593,0.3419 0.8593 0.3419c 0.2218,0.0000 0.4528,-0.0554 0.4528 -0.0554c 0.2310,-0.0554 0.4158,-0.1294 0.4158 -0.1294l 0.4251,1.9774 c -0.3696,0.1109 -0.8686,0.2218 -0.8686 0.2218c -0.4990,0.1109 -1.1643,0.1109 -1.1643 0.1109c -0.8501,-0.0000 -1.4507,-0.2587 -1.4507 -0.2587c -0.6006,-0.2587 -0.9795,-0.7207 -0.9795 -0.7207c -0.3789,-0.4620 -0.5544,-1.1181 -0.5544 -1.1181c -0.1756,-0.6561 -0.1756,-1.4507 -0.1756 -1.4507v -3.7146 ZM 250.1140,15.9220 ZM 252.6643,5.4066 c -0.6838,-0.0000 -1.1273,-0.3973 -1.1273 -0.3973c -0.4435,-0.3973 -0.4435,-1.0257 -0.4435 -1.0257c 0.0000,-0.6283 0.4435,-1.0164 0.4435 -1.0164c 0.4435,-0.3881 1.1273,-0.3881 1.1273 -0.3881c 0.7023,0.0000 1.1366,0.3881 1.1366 0.3881c 0.4343,0.3881 0.4343,1.0164 0.4343 1.0164c 0.0000,0.6283 -0.4343,1.0257 -0.4343 1.0257c -0.4343,0.3973 -1.1366,0.3973 -1.1366 0.3973ZM 252.6643,5.4066 ZM 251.3152,6.7556 h 2.7166 v 9.1663 h -2.7166 v -9.1663 ZM 255.2146,15.9220 ZM 256.4158,6.7556 h 2.2177 l 0.1848,1.1643 h 0.0739 c 0.5914,-0.5544 1.2936,-0.9702 1.2936 -0.9702c 0.7023,-0.4158 1.6448,-0.4158 1.6448 -0.4158c 1.4969,0.0000 2.1715,0.9795 2.1715 0.9795c 0.6745,0.9795 0.6745,2.7166 0.6745 2.7166v 5.6920 h -2.7166 v -5.3409 c 0.0000,-0.9979 -0.2680,-1.3676 -0.2680 -1.3676c -0.2680,-0.3696 -0.8593,-0.3696 -0.8593 -0.3696c -0.5175,-0.0000 -0.8871,0.2310 -0.8871 0.2310c -0.3696,0.2310 -0.8131,0.6561 -0.8131 0.6561v 6.1910 h -2.7166 v -9.1663 ZM 265.7854,15.9220 ZM 268.6499,17.0678 c 0.0000,0.5175 0.5544,0.7854 0.5544 0.7854c 0.5544,0.2680 1.4784,0.2680 1.4784 0.2680c 0.9240,0.0000 1.5154,-0.3234 1.5154 -0.3234c 0.5914,-0.3234 0.5914,-0.8039 0.5914 -0.8039c 0.0000,-0.4251 -0.3604,-0.5729 -0.3604 -0.5729c -0.3604,-0.1478 -1.0441,-0.1478 -1.0441 -0.1478h -0.9425 c -0.4805,-0.0000 -0.7762,-0.0277 -0.7762 -0.0277c -0.2957,-0.0277 -0.5175,-0.0832 -0.5175 -0.0832c -0.4990,0.4435 -0.4990,0.9055 -0.4990 0.9055ZM 268.6499,17.0678 ZM 266.4138,17.4928 c 0.0000,-1.1088 1.3121,-1.8480 1.3121 -1.8480v -0.0739 c -0.3696,-0.2402 -0.6099,-0.6099 -0.6099 -0.6099c -0.2402,-0.3696 -0.2402,-0.9425 -0.2402 -0.9425c 0.0000,-0.4990 0.2957,-0.9517 0.2957 -0.9517c 0.2957,-0.4528 0.7392,-0.7669 0.7392 -0.7669v -0.0739 c -0.4805,-0.3326 -0.8593,-0.9517 -0.8593 -0.9517c -0.3789,-0.6191 -0.3789,-1.4322 -0.3789 -1.4322c 0.0000,-0.8316 0.3142,-1.4507 0.3142 -1.4507c 0.3142,-0.6191 0.8409,-1.0349 0.8409 -1.0349c 0.5267,-0.4158 1.2105,-0.6191 1.2105 -0.6191c 0.6838,-0.2033 1.4230,-0.2033 1.4230 -0.2033c 0.8131,0.0000 1.4230,0.2218 1.4230 0.2218h 3.3450 v 1.9774 h -1.4600 c 0.1294,0.2033 0.2125,0.5175 0.2125 0.5175c 0.0832,0.3142 0.0832,0.6838 0.0832 0.6838c 0.0000,0.7947 -0.2772,1.3768 -0.2772 1.3768c -0.2772,0.5821 -0.7669,0.9610 -0.7669 0.9610c -0.4897,0.3789 -1.1458,0.5637 -1.1458 0.5637c -0.6561,0.1848 -1.4138,0.1848 -1.4138 0.1848c -0.5359,-0.0000 -1.1088,-0.1848 -1.1088 -0.1848c -0.1848,0.1478 -0.2587,0.2957 -0.2587 0.2957c -0.0739,0.1478 -0.0739,0.3881 -0.0739 0.3881c 0.0000,0.3511 0.3049,0.5175 0.3049 0.5175c 0.3049,0.1663 1.0811,0.1663 1.0811 0.1663h 1.4784 c 1.7002,0.0000 2.5965,0.5452 2.5965 0.5452c 0.8963,0.5452 0.8963,1.7834 0.8963 1.7834c 0.0000,0.7207 -0.3604,1.3214 -0.3604 1.3214c -0.3604,0.6006 -1.0257,1.0349 -1.0257 1.0349c -0.6653,0.4343 -1.6078,0.6838 -1.6078 0.6838c -0.9425,0.2495 -2.1253,0.2495 -2.1253 0.2495c -0.8131,-0.0000 -1.5062,-0.1386 -1.5062 -0.1386c -0.6930,-0.1386 -1.2197,-0.4158 -1.2197 -0.4158c -0.5267,-0.2772 -0.8224,-0.7207 -0.8224 -0.7207c -0.2957,-0.4435 -0.2957,-1.0534 -0.2957 -1.0534ZM 266.4138,17.4928 ZM 270.4610,11.3758 c 0.5359,0.0000 0.8963,-0.3789 0.8963 -0.3789c 0.3604,-0.3789 0.3604,-1.1550 0.3604 -1.1550c 0.0000,-0.7207 -0.3604,-1.0996 -0.3604 -1.0996c -0.3604,-0.3789 -0.8963,-0.3789 -0.8963 -0.3789c -0.5359,-0.0000 -0.8963,0.3696 -0.8963 0.3696c -0.3604,0.3696 -0.3604,1.1088 -0.3604 1.1088c 0.0000,0.7762 0.3604,1.1550 0.3604 1.1550c 0.3604,0.3789 0.8963,0.3789 0.8963 0.3789ZM 279.4979,15.9220 ZM 280.3665,13.3717 c 0.0000,-1.4415 1.2197,-2.2546 1.2197 -2.2546c 1.2197,-0.8131 3.9363,-1.0903 3.9363 -1.0903c -0.0370,-0.6099 -0.3696,-0.9702 -0.3696 -0.9702c -0.3326,-0.3604 -1.0719,-0.3604 -1.0719 -0.3604c -0.5914,-0.0000 -1.1828,0.2218 -1.1828 0.2218c -0.5914,0.2218 -1.2567,0.6099 -1.2567 0.6099l -0.9610,-1.7926 c 0.8871,-0.5359 1.8573,-0.8686 1.8573 -0.8686c 0.9702,-0.3326 2.0606,-0.3326 2.0606 -0.3326c 1.7741,0.0000 2.7074,1.0072 2.7074 1.0072c 0.9333,1.0072 0.9333,3.1324 0.9333 3.1324v 5.2485 h -2.2177 l -0.2033,-0.9425 h -0.0554 c -0.5914,0.5175 -1.2474,0.8409 -1.2474 0.8409c -0.6561,0.3234 -1.4322,0.3234 -1.4322 0.3234c -0.6283,-0.0000 -1.1273,-0.2125 -1.1273 -0.2125c -0.4990,-0.2125 -0.8501,-0.5914 -0.8501 -0.5914c -0.3511,-0.3789 -0.5452,-0.8778 -0.5452 -0.8778c -0.1940,-0.4990 -0.1940,-1.0903 -0.1940 -1.0903ZM 280.3665,13.3717 ZM 282.9538,13.1684 c 0.0000,0.4435 0.2864,0.6561 0.2864 0.6561c 0.2864,0.2125 0.7669,0.2125 0.7669 0.2125c 0.4805,0.0000 0.8131,-0.2033 0.8131 -0.2033c 0.3326,-0.2033 0.7023,-0.5729 0.7023 -0.5729v -1.6078 c -1.4600,0.2033 -2.0144,0.5914 -2.0144 0.5914c -0.5544,0.3881 -0.5544,0.9240 -0.5544 0.9240ZM 293.2105,15.9220 ZM 293.9312,11.3388 c 0.0000,-1.1273 0.3234,-2.0144 0.3234 -2.0144c 0.3234,-0.8871 0.8501,-1.5062 0.8501 -1.5062c 0.5267,-0.6191 1.2197,-0.9517 1.2197 -0.9517c 0.6930,-0.3326 1.4138,-0.3326 1.4138 -0.3326c 0.7762,0.0000 1.2752,0.2587 1.2752 0.2587c 0.4990,0.2587 0.9795,0.7023 0.9795 0.7023l -0.1109,-1.4045 v -3.1232 h 2.7166 v 12.9548 h -2.2177 l -0.1848,-0.9055 h -0.0739 c -0.4805,0.4805 -1.1273,0.8039 -1.1273 0.8039c -0.6468,0.3234 -1.3121,0.3234 -1.3121 0.3234c -0.8501,-0.0000 -1.5431,-0.3326 -1.5431 -0.3326c -0.6930,-0.3326 -1.1828,-0.9517 -1.1828 -0.9517c -0.4897,-0.6191 -0.7577,-1.5062 -0.7577 -1.5062c -0.2680,-0.8871 -0.2680,-2.0144 -0.2680 -2.0144ZM 293.9312,11.3388 ZM 296.7218,11.3018 c 0.0000,1.3676 0.4343,1.9959 0.4343 1.9959c 0.4343,0.6283 1.2290,0.6283 1.2290 0.6283c 0.4435,0.0000 0.8039,-0.1848 0.8039 -0.1848c 0.3604,-0.1848 0.6930,-0.6468 0.6930 -0.6468v -3.7515 c -0.3696,-0.3326 -0.7577,-0.4620 -0.7577 -0.4620c -0.3881,-0.1294 -0.7577,-0.1294 -0.7577 -0.1294c -0.6468,-0.0000 -1.1458,0.6191 -1.1458 0.6191c -0.4990,0.6191 -0.4990,1.9312 -0.4990 1.9312ZM 303.7998,15.9220 ZM 304.4651,11.3388 c 0.0000,-1.1088 0.3696,-2.0051 0.3696 -2.0051c 0.3696,-0.8963 0.9702,-1.5154 0.9702 -1.5154c 0.6006,-0.6191 1.3768,-0.9517 1.3768 -0.9517c 0.7762,-0.3326 1.6078,-0.3326 1.6078 -0.3326c 0.9795,0.0000 1.7094,0.3326 1.7094 0.3326c 0.7300,0.3326 1.2197,0.9240 1.2197 0.9240c 0.4897,0.5914 0.7300,1.3953 0.7300 1.3953c 0.2402,0.8039 0.2402,1.7464 0.2402 1.7464c 0.0000,0.3696 -0.0370,0.6745 -0.0370 0.6745c -0.0370,0.3049 -0.0739,0.4713 -0.0739 0.4713h -5.4887 c 0.1848,1.0534 0.8224,1.5246 0.8224 1.5246c 0.6376,0.4713 1.5616,0.4713 1.5616 0.4713c 0.9795,0.0000 1.9774,-0.6099 1.9774 -0.6099l 0.9055,1.6448 c -0.7023,0.4805 -1.5616,0.7577 -1.5616 0.7577c -0.8593,0.2772 -1.6910,0.2772 -1.6910 0.2772c -0.9795,-0.0000 -1.8296,-0.3234 -1.8296 -0.3234c -0.8501,-0.3234 -1.4784,-0.9425 -1.4784 -0.9425c -0.6283,-0.6191 -0.9795,-1.5062 -0.9795 -1.5062c -0.3511,-0.8871 -0.3511,-2.0329 -0.3511 -2.0329ZM 304.4651,11.3388 ZM 310.3789,10.3963 c 0.0000,-0.7947 -0.3511,-1.2936 -0.3511 -1.2936c -0.3511,-0.4990 -1.1828,-0.4990 -1.1828 -0.4990c -0.6468,-0.0000 -1.1366,0.4343 -1.1366 0.4343c -0.4897,0.4343 -0.6376,1.3583 -0.6376 1.3583h 3.3080 ZM 313.3727,15.9220 ZM 314.0380,11.3388 c 0.0000,-1.1458 0.3881,-2.0421 0.3881 -2.0421c 0.3881,-0.8963 1.0441,-1.5062 1.0441 -1.5062c 0.6561,-0.6099 1.5246,-0.9333 1.5246 -0.9333c 0.8686,-0.3234 1.8111,-0.3234 1.8111 -0.3234c 0.8501,0.0000 1.5339,0.2864 1.5339 0.2864c 0.6838,0.2864 1.1458,0.7669 1.1458 0.7669l -1.2382,1.6817 c -0.6468,-0.5359 -1.2752,-0.5359 -1.2752 -0.5359c -0.9979,-0.0000 -1.5708,0.7023 -1.5708 0.7023c -0.5729,0.7023 -0.5729,1.9035 -0.5729 1.9035c 0.0000,1.2012 0.5821,1.9035 0.5821 1.9035c 0.5821,0.7023 1.4692,0.7023 1.4692 0.7023c 0.4990,0.0000 0.9055,-0.2033 0.9055 -0.2033c 0.4066,-0.2033 0.7392,-0.4620 0.7392 -0.4620l 1.0903,1.7187 c -0.6653,0.5914 -1.4784,0.8686 -1.4784 0.8686c -0.8131,0.2772 -1.5708,0.2772 -1.5708 0.2772c -0.9610,-0.0000 -1.7834,-0.3234 -1.7834 -0.3234c -0.8224,-0.3234 -1.4322,-0.9333 -1.4322 -0.9333c -0.6099,-0.6099 -0.9610,-1.5062 -0.9610 -1.5062c -0.3511,-0.8963 -0.3511,-2.0421 -0.3511 -2.0421ZM 322.0031,15.9220 ZM 323.2043,2.9671 h 2.6427 v 7.4292 h 0.0739 l 2.9014,-3.6407 h 2.9569 l -3.2156,3.7700 l 3.4559,5.3963 h -2.9384 l -2.0698,-3.5667 l -1.1643,1.3121 v 2.2546 h -2.6427 v -12.9548 ZM 335.9743,15.9220 ZM 336.6396,11.3388 c 0.0000,-1.1458 0.3696,-2.0421 0.3696 -2.0421c 0.3696,-0.8963 0.9887,-1.5062 0.9887 -1.5062c 0.6191,-0.6099 1.4322,-0.9333 1.4322 -0.9333c 0.8131,-0.3234 1.6817,-0.3234 1.6817 -0.3234c 0.8686,0.0000 1.6725,0.3234 1.6725 0.3234c 0.8039,0.3234 1.4230,0.9333 1.4230 0.9333c 0.6191,0.6099 0.9887,1.5062 0.9887 1.5062c 0.3696,0.8963 0.3696,2.0421 0.3696 2.0421c 0.0000,1.1458 -0.3696,2.0421 -0.3696 2.0421c -0.3696,0.8963 -0.9887,1.5062 -0.9887 1.5062c -0.6191,0.6099 -1.4230,0.9333 -1.4230 0.9333c -0.8039,0.3234 -1.6725,0.3234 -1.6725 0.3234c -0.8686,-0.0000 -1.6817,-0.3234 -1.6817 -0.3234c -0.8131,-0.3234 -1.4322,-0.9333 -1.4322 -0.9333c -0.6191,-0.6099 -0.9887,-1.5062 -0.9887 -1.5062c -0.3696,-0.8963 -0.3696,-2.0421 -0.3696 -2.0421ZM 336.6396,11.3388 ZM 339.4302,11.3388 c 0.0000,1.2012 0.4158,1.9035 0.4158 1.9035c 0.4158,0.7023 1.2659,0.7023 1.2659 0.7023c 0.8316,0.0000 1.2567,-0.7023 1.2567 -0.7023c 0.4251,-0.7023 0.4251,-1.9035 0.4251 -1.9035c 0.0000,-1.2012 -0.4251,-1.9035 -0.4251 -1.9035c -0.4251,-0.7023 -1.2567,-0.7023 -1.2567 -0.7023c -0.8501,-0.0000 -1.2659,0.7023 -1.2659 0.7023c -0.4158,0.7023 -0.4158,1.9035 -0.4158 1.9035ZM 346.1386,15.9220 ZM 352.5144,5.0739 c -0.5175,-0.1848 -0.9425,-0.1848 -0.9425 -0.1848c -0.4990,-0.0000 -0.7762,0.3049 -0.7762 0.3049c -0.2772,0.3049 -0.2772,1.0072 -0.2772 1.0072v 0.5544 h 1.6448 v 2.1253 h -1.6448 v 7.0411 h -2.7166 v -7.0411 h -1.2197 v -2.0144 l 1.2197,-0.0924 v -0.4990 c 0.0000,-0.7207 0.1756,-1.3676 0.1756 -1.3676c 0.1756,-0.6468 0.5821,-1.1273 0.5821 -1.1273c 0.4066,-0.4805 1.0534,-0.7577 1.0534 -0.7577c 0.6468,-0.2772 1.5708,-0.2772 1.5708 -0.2772c 0.5729,0.0000 1.0441,0.1109 1.0441 0.1109c 0.4713,0.1109 0.7854,0.2218 0.7854 0.2218ZM 356.2844,15.9220 ZM 356.9497,11.3388 c 0.0000,-1.1458 0.3881,-2.0421 0.3881 -2.0421c 0.3881,-0.8963 1.0441,-1.5062 1.0441 -1.5062c 0.6561,-0.6099 1.5246,-0.9333 1.5246 -0.9333c 0.8686,-0.3234 1.8111,-0.3234 1.8111 -0.3234c 0.8501,0.0000 1.5339,0.2864 1.5339 0.2864c 0.6838,0.2864 1.1458,0.7669 1.1458 0.7669l -1.2382,1.6817 c -0.6468,-0.5359 -1.2752,-0.5359 -1.2752 -0.5359c -0.9979,-0.0000 -1.5708,0.7023 -1.5708 0.7023c -0.5729,0.7023 -0.5729,1.9035 -0.5729 1.9035c 0.0000,1.2012 0.5821,1.9035 0.5821 1.9035c 0.5821,0.7023 1.4692,0.7023 1.4692 0.7023c 0.4990,0.0000 0.9055,-0.2033 0.9055 -0.2033c 0.4066,-0.2033 0.7392,-0.4620 0.7392 -0.4620l 1.0903,1.7187 c -0.6653,0.5914 -1.4784,0.8686 -1.4784 0.8686c -0.8131,0.2772 -1.5708,0.2772 -1.5708 0.2772c -0.9610,-0.0000 -1.7834,-0.3234 -1.7834 -0.3234c -0.8224,-0.3234 -1.4322,-0.9333 -1.4322 -0.9333c -0.6099,-0.6099 -0.9610,-1.5062 -0.9610 -1.5062c -0.3511,-0.8963 -0.3511,-2.0421 -0.3511 -2.0421ZM 364.7300,15.9220 ZM 365.5986,13.3717 c 0.0000,-1.4415 1.2197,-2.2546 1.2197 -2.2546c 1.2197,-0.8131 3.9363,-1.0903 3.9363 -1.0903c -0.0370,-0.6099 -0.3696,-0.9702 -0.3696 -0.9702c -0.3326,-0.3604 -1.0719,-0.3604 -1.0719 -0.3604c -0.5914,-0.0000 -1.1828,0.2218 -1.1828 0.2218c -0.5914,0.2218 -1.2567,0.6099 -1.2567 0.6099l -0.9610,-1.7926 c 0.8871,-0.5359 1.8573,-0.8686 1.8573 -0.8686c 0.9702,-0.3326 2.0606,-0.3326 2.0606 -0.3326c 1.7741,0.0000 2.7074,1.0072 2.7074 1.0072c 0.9333,1.0072 0.9333,3.1324 0.9333 3.1324v 5.2485 h -2.2177 l -0.2033,-0.9425 h -0.0554 c -0.5914,0.5175 -1.2474,0.8409 -1.2474 0.8409c -0.6561,0.3234 -1.4322,0.3234 -1.4322 0.3234c -0.6283,-0.0000 -1.1273,-0.2125 -1.1273 -0.2125c -0.4990,-0.2125 -0.8501,-0.5914 -0.8501 -0.5914c -0.3511,-0.3789 -0.5452,-0.8778 -0.5452 -0.8778c -0.1940,-0.4990 -0.1940,-1.0903 -0.1940 -1.0903ZM 365.5986,13.3717 ZM 368.1858,13.1684 c 0.0000,0.4435 0.2864,0.6561 0.2864 0.6561c 0.2864,0.2125 0.7669,0.2125 0.7669 0.2125c 0.4805,0.0000 0.8131,-0.2033 0.8131 -0.2033c 0.3326,-0.2033 0.7023,-0.5729 0.7023 -0.5729v -1.6078 c -1.4600,0.2033 -2.0144,0.5914 -2.0144 0.5914c -0.5544,0.3881 -0.5544,0.9240 -0.5544 0.9240ZM 374.5986,15.9220 ZM 375.7998,6.7556 h 2.2177 l 0.1848,1.6078 h 0.0739 c 0.4990,-0.9425 1.2012,-1.3860 1.2012 -1.3860c 0.7023,-0.4435 1.4045,-0.4435 1.4045 -0.4435c 0.3881,0.0000 0.6376,0.0462 0.6376 0.0462c 0.2495,0.0462 0.4528,0.1386 0.4528 0.1386l -0.4435,2.3470 c -0.2587,-0.0739 -0.4805,-0.1109 -0.4805 -0.1109c -0.2218,-0.0370 -0.5175,-0.0370 -0.5175 -0.0370c -0.5175,-0.0000 -1.0811,0.3696 -1.0811 0.3696c -0.5637,0.3696 -0.9333,1.3121 -0.9333 1.3121v 5.3224 h -2.7166 v -9.1663 ZM 381.7690,15.9220 ZM 382.4897,11.3388 c 0.0000,-1.1273 0.3234,-2.0144 0.3234 -2.0144c 0.3234,-0.8871 0.8501,-1.5062 0.8501 -1.5062c 0.5267,-0.6191 1.2197,-0.9517 1.2197 -0.9517c 0.6930,-0.3326 1.4138,-0.3326 1.4138 -0.3326c 0.7762,0.0000 1.2752,0.2587 1.2752 0.2587c 0.4990,0.2587 0.9795,0.7023 0.9795 0.7023l -0.1109,-1.4045 v -3.1232 h 2.7166 v 12.9548 h -2.2177 l -0.1848,-0.9055 h -0.0739 c -0.4805,0.4805 -1.1273,0.8039 -1.1273 0.8039c -0.6468,0.3234 -1.3121,0.3234 -1.3121 0.3234c -0.8501,-0.0000 -1.5431,-0.3326 -1.5431 -0.3326c -0.6930,-0.3326 -1.1828,-0.9517 -1.1828 -0.9517c -0.4897,-0.6191 -0.7577,-1.5062 -0.7577 -1.5062c -0.2680,-0.8871 -0.2680,-2.0144 -0.2680 -2.0144ZM 382.4897,11.3388 ZM 385.2803,11.3018 c 0.0000,1.3676 0.4343,1.9959 0.4343 1.9959c 0.4343,0.6283 1.2290,0.6283 1.2290 0.6283c 0.4435,0.0000 0.8039,-0.1848 0.8039 -0.1848c 0.3604,-0.1848 0.6930,-0.6468 0.6930 -0.6468v -3.7515 c -0.3696,-0.3326 -0.7577,-0.4620 -0.7577 -0.4620c -0.3881,-0.1294 -0.7577,-0.1294 -0.7577 -0.1294c -0.6468,-0.0000 -1.1458,0.6191 -1.1458 0.6191c -0.4990,0.6191 -0.4990,1.9312 -0.4990 1.9312ZM 392.3583,15.9220 ZM 393.9661,13.1684 c 0.6283,0.4805 1.2012,0.7207 1.2012 0.7207c 0.5729,0.2402 1.1643,0.2402 1.1643 0.2402c 0.6099,0.0000 0.8871,-0.2033 0.8871 -0.2033c 0.2772,-0.2033 0.2772,-0.5729 0.2772 -0.5729c 0.0000,-0.2218 -0.1571,-0.3973 -0.1571 -0.3973c -0.1571,-0.1756 -0.4251,-0.3234 -0.4251 -0.3234c -0.2680,-0.1478 -0.6006,-0.2680 -0.6006 -0.2680c -0.3326,-0.1201 -0.6838,-0.2680 -0.6838 -0.2680c -0.4251,-0.1663 -0.8501,-0.3881 -0.8501 -0.3881c -0.4251,-0.2218 -0.7762,-0.5452 -0.7762 -0.5452c -0.3511,-0.3234 -0.5729,-0.7577 -0.5729 -0.7577c -0.2218,-0.4343 -0.2218,-1.0072 -0.2218 -1.0072c 0.0000,-0.6283 0.2495,-1.1643 0.2495 -1.1643c 0.2495,-0.5359 0.7115,-0.9055 0.7115 -0.9055c 0.4620,-0.3696 1.1088,-0.5821 1.1088 -0.5821c 0.6468,-0.2125 1.4415,-0.2125 1.4415 -0.2125c 1.0534,0.0000 1.8480,0.3604 1.8480 0.3604c 0.7947,0.3604 1.3860,0.8039 1.3860 0.8039l -1.2197,1.6263 c -0.4990,-0.3696 -0.9795,-0.5729 -0.9795 -0.5729c -0.4805,-0.2033 -0.9610,-0.2033 -0.9610 -0.2033c -1.0349,-0.0000 -1.0349,0.7207 -1.0349 0.7207c 0.0000,0.2218 0.1478,0.3789 0.1478 0.3789c 0.1478,0.1571 0.3973,0.2864 0.3973 0.2864c 0.2495,0.1294 0.5729,0.2495 0.5729 0.2495c 0.3234,0.1201 0.6745,0.2495 0.6745 0.2495c 0.4435,0.1663 0.8778,0.3789 0.8778 0.3789c 0.4343,0.2125 0.7947,0.5267 0.7947 0.5267c 0.3604,0.3142 0.5821,0.7669 0.5821 0.7669c 0.2218,0.4528 0.2218,1.0811 0.2218 1.0811c 0.0000,0.6283 -0.2402,1.1643 -0.2402 1.1643c -0.2402,0.5359 -0.7207,0.9333 -0.7207 0.9333c -0.4805,0.3973 -1.1828,0.6283 -1.1828 0.6283c -0.7023,0.2310 -1.6263,0.2310 -1.6263 0.2310c -0.9055,-0.0000 -1.8573,-0.3511 -1.8573 -0.3511c -0.9517,-0.3511 -1.6540,-0.9240 -1.6540 -0.9240ZM 404.3891,15.9220 ZM 404.8326,6.7556 h 2.6982 l 0.8871,4.2505 c 0.1109,0.6838 0.2033,1.3491 0.2033 1.3491c 0.0924,0.6653 0.2033,1.3676 0.2033 1.3676h 0.0739 c 0.1294,-0.7023 0.2495,-1.3860 0.2495 -1.3860c 0.1201,-0.6838 0.2864,-1.3306 0.2864 -1.3306l 1.0164,-4.2505 h 2.3470 l 1.0349,4.2505 c 0.1663,0.6838 0.2957,1.3491 0.2957 1.3491c 0.1294,0.6653 0.2772,1.3676 0.2772 1.3676h 0.0739 c 0.1294,-0.7023 0.2125,-1.3676 0.2125 -1.3676c 0.0832,-0.6653 0.2125,-1.3491 0.2125 -1.3491l 0.8686,-4.2505 h 2.5133 l -2.1992,9.1663 h -3.1786 l -0.8316,-3.6591 c -0.1478,-0.6468 -0.2587,-1.2936 -0.2587 -1.2936c -0.1109,-0.6468 -0.2402,-1.3860 -0.2402 -1.3860h -0.0739 c -0.1294,0.7392 -0.2310,1.3860 -0.2310 1.3860c -0.1016,0.6468 -0.2310,1.2936 -0.2310 1.2936l -0.8131,3.6591 h -3.1047 ZM 418.7300,15.9220 ZM 421.2803,5.4066 c -0.6838,-0.0000 -1.1273,-0.3973 -1.1273 -0.3973c -0.4435,-0.3973 -0.4435,-1.0257 -0.4435 -1.0257c 0.0000,-0.6283 0.4435,-1.0164 0.4435 -1.0164c 0.4435,-0.3881 1.1273,-0.3881 1.1273 -0.3881c 0.7023,0.0000 1.1366,0.3881 1.1366 0.3881c 0.4343,0.3881 0.4343,1.0164 0.4343 1.0164c 0.0000,0.6283 -0.4343,1.0257 -0.4343 1.0257c -0.4343,0.3973 -1.1366,0.3973 -1.1366 0.3973ZM 421.2803,5.4066 ZM 419.9312,6.7556 h 2.7166 v 9.1663 h -2.7166 v -9.1663 ZM 423.8306,15.9220 ZM 425.4014,8.8809 h -1.2567 v -2.0144 l 1.4045,-0.1109 l 0.3142,-2.4394 h 2.2546 v 2.4394 h 2.1992 v 2.1253 h -2.1992 v 3.6776 c 0.0000,0.7762 0.3234,1.1181 0.3234 1.1181c 0.3234,0.3419 0.8593,0.3419 0.8593 0.3419c 0.2218,0.0000 0.4528,-0.0554 0.4528 -0.0554c 0.2310,-0.0554 0.4158,-0.1294 0.4158 -0.1294l 0.4251,1.9774 c -0.3696,0.1109 -0.8686,0.2218 -0.8686 0.2218c -0.4990,0.1109 -1.1643,0.1109 -1.1643 0.1109c -0.8501,-0.0000 -1.4507,-0.2587 -1.4507 -0.2587c -0.6006,-0.2587 -0.9795,-0.7207 -0.9795 -0.7207c -0.3789,-0.4620 -0.5544,-1.1181 -0.5544 -1.1181c -0.1756,-0.6561 -0.1756,-1.4507 -0.1756 -1.4507v -3.7146 ZM 430.9086,15.9220 ZM 432.1099,2.9671 h 2.7166 v 3.1786 l -0.1294,1.6448 c 0.5175,-0.4620 1.2012,-0.8593 1.2012 -0.8593c 0.6838,-0.3973 1.6263,-0.3973 1.6263 -0.3973c 1.4969,0.0000 2.1715,0.9795 2.1715 0.9795c 0.6745,0.9795 0.6745,2.7166 0.6745 2.7166v 5.6920 h -2.7166 v -5.3409 c 0.0000,-0.9979 -0.2680,-1.3676 -0.2680 -1.3676c -0.2680,-0.3696 -0.8593,-0.3696 -0.8593 -0.3696c -0.5175,-0.0000 -0.8871,0.2310 -0.8871 0.2310c -0.3696,0.2310 -0.8131,0.6561 -0.8131 0.6561v 6.1910 h -2.7166 v -12.9548 ZM 445.3049,15.9220 ZM 446.5986,13.7228 h 2.5503 v -6.7823 h -2.1992 v -1.6817 c 0.9610,-0.1848 1.6263,-0.4435 1.6263 -0.4435c 0.6653,-0.2587 1.2936,-0.6283 1.2936 -0.6283h 1.9959 v 9.5359 h 2.1992 v 2.1992 h -7.4661 v -2.1992 ZM 455.0626,15.9220 ZM 459.9415,16.1437 c -0.9425,-0.0000 -1.7187,-0.3973 -1.7187 -0.3973c -0.7762,-0.3973 -1.3214,-1.1735 -1.3214 -1.1735c -0.5452,-0.7762 -0.8501,-1.9220 -0.8501 -1.9220c -0.3049,-1.1458 -0.3049,-2.6427 -0.3049 -2.6427c 0.0000,-1.4969 0.3049,-2.6242 0.3049 -2.6242c 0.3049,-1.1273 0.8501,-1.8943 0.8501 -1.8943c 0.5452,-0.7669 1.3214,-1.1458 1.3214 -1.1458c 0.7762,-0.3789 1.7187,-0.3789 1.7187 -0.3789c 0.9425,0.0000 1.7187,0.3789 1.7187 0.3789c 0.7762,0.3789 1.3214,1.1458 1.3214 1.1458c 0.5452,0.7669 0.8501,1.8943 0.8501 1.8943c 0.3049,1.1273 0.3049,2.6242 0.3049 2.6242c 0.0000,1.4969 -0.3049,2.6427 -0.3049 2.6427c -0.3049,1.1458 -0.8501,1.9220 -0.8501 1.9220c -0.5452,0.7762 -1.3214,1.1735 -1.3214 1.1735c -0.7762,0.3973 -1.7187,0.3973 -1.7187 0.3973ZM 459.9415,16.1437 ZM 459.9415,14.0370 c 0.3511,0.0000 0.6468,-0.1756 0.6468 -0.1756c 0.2957,-0.1756 0.5175,-0.6376 0.5175 -0.6376c 0.2218,-0.4620 0.3419,-1.2382 0.3419 -1.2382c 0.1201,-0.7762 0.1201,-1.9774 0.1201 -1.9774c 0.0000,-1.2012 -0.1201,-1.9682 -0.1201 -1.9682c -0.1201,-0.7669 -0.3419,-1.2012 -0.3419 -1.2012c -0.2218,-0.4343 -0.5175,-0.6006 -0.5175 -0.6006c -0.2957,-0.1663 -0.6468,-0.1663 -0.6468 -0.1663c -0.3326,-0.0000 -0.6283,0.1663 -0.6283 0.1663c -0.2957,0.1663 -0.5175,0.6006 -0.5175 0.6006c -0.2218,0.4343 -0.3511,1.2012 -0.3511 1.2012c -0.1294,0.7669 -0.1294,1.9682 -0.1294 1.9682c 0.0000,1.2012 0.1294,1.9774 0.1294 1.9774c 0.1294,0.7762 0.3511,1.2382 0.3511 1.2382c 0.2218,0.4620 0.5175,0.6376 0.5175 0.6376c 0.2957,0.1756 0.6283,0.1756 0.6283 0.1756ZM 464.8203,15.9220 ZM 468.2947,11.3018 c -0.6468,-0.0000 -1.2012,-0.2587 -1.2012 -0.2587c -0.5544,-0.2587 -0.9517,-0.7577 -0.9517 -0.7577c -0.3973,-0.4990 -0.6191,-1.2105 -0.6191 -1.2105c -0.2218,-0.7115 -0.2218,-1.6170 -0.2218 -1.6170c 0.0000,-0.9055 0.2218,-1.6078 0.2218 -1.6078c 0.2218,-0.7023 0.6191,-1.1920 0.6191 -1.1920c 0.3973,-0.4897 0.9517,-0.7485 0.9517 -0.7485c 0.5544,-0.2587 1.2012,-0.2587 1.2012 -0.2587c 0.6468,0.0000 1.2012,0.2587 1.2012 0.2587c 0.5544,0.2587 0.9517,0.7485 0.9517 0.7485c 0.3973,0.4897 0.6283,1.1920 0.6283 1.1920c 0.2310,0.7023 0.2310,1.6078 0.2310 1.6078c 0.0000,0.9055 -0.2310,1.6170 -0.2310 1.6170c -0.2310,0.7115 -0.6283,1.2105 -0.6283 1.2105c -0.3973,0.4990 -0.9517,0.7577 -0.9517 0.7577c -0.5544,0.2587 -1.2012,0.2587 -1.2012 0.2587ZM 468.2947,11.3018 ZM 468.2947,9.7864 c 0.4620,0.0000 0.7854,-0.5175 0.7854 -0.5175c 0.3234,-0.5175 0.3234,-1.8111 0.3234 -1.8111c 0.0000,-1.2936 -0.3234,-1.7926 -0.3234 -1.7926c -0.3234,-0.4990 -0.7854,-0.4990 -0.7854 -0.4990c -0.4620,-0.0000 -0.7854,0.4990 -0.7854 0.4990c -0.3234,0.4990 -0.3234,1.7926 -0.3234 1.7926c 0.0000,1.2936 0.3234,1.8111 0.3234 1.8111c 0.3234,0.5175 0.7854,0.5175 0.7854 0.5175ZM 468.2947,9.7864 ZM 468.7012,16.1437 l 6.5051,-12.4928 h 1.5708 l -6.5051,12.4928 h -1.5708 ZM 468.7012,16.1437 ZM 477.1838,16.1437 c -0.6468,-0.0000 -1.2012,-0.2587 -1.2012 -0.2587c -0.5544,-0.2587 -0.9517,-0.7577 -0.9517 -0.7577c -0.3973,-0.4990 -0.6191,-1.2105 -0.6191 -1.2105c -0.2218,-0.7115 -0.2218,-1.6170 -0.2218 -1.6170c 0.0000,-0.9055 0.2218,-1.6078 0.2218 -1.6078c 0.2218,-0.7023 0.6191,-1.1920 0.6191 -1.1920c 0.3973,-0.4897 0.9517,-0.7485 0.9517 -0.7485c 0.5544,-0.2587 1.2012,-0.2587 1.2012 -0.2587c 0.6468,0.0000 1.2012,0.2587 1.2012 0.2587c 0.5544,0.2587 0.9517,0.7485 0.9517 0.7485c 0.3973,0.4897 0.6283,1.1920 0.6283 1.1920c 0.2310,0.7023 0.2310,1.6078 0.2310 1.6078c 0.0000,0.9055 -0.2310,1.6170 -0.2310 1.6170c -0.2310,0.7115 -0.6283,1.2105 -0.6283 1.2105c -0.3973,0.4990 -0.9517,0.7577 -0.9517 0.7577c -0.5544,0.2587 -1.2012,0.2587 -1.2012 0.2587ZM 477.1838,16.1437 ZM 477.1838,14.6283 c 0.4620,0.0000 0.7854,-0.5175 0.7854 -0.5175c 0.3234,-0.5175 0.3234,-1.8111 0.3234 -1.8111c 0.0000,-1.2936 -0.3234,-1.7926 -0.3234 -1.7926c -0.3234,-0.4990 -0.7854,-0.4990 -0.7854 -0.4990c -0.4620,-0.0000 -0.7854,0.4990 -0.7854 0.4990c -0.3234,0.4990 -0.3234,1.7926 -0.3234 1.7926c 0.0000,1.2936 0.3234,1.8111 0.3234 1.8111c 0.3234,0.5175 0.7854,0.5175 0.7854 0.5175ZM 484.5021,15.9220 ZM 490.8778,5.0739 c -0.5175,-0.1848 -0.9425,-0.1848 -0.9425 -0.1848c -0.4990,-0.0000 -0.7762,0.3049 -0.7762 0.3049c -0.2772,0.3049 -0.2772,1.0072 -0.2772 1.0072v 0.5544 h 1.6448 v 2.1253 h -1.6448 v 7.0411 h -2.7166 v -7.0411 h -1.2197 v -2.0144 l 1.2197,-0.0924 v -0.4990 c 0.0000,-0.7207 0.1756,-1.3676 0.1756 -1.3676c 0.1756,-0.6468 0.5821,-1.1273 0.5821 -1.1273c 0.4066,-0.4805 1.0534,-0.7577 1.0534 -0.7577c 0.6468,-0.2772 1.5708,-0.2772 1.5708 -0.2772c 0.5729,0.0000 1.0441,0.1109 1.0441 0.1109c 0.4713,0.1109 0.7854,0.2218 0.7854 0.2218ZM 490.4343,15.9220 ZM 491.3029,13.3717 c 0.0000,-1.4415 1.2197,-2.2546 1.2197 -2.2546c 1.2197,-0.8131 3.9363,-1.0903 3.9363 -1.0903c -0.0370,-0.6099 -0.3696,-0.9702 -0.3696 -0.9702c -0.3326,-0.3604 -1.0719,-0.3604 -1.0719 -0.3604c -0.5914,-0.0000 -1.1828,0.2218 -1.1828 0.2218c -0.5914,0.2218 -1.2567,0.6099 -1.2567 0.6099l -0.9610,-1.7926 c 0.8871,-0.5359 1.8573,-0.8686 1.8573 -0.8686c 0.9702,-0.3326 2.0606,-0.3326 2.0606 -0.3326c 1.7741,0.0000 2.7074,1.0072 2.7074 1.0072c 0.9333,1.0072 0.9333,3.1324 0.9333 3.1324v 5.2485 h -2.2177 l -0.2033,-0.9425 h -0.0554 c -0.5914,0.5175 -1.2474,0.8409 -1.2474 0.8409c -0.6561,0.3234 -1.4322,0.3234 -1.4322 0.3234c -0.6283,-0.0000 -1.1273,-0.2125 -1.1273 -0.2125c -0.4990,-0.2125 -0.8501,-0.5914 -0.8501 -0.5914c -0.3511,-0.3789 -0.5452,-0.8778 -0.5452 -0.8778c -0.1940,-0.4990 -0.1940,-1.0903 -0.1940 -1.0903ZM 491.3029,13.3717 ZM 493.8901,13.1684 c 0.0000,0.4435 0.2864,0.6561 0.2864 0.6561c 0.2864,0.2125 0.7669,0.2125 0.7669 0.2125c 0.4805,0.0000 0.8131,-0.2033 0.8131 -0.2033c 0.3326,-0.2033 0.7023,-0.5729 0.7023 -0.5729v -1.6078 c -1.4600,0.2033 -2.0144,0.5914 -2.0144 0.5914c -0.5544,0.3881 -0.5544,0.9240 -0.5544 0.9240ZM 500.3029,15.9220 ZM 502.8532,5.4066 c -0.6838,-0.0000 -1.1273,-0.3973 -1.1273 -0.3973c -0.4435,-0.3973 -0.4435,-1.0257 -0.4435 -1.0257c 0.0000,-0.6283 0.4435,-1.0164 0.4435 -1.0164c 0.4435,-0.3881 1.1273,-0.3881 1.1273 -0.3881c 0.7023,0.0000 1.1366,0.3881 1.1366 0.3881c 0.4343,0.3881 0.4343,1.0164 0.4343 1.0164c 0.0000,0.6283 -0.4343,1.0257 -0.4343 1.0257c -0.4343,0.3973 -1.1366,0.3973 -1.1366 0.3973ZM 502.8532,5.4066 ZM 501.5041,6.7556 h 2.7166 v 9.1663 h -2.7166 v -9.1663 ZM 505.4035,15.9220 ZM 506.6047,2.9671 h 2.7166 v 10.2197 c 0.0000,0.4251 0.1571,0.5914 0.1571 0.5914c 0.1571,0.1663 0.3234,0.1663 0.3234 0.1663h 0.1571 c 0.0000,0.0000 0.1756,-0.0370 0.1756 -0.0370l 0.3326,2.0144 c -0.2218,0.0924 -0.5637,0.1571 -0.5637 0.1571c -0.3419,0.0647 -0.8039,0.0647 -0.8039 0.0647c -0.7023,-0.0000 -1.1828,-0.2218 -1.1828 -0.2218c -0.4805,-0.2218 -0.7669,-0.6191 -0.7669 -0.6191c -0.2864,-0.3973 -0.4158,-0.9610 -0.4158 -0.9610c -0.1294,-0.5637 -0.1294,-1.2659 -0.1294 -1.2659v -10.1088 ZM 510.6889,15.9220 ZM 511.3542,11.3388 c 0.0000,-1.1088 0.3696,-2.0051 0.3696 -2.0051c 0.3696,-0.8963 0.9702,-1.5154 0.9702 -1.5154c 0.6006,-0.6191 1.3768,-0.9517 1.3768 -0.9517c 0.7762,-0.3326 1.6078,-0.3326 1.6078 -0.3326c 0.9795,0.0000 1.7094,0.3326 1.7094 0.3326c 0.7300,0.3326 1.2197,0.9240 1.2197 0.9240c 0.4897,0.5914 0.7300,1.3953 0.7300 1.3953c 0.2402,0.8039 0.2402,1.7464 0.2402 1.7464c 0.0000,0.3696 -0.0370,0.6745 -0.0370 0.6745c -0.0370,0.3049 -0.0739,0.4713 -0.0739 0.4713h -5.4887 c 0.1848,1.0534 0.8224,1.5246 0.8224 1.5246c 0.6376,0.4713 1.5616,0.4713 1.5616 0.4713c 0.9795,0.0000 1.9774,-0.6099 1.9774 -0.6099l 0.9055,1.6448 c -0.7023,0.4805 -1.5616,0.7577 -1.5616 0.7577c -0.8593,0.2772 -1.6910,0.2772 -1.6910 0.2772c -0.9795,-0.0000 -1.8296,-0.3234 -1.8296 -0.3234c -0.8501,-0.3234 -1.4784,-0.9425 -1.4784 -0.9425c -0.6283,-0.6191 -0.9795,-1.5062 -0.9795 -1.5062c -0.3511,-0.8871 -0.3511,-2.0329 -0.3511 -2.0329ZM 511.3542,11.3388 ZM 517.2680,10.3963 c 0.0000,-0.7947 -0.3511,-1.2936 -0.3511 -1.2936c -0.3511,-0.4990 -1.1828,-0.4990 -1.1828 -0.4990c -0.6468,-0.0000 -1.1366,0.4343 -1.1366 0.4343c -0.4897,0.4343 -0.6376,1.3583 -0.6376 1.3583h 3.3080 ZM 520.2618,15.9220 ZM 520.9825,11.3388 c 0.0000,-1.1273 0.3234,-2.0144 0.3234 -2.0144c 0.3234,-0.8871 0.8501,-1.5062 0.8501 -1.5062c 0.5267,-0.6191 1.2197,-0.9517 1.2197 -0.9517c 0.6930,-0.3326 1.4138,-0.3326 1.4138 -0.3326c 0.7762,0.0000 1.2752,0.2587 1.2752 0.2587c 0.4990,0.2587 0.9795,0.7023 0.9795 0.7023l -0.1109,-1.4045 v -3.1232 h 2.7166 v 12.9548 h -2.2177 l -0.1848,-0.9055 h -0.0739 c -0.4805,0.4805 -1.1273,0.8039 -1.1273 0.8039c -0.6468,0.3234 -1.3121,0.3234 -1.3121 0.3234c -0.8501,-0.0000 -1.5431,-0.3326 -1.5431 -0.3326c -0.6930,-0.3326 -1.1828,-0.9517 -1.1828 -0.9517c -0.4897,-0.6191 -0.7577,-1.5062 -0.7577 -1.5062c -0.2680,-0.8871 -0.2680,-2.0144 -0.2680 -2.0144ZM 520.9825,11.3388 ZM 523.7731,11.3018 c 0.0000,1.3676 0.4343,1.9959 0.4343 1.9959c 0.4343,0.6283 1.2290,0.6283 1.2290 0.6283c 0.4435,0.0000 0.8039,-0.1848 0.8039 -0.1848c 0.3604,-0.1848 0.6930,-0.6468 0.6930 -0.6468v -3.7515 c -0.3696,-0.3326 -0.7577,-0.4620 -0.7577 -0.4620c -0.3881,-0.1294 -0.7577,-0.1294 -0.7577 -0.1294c -0.6468,-0.0000 -1.1458,0.6191 -1.1458 0.6191c -0.4990,0.6191 -0.4990,1.9312 -0.4990 1.9312ZM 534.6951,15.9220 ZM 535.3604,11.3388 c 0.0000,-1.1458 0.3881,-2.0421 0.3881 -2.0421c 0.3881,-0.8963 1.0441,-1.5062 1.0441 -1.5062c 0.6561,-0.6099 1.5246,-0.9333 1.5246 -0.9333c 0.8686,-0.3234 1.8111,-0.3234 1.8111 -0.3234c 0.8501,0.0000 1.5339,0.2864 1.5339 0.2864c 0.6838,0.2864 1.1458,0.7669 1.1458 0.7669l -1.2382,1.6817 c -0.6468,-0.5359 -1.2752,-0.5359 -1.2752 -0.5359c -0.9979,-0.0000 -1.5708,0.7023 -1.5708 0.7023c -0.5729,0.7023 -0.5729,1.9035 -0.5729 1.9035c 0.0000,1.2012 0.5821,1.9035 0.5821 1.9035c 0.5821,0.7023 1.4692,0.7023 1.4692 0.7023c 0.4990,0.0000 0.9055,-0.2033 0.9055 -0.2033c 0.4066,-0.2033 0.7392,-0.4620 0.7392 -0.4620l 1.0903,1.7187 c -0.6653,0.5914 -1.4784,0.8686 -1.4784 0.8686c -0.8131,0.2772 -1.5708,0.2772 -1.5708 0.2772c -0.9610,-0.0000 -1.7834,-0.3234 -1.7834 -0.3234c -0.8224,-0.3234 -1.4322,-0.9333 -1.4322 -0.9333c -0.6099,-0.6099 -0.9610,-1.5062 -0.9610 -1.5062c -0.3511,-0.8963 -0.3511,-2.0421 -0.3511 -2.0421ZM 542.8080,15.9220 ZM 543.4733,11.3388 c 0.0000,-1.1458 0.3696,-2.0421 0.3696 -2.0421c 0.3696,-0.8963 0.9887,-1.5062 0.9887 -1.5062c 0.6191,-0.6099 1.4322,-0.9333 1.4322 -0.9333c 0.8131,-0.3234 1.6817,-0.3234 1.6817 -0.3234c 0.8686,0.0000 1.6725,0.3234 1.6725 0.3234c 0.8039,0.3234 1.4230,0.9333 1.4230 0.9333c 0.6191,0.6099 0.9887,1.5062 0.9887 1.5062c 0.3696,0.8963 0.3696,2.0421 0.3696 2.0421c 0.0000,1.1458 -0.3696,2.0421 -0.3696 2.0421c -0.3696,0.8963 -0.9887,1.5062 -0.9887 1.5062c -0.6191,0.6099 -1.4230,0.9333 -1.4230 0.9333c -0.8039,0.3234 -1.6725,0.3234 -1.6725 0.3234c -0.8686,-0.0000 -1.6817,-0.3234 -1.6817 -0.3234c -0.8131,-0.3234 -1.4322,-0.9333 -1.4322 -0.9333c -0.6191,-0.6099 -0.9887,-1.5062 -0.9887 -1.5062c -0.3696,-0.8963 -0.3696,-2.0421 -0.3696 -2.0421ZM 543.4733,11.3388 ZM 546.2639,11.3388 c 0.0000,1.2012 0.4158,1.9035 0.4158 1.9035c 0.4158,0.7023 1.2659,0.7023 1.2659 0.7023c 0.8316,0.0000 1.2567,-0.7023 1.2567 -0.7023c 0.4251,-0.7023 0.4251,-1.9035 0.4251 -1.9035c 0.0000,-1.2012 -0.4251,-1.9035 -0.4251 -1.9035c -0.4251,-0.7023 -1.2567,-0.7023 -1.2567 -0.7023c -0.8501,-0.0000 -1.2659,0.7023 -1.2659 0.7023c -0.4158,0.7023 -0.4158,1.9035 -0.4158 1.9035ZM 553.0647,15.9220 ZM 554.2659,6.7556 h 2.2177 l 0.1848,1.1828 h 0.0739 c 0.5729,-0.5729 1.2197,-0.9887 1.2197 -0.9887c 0.6468,-0.4158 1.5524,-0.4158 1.5524 -0.4158c 0.9795,0.0000 1.5801,0.3973 1.5801 0.3973c 0.6006,0.3973 0.9517,1.1366 0.9517 1.1366c 0.6099,-0.6283 1.2844,-1.0811 1.2844 -1.0811c 0.6745,-0.4528 1.5986,-0.4528 1.5986 -0.4528c 1.4784,0.0000 2.1715,0.9887 2.1715 0.9887c 0.6930,0.9887 0.6930,2.7074 0.6930 2.7074v 5.6920 h -2.7166 v -5.3409 c 0.0000,-0.9979 -0.2680,-1.3676 -0.2680 -1.3676c -0.2680,-0.3696 -0.8593,-0.3696 -0.8593 -0.3696c -0.6838,-0.0000 -1.5708,0.8871 -1.5708 0.8871v 6.1910 h -2.7166 v -5.3409 c 0.0000,-0.9979 -0.2680,-1.3676 -0.2680 -1.3676c -0.2680,-0.3696 -0.8593,-0.3696 -0.8593 -0.3696c -0.7023,-0.0000 -1.5524,0.8871 -1.5524 0.8871v 6.1910 h -2.7166 v -9.1663 ZM 568.9025,15.9220 ZM 572.8203,16.6427 v 2.6797 h -2.7166 v -12.5667 h 2.2177 l 0.1848,0.9055 h 0.0739 c 0.5359,-0.4805 1.2105,-0.8039 1.2105 -0.8039c 0.6745,-0.3234 1.3953,-0.3234 1.3953 -0.3234c 0.8316,0.0000 1.4969,0.3326 1.4969 0.3326c 0.6653,0.3326 1.1273,0.9425 1.1273 0.9425c 0.4620,0.6099 0.7115,1.4692 0.7115 1.4692c 0.2495,0.8593 0.2495,1.9127 0.2495 1.9127c 0.0000,1.1828 -0.3234,2.0975 -0.3234 2.0975c -0.3234,0.9148 -0.8686,1.5524 -0.8686 1.5524c -0.5452,0.6376 -1.2382,0.9702 -1.2382 0.9702c -0.6930,0.3326 -1.4322,0.3326 -1.4322 0.3326c -0.5914,-0.0000 -1.1458,-0.2495 -1.1458 -0.2495c -0.5544,-0.2495 -1.0349,-0.7115 -1.0349 -0.7115ZM 572.8203,16.6427 ZM 572.8203,13.3347 c 0.3696,0.3326 0.7392,0.4620 0.7392 0.4620c 0.3696,0.1294 0.7207,0.1294 0.7207 0.1294c 0.7023,0.0000 1.2012,-0.6376 1.2012 -0.6376c 0.4990,-0.6376 0.4990,-2.0606 0.4990 -2.0606c 0.0000,-2.4764 -1.5893,-2.4764 -1.5893 -2.4764c -0.7947,-0.0000 -1.5708,0.8316 -1.5708 0.8316v 3.7515 ZM 579.2885,15.9220 ZM 580.1571,13.3717 c 0.0000,-1.4415 1.2197,-2.2546 1.2197 -2.2546c 1.2197,-0.8131 3.9363,-1.0903 3.9363 -1.0903c -0.0370,-0.6099 -0.3696,-0.9702 -0.3696 -0.9702c -0.3326,-0.3604 -1.0719,-0.3604 -1.0719 -0.3604c -0.5914,-0.0000 -1.1828,0.2218 -1.1828 0.2218c -0.5914,0.2218 -1.2567,0.6099 -1.2567 0.6099l -0.9610,-1.7926 c 0.8871,-0.5359 1.8573,-0.8686 1.8573 -0.8686c 0.9702,-0.3326 2.0606,-0.3326 2.0606 -0.3326c 1.7741,0.0000 2.7074,1.0072 2.7074 1.0072c 0.9333,1.0072 0.9333,3.1324 0.9333 3.1324v 5.2485 h -2.2177 l -0.2033,-0.9425 h -0.0554 c -0.5914,0.5175 -1.2474,0.8409 -1.2474 0.8409c -0.6561,0.3234 -1.4322,0.3234 -1.4322 0.3234c -0.6283,-0.0000 -1.1273,-0.2125 -1.1273 -0.2125c -0.4990,-0.2125 -0.8501,-0.5914 -0.8501 -0.5914c -0.3511,-0.3789 -0.5452,-0.8778 -0.5452 -0.8778c -0.1940,-0.4990 -0.1940,-1.0903 -0.1940 -1.0903ZM 580.1571,13.3717 ZM 582.7444,13.1684 c 0.0000,0.4435 0.2864,0.6561 0.2864 0.6561c 0.2864,0.2125 0.7669,0.2125 0.7669 0.2125c 0.4805,0.0000 0.8131,-0.2033 0.8131 -0.2033c 0.3326,-0.2033 0.7023,-0.5729 0.7023 -0.5729v -1.6078 c -1.4600,0.2033 -2.0144,0.5914 -2.0144 0.5914c -0.5544,0.3881 -0.5544,0.9240 -0.5544 0.9240ZM 589.1571,15.9220 ZM 590.3583,6.7556 h 2.2177 l 0.1848,1.6078 h 0.0739 c 0.4990,-0.9425 1.2012,-1.3860 1.2012 -1.3860c 0.7023,-0.4435 1.4045,-0.4435 1.4045 -0.4435c 0.3881,0.0000 0.6376,0.0462 0.6376 0.0462c 0.2495,0.0462 0.4528,0.1386 0.4528 0.1386l -0.4435,2.3470 c -0.2587,-0.0739 -0.4805,-0.1109 -0.4805 -0.1109c -0.2218,-0.0370 -0.5175,-0.0370 -0.5175 -0.0370c -0.5175,-0.0000 -1.0811,0.3696 -1.0811 0.3696c -0.5637,0.3696 -0.9333,1.3121 -0.9333 1.3121v 5.3224 h -2.7166 v -9.1663 ZM 596.5123,15.9220 ZM 599.0626,5.4066 c -0.6838,-0.0000 -1.1273,-0.3973 -1.1273 -0.3973c -0.4435,-0.3973 -0.4435,-1.0257 -0.4435 -1.0257c 0.0000,-0.6283 0.4435,-1.0164 0.4435 -1.0164c 0.4435,-0.3881 1.1273,-0.3881 1.1273 -0.3881c 0.7023,0.0000 1.1366,0.3881 1.1366 0.3881c 0.4343,0.3881 0.4343,1.0164 0.4343 1.0164c 0.0000,0.6283 -0.4343,1.0257 -0.4343 1.0257c -0.4343,0.3973 -1.1366,0.3973 -1.1366 0.3973ZM 599.0626,5.4066 ZM 597.7136,6.7556 h 2.7166 v 9.1663 h -2.7166 v -9.1663 ZM 601.6129,15.9220 ZM 603.2207,13.1684 c 0.6283,0.4805 1.2012,0.7207 1.2012 0.7207c 0.5729,0.2402 1.1643,0.2402 1.1643 0.2402c 0.6099,0.0000 0.8871,-0.2033 0.8871 -0.2033c 0.2772,-0.2033 0.2772,-0.5729 0.2772 -0.5729c 0.0000,-0.2218 -0.1571,-0.3973 -0.1571 -0.3973c -0.1571,-0.1756 -0.4251,-0.3234 -0.4251 -0.3234c -0.2680,-0.1478 -0.6006,-0.2680 -0.6006 -0.2680c -0.3326,-0.1201 -0.6838,-0.2680 -0.6838 -0.2680c -0.4251,-0.1663 -0.8501,-0.3881 -0.8501 -0.3881c -0.4251,-0.2218 -0.7762,-0.5452 -0.7762 -0.5452c -0.3511,-0.3234 -0.5729,-0.7577 -0.5729 -0.7577c -0.2218,-0.4343 -0.2218,-1.0072 -0.2218 -1.0072c 0.0000,-0.6283 0.2495,-1.1643 0.2495 -1.1643c 0.2495,-0.5359 0.7115,-0.9055 0.7115 -0.9055c 0.4620,-0.3696 1.1088,-0.5821 1.1088 -0.5821c 0.6468,-0.2125 1.4415,-0.2125 1.4415 -0.2125c 1.0534,0.0000 1.8480,0.3604 1.8480 0.3604c 0.7947,0.3604 1.3860,0.8039 1.3860 0.8039l -1.2197,1.6263 c -0.4990,-0.3696 -0.9795,-0.5729 -0.9795 -0.5729c -0.4805,-0.2033 -0.9610,-0.2033 -0.9610 -0.2033c -1.0349,-0.0000 -1.0349,0.7207 -1.0349 0.7207c 0.0000,0.2218 0.1478,0.3789 0.1478 0.3789c 0.1478,0.1571 0.3973,0.2864 0.3973 0.2864c 0.2495,0.1294 0.5729,0.2495 0.5729 0.2495c 0.3234,0.1201 0.6745,0.2495 0.6745 0.2495c 0.4435,0.1663 0.8778,0.3789 0.8778 0.3789c 0.4343,0.2125 0.7947,0.5267 0.7947 0.5267c 0.3604,0.3142 0.5821,0.7669 0.5821 0.7669c 0.2218,0.4528 0.2218,1.0811 0.2218 1.0811c 0.0000,0.6283 -0.2402,1.1643 -0.2402 1.1643c -0.2402,0.5359 -0.7207,0.9333 -0.7207 0.9333c -0.4805,0.3973 -1.1828,0.6283 -1.1828 0.6283c -0.7023,0.2310 -1.6263,0.2310 -1.6263 0.2310c -0.9055,-0.0000 -1.8573,-0.3511 -1.8573 -0.3511c -0.9517,-0.3511 -1.6540,-0.9240 -1.6540 -0.9240ZM 609.7998,15.9220 ZM 610.4651,11.3388 c 0.0000,-1.1458 0.3696,-2.0421 0.3696 -2.0421c 0.3696,-0.8963 0.9887,-1.5062 0.9887 -1.5062c 0.6191,-0.6099 1.4322,-0.9333 1.4322 -0.9333c 0.8131,-0.3234 1.6817,-0.3234 1.6817 -0.3234c 0.8686,0.0000 1.6725,0.3234 1.6725 0.3234c 0.8039,0.3234 1.4230,0.9333 1.4230 0.9333c 0.6191,0.6099 0.9887,1.5062 0.9887 1.5062c 0.3696,0.8963 0.3696,2.0421 0.3696 2.0421c 0.0000,1.1458 -0.3696,2.0421 -0.3696 2.0421c -0.3696,0.8963 -0.9887,1.5062 -0.9887 1.5062c -0.6191,0.6099 -1.4230,0.9333 -1.4230 0.9333c -0.8039,0.3234 -1.6725,0.3234 -1.6725 0.3234c -0.8686,-0.0000 -1.6817,-0.3234 -1.6817 -0.3234c -0.8131,-0.3234 -1.4322,-0.9333 -1.4322 -0.9333c -0.6191,-0.6099 -0.9887,-1.5062 -0.9887 -1.5062c -0.3696,-0.8963 -0.3696,-2.0421 -0.3696 -2.0421ZM 610.4651,11.3388 ZM 613.2556,11.3388 c 0.0000,1.2012 0.4158,1.9035 0.4158 1.9035c 0.4158,0.7023 1.2659,0.7023 1.2659 0.7023c 0.8316,0.0000 1.2567,-0.7023 1.2567 -0.7023c 0.4251,-0.7023 0.4251,-1.9035 0.4251 -1.9035c 0.0000,-1.2012 -0.4251,-1.9035 -0.4251 -1.9035c -0.4251,-0.7023 -1.2567,-0.7023 -1.2567 -0.7023c -0.8501,-0.0000 -1.2659,0.7023 -1.2659 0.7023c -0.4158,0.7023 -0.4158,1.9035 -0.4158 1.9035ZM 620.0565,15.9220 ZM 621.2577,6.7556 h 2.2177 l 0.1848,1.1643 h 0.0739 c 0.5914,-0.5544 1.2936,-0.9702 1.2936 -0.9702c 0.7023,-0.4158 1.6448,-0.4158 1.6448 -0.4158c 1.4969,0.0000 2.1715,0.9795 2.1715 0.9795c 0.6745,0.9795 0.6745,2.7166 0.6745 2.7166v 5.6920 h -2.7166 v -5.3409 c 0.0000,-0.9979 -0.2680,-1.3676 -0.2680 -1.3676c -0.2680,-0.3696 -0.8593,-0.3696 -0.8593 -0.3696c -0.5175,-0.0000 -0.8871,0.2310 -0.8871 0.2310c -0.3696,0.2310 -0.8131,0.6561 -0.8131 0.6561v 6.1910 h -2.7166 v -9.1663 ZM 630.6273,15.9220 ZM 632.2351,13.1684 c 0.6283,0.4805 1.2012,0.7207 1.2012 0.7207c 0.5729,0.2402 1.1643,0.2402 1.1643 0.2402c 0.6099,0.0000 0.8871,-0.2033 0.8871 -0.2033c 0.2772,-0.2033 0.2772,-0.5729 0.2772 -0.5729c 0.0000,-0.2218 -0.1571,-0.3973 -0.1571 -0.3973c -0.1571,-0.1756 -0.4251,-0.3234 -0.4251 -0.3234c -0.2680,-0.1478 -0.6006,-0.2680 -0.6006 -0.2680c -0.3326,-0.1201 -0.6838,-0.2680 -0.6838 -0.2680c -0.4251,-0.1663 -0.8501,-0.3881 -0.8501 -0.3881c -0.4251,-0.2218 -0.7762,-0.5452 -0.7762 -0.5452c -0.3511,-0.3234 -0.5729,-0.7577 -0.5729 -0.7577c -0.2218,-0.4343 -0.2218,-1.0072 -0.2218 -1.0072c 0.0000,-0.6283 0.2495,-1.1643 0.2495 -1.1643c 0.2495,-0.5359 0.7115,-0.9055 0.7115 -0.9055c 0.4620,-0.3696 1.1088,-0.5821 1.1088 -0.5821c 0.6468,-0.2125 1.4415,-0.2125 1.4415 -0.2125c 1.0534,0.0000 1.8480,0.3604 1.8480 0.3604c 0.7947,0.3604 1.3860,0.8039 1.3860 0.8039l -1.2197,1.6263 c -0.4990,-0.3696 -0.9795,-0.5729 -0.9795 -0.5729c -0.4805,-0.2033 -0.9610,-0.2033 -0.9610 -0.2033c -1.0349,-0.0000 -1.0349,0.7207 -1.0349 0.7207c 0.0000,0.2218 0.1478,0.3789 0.1478 0.3789c 0.1478,0.1571 0.3973,0.2864 0.3973 0.2864c 0.2495,0.1294 0.5729,0.2495 0.5729 0.2495c 0.3234,0.1201 0.6745,0.2495 0.6745 0.2495c 0.4435,0.1663 0.8778,0.3789 0.8778 0.3789c 0.4343,0.2125 0.7947,0.5267 0.7947 0.5267c 0.3604,0.3142 0.5821,0.7669 0.5821 0.7669c 0.2218,0.4528 0.2218,1.0811 0.2218 1.0811c 0.0000,0.6283 -0.2402,1.1643 -0.2402 1.1643c -0.2402,0.5359 -0.7207,0.9333 -0.7207 0.9333c -0.4805,0.3973 -1.1828,0.6283 -1.1828 0.6283c -0.7023,0.2310 -1.6263,0.2310 -1.6263 0.2310c -0.9055,-0.0000 -1.8573,-0.3511 -1.8573 -0.3511c -0.9517,-0.3511 -1.6540,-0.9240 -1.6540 -0.9240Z"+       id="path2" />+  </g>+  <g+     stroke-linejoin="miter"+     fill-opacity="0.0"+     stroke-dashoffset="0.0"+     fill="rgb(0,0,0)"+     stroke="rgb(211,211,211)"+     stroke-linecap="butt"+     stroke-miterlimit="10.0"+     stroke-opacity="1.0"+     stroke-dasharray="4.999999999999998,4.999999999999998"+     stroke-width="0.9999999999999997"+     id="g3">+    <path+       d="M 46.6786,534.0000 h 691.2027 "+       id="path3" />+  </g>+  <g+     stroke-linejoin="miter"+     fill-opacity="0.0"+     stroke-dashoffset="0.0"+     fill="rgb(0,0,0)"+     stroke="rgb(211,211,211)"+     stroke-linecap="butt"+     stroke-miterlimit="10.0"+     stroke-opacity="1.0"+     stroke-dasharray="4.999999999999998,4.999999999999998"+     stroke-width="0.9999999999999997"+     id="g4">+    <path+       d="M 46.6786,435.6000 h 691.2027 "+       id="path4" />+  </g>+  <g+     stroke-linejoin="miter"+     fill-opacity="0.0"+     stroke-dashoffset="0.0"+     fill="rgb(0,0,0)"+     stroke="rgb(211,211,211)"+     stroke-linecap="butt"+     stroke-miterlimit="10.0"+     stroke-opacity="1.0"+     stroke-dasharray="4.999999999999998,4.999999999999998"+     stroke-width="0.9999999999999997"+     id="g5">+    <path+       d="M 46.6786,337.2000 h 691.2027 "+       id="path5" />+  </g>+  <g+     stroke-linejoin="miter"+     fill-opacity="0.0"+     stroke-dashoffset="0.0"+     fill="rgb(0,0,0)"+     stroke="rgb(211,211,211)"+     stroke-linecap="butt"+     stroke-miterlimit="10.0"+     stroke-opacity="1.0"+     stroke-dasharray="4.999999999999998,4.999999999999998"+     stroke-width="0.9999999999999997"+     id="g6">+    <path+       d="M 46.6786,238.8000 h 691.2027 "+       id="path6" />+  </g>+  <g+     stroke-linejoin="miter"+     fill-opacity="0.0"+     stroke-dashoffset="0.0"+     fill="rgb(0,0,0)"+     stroke="rgb(211,211,211)"+     stroke-linecap="butt"+     stroke-miterlimit="10.0"+     stroke-opacity="1.0"+     stroke-dasharray="4.999999999999998,4.999999999999998"+     stroke-width="0.9999999999999997"+     id="g7">+    <path+       d="M 46.6786,140.4000 h 691.2027 "+       id="path7" />+  </g>+  <g+     stroke-linejoin="miter"+     fill-opacity="0.0"+     stroke-dashoffset="0.0"+     fill="rgb(0,0,0)"+     stroke="rgb(211,211,211)"+     stroke-linecap="butt"+     stroke-miterlimit="10.0"+     stroke-opacity="1.0"+     stroke-dasharray="4.999999999999998,4.999999999999998"+     stroke-width="0.9999999999999997"+     id="g8">+    <path+       d="M 46.6786,42.0000 h 691.2027 "+       id="path8" />+  </g>+  <g+     stroke-linejoin="bevel"+     fill-opacity="1.0"+     fill="rgb(0,0,255)"+     stroke="rgb(0,0,0)"+     stroke-linecap="butt"+     stroke-miterlimit="10.0"+     stroke-opacity="0.0"+     stroke-width="0.0"+     id="g11">+    <defs+       id="defs9">+      <clipPath+         id="myClip1">+        <path+           d="M 46.6786,42.0000 v 492.0000 h 691.2027 v -492.0000 Z"+           id="path9" />+      </clipPath>+    </defs>+    <g+       clip-path="url(#myClip1)"+       id="g10">+      <path+         d="M 61.6786,534.0000 v -395.5680 h 85.2005 v 395.5680 Z"+         id="path10" />+    </g>+  </g>+  <g+     stroke-linejoin="miter"+     fill-opacity="0.0"+     fill="rgb(0,0,0)"+     stroke="rgb(0,0,0)"+     stroke-linecap="butt"+     stroke-miterlimit="10.0"+     stroke-opacity="1.0"+     stroke-width="0.9999999999999997"+     id="g13">+    <defs+       id="defs11">+      <clipPath+         id="myClip2">+        <path+           d="M 46.6786,42.0000 v 492.0000 h 691.2027 v -492.0000 Z"+           id="path11" />+      </clipPath>+    </defs>+    <g+       clip-path="url(#myClip2)"+       id="g12">+      <path+         d="M 61.6786,534.0000 v -395.5680 h 85.2005 v 395.5680 Z"+         id="path12" />+    </g>+  </g>+  <g+     stroke-linejoin="bevel"+     fill-opacity="1.0"+     fill="rgb(0,0,255)"+     stroke="rgb(0,0,0)"+     stroke-linecap="butt"+     stroke-miterlimit="10.0"+     stroke-opacity="0.0"+     stroke-width="0.0"+     id="g15">+    <defs+       id="defs13">+      <clipPath+         id="myClip3">+        <path+           d="M 46.6786,42.0000 v 492.0000 h 691.2027 v -492.0000 Z"+           id="path13" />+      </clipPath>+    </defs>+    <g+       clip-path="url(#myClip3)"+       id="g14">+      <path+         d="M 176.8790,534.0000 v -397.5360 h 85.2005 v 397.5360 Z"+         id="path14" />+    </g>+  </g>+  <g+     stroke-linejoin="miter"+     fill-opacity="0.0"+     fill="rgb(0,0,0)"+     stroke="rgb(0,0,0)"+     stroke-linecap="butt"+     stroke-miterlimit="10.0"+     stroke-opacity="1.0"+     stroke-width="0.9999999999999997"+     id="g17">+    <defs+       id="defs15">+      <clipPath+         id="myClip4">+        <path+           d="M 46.6786,42.0000 v 492.0000 h 691.2027 v -492.0000 Z"+           id="path15" />+      </clipPath>+    </defs>+    <g+       clip-path="url(#myClip4)"+       id="g16">+      <path+         d="M 176.8790,534.0000 v -397.5360 h 85.2005 v 397.5360 Z"+         id="path16" />+    </g>+  </g>+  <g+     stroke-linejoin="bevel"+     fill-opacity="1.0"+     fill="rgb(0,0,255)"+     stroke="rgb(0,0,0)"+     stroke-linecap="butt"+     stroke-miterlimit="10.0"+     stroke-opacity="0.0"+     stroke-width="0.0"+     id="g19">+    <defs+       id="defs17">+      <clipPath+         id="myClip5">+        <path+           d="M 46.6786,42.0000 v 492.0000 h 691.2027 v -492.0000 Z"+           id="path17" />+      </clipPath>+    </defs>+    <g+       clip-path="url(#myClip5)"+       id="g18">+      <path+         d="M 292.0795,534.0000 v -7.8720 h 85.2005 v 7.8720 Z"+         id="path18" />+    </g>+  </g>+  <g+     stroke-linejoin="miter"+     fill-opacity="0.0"+     fill="rgb(0,0,0)"+     stroke="rgb(0,0,0)"+     stroke-linecap="butt"+     stroke-miterlimit="10.0"+     stroke-opacity="1.0"+     stroke-width="0.9999999999999997"+     id="g21">+    <defs+       id="defs19">+      <clipPath+         id="myClip6">+        <path+           d="M 46.6786,42.0000 v 492.0000 h 691.2027 v -492.0000 Z"+           id="path19" />+      </clipPath>+    </defs>+    <g+       clip-path="url(#myClip6)"+       id="g20">+      <path+         d="M 292.0795,534.0000 v -7.8720 h 85.2005 v 7.8720 Z"+         id="path20" />+    </g>+  </g>+  <g+     stroke-linejoin="bevel"+     fill-opacity="1.0"+     fill="rgb(0,0,255)"+     stroke="rgb(0,0,0)"+     stroke-linecap="butt"+     stroke-miterlimit="10.0"+     stroke-opacity="0.0"+     stroke-width="0.0"+     id="g23">+    <defs+       id="defs21">+      <clipPath+         id="myClip7">+        <path+           d="M 46.6786,42.0000 v 492.0000 h 691.2027 v -492.0000 Z"+           id="path21" />+      </clipPath>+    </defs>+    <g+       clip-path="url(#myClip7)"+       id="g22">+      <path+         d="M 407.2799,534.0000 v -100.3680 h 85.2005 v 100.3680 Z"+         id="path22" />+    </g>+  </g>+  <g+     stroke-linejoin="miter"+     fill-opacity="0.0"+     fill="rgb(0,0,0)"+     stroke="rgb(0,0,0)"+     stroke-linecap="butt"+     stroke-miterlimit="10.0"+     stroke-opacity="1.0"+     stroke-width="0.9999999999999997"+     id="g25">+    <defs+       id="defs23">+      <clipPath+         id="myClip8">+        <path+           d="M 46.6786,42.0000 v 492.0000 h 691.2027 v -492.0000 Z"+           id="path23" />+      </clipPath>+    </defs>+    <g+       clip-path="url(#myClip8)"+       id="g24">+      <path+         d="M 407.2799,534.0000 v -100.3680 h 85.2005 v 100.3680 Z"+         id="path24" />+    </g>+  </g>+  <g+     stroke-linejoin="bevel"+     fill-opacity="1.0"+     fill="rgb(0,0,255)"+     stroke="rgb(0,0,0)"+     stroke-linecap="butt"+     stroke-miterlimit="10.0"+     stroke-opacity="0.0"+     stroke-width="0.0"+     id="g27">+    <defs+       id="defs25">+      <clipPath+         id="myClip9">+        <path+           d="M 46.6786,42.0000 v 492.0000 h 691.2027 v -492.0000 Z"+           id="path25" />+      </clipPath>+    </defs>+    <g+       clip-path="url(#myClip9)"+       id="g26">+      <path+         d="M 522.4804,534.0000 v -21.6480 h 85.2005 v 21.6480 Z"+         id="path26" />+    </g>+  </g>+  <g+     stroke-linejoin="miter"+     fill-opacity="0.0"+     fill="rgb(0,0,0)"+     stroke="rgb(0,0,0)"+     stroke-linecap="butt"+     stroke-miterlimit="10.0"+     stroke-opacity="1.0"+     stroke-width="0.9999999999999997"+     id="g29">+    <defs+       id="defs27">+      <clipPath+         id="myClip10">+        <path+           d="M 46.6786,42.0000 v 492.0000 h 691.2027 v -492.0000 Z"+           id="path27" />+      </clipPath>+    </defs>+    <g+       clip-path="url(#myClip10)"+       id="g28">+      <path+         d="M 522.4804,534.0000 v -21.6480 h 85.2005 v 21.6480 Z"+         id="path28" />+    </g>+  </g>+  <g+     stroke-linejoin="bevel"+     fill-opacity="1.0"+     fill="rgb(0,0,255)"+     stroke="rgb(0,0,0)"+     stroke-linecap="butt"+     stroke-miterlimit="10.0"+     stroke-opacity="0.0"+     stroke-width="0.0"+     id="g31">+    <defs+       id="defs29">+      <clipPath+         id="myClip11">+        <path+           d="M 46.6786,42.0000 v 492.0000 h 691.2027 v -492.0000 Z"+           id="path29" />+      </clipPath>+    </defs>+    <g+       clip-path="url(#myClip11)"+       id="g30">+      <path+         d="M 637.6808,534.0000 v -1.9680 h 85.2005 v 1.9680 Z"+         id="path30" />+    </g>+  </g>+  <g+     stroke-linejoin="miter"+     fill-opacity="0.0"+     fill="rgb(0,0,0)"+     stroke="rgb(0,0,0)"+     stroke-linecap="butt"+     stroke-miterlimit="10.0"+     stroke-opacity="1.0"+     stroke-width="0.9999999999999997"+     id="g33">+    <defs+       id="defs31">+      <clipPath+         id="myClip12">+        <path+           d="M 46.6786,42.0000 v 492.0000 h 691.2027 v -492.0000 Z"+           id="path31" />+      </clipPath>+    </defs>+    <g+       clip-path="url(#myClip12)"+       id="g32">+      <path+         d="M 637.6808,534.0000 v -1.9680 h 85.2005 v 1.9680 Z"+         id="path32" />+    </g>+  </g>+  <g+     stroke-linejoin="miter"+     fill-opacity="0.0"+     fill="rgb(0,0,0)"+     stroke="rgb(0,0,0)"+     stroke-linecap="square"+     stroke-miterlimit="10.0"+     stroke-opacity="1.0"+     stroke-width="0.9999999999999997"+     id="g34">+    <path+       d="M 46.6786,534.0000 v -492.0000 "+       id="path33" />+  </g>+  <g+     stroke-linejoin="miter"+     fill-opacity="0.0"+     fill="rgb(0,0,0)"+     stroke="rgb(0,0,0)"+     stroke-linecap="butt"+     stroke-miterlimit="10.0"+     stroke-opacity="1.0"+     stroke-width="0.9999999999999997"+     id="g35">+    <path+       d="M 46.6786,534.0000 h 2.0000 "+       id="path34" />+  </g>+  <g+     stroke-linejoin="miter"+     fill-opacity="0.0"+     fill="rgb(0,0,0)"+     stroke="rgb(0,0,0)"+     stroke-linecap="butt"+     stroke-miterlimit="10.0"+     stroke-opacity="1.0"+     stroke-width="0.9999999999999997"+     id="g36">+    <path+       d="M 46.6786,484.8000 h 2.0000 "+       id="path35" />+  </g>+  <g+     stroke-linejoin="miter"+     fill-opacity="0.0"+     fill="rgb(0,0,0)"+     stroke="rgb(0,0,0)"+     stroke-linecap="butt"+     stroke-miterlimit="10.0"+     stroke-opacity="1.0"+     stroke-width="0.9999999999999997"+     id="g37">+    <path+       d="M 46.6786,435.6000 h 2.0000 "+       id="path36" />+  </g>+  <g+     stroke-linejoin="miter"+     fill-opacity="0.0"+     fill="rgb(0,0,0)"+     stroke="rgb(0,0,0)"+     stroke-linecap="butt"+     stroke-miterlimit="10.0"+     stroke-opacity="1.0"+     stroke-width="0.9999999999999997"+     id="g38">+    <path+       d="M 46.6786,386.4000 h 2.0000 "+       id="path37" />+  </g>+  <g+     stroke-linejoin="miter"+     fill-opacity="0.0"+     fill="rgb(0,0,0)"+     stroke="rgb(0,0,0)"+     stroke-linecap="butt"+     stroke-miterlimit="10.0"+     stroke-opacity="1.0"+     stroke-width="0.9999999999999997"+     id="g39">+    <path+       d="M 46.6786,337.2000 h 2.0000 "+       id="path38" />+  </g>+  <g+     stroke-linejoin="miter"+     fill-opacity="0.0"+     fill="rgb(0,0,0)"+     stroke="rgb(0,0,0)"+     stroke-linecap="butt"+     stroke-miterlimit="10.0"+     stroke-opacity="1.0"+     stroke-width="0.9999999999999997"+     id="g40">+    <path+       d="M 46.6786,288.0000 h 2.0000 "+       id="path39" />+  </g>+  <g+     stroke-linejoin="miter"+     fill-opacity="0.0"+     fill="rgb(0,0,0)"+     stroke="rgb(0,0,0)"+     stroke-linecap="butt"+     stroke-miterlimit="10.0"+     stroke-opacity="1.0"+     stroke-width="0.9999999999999997"+     id="g41">+    <path+       d="M 46.6786,238.8000 h 2.0000 "+       id="path40" />+  </g>+  <g+     stroke-linejoin="miter"+     fill-opacity="0.0"+     fill="rgb(0,0,0)"+     stroke="rgb(0,0,0)"+     stroke-linecap="butt"+     stroke-miterlimit="10.0"+     stroke-opacity="1.0"+     stroke-width="0.9999999999999997"+     id="g42">+    <path+       d="M 46.6786,189.6000 h 2.0000 "+       id="path41" />+  </g>+  <g+     stroke-linejoin="miter"+     fill-opacity="0.0"+     fill="rgb(0,0,0)"+     stroke="rgb(0,0,0)"+     stroke-linecap="butt"+     stroke-miterlimit="10.0"+     stroke-opacity="1.0"+     stroke-width="0.9999999999999997"+     id="g43">+    <path+       d="M 46.6786,140.4000 h 2.0000 "+       id="path42" />+  </g>+  <g+     stroke-linejoin="miter"+     fill-opacity="0.0"+     fill="rgb(0,0,0)"+     stroke="rgb(0,0,0)"+     stroke-linecap="butt"+     stroke-miterlimit="10.0"+     stroke-opacity="1.0"+     stroke-width="0.9999999999999997"+     id="g44">+    <path+       d="M 46.6786,91.2000 h 2.0000 "+       id="path43" />+  </g>+  <g+     stroke-linejoin="miter"+     fill-opacity="0.0"+     fill="rgb(0,0,0)"+     stroke="rgb(0,0,0)"+     stroke-linecap="butt"+     stroke-miterlimit="10.0"+     stroke-opacity="1.0"+     stroke-width="0.9999999999999997"+     id="g45">+    <path+       d="M 46.6786,42.0000 h 2.0000 "+       id="path44" />+  </g>+  <g+     stroke-linejoin="miter"+     fill-opacity="0.0"+     fill="rgb(0,0,0)"+     stroke="rgb(0,0,0)"+     stroke-linecap="butt"+     stroke-miterlimit="10.0"+     stroke-opacity="1.0"+     stroke-width="0.9999999999999997"+     id="g46">+    <path+       d="M 46.6786,534.0000 h 5.0000 "+       id="path45" />+  </g>+  <g+     stroke-linejoin="miter"+     fill-opacity="0.0"+     fill="rgb(0,0,0)"+     stroke="rgb(0,0,0)"+     stroke-linecap="butt"+     stroke-miterlimit="10.0"+     stroke-opacity="1.0"+     stroke-width="0.9999999999999997"+     id="g47">+    <path+       d="M 46.6786,435.6000 h 5.0000 "+       id="path46" />+  </g>+  <g+     stroke-linejoin="miter"+     fill-opacity="0.0"+     fill="rgb(0,0,0)"+     stroke="rgb(0,0,0)"+     stroke-linecap="butt"+     stroke-miterlimit="10.0"+     stroke-opacity="1.0"+     stroke-width="0.9999999999999997"+     id="g48">+    <path+       d="M 46.6786,337.2000 h 5.0000 "+       id="path47" />+  </g>+  <g+     stroke-linejoin="miter"+     fill-opacity="0.0"+     fill="rgb(0,0,0)"+     stroke="rgb(0,0,0)"+     stroke-linecap="butt"+     stroke-miterlimit="10.0"+     stroke-opacity="1.0"+     stroke-width="0.9999999999999997"+     id="g49">+    <path+       d="M 46.6786,238.8000 h 5.0000 "+       id="path48" />+  </g>+  <g+     stroke-linejoin="miter"+     fill-opacity="0.0"+     fill="rgb(0,0,0)"+     stroke="rgb(0,0,0)"+     stroke-linecap="butt"+     stroke-miterlimit="10.0"+     stroke-opacity="1.0"+     stroke-width="0.9999999999999997"+     id="g50">+    <path+       d="M 46.6786,140.4000 h 5.0000 "+       id="path49" />+  </g>+  <g+     stroke-linejoin="miter"+     fill-opacity="0.0"+     fill="rgb(0,0,0)"+     stroke="rgb(0,0,0)"+     stroke-linecap="butt"+     stroke-miterlimit="10.0"+     stroke-opacity="1.0"+     stroke-width="0.9999999999999997"+     id="g51">+    <path+       d="M 46.6786,42.0000 h 5.0000 "+       id="path50" />+  </g>+  <g+     stroke-linejoin="bevel"+     fill-opacity="1.0"+     fill="rgb(0,0,0)"+     stroke="rgb(0,0,0)"+     stroke-linecap="butt"+     stroke-miterlimit="10.0"+     stroke-opacity="0.0"+     stroke-width="0.0"+     id="g52">+    <path+       d="M 28.9454,540.2017 ZM 33.6534,540.4286 c -1.8340,-0.0000 -2.8550,-1.6261 -2.8550 -1.6261c -1.0210,-1.6261 -1.0210,-4.6702 -1.0210 -4.6702c 0.0000,-3.0441 1.0210,-4.6324 1.0210 -4.6324c 1.0210,-1.5882 2.8550,-1.5882 2.8550 -1.5882c 1.8151,0.0000 2.8361,1.5882 2.8361 1.5882c 1.0210,1.5882 1.0210,4.6324 1.0210 4.6324c 0.0000,3.0441 -1.0210,4.6702 -1.0210 4.6702c -1.0210,1.6261 -2.8361,1.6261 -2.8361 1.6261ZM 33.6534,540.4286 ZM 33.6534,539.1807 c 0.5294,0.0000 0.9548,-0.2931 0.9548 -0.2931c 0.4254,-0.2931 0.7374,-0.9076 0.7374 -0.9076c 0.3120,-0.6145 0.4821,-1.5693 0.4821 -1.5693c 0.1702,-0.9548 0.1702,-2.2784 0.1702 -2.2784c 0.0000,-1.3235 -0.1702,-2.2689 -0.1702 -2.2689c -0.1702,-0.9454 -0.4821,-1.5410 -0.4821 -1.5410c -0.3120,-0.5956 -0.7374,-0.8792 -0.7374 -0.8792c -0.4254,-0.2836 -0.9548,-0.2836 -0.9548 -0.2836c -0.5294,-0.0000 -0.9643,0.2836 -0.9643 0.2836c -0.4349,0.2836 -0.7468,0.8792 -0.7468 0.8792c -0.3120,0.5956 -0.4821,1.5410 -0.4821 1.5410c -0.1702,0.9454 -0.1702,2.2689 -0.1702 2.2689c 0.0000,2.6471 0.6523,3.8477 0.6523 3.8477c 0.6523,1.2006 1.7111,1.2006 1.7111 1.2006Z"+       id="path51" />+  </g>+  <g+     stroke-linejoin="bevel"+     fill-opacity="1.0"+     fill="rgb(0,0,0)"+     stroke="rgb(0,0,0)"+     stroke-linecap="butt"+     stroke-miterlimit="10.0"+     stroke-opacity="0.0"+     stroke-width="0.0"+     id="g53">+    <path+       d="M 19.1891,441.8017 ZM 20.4181,439.3626 c 0.5294,0.5483 1.2574,0.9643 1.2574 0.9643c 0.7279,0.4160 1.7868,0.4160 1.7868 0.4160c 0.5483,0.0000 1.0305,-0.1985 1.0305 -0.1985c 0.4821,-0.1985 0.8414,-0.5578 0.8414 -0.5578c 0.3592,-0.3592 0.5672,-0.8697 0.5672 -0.8697c 0.2080,-0.5105 0.2080,-1.1345 0.2080 -1.1345c 0.0000,-1.2479 -0.6996,-1.9475 -0.6996 -1.9475c -0.6996,-0.6996 -1.8718,-0.6996 -1.8718 -0.6996c -0.6239,-0.0000 -1.0683,0.1891 -1.0683 0.1891c -0.4443,0.1891 -0.9926,0.5483 -0.9926 0.5483l -0.8319,-0.5294 l 0.3971,-5.8046 h 6.0315 v 1.3424 h -4.6702 l -0.3214,3.5735 c 0.4349,-0.2269 0.8697,-0.3592 0.8697 -0.3592c 0.4349,-0.1324 0.9832,-0.1324 0.9832 -0.1324c 0.7752,0.0000 1.4559,0.2269 1.4559 0.2269c 0.6807,0.2269 1.1912,0.6901 1.1912 0.6901c 0.5105,0.4632 0.8036,1.1723 0.8036 1.1723c 0.2931,0.7090 0.2931,1.6922 0.2931 1.6922c 0.0000,0.9832 -0.3403,1.7395 -0.3403 1.7395c -0.3403,0.7563 -0.9076,1.2763 -0.9076 1.2763c -0.5672,0.5200 -1.2952,0.7941 -1.2952 0.7941c -0.7279,0.2742 -1.5221,0.2742 -1.5221 0.2742c -0.7185,-0.0000 -1.3141,-0.1418 -1.3141 -0.1418c -0.5956,-0.1418 -1.0777,-0.3687 -1.0777 -0.3687c -0.4821,-0.2269 -0.8697,-0.5200 -0.8697 -0.5200c -0.3876,-0.2931 -0.6901,-0.6145 -0.6901 -0.6145ZM 28.5861,441.8017 ZM 33.2941,442.0286 c -1.8340,-0.0000 -2.8550,-1.6261 -2.8550 -1.6261c -1.0210,-1.6261 -1.0210,-4.6702 -1.0210 -4.6702c 0.0000,-3.0441 1.0210,-4.6324 1.0210 -4.6324c 1.0210,-1.5882 2.8550,-1.5882 2.8550 -1.5882c 1.8151,0.0000 2.8361,1.5882 2.8361 1.5882c 1.0210,1.5882 1.0210,4.6324 1.0210 4.6324c 0.0000,3.0441 -1.0210,4.6702 -1.0210 4.6702c -1.0210,1.6261 -2.8361,1.6261 -2.8361 1.6261ZM 33.2941,442.0286 ZM 33.2941,440.7807 c 0.5294,0.0000 0.9548,-0.2931 0.9548 -0.2931c 0.4254,-0.2931 0.7374,-0.9076 0.7374 -0.9076c 0.3120,-0.6145 0.4821,-1.5693 0.4821 -1.5693c 0.1702,-0.9548 0.1702,-2.2784 0.1702 -2.2784c 0.0000,-1.3235 -0.1702,-2.2689 -0.1702 -2.2689c -0.1702,-0.9454 -0.4821,-1.5410 -0.4821 -1.5410c -0.3120,-0.5956 -0.7374,-0.8792 -0.7374 -0.8792c -0.4254,-0.2836 -0.9548,-0.2836 -0.9548 -0.2836c -0.5294,-0.0000 -0.9643,0.2836 -0.9643 0.2836c -0.4349,0.2836 -0.7468,0.8792 -0.7468 0.8792c -0.3120,0.5956 -0.4821,1.5410 -0.4821 1.5410c -0.1702,0.9454 -0.1702,2.2689 -0.1702 2.2689c 0.0000,2.6471 0.6523,3.8477 0.6523 3.8477c 0.6523,1.2006 1.7111,1.2006 1.7111 1.2006Z"+       id="path52" />+  </g>+  <g+     stroke-linejoin="bevel"+     fill-opacity="1.0"+     fill="rgb(0,0,0)"+     stroke="rgb(0,0,0)"+     stroke-linecap="butt"+     stroke-miterlimit="10.0"+     stroke-opacity="0.0"+     stroke-width="0.0"+     id="g54">+    <path+       d="M 10.8130,343.4017 ZM 12.3067,342.1160 h 2.7605 v -8.8866 h -2.1933 v -1.0021 c 0.8319,-0.1513 1.4464,-0.3687 1.4464 -0.3687c 0.6145,-0.2174 1.1061,-0.5200 1.1061 -0.5200h 1.1912 v 10.7773 h 2.4958 v 1.2857 h -6.8067 v -1.2857 ZM 20.2101,343.4017 ZM 24.9181,343.6286 c -1.8340,-0.0000 -2.8550,-1.6261 -2.8550 -1.6261c -1.0210,-1.6261 -1.0210,-4.6702 -1.0210 -4.6702c 0.0000,-3.0441 1.0210,-4.6324 1.0210 -4.6324c 1.0210,-1.5882 2.8550,-1.5882 2.8550 -1.5882c 1.8151,0.0000 2.8361,1.5882 2.8361 1.5882c 1.0210,1.5882 1.0210,4.6324 1.0210 4.6324c 0.0000,3.0441 -1.0210,4.6702 -1.0210 4.6702c -1.0210,1.6261 -2.8361,1.6261 -2.8361 1.6261ZM 24.9181,343.6286 ZM 24.9181,342.3807 c 0.5294,0.0000 0.9548,-0.2931 0.9548 -0.2931c 0.4254,-0.2931 0.7374,-0.9076 0.7374 -0.9076c 0.3120,-0.6145 0.4821,-1.5693 0.4821 -1.5693c 0.1702,-0.9548 0.1702,-2.2784 0.1702 -2.2784c 0.0000,-1.3235 -0.1702,-2.2689 -0.1702 -2.2689c -0.1702,-0.9454 -0.4821,-1.5410 -0.4821 -1.5410c -0.3120,-0.5956 -0.7374,-0.8792 -0.7374 -0.8792c -0.4254,-0.2836 -0.9548,-0.2836 -0.9548 -0.2836c -0.5294,-0.0000 -0.9643,0.2836 -0.9643 0.2836c -0.4349,0.2836 -0.7468,0.8792 -0.7468 0.8792c -0.3120,0.5956 -0.4821,1.5410 -0.4821 1.5410c -0.1702,0.9454 -0.1702,2.2689 -0.1702 2.2689c 0.0000,2.6471 0.6523,3.8477 0.6523 3.8477c 0.6523,1.2006 1.7111,1.2006 1.7111 1.2006ZM 29.6071,343.4017 ZM 34.3151,343.6286 c -1.8340,-0.0000 -2.8550,-1.6261 -2.8550 -1.6261c -1.0210,-1.6261 -1.0210,-4.6702 -1.0210 -4.6702c 0.0000,-3.0441 1.0210,-4.6324 1.0210 -4.6324c 1.0210,-1.5882 2.8550,-1.5882 2.8550 -1.5882c 1.8151,0.0000 2.8361,1.5882 2.8361 1.5882c 1.0210,1.5882 1.0210,4.6324 1.0210 4.6324c 0.0000,3.0441 -1.0210,4.6702 -1.0210 4.6702c -1.0210,1.6261 -2.8361,1.6261 -2.8361 1.6261ZM 34.3151,343.6286 ZM 34.3151,342.3807 c 0.5294,0.0000 0.9548,-0.2931 0.9548 -0.2931c 0.4254,-0.2931 0.7374,-0.9076 0.7374 -0.9076c 0.3120,-0.6145 0.4821,-1.5693 0.4821 -1.5693c 0.1702,-0.9548 0.1702,-2.2784 0.1702 -2.2784c 0.0000,-1.3235 -0.1702,-2.2689 -0.1702 -2.2689c -0.1702,-0.9454 -0.4821,-1.5410 -0.4821 -1.5410c -0.3120,-0.5956 -0.7374,-0.8792 -0.7374 -0.8792c -0.4254,-0.2836 -0.9548,-0.2836 -0.9548 -0.2836c -0.5294,-0.0000 -0.9643,0.2836 -0.9643 0.2836c -0.4349,0.2836 -0.7468,0.8792 -0.7468 0.8792c -0.3120,0.5956 -0.4821,1.5410 -0.4821 1.5410c -0.1702,0.9454 -0.1702,2.2689 -0.1702 2.2689c 0.0000,2.6471 0.6523,3.8477 0.6523 3.8477c 0.6523,1.2006 1.7111,1.2006 1.7111 1.2006Z"+       id="path53" />+  </g>+  <g+     stroke-linejoin="bevel"+     fill-opacity="1.0"+     fill="rgb(0,0,0)"+     stroke="rgb(0,0,0)"+     stroke-linecap="butt"+     stroke-miterlimit="10.0"+     stroke-opacity="0.0"+     stroke-width="0.0"+     id="g55">+    <path+       d="M 10.8130,245.0017 ZM 12.3067,243.7160 h 2.7605 v -8.8866 h -2.1933 v -1.0021 c 0.8319,-0.1513 1.4464,-0.3687 1.4464 -0.3687c 0.6145,-0.2174 1.1061,-0.5200 1.1061 -0.5200h 1.1912 v 10.7773 h 2.4958 v 1.2857 h -6.8067 v -1.2857 ZM 20.2101,245.0017 ZM 21.4391,242.5626 c 0.5294,0.5483 1.2574,0.9643 1.2574 0.9643c 0.7279,0.4160 1.7868,0.4160 1.7868 0.4160c 0.5483,0.0000 1.0305,-0.1985 1.0305 -0.1985c 0.4821,-0.1985 0.8414,-0.5578 0.8414 -0.5578c 0.3592,-0.3592 0.5672,-0.8697 0.5672 -0.8697c 0.2080,-0.5105 0.2080,-1.1345 0.2080 -1.1345c 0.0000,-1.2479 -0.6996,-1.9475 -0.6996 -1.9475c -0.6996,-0.6996 -1.8718,-0.6996 -1.8718 -0.6996c -0.6239,-0.0000 -1.0683,0.1891 -1.0683 0.1891c -0.4443,0.1891 -0.9926,0.5483 -0.9926 0.5483l -0.8319,-0.5294 l 0.3971,-5.8046 h 6.0315 v 1.3424 h -4.6702 l -0.3214,3.5735 c 0.4349,-0.2269 0.8697,-0.3592 0.8697 -0.3592c 0.4349,-0.1324 0.9832,-0.1324 0.9832 -0.1324c 0.7752,0.0000 1.4559,0.2269 1.4559 0.2269c 0.6807,0.2269 1.1912,0.6901 1.1912 0.6901c 0.5105,0.4632 0.8036,1.1723 0.8036 1.1723c 0.2931,0.7090 0.2931,1.6922 0.2931 1.6922c 0.0000,0.9832 -0.3403,1.7395 -0.3403 1.7395c -0.3403,0.7563 -0.9076,1.2763 -0.9076 1.2763c -0.5672,0.5200 -1.2952,0.7941 -1.2952 0.7941c -0.7279,0.2742 -1.5221,0.2742 -1.5221 0.2742c -0.7185,-0.0000 -1.3141,-0.1418 -1.3141 -0.1418c -0.5956,-0.1418 -1.0777,-0.3687 -1.0777 -0.3687c -0.4821,-0.2269 -0.8697,-0.5200 -0.8697 -0.5200c -0.3876,-0.2931 -0.6901,-0.6145 -0.6901 -0.6145ZM 29.6071,245.0017 ZM 34.3151,245.2286 c -1.8340,-0.0000 -2.8550,-1.6261 -2.8550 -1.6261c -1.0210,-1.6261 -1.0210,-4.6702 -1.0210 -4.6702c 0.0000,-3.0441 1.0210,-4.6324 1.0210 -4.6324c 1.0210,-1.5882 2.8550,-1.5882 2.8550 -1.5882c 1.8151,0.0000 2.8361,1.5882 2.8361 1.5882c 1.0210,1.5882 1.0210,4.6324 1.0210 4.6324c 0.0000,3.0441 -1.0210,4.6702 -1.0210 4.6702c -1.0210,1.6261 -2.8361,1.6261 -2.8361 1.6261ZM 34.3151,245.2286 ZM 34.3151,243.9807 c 0.5294,0.0000 0.9548,-0.2931 0.9548 -0.2931c 0.4254,-0.2931 0.7374,-0.9076 0.7374 -0.9076c 0.3120,-0.6145 0.4821,-1.5693 0.4821 -1.5693c 0.1702,-0.9548 0.1702,-2.2784 0.1702 -2.2784c 0.0000,-1.3235 -0.1702,-2.2689 -0.1702 -2.2689c -0.1702,-0.9454 -0.4821,-1.5410 -0.4821 -1.5410c -0.3120,-0.5956 -0.7374,-0.8792 -0.7374 -0.8792c -0.4254,-0.2836 -0.9548,-0.2836 -0.9548 -0.2836c -0.5294,-0.0000 -0.9643,0.2836 -0.9643 0.2836c -0.4349,0.2836 -0.7468,0.8792 -0.7468 0.8792c -0.3120,0.5956 -0.4821,1.5410 -0.4821 1.5410c -0.1702,0.9454 -0.1702,2.2689 -0.1702 2.2689c 0.0000,2.6471 0.6523,3.8477 0.6523 3.8477c 0.6523,1.2006 1.7111,1.2006 1.7111 1.2006Z"+       id="path54" />+  </g>+  <g+     stroke-linejoin="bevel"+     fill-opacity="1.0"+     fill="rgb(0,0,0)"+     stroke="rgb(0,0,0)"+     stroke-linecap="butt"+     stroke-miterlimit="10.0"+     stroke-opacity="0.0"+     stroke-width="0.0"+     id="g56">+    <path+       d="M 10.0000,146.6017 ZM 10.7563,145.6752 c 1.3613,-1.3613 2.4202,-2.4580 2.4202 -2.4580c 1.0588,-1.0966 1.7773,-2.0326 1.7773 -2.0326c 0.7185,-0.9359 1.0966,-1.7206 1.0966 -1.7206c 0.3782,-0.7847 0.3782,-1.5221 0.3782 -1.5221c 0.0000,-1.0399 -0.5672,-1.7017 -0.5672 -1.7017c -0.5672,-0.6618 -1.7206,-0.6618 -1.7206 -0.6618c -0.7563,-0.0000 -1.3992,0.4254 -1.3992 0.4254c -0.6429,0.4254 -1.1723,1.0305 -1.1723 1.0305l -0.8887,-0.8887 c 0.7563,-0.8319 1.6071,-1.3330 1.6071 -1.3330c 0.8508,-0.5011 2.0420,-0.5011 2.0420 -0.5011c 1.6828,0.0000 2.6471,0.9737 2.6471 0.9737c 0.9643,0.9737 0.9643,2.5809 0.9643 2.5809c 0.0000,0.8508 -0.3687,1.7111 -0.3687 1.7111c -0.3687,0.8603 -1.0210,1.7773 -1.0210 1.7773c -0.6523,0.9170 -1.5504,1.9097 -1.5504 1.9097c -0.8981,0.9926 -1.9758,2.1082 -1.9758 2.1082c 0.4916,-0.0378 1.0210,-0.0756 1.0210 -0.0756c 0.5294,-0.0378 1.0021,-0.0378 1.0021 -0.0378h 3.4979 v 1.3424 h -7.7899 v -0.9265 ZM 19.3971,146.6017 ZM 24.1050,146.8286 c -1.8340,-0.0000 -2.8550,-1.6261 -2.8550 -1.6261c -1.0210,-1.6261 -1.0210,-4.6702 -1.0210 -4.6702c 0.0000,-3.0441 1.0210,-4.6324 1.0210 -4.6324c 1.0210,-1.5882 2.8550,-1.5882 2.8550 -1.5882c 1.8151,0.0000 2.8361,1.5882 2.8361 1.5882c 1.0210,1.5882 1.0210,4.6324 1.0210 4.6324c 0.0000,3.0441 -1.0210,4.6702 -1.0210 4.6702c -1.0210,1.6261 -2.8361,1.6261 -2.8361 1.6261ZM 24.1050,146.8286 ZM 24.1050,145.5807 c 0.5294,0.0000 0.9548,-0.2931 0.9548 -0.2931c 0.4254,-0.2931 0.7374,-0.9076 0.7374 -0.9076c 0.3120,-0.6145 0.4821,-1.5693 0.4821 -1.5693c 0.1702,-0.9548 0.1702,-2.2784 0.1702 -2.2784c 0.0000,-1.3235 -0.1702,-2.2689 -0.1702 -2.2689c -0.1702,-0.9454 -0.4821,-1.5410 -0.4821 -1.5410c -0.3120,-0.5956 -0.7374,-0.8792 -0.7374 -0.8792c -0.4254,-0.2836 -0.9548,-0.2836 -0.9548 -0.2836c -0.5294,-0.0000 -0.9643,0.2836 -0.9643 0.2836c -0.4349,0.2836 -0.7468,0.8792 -0.7468 0.8792c -0.3120,0.5956 -0.4821,1.5410 -0.4821 1.5410c -0.1702,0.9454 -0.1702,2.2689 -0.1702 2.2689c 0.0000,2.6471 0.6523,3.8477 0.6523 3.8477c 0.6523,1.2006 1.7111,1.2006 1.7111 1.2006ZM 28.7941,146.6017 ZM 33.5021,146.8286 c -1.8340,-0.0000 -2.8550,-1.6261 -2.8550 -1.6261c -1.0210,-1.6261 -1.0210,-4.6702 -1.0210 -4.6702c 0.0000,-3.0441 1.0210,-4.6324 1.0210 -4.6324c 1.0210,-1.5882 2.8550,-1.5882 2.8550 -1.5882c 1.8151,0.0000 2.8361,1.5882 2.8361 1.5882c 1.0210,1.5882 1.0210,4.6324 1.0210 4.6324c 0.0000,3.0441 -1.0210,4.6702 -1.0210 4.6702c -1.0210,1.6261 -2.8361,1.6261 -2.8361 1.6261ZM 33.5021,146.8286 ZM 33.5021,145.5807 c 0.5294,0.0000 0.9548,-0.2931 0.9548 -0.2931c 0.4254,-0.2931 0.7374,-0.9076 0.7374 -0.9076c 0.3120,-0.6145 0.4821,-1.5693 0.4821 -1.5693c 0.1702,-0.9548 0.1702,-2.2784 0.1702 -2.2784c 0.0000,-1.3235 -0.1702,-2.2689 -0.1702 -2.2689c -0.1702,-0.9454 -0.4821,-1.5410 -0.4821 -1.5410c -0.3120,-0.5956 -0.7374,-0.8792 -0.7374 -0.8792c -0.4254,-0.2836 -0.9548,-0.2836 -0.9548 -0.2836c -0.5294,-0.0000 -0.9643,0.2836 -0.9643 0.2836c -0.4349,0.2836 -0.7468,0.8792 -0.7468 0.8792c -0.3120,0.5956 -0.4821,1.5410 -0.4821 1.5410c -0.1702,0.9454 -0.1702,2.2689 -0.1702 2.2689c 0.0000,2.6471 0.6523,3.8477 0.6523 3.8477c 0.6523,1.2006 1.7111,1.2006 1.7111 1.2006Z"+       id="path55" />+  </g>+  <g+     stroke-linejoin="bevel"+     fill-opacity="1.0"+     fill="rgb(0,0,0)"+     stroke="rgb(0,0,0)"+     stroke-linecap="butt"+     stroke-miterlimit="10.0"+     stroke-opacity="0.0"+     stroke-width="0.0"+     id="g57">+    <path+       d="M 10.0000,48.2017 ZM 10.7563,47.2752 c 1.3613,-1.3613 2.4202,-2.4580 2.4202 -2.4580c 1.0588,-1.0966 1.7773,-2.0326 1.7773 -2.0326c 0.7185,-0.9359 1.0966,-1.7206 1.0966 -1.7206c 0.3782,-0.7847 0.3782,-1.5221 0.3782 -1.5221c 0.0000,-1.0399 -0.5672,-1.7017 -0.5672 -1.7017c -0.5672,-0.6618 -1.7206,-0.6618 -1.7206 -0.6618c -0.7563,-0.0000 -1.3992,0.4254 -1.3992 0.4254c -0.6429,0.4254 -1.1723,1.0305 -1.1723 1.0305l -0.8887,-0.8887 c 0.7563,-0.8319 1.6071,-1.3330 1.6071 -1.3330c 0.8508,-0.5011 2.0420,-0.5011 2.0420 -0.5011c 1.6828,0.0000 2.6471,0.9737 2.6471 0.9737c 0.9643,0.9737 0.9643,2.5809 0.9643 2.5809c 0.0000,0.8508 -0.3687,1.7111 -0.3687 1.7111c -0.3687,0.8603 -1.0210,1.7773 -1.0210 1.7773c -0.6523,0.9170 -1.5504,1.9097 -1.5504 1.9097c -0.8981,0.9926 -1.9758,2.1082 -1.9758 2.1082c 0.4916,-0.0378 1.0210,-0.0756 1.0210 -0.0756c 0.5294,-0.0378 1.0021,-0.0378 1.0021 -0.0378h 3.4979 v 1.3424 h -7.7899 v -0.9265 ZM 19.3971,48.2017 ZM 20.6261,45.7626 c 0.5294,0.5483 1.2574,0.9643 1.2574 0.9643c 0.7279,0.4160 1.7868,0.4160 1.7868 0.4160c 0.5483,0.0000 1.0305,-0.1985 1.0305 -0.1985c 0.4821,-0.1985 0.8414,-0.5578 0.8414 -0.5578c 0.3592,-0.3592 0.5672,-0.8697 0.5672 -0.8697c 0.2080,-0.5105 0.2080,-1.1345 0.2080 -1.1345c 0.0000,-1.2479 -0.6996,-1.9475 -0.6996 -1.9475c -0.6996,-0.6996 -1.8718,-0.6996 -1.8718 -0.6996c -0.6239,-0.0000 -1.0683,0.1891 -1.0683 0.1891c -0.4443,0.1891 -0.9926,0.5483 -0.9926 0.5483l -0.8319,-0.5294 l 0.3971,-5.8046 h 6.0315 v 1.3424 h -4.6702 l -0.3214,3.5735 c 0.4349,-0.2269 0.8697,-0.3592 0.8697 -0.3592c 0.4349,-0.1324 0.9832,-0.1324 0.9832 -0.1324c 0.7752,0.0000 1.4559,0.2269 1.4559 0.2269c 0.6807,0.2269 1.1912,0.6901 1.1912 0.6901c 0.5105,0.4632 0.8036,1.1723 0.8036 1.1723c 0.2931,0.7090 0.2931,1.6922 0.2931 1.6922c 0.0000,0.9832 -0.3403,1.7395 -0.3403 1.7395c -0.3403,0.7563 -0.9076,1.2763 -0.9076 1.2763c -0.5672,0.5200 -1.2952,0.7941 -1.2952 0.7941c -0.7279,0.2742 -1.5221,0.2742 -1.5221 0.2742c -0.7185,-0.0000 -1.3141,-0.1418 -1.3141 -0.1418c -0.5956,-0.1418 -1.0777,-0.3687 -1.0777 -0.3687c -0.4821,-0.2269 -0.8697,-0.5200 -0.8697 -0.5200c -0.3876,-0.2931 -0.6901,-0.6145 -0.6901 -0.6145ZM 28.7941,48.2017 ZM 33.5021,48.4286 c -1.8340,-0.0000 -2.8550,-1.6261 -2.8550 -1.6261c -1.0210,-1.6261 -1.0210,-4.6702 -1.0210 -4.6702c 0.0000,-3.0441 1.0210,-4.6324 1.0210 -4.6324c 1.0210,-1.5882 2.8550,-1.5882 2.8550 -1.5882c 1.8151,0.0000 2.8361,1.5882 2.8361 1.5882c 1.0210,1.5882 1.0210,4.6324 1.0210 4.6324c 0.0000,3.0441 -1.0210,4.6702 -1.0210 4.6702c -1.0210,1.6261 -2.8361,1.6261 -2.8361 1.6261ZM 33.5021,48.4286 ZM 33.5021,47.1807 c 0.5294,0.0000 0.9548,-0.2931 0.9548 -0.2931c 0.4254,-0.2931 0.7374,-0.9076 0.7374 -0.9076c 0.3120,-0.6145 0.4821,-1.5693 0.4821 -1.5693c 0.1702,-0.9548 0.1702,-2.2784 0.1702 -2.2784c 0.0000,-1.3235 -0.1702,-2.2689 -0.1702 -2.2689c -0.1702,-0.9454 -0.4821,-1.5410 -0.4821 -1.5410c -0.3120,-0.5956 -0.7374,-0.8792 -0.7374 -0.8792c -0.4254,-0.2836 -0.9548,-0.2836 -0.9548 -0.2836c -0.5294,-0.0000 -0.9643,0.2836 -0.9643 0.2836c -0.4349,0.2836 -0.7468,0.8792 -0.7468 0.8792c -0.3120,0.5956 -0.4821,1.5410 -0.4821 1.5410c -0.1702,0.9454 -0.1702,2.2689 -0.1702 2.2689c 0.0000,2.6471 0.6523,3.8477 0.6523 3.8477c 0.6523,1.2006 1.7111,1.2006 1.7111 1.2006Z"+       id="path56" />+  </g>+  <g+     stroke-linejoin="miter"+     fill-opacity="0.0"+     fill="rgb(0,0,0)"+     stroke="rgb(0,0,0)"+     stroke-linecap="square"+     stroke-miterlimit="10.0"+     stroke-opacity="1.0"+     stroke-width="0.9999999999999997"+     id="g58">+    <path+       d="M 46.6786,534.0000 h 691.2027 "+       id="path57" />+  </g>+  <g+     stroke-linejoin="bevel"+     fill-opacity="1.0"+     fill="rgb(0,0,0)"+     stroke="rgb(0,0,0)"+     stroke-linecap="butt"+     stroke-miterlimit="10.0"+     stroke-opacity="0.0"+     stroke-width="0.0"+     id="g59">+    <path+       d="M 82.1191,562.0000 ZM 84.7284,555.7416 c 0.0000,1.1912 0.2647,2.1460 0.2647 2.1460c 0.2647,0.9548 0.7468,1.6355 0.7468 1.6355c 0.4821,0.6807 1.1534,1.0399 1.1534 1.0399c 0.6712,0.3592 1.5032,0.3592 1.5032 0.3592c 0.8319,0.0000 1.5032,-0.3592 1.5032 -0.3592c 0.6712,-0.3592 1.1534,-1.0399 1.1534 -1.0399c 0.4821,-0.6807 0.7468,-1.6355 0.7468 -1.6355c 0.2647,-0.9548 0.2647,-2.1460 0.2647 -2.1460c 0.0000,-1.1534 -0.2647,-2.0798 -0.2647 -2.0798c -0.2647,-0.9265 -0.7468,-1.5693 -0.7468 -1.5693c -0.4821,-0.6429 -1.1534,-0.9926 -1.1534 -0.9926c -0.6712,-0.3498 -1.5032,-0.3498 -1.5032 -0.3498c -0.8319,-0.0000 -1.5032,0.3498 -1.5032 0.3498c -0.6712,0.3498 -1.1534,0.9926 -1.1534 0.9926c -0.4821,0.6429 -0.7468,1.5693 -0.7468 1.5693c -0.2647,0.9265 -0.2647,2.0798 -0.2647 2.0798ZM 84.7284,555.7416 ZM 93.9742,564.8172 c -0.2836,0.0945 -0.7563,0.1891 -0.7563 0.1891c -0.4727,0.0945 -1.0210,0.0945 -1.0210 0.0945c -1.7206,-0.0000 -2.8739,-0.8225 -2.8739 -0.8225c -1.1534,-0.8225 -1.7017,-2.1082 -1.7017 -2.1082c -1.0210,-0.1324 -1.8529,-0.6429 -1.8529 -0.6429c -0.8319,-0.5105 -1.4275,-1.3424 -1.4275 -1.3424c -0.5956,-0.8319 -0.9170,-1.9569 -0.9170 -1.9569c -0.3214,-1.1250 -0.3214,-2.4863 -0.3214 -2.4863c 0.0000,-1.4937 0.3876,-2.6754 0.3876 -2.6754c 0.3876,-1.1817 1.0872,-2.0042 1.0872 -2.0042c 0.6996,-0.8225 1.6733,-1.2574 1.6733 -1.2574c 0.9737,-0.4349 2.1460,-0.4349 2.1460 -0.4349c 1.1723,0.0000 2.1460,0.4443 2.1460 0.4443c 0.9737,0.4443 1.6828,1.2668 1.6828 1.2668c 0.7090,0.8225 1.0966,2.0042 1.0966 2.0042c 0.3876,1.1817 0.3876,2.6565 0.3876 2.6565c 0.0000,1.3424 -0.3120,2.4485 -0.3120 2.4485c -0.3120,1.1061 -0.8887,1.9286 -0.8887 1.9286c -0.5767,0.8225 -1.3897,1.3424 -1.3897 1.3424c -0.8130,0.5200 -1.7962,0.6901 -1.7962 0.6901c 0.4349,0.8319 1.2290,1.2290 1.2290 1.2290c 0.7941,0.3971 1.8151,0.3971 1.8151 0.3971c 0.4160,0.0000 0.7279,-0.0567 0.7279 -0.0567c 0.3120,-0.0567 0.5767,-0.1324 0.5767 -0.1324ZM 94.6738,562.0000 ZM 96.0918,552.8109 h 1.5693 v 5.6155 c 0.0000,1.3046 0.4065,1.8813 0.4065 1.8813c 0.4065,0.5767 1.3141,0.5767 1.3141 0.5767c 0.7185,0.0000 1.2668,-0.3687 1.2668 -0.3687c 0.5483,-0.3687 1.2101,-1.1817 1.2101 -1.1817v -6.5231 h 1.5504 v 9.1891 h -1.2857 l -0.1324,-1.4370 h -0.0567 c -0.6429,0.7563 -1.3519,1.2101 -1.3519 1.2101c -0.7090,0.4538 -1.6733,0.4538 -1.6733 0.4538c -1.4748,-0.0000 -2.1460,-0.9076 -2.1460 -0.9076c -0.6712,-0.9076 -0.6712,-2.6849 -0.6712 -2.6849v -5.8235 ZM 104.9595,562.0000 ZM 107.3040,550.9202 c -0.4538,-0.0000 -0.7658,-0.2836 -0.7658 -0.2836c -0.3120,-0.2836 -0.3120,-0.7185 -0.3120 -0.7185c 0.0000,-0.4538 0.3120,-0.7279 0.3120 -0.7279c 0.3120,-0.2742 0.7658,-0.2742 0.7658 -0.2742c 0.4538,0.0000 0.7658,0.2742 0.7658 0.2742c 0.3120,0.2742 0.3120,0.7279 0.3120 0.7279c 0.0000,0.4349 -0.3120,0.7185 -0.3120 0.7185c -0.3120,0.2836 -0.7658,0.2836 -0.7658 0.2836ZM 107.3040,550.9202 ZM 106.5099,552.8109 h 1.5504 v 9.1891 h -1.5504 v -9.1891 ZM 109.6107,562.0000 ZM 110.4805,557.4244 c 0.0000,-1.1534 0.3592,-2.0515 0.3592 -2.0515c 0.3592,-0.8981 0.9643,-1.5221 0.9643 -1.5221c 0.6050,-0.6239 1.4086,-0.9454 1.4086 -0.9454c 0.8036,-0.3214 1.6922,-0.3214 1.6922 -0.3214c 0.9076,0.0000 1.5599,0.3309 1.5599 0.3309c 0.6523,0.3309 1.1250,0.7658 1.1250 0.7658l -0.7752,1.0021 c -0.4160,-0.3592 -0.8603,-0.5861 -0.8603 -0.5861c -0.4443,-0.2269 -0.9926,-0.2269 -0.9926 -0.2269c -0.6239,-0.0000 -1.1534,0.2553 -1.1534 0.2553c -0.5294,0.2553 -0.9076,0.7279 -0.9076 0.7279c -0.3782,0.4727 -0.5956,1.1250 -0.5956 1.1250c -0.2174,0.6523 -0.2174,1.4464 -0.2174 1.4464c 0.0000,0.7941 0.2080,1.4370 0.2080 1.4370c 0.2080,0.6429 0.5767,1.1061 0.5767 1.1061c 0.3687,0.4632 0.8981,0.7185 0.8981 0.7185c 0.5294,0.2553 1.1534,0.2553 1.1534 0.2553c 0.6618,0.0000 1.2006,-0.2742 1.2006 -0.2742c 0.5389,-0.2742 0.9548,-0.6523 0.9548 -0.6523l 0.6996,1.0210 c -0.6239,0.5483 -1.3897,0.8697 -1.3897 0.8697c -0.7658,0.3214 -1.5977,0.3214 -1.5977 0.3214c -0.9076,-0.0000 -1.7017,-0.3214 -1.7017 -0.3214c -0.7941,-0.3214 -1.3708,-0.9359 -1.3708 -0.9359c -0.5767,-0.6145 -0.9076,-1.5126 -0.9076 -1.5126c -0.3309,-0.8981 -0.3309,-2.0326 -0.3309 -2.0326ZM 118.2326,562.0000 ZM 119.7830,548.5378 h 1.5315 v 9.1134 h 0.0567 l 3.9139,-4.8403 h 1.7206 l -3.0819,3.6870 l 3.4979,5.5021 h -1.7017 l -2.6849,-4.4244 l -1.7206,2.0042 v 2.4202 h -1.5315 v -13.4622 Z"+       id="path58" />+  </g>+  <g+     stroke-linejoin="bevel"+     fill-opacity="1.0"+     fill="rgb(0,0,0)"+     stroke="rgb(0,0,0)"+     stroke-linecap="butt"+     stroke-miterlimit="10.0"+     stroke-opacity="0.0"+     stroke-width="0.0"+     id="g60">+    <path+       d="M 307.5946,562.0000 ZM 309.2963,549.5966 h 3.6870 c 0.9454,0.0000 1.7300,0.1702 1.7300 0.1702c 0.7847,0.1702 1.3424,0.5294 1.3424 0.5294c 0.5578,0.3592 0.8697,0.9359 0.8697 0.9359c 0.3120,0.5767 0.3120,1.3897 0.3120 1.3897c 0.0000,0.9265 -0.5294,1.6733 -0.5294 1.6733c -0.5294,0.7468 -1.6261,1.0305 -1.6261 1.0305v 0.0756 c 1.3613,0.2080 2.1176,0.9454 2.1176 0.9454c 0.7563,0.7374 0.7563,2.0231 0.7563 2.0231c 0.0000,0.9076 -0.3403,1.5882 -0.3403 1.5882c -0.3403,0.6807 -0.9643,1.1345 -0.9643 1.1345c -0.6239,0.4538 -1.4937,0.6807 -1.4937 0.6807c -0.8697,0.2269 -1.9097,0.2269 -1.9097 0.2269h -3.9517 v -12.4034 ZM 309.2963,549.5966 ZM 312.6997,554.8908 c 1.6071,0.0000 2.2973,-0.5483 2.2973 -0.5483c 0.6901,-0.5483 0.6901,-1.5882 0.6901 -1.5882c 0.0000,-1.0210 -0.7279,-1.4653 -0.7279 -1.4653c -0.7279,-0.4443 -2.1838,-0.4443 -2.1838 -0.4443h -1.9097 v 4.0462 h 1.8340 ZM 312.6997,554.8908 ZM 313.0211,560.7521 c 1.6071,0.0000 2.4958,-0.5956 2.4958 -0.5956c 0.8887,-0.5956 0.8887,-1.8624 0.8887 -1.8624c 0.0000,-1.1534 -0.8697,-1.6922 -0.8697 -1.6922c -0.8697,-0.5389 -2.5147,-0.5389 -2.5147 -0.5389h -2.1555 v 4.6891 h 2.1555 ZM 318.7123,562.0000 ZM 320.1303,552.8109 h 1.5693 v 5.6155 c 0.0000,1.3046 0.4065,1.8813 0.4065 1.8813c 0.4065,0.5767 1.3141,0.5767 1.3141 0.5767c 0.7185,0.0000 1.2668,-0.3687 1.2668 -0.3687c 0.5483,-0.3687 1.2101,-1.1817 1.2101 -1.1817v -6.5231 h 1.5504 v 9.1891 h -1.2857 l -0.1324,-1.4370 h -0.0567 c -0.6429,0.7563 -1.3519,1.2101 -1.3519 1.2101c -0.7090,0.4538 -1.6733,0.4538 -1.6733 0.4538c -1.4748,-0.0000 -2.1460,-0.9076 -2.1460 -0.9076c -0.6712,-0.9076 -0.6712,-2.6849 -0.6712 -2.6849v -5.8235 ZM 328.9980,562.0000 ZM 330.5484,548.5378 h 1.5504 v 3.6681 l -0.0378,1.6639 c 0.6239,-0.5483 1.3613,-0.9170 1.3613 -0.9170c 0.7374,-0.3687 1.5126,-0.3687 1.5126 -0.3687c 0.8887,0.0000 1.5693,0.3309 1.5693 0.3309c 0.6807,0.3309 1.1439,0.9454 1.1439 0.9454c 0.4632,0.6145 0.6996,1.4748 0.6996 1.4748c 0.2363,0.8603 0.2363,1.9191 0.2363 1.9191c 0.0000,1.1723 -0.3214,2.0987 -0.3214 2.0987c -0.3214,0.9265 -0.8697,1.5693 -0.8697 1.5693c -0.5483,0.6429 -1.2668,0.9737 -1.2668 0.9737c -0.7185,0.3309 -1.5126,0.3309 -1.5126 0.3309c -0.6429,-0.0000 -1.3330,-0.2931 -1.3330 -0.2931c -0.6901,-0.2931 -1.2952,-0.8414 -1.2952 -0.8414h -0.0567 l -0.1324,0.9076 h -1.2479 v -13.4622 ZM 330.5484,548.5378 ZM 332.0988,559.9580 c 0.6050,0.5294 1.2006,0.7468 1.2006 0.7468c 0.5956,0.2174 1.0494,0.2174 1.0494 0.2174c 0.5672,0.0000 1.0494,-0.2553 1.0494 -0.2553c 0.4821,-0.2553 0.8319,-0.7185 0.8319 -0.7185c 0.3498,-0.4632 0.5483,-1.1439 0.5483 -1.1439c 0.1985,-0.6807 0.1985,-1.5315 0.1985 -1.5315c 0.0000,-0.7563 -0.1324,-1.3803 -0.1324 -1.3803c -0.1324,-0.6239 -0.4254,-1.0683 -0.4254 -1.0683c -0.2931,-0.4443 -0.7563,-0.6901 -0.7563 -0.6901c -0.4632,-0.2458 -1.1061,-0.2458 -1.1061 -0.2458c -1.1155,-0.0000 -2.4580,1.2479 -2.4580 1.2479v 4.8214 ZM 339.4917,562.0000 ZM 341.0421,548.5378 h 1.5504 v 3.6681 l -0.0378,1.6639 c 0.6239,-0.5483 1.3613,-0.9170 1.3613 -0.9170c 0.7374,-0.3687 1.5126,-0.3687 1.5126 -0.3687c 0.8887,0.0000 1.5693,0.3309 1.5693 0.3309c 0.6807,0.3309 1.1439,0.9454 1.1439 0.9454c 0.4632,0.6145 0.6996,1.4748 0.6996 1.4748c 0.2363,0.8603 0.2363,1.9191 0.2363 1.9191c 0.0000,1.1723 -0.3214,2.0987 -0.3214 2.0987c -0.3214,0.9265 -0.8697,1.5693 -0.8697 1.5693c -0.5483,0.6429 -1.2668,0.9737 -1.2668 0.9737c -0.7185,0.3309 -1.5126,0.3309 -1.5126 0.3309c -0.6429,-0.0000 -1.3330,-0.2931 -1.3330 -0.2931c -0.6901,-0.2931 -1.2952,-0.8414 -1.2952 -0.8414h -0.0567 l -0.1324,0.9076 h -1.2479 v -13.4622 ZM 341.0421,548.5378 ZM 342.5925,559.9580 c 0.6050,0.5294 1.2006,0.7468 1.2006 0.7468c 0.5956,0.2174 1.0494,0.2174 1.0494 0.2174c 0.5672,0.0000 1.0494,-0.2553 1.0494 -0.2553c 0.4821,-0.2553 0.8319,-0.7185 0.8319 -0.7185c 0.3498,-0.4632 0.5483,-1.1439 0.5483 -1.1439c 0.1985,-0.6807 0.1985,-1.5315 0.1985 -1.5315c 0.0000,-0.7563 -0.1324,-1.3803 -0.1324 -1.3803c -0.1324,-0.6239 -0.4254,-1.0683 -0.4254 -1.0683c -0.2931,-0.4443 -0.7563,-0.6901 -0.7563 -0.6901c -0.4632,-0.2458 -1.1061,-0.2458 -1.1061 -0.2458c -1.1155,-0.0000 -2.4580,1.2479 -2.4580 1.2479v 4.8214 ZM 349.9854,562.0000 ZM 351.5358,548.5378 h 1.5504 v 11.7227 c 0.0000,0.3782 0.1324,0.5294 0.1324 0.5294c 0.1324,0.1513 0.3025,0.1513 0.3025 0.1513h 0.1418 c 0.0000,0.0000 0.1985,-0.0378 0.1985 -0.0378l 0.2080,1.1723 c -0.1513,0.0756 -0.3592,0.1134 -0.3592 0.1134c -0.2080,0.0378 -0.5294,0.0378 -0.5294 0.0378c -0.8887,-0.0000 -1.2668,-0.5294 -1.2668 -0.5294c -0.3782,-0.5294 -0.3782,-1.5504 -0.3782 -1.5504v -11.6092 ZM 354.8068,562.0000 ZM 355.6766,557.4244 c 0.0000,-1.1345 0.3498,-2.0326 0.3498 -2.0326c 0.3498,-0.8981 0.9265,-1.5221 0.9265 -1.5221c 0.5767,-0.6239 1.3141,-0.9548 1.3141 -0.9548c 0.7374,-0.3309 1.5315,-0.3309 1.5315 -0.3309c 0.8697,0.0000 1.5599,0.3025 1.5599 0.3025c 0.6901,0.3025 1.1534,0.8697 1.1534 0.8697c 0.4632,0.5672 0.7090,1.3613 0.7090 1.3613c 0.2458,0.7941 0.2458,1.7773 0.2458 1.7773c 0.0000,0.5105 -0.0567,0.8508 -0.0567 0.8508h -6.2017 c 0.0945,1.4937 0.9170,2.3634 0.9170 2.3634c 0.8225,0.8697 2.1460,0.8697 2.1460 0.8697c 0.6618,0.0000 1.2195,-0.1985 1.2195 -0.1985c 0.5578,-0.1985 1.0683,-0.5200 1.0683 -0.5200l 0.5483,1.0210 c -0.6050,0.3782 -1.3424,0.6618 -1.3424 0.6618c -0.7374,0.2836 -1.6828,0.2836 -1.6828 0.2836c -0.9265,-0.0000 -1.7300,-0.3309 -1.7300 -0.3309c -0.8036,-0.3309 -1.3992,-0.9454 -1.3992 -0.9454c -0.5956,-0.6145 -0.9359,-1.5032 -0.9359 -1.5032c -0.3403,-0.8887 -0.3403,-2.0231 -0.3403 -2.0231ZM 355.6766,557.4244 ZM 362.1051,556.7248 c 0.0000,-1.4181 -0.5956,-2.1649 -0.5956 -2.1649c -0.5956,-0.7468 -1.6733,-0.7468 -1.6733 -0.7468c -0.4916,-0.0000 -0.9359,0.1985 -0.9359 0.1985c -0.4443,0.1985 -0.8036,0.5672 -0.8036 0.5672c -0.3592,0.3687 -0.5956,0.9076 -0.5956 0.9076c -0.2363,0.5389 -0.3120,1.2384 -0.3120 1.2384h 4.9160 Z"+       id="path59" />+  </g>+  <g+     stroke-linejoin="bevel"+     fill-opacity="1"+     fill="#000000"+     stroke="#000000"+     stroke-linecap="butt"+     stroke-miterlimit="10"+     stroke-opacity="0"+     stroke-width="0"+     id="g61"+     transform="translate(2,-6)">+    <path+       d="m 498.942,562 z m 1.7016,-12.4034 h 1.8529 l 2.4013,6.6555 0.9076,2.5336 h 0.0756 l 0.8697,-2.5336 2.3824,-6.6555 h 1.8529 V 562 h -1.4937 v -6.8256 c 0,-0.8319 0.0662,-1.834 0.0662,-1.834 0.0662,-1.0021 0.1418,-1.834 0.1418,-1.834 h -0.0756 l -1.0021,2.7605 -2.3824,6.4853 h -0.8887 l -2.4013,-6.4853 -0.9832,-2.7605 h -0.0756 c 0.0567,0.8319 0.1324,1.834 0.1324,1.834 0.0756,1.0021 0.0756,1.834 0.0756,1.834 V 562 h -1.4559 V 549.5966 Z M 512.6878,562 Z m 1.418,-9.1891 h 1.5693 v 5.6155 c 0,1.3046 0.4065,1.8813 0.4065,1.8813 0.4065,0.5767 1.3141,0.5767 1.3141,0.5767 0.7185,0 1.2668,-0.3687 1.2668,-0.3687 0.5483,-0.3687 1.2101,-1.1817 1.2101,-1.1817 v -6.5231 h 1.5504 V 562 h -1.2857 l -0.1324,-1.437 h -0.0567 c -0.6429,0.7563 -1.3519,1.2101 -1.3519,1.2101 -0.709,0.4538 -1.6733,0.4538 -1.6733,0.4538 -1.4748,0 -2.146,-0.9076 -2.146,-0.9076 -0.6712,-0.9076 -0.6712,-2.6849 -0.6712,-2.6849 z M 522.9735,562 Z m 1.5504,-9.1891 h 1.2857 l 0.1324,1.3235 h 0.0567 c 0.6618,-0.6618 1.3897,-1.1061 1.3897,-1.1061 0.7279,-0.4443 1.6922,-0.4443 1.6922,-0.4443 1.4559,0 2.1271,0.9076 2.1271,0.9076 0.6712,0.9076 0.6712,2.6849 0.6712,2.6849 V 562 h -1.5504 v -5.6155 c 0,-1.3046 -0.416,-1.8813 -0.416,-1.8813 -0.416,-0.5767 -1.3235,-0.5767 -1.3235,-0.5767 -0.7185,0 -1.2668,0.3592 -1.2668,0.3592 -0.5483,0.3592 -1.2479,1.0588 -1.2479,1.0588 V 562 h -1.5504 z m 8.792,9.1891 z m 0.8887,-4.5756 c 0,-1.1155 0.3309,-2.0137 0.3309,-2.0137 0.3309,-0.8981 0.8792,-1.5221 0.8792,-1.5221 0.5483,-0.6239 1.2668,-0.9643 1.2668,-0.9643 0.7185,-0.3403 1.5126,-0.3403 1.5126,-0.3403 0.7941,0 1.3803,0.2836 1.3803,0.2836 0.5861,0.2836 1.1912,0.7752 1.1912,0.7752 l -0.0756,-1.5693 v -3.5357 h 1.5693 V 562 h -1.2857 l -0.1324,-1.0777 h -0.0567 c -0.5483,0.5294 -1.2574,0.917 -1.2574,0.917 -0.709,0.3876 -1.5221,0.3876 -1.5221,0.3876 -1.7395,0 -2.77,-1.2479 -2.77,-1.2479 -1.0305,-1.2479 -1.0305,-3.5546 -1.0305,-3.5546 z m 0,0 z m 1.6071,-0.0189 c 0,1.6639 0.6618,2.5903 0.6618,2.5903 0.6618,0.9265 1.8718,0.9265 1.8718,0.9265 0.6429,0 1.2101,-0.312 1.2101,-0.312 0.5672,-0.312 1.1345,-0.9548 1.1345,-0.9548 v -4.8025 c -0.5861,-0.5294 -1.125,-0.7468 -1.125,-0.7468 -0.5389,-0.2174 -1.1061,-0.2174 -1.1061,-0.2174 -0.5483,0 -1.0305,0.2553 -1.0305,0.2553 -0.4821,0.2553 -0.8414,0.7185 -0.8414,0.7185 -0.3592,0.4632 -0.5672,1.1061 -0.5672,1.1061 -0.208,0.6429 -0.208,1.437 -0.208,1.437 z M 543.8096,562 Z m 1.0966,-2.3824 c 0,-1.5126 1.3519,-2.3162 1.3519,-2.3162 1.3519,-0.8036 4.3015,-1.125 4.3015,-1.125 0,-0.4349 -0.0851,-0.8508 -0.0851,-0.8508 -0.0851,-0.416 -0.3025,-0.7374 -0.3025,-0.7374 -0.2174,-0.3214 -0.5767,-0.52 -0.5767,-0.52 -0.3592,-0.1985 -0.9265,-0.1985 -0.9265,-0.1985 -0.813,0 -1.5032,0.3025 -1.5032,0.3025 -0.6901,0.3025 -1.2384,0.6807 -1.2384,0.6807 l -0.6239,-1.0777 c 0.6429,-0.416 1.5693,-0.8036 1.5693,-0.8036 0.9265,-0.3876 2.042,-0.3876 2.042,-0.3876 1.6828,0 2.4391,1.0305 2.4391,1.0305 0.7563,1.0305 0.7563,2.7511 0.7563,2.7511 v 5.6345 h -1.2857 l -0.1324,-1.0966 h -0.0378 c -0.6618,0.5483 -1.4275,0.9359 -1.4275,0.9359 -0.7658,0.3876 -1.6166,0.3876 -1.6166,0.3876 -1.1723,0 -1.938,-0.6807 -1.938,-0.6807 -0.7658,-0.6807 -0.7658,-1.9286 -0.7658,-1.9286 z m 0,0 z m 1.5316,-0.1134 c 0,0.7941 0.4632,1.1345 0.4632,1.1345 0.4632,0.3403 1.1439,0.3403 1.1439,0.3403 0.6618,0 1.2574,-0.312 1.2574,-0.312 0.5956,-0.312 1.2574,-0.917 1.2574,-0.917 v -2.5525 c -1.1534,0.1513 -1.9475,0.3592 -1.9475,0.3592 -0.7941,0.208 -1.2763,0.4916 -1.2763,0.4916 -0.4821,0.2836 -0.6901,0.6523 -0.6901,0.6523 -0.208,0.3687 -0.208,0.8036 -0.208,0.8036 z M 553.4903,562 Z m 1.5504,-9.1891 h 1.2857 l 0.1324,1.3235 h 0.0567 c 0.6618,-0.6618 1.3897,-1.1061 1.3897,-1.1061 0.7279,-0.4443 1.6922,-0.4443 1.6922,-0.4443 1.4559,0 2.1271,0.9076 2.1271,0.9076 0.6712,0.9076 0.6712,2.6849 0.6712,2.6849 V 562 h -1.5504 v -5.6155 c 0,-1.3046 -0.416,-1.8813 -0.416,-1.8813 -0.416,-0.5767 -1.3235,-0.5767 -1.3235,-0.5767 -0.7185,0 -1.2668,0.3592 -1.2668,0.3592 -0.5483,0.3592 -1.2479,1.0588 -1.2479,1.0588 V 562 h -1.5504 z m 8.792,9.1891 z m 0.8698,-4.5756 c 0,-1.1345 0.3498,-2.0326 0.3498,-2.0326 0.3498,-0.8981 0.9265,-1.5221 0.9265,-1.5221 0.5767,-0.6239 1.3141,-0.9548 1.3141,-0.9548 0.7374,-0.3309 1.5315,-0.3309 1.5315,-0.3309 0.8697,0 1.5599,0.3025 1.5599,0.3025 0.6901,0.3025 1.1534,0.8697 1.1534,0.8697 0.4632,0.5672 0.709,1.3613 0.709,1.3613 0.2458,0.7941 0.2458,1.7773 0.2458,1.7773 0,0.5105 -0.0567,0.8508 -0.0567,0.8508 h -6.2017 c 0.0945,1.4937 0.917,2.3634 0.917,2.3634 0.8225,0.8697 2.146,0.8697 2.146,0.8697 0.6618,0 1.2195,-0.1985 1.2195,-0.1985 0.5578,-0.1985 1.0683,-0.52 1.0683,-0.52 l 0.5483,1.021 c -0.605,0.3782 -1.3424,0.6618 -1.3424,0.6618 -0.7374,0.2836 -1.6828,0.2836 -1.6828,0.2836 -0.9265,0 -1.73,-0.3309 -1.73,-0.3309 -0.8036,-0.3309 -1.3992,-0.9454 -1.3992,-0.9454 -0.5956,-0.6145 -0.9359,-1.5032 -0.9359,-1.5032 -0.3403,-0.8887 -0.3403,-2.0231 -0.3403,-2.0231 z m 0,0 z m 6.4285,-0.6996 c 0,-1.4181 -0.5956,-2.1649 -0.5956,-2.1649 -0.5956,-0.7468 -1.6733,-0.7468 -1.6733,-0.7468 -0.4916,0 -0.9359,0.1985 -0.9359,0.1985 -0.4443,0.1985 -0.8036,0.5672 -0.8036,0.5672 -0.3592,0.3687 -0.5956,0.9076 -0.5956,0.9076 -0.2363,0.5389 -0.312,1.2384 -0.312,1.2384 z M 577.0302,562 Z m 3.271,-6.5231 h 2.0798 c 1.4559,0 2.2311,-0.5956 2.2311,-0.5956 0.7752,-0.5956 0.7752,-1.8057 0.7752,-1.8057 0,-1.229 -0.7752,-1.7206 -0.7752,-1.7206 -0.7752,-0.4916 -2.2311,-0.4916 -2.2311,-0.4916 h -2.0798 v 4.6134 z m 0,0 z m 5.2374,6.5231 -2.9874,-5.2374 h -2.25 V 562 h -1.5693 v -12.4034 h 3.8761 c 0.9454,0 1.7489,0.1796 1.7489,0.1796 0.8036,0.1796 1.3803,0.5956 1.3803,0.5956 0.5767,0.416 0.8981,1.0777 0.8981,1.0777 0.3214,0.6618 0.3214,1.6261 0.3214,1.6261 0,1.4559 -0.7563,2.3256 -0.7563,2.3256 -0.7563,0.8697 -2.0231,1.1912 -2.0231,1.1912 L 587.316,562 h -1.7773 z m 2.2878,0 z m 0.8698,-4.5756 c 0,-1.1534 0.3498,-2.0515 0.3498,-2.0515 0.3498,-0.8981 0.9359,-1.5221 0.9359,-1.5221 0.5861,-0.6239 1.3519,-0.9454 1.3519,-0.9454 0.7658,-0.3214 1.6166,-0.3214 1.6166,-0.3214 0.8508,0 1.6166,0.3214 1.6166,0.3214 0.7658,0.3214 1.3519,0.9454 1.3519,0.9454 0.5861,0.6239 0.9359,1.5221 0.9359,1.5221 0.3498,0.8981 0.3498,2.0515 0.3498,2.0515 0,1.1345 -0.3498,2.0326 -0.3498,2.0326 -0.3498,0.8981 -0.9359,1.5126 -0.9359,1.5126 -0.5861,0.6145 -1.3519,0.9359 -1.3519,0.9359 -0.7658,0.3214 -1.6166,0.3214 -1.6166,0.3214 -0.8508,0 -1.6166,-0.3214 -1.6166,-0.3214 -0.7658,-0.3214 -1.3519,-0.9359 -1.3519,-0.9359 -0.5861,-0.6145 -0.9359,-1.5126 -0.9359,-1.5126 -0.3498,-0.8981 -0.3498,-2.0326 -0.3498,-2.0326 z m 0,0 z m 1.6071,0 c 0,0.7941 0.1891,1.437 0.1891,1.437 0.1891,0.6429 0.5389,1.1061 0.5389,1.1061 0.3498,0.4632 0.8414,0.7185 0.8414,0.7185 0.4916,0.2553 1.0777,0.2553 1.0777,0.2553 0.5861,0 1.0777,-0.2553 1.0777,-0.2553 0.4916,-0.2553 0.8414,-0.7185 0.8414,-0.7185 0.3498,-0.4632 0.5389,-1.1061 0.5389,-1.1061 0.1891,-0.6429 0.1891,-1.437 0.1891,-1.437 0,-0.7941 -0.1891,-1.4464 -0.1891,-1.4464 -0.1891,-0.6523 -0.5389,-1.125 -0.5389,-1.125 -0.3498,-0.4727 -0.8414,-0.7279 -0.8414,-0.7279 -0.4916,-0.2553 -1.0777,-0.2553 -1.0777,-0.2553 -0.5861,0 -1.0777,0.2553 -1.0777,0.2553 -0.4916,0.2553 -0.8414,0.7279 -0.8414,0.7279 -0.3498,0.4727 -0.5389,1.125 -0.5389,1.125 -0.1891,0.6523 -0.1891,1.4464 -0.1891,1.4464 z m 7.771,4.5756 z m 1.5504,-13.4622 h 1.5504 v 3.6681 l -0.0378,1.6639 c 0.6239,-0.5483 1.3613,-0.917 1.3613,-0.917 0.7374,-0.3687 1.5126,-0.3687 1.5126,-0.3687 0.8887,0 1.5693,0.3309 1.5693,0.3309 0.6807,0.3309 1.1439,0.9454 1.1439,0.9454 0.4632,0.6145 0.6996,1.4748 0.6996,1.4748 0.2363,0.8603 0.2363,1.9191 0.2363,1.9191 0,1.1723 -0.3214,2.0987 -0.3214,2.0987 -0.3214,0.9265 -0.8697,1.5693 -0.8697,1.5693 -0.5483,0.6429 -1.2668,0.9737 -1.2668,0.9737 -0.7185,0.3309 -1.5126,0.3309 -1.5126,0.3309 -0.6429,0 -1.333,-0.2931 -1.333,-0.2931 -0.6901,-0.2931 -1.2952,-0.8414 -1.2952,-0.8414 h -0.0567 L 600.8725,562 h -1.2479 v -13.4622 z m 0,0 z m 1.5505,11.4202 c 0.605,0.5294 1.2006,0.7468 1.2006,0.7468 0.5956,0.2174 1.0494,0.2174 1.0494,0.2174 0.5672,0 1.0494,-0.2553 1.0494,-0.2553 0.4821,-0.2553 0.8319,-0.7185 0.8319,-0.7185 0.3498,-0.4632 0.5483,-1.1439 0.5483,-1.1439 0.1985,-0.6807 0.1985,-1.5315 0.1985,-1.5315 0,-0.7563 -0.1324,-1.3803 -0.1324,-1.3803 -0.1324,-0.6239 -0.4254,-1.0683 -0.4254,-1.0683 -0.2931,-0.4443 -0.7563,-0.6901 -0.7563,-0.6901 -0.4632,-0.2458 -1.1061,-0.2458 -1.1061,-0.2458 -1.1155,0 -2.458,1.2479 -2.458,1.2479 v 4.8214 z M 608.568,562 Z m 1.4181,-9.1891 h 1.5693 v 5.6155 c 0,1.3046 0.4065,1.8813 0.4065,1.8813 0.4065,0.5767 1.3141,0.5767 1.3141,0.5767 0.7185,0 1.2668,-0.3687 1.2668,-0.3687 0.5483,-0.3687 1.2101,-1.1817 1.2101,-1.1817 v -6.5231 h 1.5504 V 562 h -1.2857 l -0.1324,-1.437 h -0.0567 c -0.6429,0.7563 -1.3519,1.2101 -1.3519,1.2101 -0.709,0.4538 -1.6733,0.4538 -1.6733,0.4538 -1.4748,0 -2.146,-0.9076 -2.146,-0.9076 -0.6712,-0.9076 -0.6712,-2.6849 -0.6712,-2.6849 z M 618.8537,562 Z m 1.3047,-2.0798 c 0.605,0.4916 1.2384,0.7941 1.2384,0.7941 0.6334,0.3025 1.4653,0.3025 1.4653,0.3025 0.9076,0 1.3613,-0.416 1.3613,-0.416 0.4538,-0.416 0.4538,-1.021 0.4538,-1.021 0,-0.3592 -0.1891,-0.6239 -0.1891,-0.6239 -0.1891,-0.2647 -0.4821,-0.4632 -0.4821,-0.4632 -0.2931,-0.1985 -0.6712,-0.3498 -0.6712,-0.3498 l -0.7563,-0.3025 c -0.4916,-0.1702 -0.9832,-0.3876 -0.9832,-0.3876 -0.4916,-0.2174 -0.8792,-0.5294 -0.8792,-0.5294 -0.3876,-0.312 -0.6334,-0.7279 -0.6334,-0.7279 -0.2458,-0.416 -0.2458,-1.0021 -0.2458,-1.0021 0,-0.5483 0.2174,-1.0305 0.2174,-1.0305 0.2174,-0.4821 0.6239,-0.8319 0.6239,-0.8319 0.4065,-0.3498 0.9926,-0.5483 0.9926,-0.5483 0.5861,-0.1985 1.3235,-0.1985 1.3235,-0.1985 0.8697,0 1.5977,0.3025 1.5977,0.3025 0.7279,0.3025 1.2574,0.7374 1.2574,0.7374 l -0.7374,0.9832 c -0.4727,-0.3592 -0.9832,-0.5861 -0.9832,-0.5861 -0.5105,-0.2269 -1.1155,-0.2269 -1.1155,-0.2269 -0.8697,0 -1.2763,0.3971 -1.2763,0.3971 -0.4065,0.3971 -0.4065,0.9265 -0.4065,0.9265 0,0.3214 0.1702,0.5578 0.1702,0.5578 0.1702,0.2363 0.4538,0.416 0.4538,0.416 0.2836,0.1796 0.6523,0.3214 0.6523,0.3214 0.3687,0.1418 0.7658,0.2931 0.7658,0.2931 0.4916,0.1891 0.9926,0.3971 0.9926,0.3971 0.5011,0.208 0.8981,0.52 0.8981,0.52 0.3971,0.312 0.6523,0.7658 0.6523,0.7658 0.2553,0.4538 0.2553,1.0966 0.2553,1.0966 0,0.5672 -0.2174,1.0588 -0.2174,1.0588 -0.2174,0.4916 -0.6429,0.8697 -0.6429,0.8697 -0.4254,0.3782 -1.0588,0.5956 -1.0588,0.5956 -0.6334,0.2174 -1.4464,0.2174 -1.4464,0.2174 -0.9832,0 -1.8718,-0.3592 -1.8718,-0.3592 -0.8887,-0.3592 -1.5504,-0.9076 -1.5504,-0.9076 z M 626.776,562 Z m 1.8151,-7.9223 h -1.3613 v -1.1723 l 1.437,-0.0945 0.1891,-2.5714 h 1.3046 v 2.5714 h 2.4769 v 1.2668 h -2.4769 v 5.105 c 0,0.8508 0.312,1.3141 0.312,1.3141 0.312,0.4632 1.1061,0.4632 1.1061,0.4632 0.2458,0 0.5294,-0.0756 0.5294,-0.0756 0.2836,-0.0756 0.5105,-0.1702 0.5105,-0.1702 l 0.3025,1.1723 c -0.3782,0.1324 -0.8225,0.2363 -0.8225,0.2363 -0.4443,0.104 -0.8792,0.104 -0.8792,0.104 -0.7374,0 -1.2384,-0.2269 -1.2384,-0.2269 -0.5011,-0.2269 -0.813,-0.6239 -0.813,-0.6239 -0.312,-0.3971 -0.4443,-0.9643 -0.4443,-0.9643 -0.1324,-0.5672 -0.1324,-1.2479 -0.1324,-1.2479 v -5.0861 z"+       id="path60" />+  </g>+  <g+     stroke-linejoin="bevel"+     fill-opacity="1.0"+     fill="rgb(0,0,255)"+     stroke="rgb(0,0,0)"+     stroke-linecap="butt"+     stroke-miterlimit="10.0"+     stroke-opacity="0.0"+     stroke-width="0.0"+     id="g62">+    <path+       d="M 10.0000,572.0000 v 18.0000 h 20.0000 v -18.0000 Z"+       id="path61" />+  </g>+  <g+     stroke-linejoin="bevel"+     fill-opacity="1.0"+     fill="rgb(0,0,0)"+     stroke="rgb(0,0,0)"+     stroke-linecap="butt"+     stroke-miterlimit="10.0"+     stroke-opacity="0.0"+     stroke-width="0.0"+     id="g63">+    <path+       d="M 39.1324,583.8929 ZM 43.4055,572.8130 h -3.7437 v -1.3235 h 9.0756 v 1.3235 h -3.7437 v 11.0798 h -1.5882 v -11.0798 ZM 48.0189,583.8929 ZM 48.8887,579.3172 c 0.0000,-1.1534 0.3498,-2.0515 0.3498 -2.0515c 0.3498,-0.8981 0.9359,-1.5221 0.9359 -1.5221c 0.5861,-0.6239 1.3519,-0.9454 1.3519 -0.9454c 0.7658,-0.3214 1.6166,-0.3214 1.6166 -0.3214c 0.8508,0.0000 1.6166,0.3214 1.6166 0.3214c 0.7658,0.3214 1.3519,0.9454 1.3519 0.9454c 0.5861,0.6239 0.9359,1.5221 0.9359 1.5221c 0.3498,0.8981 0.3498,2.0515 0.3498 2.0515c 0.0000,1.1345 -0.3498,2.0326 -0.3498 2.0326c -0.3498,0.8981 -0.9359,1.5126 -0.9359 1.5126c -0.5861,0.6145 -1.3519,0.9359 -1.3519 0.9359c -0.7658,0.3214 -1.6166,0.3214 -1.6166 0.3214c -0.8508,-0.0000 -1.6166,-0.3214 -1.6166 -0.3214c -0.7658,-0.3214 -1.3519,-0.9359 -1.3519 -0.9359c -0.5861,-0.6145 -0.9359,-1.5126 -0.9359 -1.5126c -0.3498,-0.8981 -0.3498,-2.0326 -0.3498 -2.0326ZM 48.8887,579.3172 ZM 50.4958,579.3172 c 0.0000,0.7941 0.1891,1.4370 0.1891 1.4370c 0.1891,0.6429 0.5389,1.1061 0.5389 1.1061c 0.3498,0.4632 0.8414,0.7185 0.8414 0.7185c 0.4916,0.2553 1.0777,0.2553 1.0777 0.2553c 0.5861,0.0000 1.0777,-0.2553 1.0777 -0.2553c 0.4916,-0.2553 0.8414,-0.7185 0.8414 -0.7185c 0.3498,-0.4632 0.5389,-1.1061 0.5389 -1.1061c 0.1891,-0.6429 0.1891,-1.4370 0.1891 -1.4370c 0.0000,-0.7941 -0.1891,-1.4464 -0.1891 -1.4464c -0.1891,-0.6523 -0.5389,-1.1250 -0.5389 -1.1250c -0.3498,-0.4727 -0.8414,-0.7279 -0.8414 -0.7279c -0.4916,-0.2553 -1.0777,-0.2553 -1.0777 -0.2553c -0.5861,-0.0000 -1.0777,0.2553 -1.0777 0.2553c -0.4916,0.2553 -0.8414,0.7279 -0.8414 0.7279c -0.3498,0.4727 -0.5389,1.1250 -0.5389 1.1250c -0.1891,0.6523 -0.1891,1.4464 -0.1891 1.4464ZM 58.2668,583.8929 ZM 60.0819,575.9706 h -1.3613 v -1.1723 l 1.4370,-0.0945 l 0.1891,-2.5714 h 1.3046 v 2.5714 h 2.4769 v 1.2668 h -2.4769 v 5.1050 c 0.0000,0.8508 0.3120,1.3141 0.3120 1.3141c 0.3120,0.4632 1.1061,0.4632 1.1061 0.4632c 0.2458,0.0000 0.5294,-0.0756 0.5294 -0.0756c 0.2836,-0.0756 0.5105,-0.1702 0.5105 -0.1702l 0.3025,1.1723 c -0.3782,0.1324 -0.8225,0.2363 -0.8225 0.2363c -0.4443,0.1040 -0.8792,0.1040 -0.8792 0.1040c -0.7374,-0.0000 -1.2384,-0.2269 -1.2384 -0.2269c -0.5011,-0.2269 -0.8130,-0.6239 -0.8130 -0.6239c -0.3120,-0.3971 -0.4443,-0.9643 -0.4443 -0.9643c -0.1324,-0.5672 -0.1324,-1.2479 -0.1324 -1.2479v -5.0861 ZM 64.3172,583.8929 ZM 65.4139,581.5105 c 0.0000,-1.5126 1.3519,-2.3162 1.3519 -2.3162c 1.3519,-0.8036 4.3015,-1.1250 4.3015 -1.1250c 0.0000,-0.4349 -0.0851,-0.8508 -0.0851 -0.8508c -0.0851,-0.4160 -0.3025,-0.7374 -0.3025 -0.7374c -0.2174,-0.3214 -0.5767,-0.5200 -0.5767 -0.5200c -0.3592,-0.1985 -0.9265,-0.1985 -0.9265 -0.1985c -0.8130,-0.0000 -1.5032,0.3025 -1.5032 0.3025c -0.6901,0.3025 -1.2384,0.6807 -1.2384 0.6807l -0.6239,-1.0777 c 0.6429,-0.4160 1.5693,-0.8036 1.5693 -0.8036c 0.9265,-0.3876 2.0420,-0.3876 2.0420 -0.3876c 1.6828,0.0000 2.4391,1.0305 2.4391 1.0305c 0.7563,1.0305 0.7563,2.7511 0.7563 2.7511v 5.6345 h -1.2857 l -0.1324,-1.0966 h -0.0378 c -0.6618,0.5483 -1.4275,0.9359 -1.4275 0.9359c -0.7658,0.3876 -1.6166,0.3876 -1.6166 0.3876c -1.1723,-0.0000 -1.9380,-0.6807 -1.9380 -0.6807c -0.7658,-0.6807 -0.7658,-1.9286 -0.7658 -1.9286ZM 65.4139,581.5105 ZM 66.9454,581.3971 c 0.0000,0.7941 0.4632,1.1345 0.4632 1.1345c 0.4632,0.3403 1.1439,0.3403 1.1439 0.3403c 0.6618,0.0000 1.2574,-0.3120 1.2574 -0.3120c 0.5956,-0.3120 1.2574,-0.9170 1.2574 -0.9170v -2.5525 c -1.1534,0.1513 -1.9475,0.3592 -1.9475 0.3592c -0.7941,0.2080 -1.2763,0.4916 -1.2763 0.4916c -0.4821,0.2836 -0.6901,0.6523 -0.6901 0.6523c -0.2080,0.3687 -0.2080,0.8036 -0.2080 0.8036ZM 73.9979,583.8929 ZM 75.5483,570.4307 h 1.5504 v 11.7227 c 0.0000,0.3782 0.1324,0.5294 0.1324 0.5294c 0.1324,0.1513 0.3025,0.1513 0.3025 0.1513h 0.1418 c 0.0000,0.0000 0.1985,-0.0378 0.1985 -0.0378l 0.2080,1.1723 c -0.1513,0.0756 -0.3592,0.1134 -0.3592 0.1134c -0.2080,0.0378 -0.5294,0.0378 -0.5294 0.0378c -0.8887,-0.0000 -1.2668,-0.5294 -1.2668 -0.5294c -0.3782,-0.5294 -0.3782,-1.5504 -0.3782 -1.5504v -11.6092 ZM 82.6387,583.8929 ZM 83.5084,579.3172 c 0.0000,-1.1534 0.3592,-2.0515 0.3592 -2.0515c 0.3592,-0.8981 0.9643,-1.5221 0.9643 -1.5221c 0.6050,-0.6239 1.4086,-0.9454 1.4086 -0.9454c 0.8036,-0.3214 1.6922,-0.3214 1.6922 -0.3214c 0.9076,0.0000 1.5599,0.3309 1.5599 0.3309c 0.6523,0.3309 1.1250,0.7658 1.1250 0.7658l -0.7752,1.0021 c -0.4160,-0.3592 -0.8603,-0.5861 -0.8603 -0.5861c -0.4443,-0.2269 -0.9926,-0.2269 -0.9926 -0.2269c -0.6239,-0.0000 -1.1534,0.2553 -1.1534 0.2553c -0.5294,0.2553 -0.9076,0.7279 -0.9076 0.7279c -0.3782,0.4727 -0.5956,1.1250 -0.5956 1.1250c -0.2174,0.6523 -0.2174,1.4464 -0.2174 1.4464c 0.0000,0.7941 0.2080,1.4370 0.2080 1.4370c 0.2080,0.6429 0.5767,1.1061 0.5767 1.1061c 0.3687,0.4632 0.8981,0.7185 0.8981 0.7185c 0.5294,0.2553 1.1534,0.2553 1.1534 0.2553c 0.6618,0.0000 1.2006,-0.2742 1.2006 -0.2742c 0.5389,-0.2742 0.9548,-0.6523 0.9548 -0.6523l 0.6996,1.0210 c -0.6239,0.5483 -1.3897,0.8697 -1.3897 0.8697c -0.7658,0.3214 -1.5977,0.3214 -1.5977 0.3214c -0.9076,-0.0000 -1.7017,-0.3214 -1.7017 -0.3214c -0.7941,-0.3214 -1.3708,-0.9359 -1.3708 -0.9359c -0.5767,-0.6145 -0.9076,-1.5126 -0.9076 -1.5126c -0.3309,-0.8981 -0.3309,-2.0326 -0.3309 -2.0326ZM 91.0714,583.8929 ZM 92.1681,581.5105 c 0.0000,-1.5126 1.3519,-2.3162 1.3519 -2.3162c 1.3519,-0.8036 4.3015,-1.1250 4.3015 -1.1250c 0.0000,-0.4349 -0.0851,-0.8508 -0.0851 -0.8508c -0.0851,-0.4160 -0.3025,-0.7374 -0.3025 -0.7374c -0.2174,-0.3214 -0.5767,-0.5200 -0.5767 -0.5200c -0.3592,-0.1985 -0.9265,-0.1985 -0.9265 -0.1985c -0.8130,-0.0000 -1.5032,0.3025 -1.5032 0.3025c -0.6901,0.3025 -1.2384,0.6807 -1.2384 0.6807l -0.6239,-1.0777 c 0.6429,-0.4160 1.5693,-0.8036 1.5693 -0.8036c 0.9265,-0.3876 2.0420,-0.3876 2.0420 -0.3876c 1.6828,0.0000 2.4391,1.0305 2.4391 1.0305c 0.7563,1.0305 0.7563,2.7511 0.7563 2.7511v 5.6345 h -1.2857 l -0.1324,-1.0966 h -0.0378 c -0.6618,0.5483 -1.4275,0.9359 -1.4275 0.9359c -0.7658,0.3876 -1.6166,0.3876 -1.6166 0.3876c -1.1723,-0.0000 -1.9380,-0.6807 -1.9380 -0.6807c -0.7658,-0.6807 -0.7658,-1.9286 -0.7658 -1.9286ZM 92.1681,581.5105 ZM 93.6996,581.3971 c 0.0000,0.7941 0.4632,1.1345 0.4632 1.1345c 0.4632,0.3403 1.1439,0.3403 1.1439 0.3403c 0.6618,0.0000 1.2574,-0.3120 1.2574 -0.3120c 0.5956,-0.3120 1.2574,-0.9170 1.2574 -0.9170v -2.5525 c -1.1534,0.1513 -1.9475,0.3592 -1.9475 0.3592c -0.7941,0.2080 -1.2763,0.4916 -1.2763 0.4916c -0.4821,0.2836 -0.6901,0.6523 -0.6901 0.6523c -0.2080,0.3687 -0.2080,0.8036 -0.2080 0.8036ZM 100.7521,583.8929 ZM 102.3025,574.7038 h 1.2857 l 0.1324,1.6639 h 0.0567 c 0.4727,-0.8697 1.1439,-1.3803 1.1439 -1.3803c 0.6712,-0.5105 1.4653,-0.5105 1.4653 -0.5105c 0.5483,0.0000 0.9832,0.1891 0.9832 0.1891l -0.3025,1.3613 c -0.2269,-0.0756 -0.4160,-0.1134 -0.4160 -0.1134c -0.1891,-0.0378 -0.4727,-0.0378 -0.4727 -0.0378c -0.5861,-0.0000 -1.2195,0.4727 -1.2195 0.4727c -0.6334,0.4727 -1.1061,1.6450 -1.1061 1.6450v 5.8992 h -1.5504 v -9.1891 ZM 107.1239,583.8929 ZM 108.0126,579.3172 c 0.0000,-1.1155 0.3309,-2.0137 0.3309 -2.0137c 0.3309,-0.8981 0.8792,-1.5221 0.8792 -1.5221c 0.5483,-0.6239 1.2668,-0.9643 1.2668 -0.9643c 0.7185,-0.3403 1.5126,-0.3403 1.5126 -0.3403c 0.7941,0.0000 1.3803,0.2836 1.3803 0.2836c 0.5861,0.2836 1.1912,0.7752 1.1912 0.7752l -0.0756,-1.5693 v -3.5357 h 1.5693 v 13.4622 h -1.2857 l -0.1324,-1.0777 h -0.0567 c -0.5483,0.5294 -1.2574,0.9170 -1.2574 0.9170c -0.7090,0.3876 -1.5221,0.3876 -1.5221 0.3876c -1.7395,-0.0000 -2.7700,-1.2479 -2.7700 -1.2479c -1.0305,-1.2479 -1.0305,-3.5546 -1.0305 -3.5546ZM 108.0126,579.3172 ZM 109.6197,579.2983 c 0.0000,1.6639 0.6618,2.5903 0.6618 2.5903c 0.6618,0.9265 1.8718,0.9265 1.8718 0.9265c 0.6429,0.0000 1.2101,-0.3120 1.2101 -0.3120c 0.5672,-0.3120 1.1345,-0.9548 1.1345 -0.9548v -4.8025 c -0.5861,-0.5294 -1.1250,-0.7468 -1.1250 -0.7468c -0.5389,-0.2174 -1.1061,-0.2174 -1.1061 -0.2174c -0.5483,-0.0000 -1.0305,0.2553 -1.0305 0.2553c -0.4821,0.2553 -0.8414,0.7185 -0.8414 0.7185c -0.3592,0.4632 -0.5672,1.1061 -0.5672 1.1061c -0.2080,0.6429 -0.2080,1.4370 -0.2080 1.4370ZM 121.4370,583.8929 ZM 124.5378,584.6681 v 3.1008 h -1.5504 v -13.0651 h 1.2857 l 0.1324,1.0588 h 0.0567 c 0.6239,-0.5294 1.3708,-0.9076 1.3708 -0.9076c 0.7468,-0.3782 1.5599,-0.3782 1.5599 -0.3782c 0.8887,0.0000 1.5693,0.3309 1.5693 0.3309c 0.6807,0.3309 1.1345,0.9454 1.1345 0.9454c 0.4538,0.6145 0.6901,1.4748 0.6901 1.4748c 0.2363,0.8603 0.2363,1.9380 0.2363 1.9380c 0.0000,1.1723 -0.3214,2.0893 -0.3214 2.0893c -0.3214,0.9170 -0.8697,1.5599 -0.8697 1.5599c -0.5483,0.6429 -1.2668,0.9737 -1.2668 0.9737c -0.7185,0.3309 -1.5126,0.3309 -1.5126 0.3309c -0.6429,-0.0000 -1.2763,-0.2836 -1.2763 -0.2836c -0.6334,-0.2836 -1.2763,-0.7752 -1.2763 -0.7752ZM 124.5378,584.6681 ZM 124.5378,581.8508 c 0.6239,0.5294 1.2101,0.7468 1.2101 0.7468c 0.5861,0.2174 1.0399,0.2174 1.0399 0.2174c 0.5672,0.0000 1.0494,-0.2553 1.0494 -0.2553c 0.4821,-0.2553 0.8319,-0.7185 0.8319 -0.7185c 0.3498,-0.4632 0.5483,-1.1439 0.5483 -1.1439c 0.1985,-0.6807 0.1985,-1.5315 0.1985 -1.5315c 0.0000,-0.7563 -0.1324,-1.3803 -0.1324 -1.3803c -0.1324,-0.6239 -0.4254,-1.0683 -0.4254 -1.0683c -0.2931,-0.4443 -0.7563,-0.6901 -0.7563 -0.6901c -0.4632,-0.2458 -1.1061,-0.2458 -1.1061 -0.2458c -0.5861,-0.0000 -1.1817,0.3214 -1.1817 0.3214c -0.5956,0.3214 -1.2763,0.9265 -1.2763 0.9265v 4.8214 ZM 131.9307,583.8929 ZM 132.8004,579.3172 c 0.0000,-1.1534 0.3498,-2.0515 0.3498 -2.0515c 0.3498,-0.8981 0.9359,-1.5221 0.9359 -1.5221c 0.5861,-0.6239 1.3519,-0.9454 1.3519 -0.9454c 0.7658,-0.3214 1.6166,-0.3214 1.6166 -0.3214c 0.8508,0.0000 1.6166,0.3214 1.6166 0.3214c 0.7658,0.3214 1.3519,0.9454 1.3519 0.9454c 0.5861,0.6239 0.9359,1.5221 0.9359 1.5221c 0.3498,0.8981 0.3498,2.0515 0.3498 2.0515c 0.0000,1.1345 -0.3498,2.0326 -0.3498 2.0326c -0.3498,0.8981 -0.9359,1.5126 -0.9359 1.5126c -0.5861,0.6145 -1.3519,0.9359 -1.3519 0.9359c -0.7658,0.3214 -1.6166,0.3214 -1.6166 0.3214c -0.8508,-0.0000 -1.6166,-0.3214 -1.6166 -0.3214c -0.7658,-0.3214 -1.3519,-0.9359 -1.3519 -0.9359c -0.5861,-0.6145 -0.9359,-1.5126 -0.9359 -1.5126c -0.3498,-0.8981 -0.3498,-2.0326 -0.3498 -2.0326ZM 132.8004,579.3172 ZM 134.4076,579.3172 c 0.0000,0.7941 0.1891,1.4370 0.1891 1.4370c 0.1891,0.6429 0.5389,1.1061 0.5389 1.1061c 0.3498,0.4632 0.8414,0.7185 0.8414 0.7185c 0.4916,0.2553 1.0777,0.2553 1.0777 0.2553c 0.5861,0.0000 1.0777,-0.2553 1.0777 -0.2553c 0.4916,-0.2553 0.8414,-0.7185 0.8414 -0.7185c 0.3498,-0.4632 0.5389,-1.1061 0.5389 -1.1061c 0.1891,-0.6429 0.1891,-1.4370 0.1891 -1.4370c 0.0000,-0.7941 -0.1891,-1.4464 -0.1891 -1.4464c -0.1891,-0.6523 -0.5389,-1.1250 -0.5389 -1.1250c -0.3498,-0.4727 -0.8414,-0.7279 -0.8414 -0.7279c -0.4916,-0.2553 -1.0777,-0.2553 -1.0777 -0.2553c -0.5861,-0.0000 -1.0777,0.2553 -1.0777 0.2553c -0.4916,0.2553 -0.8414,0.7279 -0.8414 0.7279c -0.3498,0.4727 -0.5389,1.1250 -0.5389 1.1250c -0.1891,0.6523 -0.1891,1.4464 -0.1891 1.4464ZM 142.1786,583.8929 ZM 143.4832,581.8130 c 0.6050,0.4916 1.2384,0.7941 1.2384 0.7941c 0.6334,0.3025 1.4653,0.3025 1.4653 0.3025c 0.9076,0.0000 1.3613,-0.4160 1.3613 -0.4160c 0.4538,-0.4160 0.4538,-1.0210 0.4538 -1.0210c 0.0000,-0.3592 -0.1891,-0.6239 -0.1891 -0.6239c -0.1891,-0.2647 -0.4821,-0.4632 -0.4821 -0.4632c -0.2931,-0.1985 -0.6712,-0.3498 -0.6712 -0.3498l -0.7563,-0.3025 c -0.4916,-0.1702 -0.9832,-0.3876 -0.9832 -0.3876c -0.4916,-0.2174 -0.8792,-0.5294 -0.8792 -0.5294c -0.3876,-0.3120 -0.6334,-0.7279 -0.6334 -0.7279c -0.2458,-0.4160 -0.2458,-1.0021 -0.2458 -1.0021c 0.0000,-0.5483 0.2174,-1.0305 0.2174 -1.0305c 0.2174,-0.4821 0.6239,-0.8319 0.6239 -0.8319c 0.4065,-0.3498 0.9926,-0.5483 0.9926 -0.5483c 0.5861,-0.1985 1.3235,-0.1985 1.3235 -0.1985c 0.8697,0.0000 1.5977,0.3025 1.5977 0.3025c 0.7279,0.3025 1.2574,0.7374 1.2574 0.7374l -0.7374,0.9832 c -0.4727,-0.3592 -0.9832,-0.5861 -0.9832 -0.5861c -0.5105,-0.2269 -1.1155,-0.2269 -1.1155 -0.2269c -0.8697,-0.0000 -1.2763,0.3971 -1.2763 0.3971c -0.4065,0.3971 -0.4065,0.9265 -0.4065 0.9265c 0.0000,0.3214 0.1702,0.5578 0.1702 0.5578c 0.1702,0.2363 0.4538,0.4160 0.4538 0.4160c 0.2836,0.1796 0.6523,0.3214 0.6523 0.3214c 0.3687,0.1418 0.7658,0.2931 0.7658 0.2931c 0.4916,0.1891 0.9926,0.3971 0.9926 0.3971c 0.5011,0.2080 0.8981,0.5200 0.8981 0.5200c 0.3971,0.3120 0.6523,0.7658 0.6523 0.7658c 0.2553,0.4538 0.2553,1.0966 0.2553 1.0966c 0.0000,0.5672 -0.2174,1.0588 -0.2174 1.0588c -0.2174,0.4916 -0.6429,0.8697 -0.6429 0.8697c -0.4254,0.3782 -1.0588,0.5956 -1.0588 0.5956c -0.6334,0.2174 -1.4464,0.2174 -1.4464 0.2174c -0.9832,-0.0000 -1.8718,-0.3592 -1.8718 -0.3592c -0.8887,-0.3592 -1.5504,-0.9076 -1.5504 -0.9076ZM 150.1008,583.8929 ZM 152.4454,572.8130 c -0.4538,-0.0000 -0.7658,-0.2836 -0.7658 -0.2836c -0.3120,-0.2836 -0.3120,-0.7185 -0.3120 -0.7185c 0.0000,-0.4538 0.3120,-0.7279 0.3120 -0.7279c 0.3120,-0.2742 0.7658,-0.2742 0.7658 -0.2742c 0.4538,0.0000 0.7658,0.2742 0.7658 0.2742c 0.3120,0.2742 0.3120,0.7279 0.3120 0.7279c 0.0000,0.4349 -0.3120,0.7185 -0.3120 0.7185c -0.3120,0.2836 -0.7658,0.2836 -0.7658 0.2836ZM 152.4454,572.8130 ZM 151.6513,574.7038 h 1.5504 v 9.1891 h -1.5504 v -9.1891 ZM 154.7521,583.8929 ZM 156.5672,575.9706 h -1.3613 v -1.1723 l 1.4370,-0.0945 l 0.1891,-2.5714 h 1.3046 v 2.5714 h 2.4769 v 1.2668 h -2.4769 v 5.1050 c 0.0000,0.8508 0.3120,1.3141 0.3120 1.3141c 0.3120,0.4632 1.1061,0.4632 1.1061 0.4632c 0.2458,0.0000 0.5294,-0.0756 0.5294 -0.0756c 0.2836,-0.0756 0.5105,-0.1702 0.5105 -0.1702l 0.3025,1.1723 c -0.3782,0.1324 -0.8225,0.2363 -0.8225 0.2363c -0.4443,0.1040 -0.8792,0.1040 -0.8792 0.1040c -0.7374,-0.0000 -1.2384,-0.2269 -1.2384 -0.2269c -0.5011,-0.2269 -0.8130,-0.6239 -0.8130 -0.6239c -0.3120,-0.3971 -0.4443,-0.9643 -0.4443 -0.9643c -0.1324,-0.5672 -0.1324,-1.2479 -0.1324 -1.2479v -5.0861 ZM 161.1429,583.8929 ZM 163.4874,572.8130 c -0.4538,-0.0000 -0.7658,-0.2836 -0.7658 -0.2836c -0.3120,-0.2836 -0.3120,-0.7185 -0.3120 -0.7185c 0.0000,-0.4538 0.3120,-0.7279 0.3120 -0.7279c 0.3120,-0.2742 0.7658,-0.2742 0.7658 -0.2742c 0.4538,0.0000 0.7658,0.2742 0.7658 0.2742c 0.3120,0.2742 0.3120,0.7279 0.3120 0.7279c 0.0000,0.4349 -0.3120,0.7185 -0.3120 0.7185c -0.3120,0.2836 -0.7658,0.2836 -0.7658 0.2836ZM 163.4874,572.8130 ZM 162.6933,574.7038 h 1.5504 v 9.1891 h -1.5504 v -9.1891 ZM 165.7941,583.8929 ZM 166.6639,579.3172 c 0.0000,-1.1534 0.3498,-2.0515 0.3498 -2.0515c 0.3498,-0.8981 0.9359,-1.5221 0.9359 -1.5221c 0.5861,-0.6239 1.3519,-0.9454 1.3519 -0.9454c 0.7658,-0.3214 1.6166,-0.3214 1.6166 -0.3214c 0.8508,0.0000 1.6166,0.3214 1.6166 0.3214c 0.7658,0.3214 1.3519,0.9454 1.3519 0.9454c 0.5861,0.6239 0.9359,1.5221 0.9359 1.5221c 0.3498,0.8981 0.3498,2.0515 0.3498 2.0515c 0.0000,1.1345 -0.3498,2.0326 -0.3498 2.0326c -0.3498,0.8981 -0.9359,1.5126 -0.9359 1.5126c -0.5861,0.6145 -1.3519,0.9359 -1.3519 0.9359c -0.7658,0.3214 -1.6166,0.3214 -1.6166 0.3214c -0.8508,-0.0000 -1.6166,-0.3214 -1.6166 -0.3214c -0.7658,-0.3214 -1.3519,-0.9359 -1.3519 -0.9359c -0.5861,-0.6145 -0.9359,-1.5126 -0.9359 -1.5126c -0.3498,-0.8981 -0.3498,-2.0326 -0.3498 -2.0326ZM 166.6639,579.3172 ZM 168.2710,579.3172 c 0.0000,0.7941 0.1891,1.4370 0.1891 1.4370c 0.1891,0.6429 0.5389,1.1061 0.5389 1.1061c 0.3498,0.4632 0.8414,0.7185 0.8414 0.7185c 0.4916,0.2553 1.0777,0.2553 1.0777 0.2553c 0.5861,0.0000 1.0777,-0.2553 1.0777 -0.2553c 0.4916,-0.2553 0.8414,-0.7185 0.8414 -0.7185c 0.3498,-0.4632 0.5389,-1.1061 0.5389 -1.1061c 0.1891,-0.6429 0.1891,-1.4370 0.1891 -1.4370c 0.0000,-0.7941 -0.1891,-1.4464 -0.1891 -1.4464c -0.1891,-0.6523 -0.5389,-1.1250 -0.5389 -1.1250c -0.3498,-0.4727 -0.8414,-0.7279 -0.8414 -0.7279c -0.4916,-0.2553 -1.0777,-0.2553 -1.0777 -0.2553c -0.5861,-0.0000 -1.0777,0.2553 -1.0777 0.2553c -0.4916,0.2553 -0.8414,0.7279 -0.8414 0.7279c -0.3498,0.4727 -0.5389,1.1250 -0.5389 1.1250c -0.1891,0.6523 -0.1891,1.4464 -0.1891 1.4464ZM 176.0420,583.8929 ZM 177.5924,574.7038 h 1.2857 l 0.1324,1.3235 h 0.0567 c 0.6618,-0.6618 1.3897,-1.1061 1.3897 -1.1061c 0.7279,-0.4443 1.6922,-0.4443 1.6922 -0.4443c 1.4559,0.0000 2.1271,0.9076 2.1271 0.9076c 0.6712,0.9076 0.6712,2.6849 0.6712 2.6849v 5.8235 h -1.5504 v -5.6155 c 0.0000,-1.3046 -0.4160,-1.8813 -0.4160 -1.8813c -0.4160,-0.5767 -1.3235,-0.5767 -1.3235 -0.5767c -0.7185,-0.0000 -1.2668,0.3592 -1.2668 0.3592c -0.5483,0.3592 -1.2479,1.0588 -1.2479 1.0588v 6.6555 h -1.5504 v -9.1891 ZM 186.3845,583.8929 ZM 187.4811,581.5105 c 0.0000,-1.5126 1.3519,-2.3162 1.3519 -2.3162c 1.3519,-0.8036 4.3015,-1.1250 4.3015 -1.1250c 0.0000,-0.4349 -0.0851,-0.8508 -0.0851 -0.8508c -0.0851,-0.4160 -0.3025,-0.7374 -0.3025 -0.7374c -0.2174,-0.3214 -0.5767,-0.5200 -0.5767 -0.5200c -0.3592,-0.1985 -0.9265,-0.1985 -0.9265 -0.1985c -0.8130,-0.0000 -1.5032,0.3025 -1.5032 0.3025c -0.6901,0.3025 -1.2384,0.6807 -1.2384 0.6807l -0.6239,-1.0777 c 0.6429,-0.4160 1.5693,-0.8036 1.5693 -0.8036c 0.9265,-0.3876 2.0420,-0.3876 2.0420 -0.3876c 1.6828,0.0000 2.4391,1.0305 2.4391 1.0305c 0.7563,1.0305 0.7563,2.7511 0.7563 2.7511v 5.6345 h -1.2857 l -0.1324,-1.0966 h -0.0378 c -0.6618,0.5483 -1.4275,0.9359 -1.4275 0.9359c -0.7658,0.3876 -1.6166,0.3876 -1.6166 0.3876c -1.1723,-0.0000 -1.9380,-0.6807 -1.9380 -0.6807c -0.7658,-0.6807 -0.7658,-1.9286 -0.7658 -1.9286ZM 187.4811,581.5105 ZM 189.0126,581.3971 c 0.0000,0.7941 0.4632,1.1345 0.4632 1.1345c 0.4632,0.3403 1.1439,0.3403 1.1439 0.3403c 0.6618,0.0000 1.2574,-0.3120 1.2574 -0.3120c 0.5956,-0.3120 1.2574,-0.9170 1.2574 -0.9170v -2.5525 c -1.1534,0.1513 -1.9475,0.3592 -1.9475 0.3592c -0.7941,0.2080 -1.2763,0.4916 -1.2763 0.4916c -0.4821,0.2836 -0.6901,0.6523 -0.6901 0.6523c -0.2080,0.3687 -0.2080,0.8036 -0.2080 0.8036ZM 196.0651,583.8929 ZM 197.6155,570.4307 h 1.5504 v 11.7227 c 0.0000,0.3782 0.1324,0.5294 0.1324 0.5294c 0.1324,0.1513 0.3025,0.1513 0.3025 0.1513h 0.1418 c 0.0000,0.0000 0.1985,-0.0378 0.1985 -0.0378l 0.2080,1.1723 c -0.1513,0.0756 -0.3592,0.1134 -0.3592 0.1134c -0.2080,0.0378 -0.5294,0.0378 -0.5294 0.0378c -0.8887,-0.0000 -1.2668,-0.5294 -1.2668 -0.5294c -0.3782,-0.5294 -0.3782,-1.5504 -0.3782 -1.5504v -11.6092 ZM 204.7059,583.8929 ZM 205.5756,579.3172 c 0.0000,-1.1345 0.3498,-2.0326 0.3498 -2.0326c 0.3498,-0.8981 0.9265,-1.5221 0.9265 -1.5221c 0.5767,-0.6239 1.3141,-0.9548 1.3141 -0.9548c 0.7374,-0.3309 1.5315,-0.3309 1.5315 -0.3309c 0.8697,0.0000 1.5599,0.3025 1.5599 0.3025c 0.6901,0.3025 1.1534,0.8697 1.1534 0.8697c 0.4632,0.5672 0.7090,1.3613 0.7090 1.3613c 0.2458,0.7941 0.2458,1.7773 0.2458 1.7773c 0.0000,0.5105 -0.0567,0.8508 -0.0567 0.8508h -6.2017 c 0.0945,1.4937 0.9170,2.3634 0.9170 2.3634c 0.8225,0.8697 2.1460,0.8697 2.1460 0.8697c 0.6618,0.0000 1.2195,-0.1985 1.2195 -0.1985c 0.5578,-0.1985 1.0683,-0.5200 1.0683 -0.5200l 0.5483,1.0210 c -0.6050,0.3782 -1.3424,0.6618 -1.3424 0.6618c -0.7374,0.2836 -1.6828,0.2836 -1.6828 0.2836c -0.9265,-0.0000 -1.7300,-0.3309 -1.7300 -0.3309c -0.8036,-0.3309 -1.3992,-0.9454 -1.3992 -0.9454c -0.5956,-0.6145 -0.9359,-1.5032 -0.9359 -1.5032c -0.3403,-0.8887 -0.3403,-2.0231 -0.3403 -2.0231ZM 205.5756,579.3172 ZM 212.0042,578.6176 c 0.0000,-1.4181 -0.5956,-2.1649 -0.5956 -2.1649c -0.5956,-0.7468 -1.6733,-0.7468 -1.6733 -0.7468c -0.4916,-0.0000 -0.9359,0.1985 -0.9359 0.1985c -0.4443,0.1985 -0.8036,0.5672 -0.8036 0.5672c -0.3592,0.3687 -0.5956,0.9076 -0.5956 0.9076c -0.2363,0.5389 -0.3120,1.2384 -0.3120 1.2384h 4.9160 ZM 214.0840,583.8929 ZM 215.6345,574.7038 h 1.2857 l 0.1324,1.6639 h 0.0567 c 0.4727,-0.8697 1.1439,-1.3803 1.1439 -1.3803c 0.6712,-0.5105 1.4653,-0.5105 1.4653 -0.5105c 0.5483,0.0000 0.9832,0.1891 0.9832 0.1891l -0.3025,1.3613 c -0.2269,-0.0756 -0.4160,-0.1134 -0.4160 -0.1134c -0.1891,-0.0378 -0.4727,-0.0378 -0.4727 -0.0378c -0.5861,-0.0000 -1.2195,0.4727 -1.2195 0.4727c -0.6334,0.4727 -1.1061,1.6450 -1.1061 1.6450v 5.8992 h -1.5504 v -9.1891 ZM 220.6450,583.8929 ZM 222.1954,574.7038 h 1.2857 l 0.1324,1.6639 h 0.0567 c 0.4727,-0.8697 1.1439,-1.3803 1.1439 -1.3803c 0.6712,-0.5105 1.4653,-0.5105 1.4653 -0.5105c 0.5483,0.0000 0.9832,0.1891 0.9832 0.1891l -0.3025,1.3613 c -0.2269,-0.0756 -0.4160,-0.1134 -0.4160 -0.1134c -0.1891,-0.0378 -0.4727,-0.0378 -0.4727 -0.0378c -0.5861,-0.0000 -1.2195,0.4727 -1.2195 0.4727c -0.6334,0.4727 -1.1061,1.6450 -1.1061 1.6450v 5.8992 h -1.5504 v -9.1891 ZM 227.0168,583.8929 ZM 227.8866,579.3172 c 0.0000,-1.1534 0.3498,-2.0515 0.3498 -2.0515c 0.3498,-0.8981 0.9359,-1.5221 0.9359 -1.5221c 0.5861,-0.6239 1.3519,-0.9454 1.3519 -0.9454c 0.7658,-0.3214 1.6166,-0.3214 1.6166 -0.3214c 0.8508,0.0000 1.6166,0.3214 1.6166 0.3214c 0.7658,0.3214 1.3519,0.9454 1.3519 0.9454c 0.5861,0.6239 0.9359,1.5221 0.9359 1.5221c 0.3498,0.8981 0.3498,2.0515 0.3498 2.0515c 0.0000,1.1345 -0.3498,2.0326 -0.3498 2.0326c -0.3498,0.8981 -0.9359,1.5126 -0.9359 1.5126c -0.5861,0.6145 -1.3519,0.9359 -1.3519 0.9359c -0.7658,0.3214 -1.6166,0.3214 -1.6166 0.3214c -0.8508,-0.0000 -1.6166,-0.3214 -1.6166 -0.3214c -0.7658,-0.3214 -1.3519,-0.9359 -1.3519 -0.9359c -0.5861,-0.6145 -0.9359,-1.5126 -0.9359 -1.5126c -0.3498,-0.8981 -0.3498,-2.0326 -0.3498 -2.0326ZM 227.8866,579.3172 ZM 229.4937,579.3172 c 0.0000,0.7941 0.1891,1.4370 0.1891 1.4370c 0.1891,0.6429 0.5389,1.1061 0.5389 1.1061c 0.3498,0.4632 0.8414,0.7185 0.8414 0.7185c 0.4916,0.2553 1.0777,0.2553 1.0777 0.2553c 0.5861,0.0000 1.0777,-0.2553 1.0777 -0.2553c 0.4916,-0.2553 0.8414,-0.7185 0.8414 -0.7185c 0.3498,-0.4632 0.5389,-1.1061 0.5389 -1.1061c 0.1891,-0.6429 0.1891,-1.4370 0.1891 -1.4370c 0.0000,-0.7941 -0.1891,-1.4464 -0.1891 -1.4464c -0.1891,-0.6523 -0.5389,-1.1250 -0.5389 -1.1250c -0.3498,-0.4727 -0.8414,-0.7279 -0.8414 -0.7279c -0.4916,-0.2553 -1.0777,-0.2553 -1.0777 -0.2553c -0.5861,-0.0000 -1.0777,0.2553 -1.0777 0.2553c -0.4916,0.2553 -0.8414,0.7279 -0.8414 0.7279c -0.3498,0.4727 -0.5389,1.1250 -0.5389 1.1250c -0.1891,0.6523 -0.1891,1.4464 -0.1891 1.4464ZM 237.2647,583.8929 ZM 238.8151,574.7038 h 1.2857 l 0.1324,1.6639 h 0.0567 c 0.4727,-0.8697 1.1439,-1.3803 1.1439 -1.3803c 0.6712,-0.5105 1.4653,-0.5105 1.4653 -0.5105c 0.5483,0.0000 0.9832,0.1891 0.9832 0.1891l -0.3025,1.3613 c -0.2269,-0.0756 -0.4160,-0.1134 -0.4160 -0.1134c -0.1891,-0.0378 -0.4727,-0.0378 -0.4727 -0.0378c -0.5861,-0.0000 -1.2195,0.4727 -1.2195 0.4727c -0.6334,0.4727 -1.1061,1.6450 -1.1061 1.6450v 5.8992 h -1.5504 v -9.1891 ZM 247.6450,583.8929 ZM 251.6912,587.2206 c -1.1723,-1.8908 -1.8340,-3.9895 -1.8340 -3.9895c -0.6618,-2.0987 -0.6618,-4.5945 -0.6618 -4.5945c 0.0000,-2.4958 0.6618,-4.5851 0.6618 -4.5851c 0.6618,-2.0893 1.8340,-3.9989 1.8340 -3.9989l 0.9643,0.4538 c -1.0966,1.8151 -1.6355,3.8855 -1.6355 3.8855c -0.5389,2.0704 -0.5389,4.2447 -0.5389 4.2447c 0.0000,2.1744 0.5389,4.2447 0.5389 4.2447c 0.5389,2.0704 1.6355,3.8855 1.6355 3.8855l -0.9643,0.4538 h 0.0000 ZM 253.3739,583.8929 ZM 254.4706,581.5105 c 0.0000,-1.5126 1.3519,-2.3162 1.3519 -2.3162c 1.3519,-0.8036 4.3015,-1.1250 4.3015 -1.1250c 0.0000,-0.4349 -0.0851,-0.8508 -0.0851 -0.8508c -0.0851,-0.4160 -0.3025,-0.7374 -0.3025 -0.7374c -0.2174,-0.3214 -0.5767,-0.5200 -0.5767 -0.5200c -0.3592,-0.1985 -0.9265,-0.1985 -0.9265 -0.1985c -0.8130,-0.0000 -1.5032,0.3025 -1.5032 0.3025c -0.6901,0.3025 -1.2384,0.6807 -1.2384 0.6807l -0.6239,-1.0777 c 0.6429,-0.4160 1.5693,-0.8036 1.5693 -0.8036c 0.9265,-0.3876 2.0420,-0.3876 2.0420 -0.3876c 1.6828,0.0000 2.4391,1.0305 2.4391 1.0305c 0.7563,1.0305 0.7563,2.7511 0.7563 2.7511v 5.6345 h -1.2857 l -0.1324,-1.0966 h -0.0378 c -0.6618,0.5483 -1.4275,0.9359 -1.4275 0.9359c -0.7658,0.3876 -1.6166,0.3876 -1.6166 0.3876c -1.1723,-0.0000 -1.9380,-0.6807 -1.9380 -0.6807c -0.7658,-0.6807 -0.7658,-1.9286 -0.7658 -1.9286ZM 254.4706,581.5105 ZM 256.0021,581.3971 c 0.0000,0.7941 0.4632,1.1345 0.4632 1.1345c 0.4632,0.3403 1.1439,0.3403 1.1439 0.3403c 0.6618,0.0000 1.2574,-0.3120 1.2574 -0.3120c 0.5956,-0.3120 1.2574,-0.9170 1.2574 -0.9170v -2.5525 c -1.1534,0.1513 -1.9475,0.3592 -1.9475 0.3592c -0.7941,0.2080 -1.2763,0.4916 -1.2763 0.4916c -0.4821,0.2836 -0.6901,0.6523 -0.6901 0.6523c -0.2080,0.3687 -0.2080,0.8036 -0.2080 0.8036ZM 263.0546,583.8929 ZM 263.2815,574.7038 h 1.6071 l 1.7395,5.2185 c 0.2080,0.6807 0.4254,1.3613 0.4254 1.3613c 0.2174,0.6807 0.4254,1.3424 0.4254 1.3424h 0.0756 c 0.2080,-0.6618 0.4160,-1.3424 0.4160 -1.3424l 0.4160,-1.3613 l 1.7395,-5.2185 h 1.5315 l -3.2521,9.1891 h -1.8151 ZM 271.8088,583.8929 ZM 272.6786,579.3172 c 0.0000,-1.1345 0.3498,-2.0326 0.3498 -2.0326c 0.3498,-0.8981 0.9265,-1.5221 0.9265 -1.5221c 0.5767,-0.6239 1.3141,-0.9548 1.3141 -0.9548c 0.7374,-0.3309 1.5315,-0.3309 1.5315 -0.3309c 0.8697,0.0000 1.5599,0.3025 1.5599 0.3025c 0.6901,0.3025 1.1534,0.8697 1.1534 0.8697c 0.4632,0.5672 0.7090,1.3613 0.7090 1.3613c 0.2458,0.7941 0.2458,1.7773 0.2458 1.7773c 0.0000,0.5105 -0.0567,0.8508 -0.0567 0.8508h -6.2017 c 0.0945,1.4937 0.9170,2.3634 0.9170 2.3634c 0.8225,0.8697 2.1460,0.8697 2.1460 0.8697c 0.6618,0.0000 1.2195,-0.1985 1.2195 -0.1985c 0.5578,-0.1985 1.0683,-0.5200 1.0683 -0.5200l 0.5483,1.0210 c -0.6050,0.3782 -1.3424,0.6618 -1.3424 0.6618c -0.7374,0.2836 -1.6828,0.2836 -1.6828 0.2836c -0.9265,-0.0000 -1.7300,-0.3309 -1.7300 -0.3309c -0.8036,-0.3309 -1.3992,-0.9454 -1.3992 -0.9454c -0.5956,-0.6145 -0.9359,-1.5032 -0.9359 -1.5032c -0.3403,-0.8887 -0.3403,-2.0231 -0.3403 -2.0231ZM 272.6786,579.3172 ZM 279.1071,578.6176 c 0.0000,-1.4181 -0.5956,-2.1649 -0.5956 -2.1649c -0.5956,-0.7468 -1.6733,-0.7468 -1.6733 -0.7468c -0.4916,-0.0000 -0.9359,0.1985 -0.9359 0.1985c -0.4443,0.1985 -0.8036,0.5672 -0.8036 0.5672c -0.3592,0.3687 -0.5956,0.9076 -0.5956 0.9076c -0.2363,0.5389 -0.3120,1.2384 -0.3120 1.2384h 4.9160 ZM 281.1870,583.8929 ZM 282.7374,574.7038 h 1.2857 l 0.1324,1.6639 h 0.0567 c 0.4727,-0.8697 1.1439,-1.3803 1.1439 -1.3803c 0.6712,-0.5105 1.4653,-0.5105 1.4653 -0.5105c 0.5483,0.0000 0.9832,0.1891 0.9832 0.1891l -0.3025,1.3613 c -0.2269,-0.0756 -0.4160,-0.1134 -0.4160 -0.1134c -0.1891,-0.0378 -0.4727,-0.0378 -0.4727 -0.0378c -0.5861,-0.0000 -1.2195,0.4727 -1.2195 0.4727c -0.6334,0.4727 -1.1061,1.6450 -1.1061 1.6450v 5.8992 h -1.5504 v -9.1891 ZM 287.2752,583.8929 ZM 288.3718,581.5105 c 0.0000,-1.5126 1.3519,-2.3162 1.3519 -2.3162c 1.3519,-0.8036 4.3015,-1.1250 4.3015 -1.1250c 0.0000,-0.4349 -0.0851,-0.8508 -0.0851 -0.8508c -0.0851,-0.4160 -0.3025,-0.7374 -0.3025 -0.7374c -0.2174,-0.3214 -0.5767,-0.5200 -0.5767 -0.5200c -0.3592,-0.1985 -0.9265,-0.1985 -0.9265 -0.1985c -0.8130,-0.0000 -1.5032,0.3025 -1.5032 0.3025c -0.6901,0.3025 -1.2384,0.6807 -1.2384 0.6807l -0.6239,-1.0777 c 0.6429,-0.4160 1.5693,-0.8036 1.5693 -0.8036c 0.9265,-0.3876 2.0420,-0.3876 2.0420 -0.3876c 1.6828,0.0000 2.4391,1.0305 2.4391 1.0305c 0.7563,1.0305 0.7563,2.7511 0.7563 2.7511v 5.6345 h -1.2857 l -0.1324,-1.0966 h -0.0378 c -0.6618,0.5483 -1.4275,0.9359 -1.4275 0.9359c -0.7658,0.3876 -1.6166,0.3876 -1.6166 0.3876c -1.1723,-0.0000 -1.9380,-0.6807 -1.9380 -0.6807c -0.7658,-0.6807 -0.7658,-1.9286 -0.7658 -1.9286ZM 288.3718,581.5105 ZM 289.9034,581.3971 c 0.0000,0.7941 0.4632,1.1345 0.4632 1.1345c 0.4632,0.3403 1.1439,0.3403 1.1439 0.3403c 0.6618,0.0000 1.2574,-0.3120 1.2574 -0.3120c 0.5956,-0.3120 1.2574,-0.9170 1.2574 -0.9170v -2.5525 c -1.1534,0.1513 -1.9475,0.3592 -1.9475 0.3592c -0.7941,0.2080 -1.2763,0.4916 -1.2763 0.4916c -0.4821,0.2836 -0.6901,0.6523 -0.6901 0.6523c -0.2080,0.3687 -0.2080,0.8036 -0.2080 0.8036ZM 296.9559,583.8929 ZM 299.1681,585.4433 c 0.0000,0.7374 0.7090,1.1723 0.7090 1.1723c 0.7090,0.4349 1.9569,0.4349 1.9569 0.4349c 0.6618,0.0000 1.2006,-0.1607 1.2006 -0.1607c 0.5389,-0.1607 0.9170,-0.4160 0.9170 -0.4160c 0.3782,-0.2553 0.5861,-0.5956 0.5861 -0.5956c 0.2080,-0.3403 0.2080,-0.6996 0.2080 -0.6996c 0.0000,-0.6429 -0.4727,-0.8887 -0.4727 -0.8887c -0.4727,-0.2458 -1.3803,-0.2458 -1.3803 -0.2458h -1.5882 c -0.2647,-0.0000 -0.5767,-0.0284 -0.5767 -0.0284c -0.3120,-0.0284 -0.6145,-0.1229 -0.6145 -0.1229c -0.4916,0.3592 -0.7185,0.7563 -0.7185 0.7563c -0.2269,0.3971 -0.2269,0.7941 -0.2269 0.7941ZM 299.1681,585.4433 ZM 297.8067,585.6513 c 0.0000,-0.5861 0.3592,-1.1155 0.3592 -1.1155c 0.3592,-0.5294 0.9832,-0.9643 0.9832 -0.9643v -0.0756 c -0.3403,-0.2080 -0.5767,-0.5767 -0.5767 -0.5767c -0.2363,-0.3687 -0.2363,-0.9170 -0.2363 -0.9170c 0.0000,-0.5861 0.3214,-1.0210 0.3214 -1.0210c 0.3214,-0.4349 0.6807,-0.6807 0.6807 -0.6807v -0.0756 c -0.4538,-0.3782 -0.8225,-1.0116 -0.8225 -1.0116c -0.3687,-0.6334 -0.3687,-1.4653 -0.3687 -1.4653c 0.0000,-0.7563 0.2742,-1.3613 0.2742 -1.3613c 0.2742,-0.6050 0.7468,-1.0305 0.7468 -1.0305c 0.4727,-0.4254 1.1061,-0.6523 1.1061 -0.6523c 0.6334,-0.2269 1.3330,-0.2269 1.3330 -0.2269c 0.3782,0.0000 0.7090,0.0662 0.7090 0.0662c 0.3309,0.0662 0.5956,0.1607 0.5956 0.1607h 3.1954 v 1.1912 h -1.8908 c 0.3214,0.3214 0.5389,0.8130 0.5389 0.8130c 0.2174,0.4916 0.2174,1.0777 0.2174 1.0777c 0.0000,0.7374 -0.2647,1.3330 -0.2647 1.3330c -0.2647,0.5956 -0.7185,1.0021 -0.7185 1.0021c -0.4538,0.4065 -1.0683,0.6334 -1.0683 0.6334c -0.6145,0.2269 -1.3141,0.2269 -1.3141 0.2269c -0.3403,-0.0000 -0.6996,-0.0851 -0.6996 -0.0851c -0.3592,-0.0851 -0.6807,-0.2363 -0.6807 -0.2363c -0.2458,0.2080 -0.4160,0.4632 -0.4160 0.4632c -0.1702,0.2553 -0.1702,0.6334 -0.1702 0.6334c 0.0000,0.4349 0.3403,0.7185 0.3403 0.7185c 0.3403,0.2836 1.2857,0.2836 1.2857 0.2836h 1.7773 c 1.6071,0.0000 2.4107,0.5200 2.4107 0.5200c 0.8036,0.5200 0.8036,1.6733 0.8036 1.6733c 0.0000,0.6429 -0.3214,1.2195 -0.3214 1.2195c -0.3214,0.5767 -0.9265,1.0116 -0.9265 1.0116c -0.6050,0.4349 -1.4653,0.6901 -1.4653 0.6901c -0.8603,0.2553 -1.9380,0.2553 -1.9380 0.2553c -0.8508,-0.0000 -1.5504,-0.1607 -1.5504 -0.1607c -0.6996,-0.1607 -1.2006,-0.4821 -1.2006 -0.4821c -0.5011,-0.3214 -0.7752,-0.7752 -0.7752 -0.7752c -0.2742,-0.4538 -0.2742,-1.0588 -0.2742 -1.0588ZM 297.8067,585.6513 ZM 301.6071,579.9412 c 0.3971,0.0000 0.7468,-0.1513 0.7468 -0.1513c 0.3498,-0.1513 0.6239,-0.4349 0.6239 -0.4349c 0.2742,-0.2836 0.4254,-0.6901 0.4254 -0.6901c 0.1513,-0.4065 0.1513,-0.9170 0.1513 -0.9170c 0.0000,-1.0210 -0.5672,-1.5788 -0.5672 -1.5788c -0.5672,-0.5578 -1.3803,-0.5578 -1.3803 -0.5578c -0.8130,-0.0000 -1.3803,0.5578 -1.3803 0.5578c -0.5672,0.5578 -0.5672,1.5788 -0.5672 1.5788c 0.0000,0.5105 0.1513,0.9170 0.1513 0.9170c 0.1513,0.4065 0.4254,0.6901 0.4254 0.6901c 0.2742,0.2836 0.6239,0.4349 0.6239 0.4349c 0.3498,0.1513 0.7468,0.1513 0.7468 0.1513ZM 306.2206,583.8929 ZM 307.0903,579.3172 c 0.0000,-1.1345 0.3498,-2.0326 0.3498 -2.0326c 0.3498,-0.8981 0.9265,-1.5221 0.9265 -1.5221c 0.5767,-0.6239 1.3141,-0.9548 1.3141 -0.9548c 0.7374,-0.3309 1.5315,-0.3309 1.5315 -0.3309c 0.8697,0.0000 1.5599,0.3025 1.5599 0.3025c 0.6901,0.3025 1.1534,0.8697 1.1534 0.8697c 0.4632,0.5672 0.7090,1.3613 0.7090 1.3613c 0.2458,0.7941 0.2458,1.7773 0.2458 1.7773c 0.0000,0.5105 -0.0567,0.8508 -0.0567 0.8508h -6.2017 c 0.0945,1.4937 0.9170,2.3634 0.9170 2.3634c 0.8225,0.8697 2.1460,0.8697 2.1460 0.8697c 0.6618,0.0000 1.2195,-0.1985 1.2195 -0.1985c 0.5578,-0.1985 1.0683,-0.5200 1.0683 -0.5200l 0.5483,1.0210 c -0.6050,0.3782 -1.3424,0.6618 -1.3424 0.6618c -0.7374,0.2836 -1.6828,0.2836 -1.6828 0.2836c -0.9265,-0.0000 -1.7300,-0.3309 -1.7300 -0.3309c -0.8036,-0.3309 -1.3992,-0.9454 -1.3992 -0.9454c -0.5956,-0.6145 -0.9359,-1.5032 -0.9359 -1.5032c -0.3403,-0.8887 -0.3403,-2.0231 -0.3403 -2.0231ZM 307.0903,579.3172 ZM 313.5189,578.6176 c 0.0000,-1.4181 -0.5956,-2.1649 -0.5956 -2.1649c -0.5956,-0.7468 -1.6733,-0.7468 -1.6733 -0.7468c -0.4916,-0.0000 -0.9359,0.1985 -0.9359 0.1985c -0.4443,0.1985 -0.8036,0.5672 -0.8036 0.5672c -0.3592,0.3687 -0.5956,0.9076 -0.5956 0.9076c -0.2363,0.5389 -0.3120,1.2384 -0.3120 1.2384h 4.9160 ZM 315.5987,583.8929 ZM 316.3172,586.7668 c 1.0966,-1.8151 1.6355,-3.8855 1.6355 -3.8855c 0.5389,-2.0704 0.5389,-4.2447 0.5389 -4.2447c 0.0000,-2.1744 -0.5389,-4.2447 -0.5389 -4.2447c -0.5389,-2.0704 -1.6355,-3.8855 -1.6355 -3.8855l 0.9643,-0.4538 c 1.1723,1.9097 1.8340,3.9989 1.8340 3.9989c 0.6618,2.0893 0.6618,4.5851 0.6618 4.5851c 0.0000,2.4958 -0.6618,4.5945 -0.6618 4.5945c -0.6618,2.0987 -1.8340,3.9895 -1.8340 3.9895l -0.9643,-0.4538 h 0.0000 Z"+       id="path62" />+  </g>+  <path+     style="fill:#000000;stroke-width:1.5;stroke-dasharray:none"+     d="m 685.70864,559.69275 -0.2629,-17.90442"+     id="path63"+     sodipodi:nodetypes="cc" />+  <text+     xml:space="preserve"+     id="text63"+     style="fill:#000000;stroke-width:1.5;stroke-dasharray:none;white-space:pre;shape-inside:url(#rect63)" />+  <text+     xml:space="preserve"+     id="text64"+     style="white-space:pre;shape-inside:url(#rect64);fill:#000000;stroke-width:1.5;stroke-dasharray:none"+     transform="translate(-8)"><tspan+       x="97.173828"+       y="124.05078"+       id="tspan16"><tspan+         style="font-weight:200;font-size:16px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans, Ultra-Light'"+         id="tspan2">202</tspan></tspan></text>+  <text+     xml:space="preserve"+     id="text64-1"+     style="white-space:pre;shape-inside:url(#rect64-3);fill:#000000;stroke-width:1.5;stroke-dasharray:none"+     transform="translate(110.6543,0.82422)"><tspan+       x="97.173828"+       y="124.05078"+       id="tspan18"><tspan+         style="font-weight:200;font-size:16px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans, Ultra-Light'"+         id="tspan17">201</tspan></tspan></text>+  <text+     xml:space="preserve"+     id="text64-19"+     style="white-space:pre;shape-inside:url(#rect64-9);display:inline;fill:#000000;stroke-width:1.5;stroke-dasharray:none"+     transform="translate(234.85135,386.36411)"><tspan+       x="97.173828"+       y="124.05078"+       id="tspan20"><tspan+         style="font-weight:200;font-size:16px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans, Ultra-Light'"+         id="tspan19">4</tspan></tspan></text>+  <text+     xml:space="preserve"+     id="text64-19-0"+     style="white-space:pre;shape-inside:url(#rect64-9-4);display:inline;fill:#000000;stroke-width:1.5;stroke-dasharray:none"+     transform="translate(343.13137,291.83431)"><tspan+       x="97.173828"+       y="124.05078"+       id="tspan22"><tspan+         style="font-weight:200;font-size:16px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans, Ultra-Light'"+         id="tspan21">51</tspan></tspan></text>+  <text+     xml:space="preserve"+     id="text64-19-3"+     style="white-space:pre;shape-inside:url(#rect64-9-0);display:inline;fill:#000000;stroke-width:1.5;stroke-dasharray:none"+     transform="translate(457.7129,375.35395)"><tspan+       x="97.173828"+       y="124.05078"+       id="tspan24"><tspan+         style="font-weight:200;font-size:16px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans, Ultra-Light'"+         id="tspan23">11</tspan></tspan></text>+  <text+     xml:space="preserve"+     id="text64-19-5"+     style="white-space:pre;shape-inside:url(#rect64-9-1);display:inline;fill:#000000;stroke-width:1.5;stroke-dasharray:none"+     transform="translate(579.71018,390.63451)"><tspan+       x="97.173828"+       y="124.05078"+       id="tspan26"><tspan+         style="font-size:16px;font-family:Sans;-inkscape-font-specification:'Sans, Normal'"+         id="tspan25">1</tspan></tspan></text>+  <rect+     style="fill:#000000;stroke-width:1.37833;stroke-dasharray:none"+     id="rect65"+     width="102.32937"+     height="417.96747"+     x="635.28619"+     y="115.42778" />+  <text+     xml:space="preserve"+     id="text65"+     style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:32px;font-family:Sans;-inkscape-font-specification:'Sans, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;white-space:pre;shape-inside:url(#rect66);fill:#000000;stroke-width:1.5;stroke-dasharray:none"+     transform="matrix(-0.01675612,-2.2111866,2.8520098,-0.01299115,20.341437,1487.355)"><tspan+       x="437.0293"+       y="248.08594"+       id="tspan28"><tspan+         style="font-weight:bold;-inkscape-font-specification:'Sans, Bold';fill:#f9f9f9;stroke:#e5e5e5"+         id="tspan27">SPOILERS</tspan></tspan></text>+  <text+     xml:space="preserve"+     style="font-style:normal;font-variant:normal;font-weight:200;font-stretch:normal;font-size:16px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans, Ultra-Light';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;fill:#f9f9f9;stroke:#e6e6e6;stroke-width:1.5;stroke-dasharray:none;stroke-opacity:1"+     x="884.7276"+     y="377.01364"+     id="text67"><tspan+       sodipodi:role="line"+       id="tspan67"+       x="884.7276"+       y="377.01364">`1</tspan></text>+</svg>
+ assets/images/deck_shuffle_chart_uncensored.svg view
@@ -0,0 +1,1079 @@+<?xml version="1.0" encoding="UTF-8" standalone="no"?>+<svg+   font-size="1"+   viewBox="0.0 0.0 800.0 600.0"+   stroke="rgb(0,0,0)"+   width="800.0000"+   stroke-opacity="1"+   height="600.0000"+   version="1.1"+   id="svg63"+   sodipodi:docname="deck_shuffle_chart_uncensored.svg"+   inkscape:version="1.3.2 (091e20ef0f, 2023-11-25)"+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"+   xmlns="http://www.w3.org/2000/svg"+   xmlns:svg="http://www.w3.org/2000/svg">+  <sodipodi:namedview+     id="namedview63"+     pagecolor="#ffffff"+     bordercolor="#000000"+     borderopacity="0.25"+     inkscape:showpageshadow="2"+     inkscape:pageopacity="0.0"+     inkscape:pagecheckerboard="0"+     inkscape:deskcolor="#d1d1d1"+     inkscape:zoom="1.3817989"+     inkscape:cx="450.49972"+     inkscape:cy="292.01066"+     inkscape:window-width="1876"+     inkscape:window-height="1006"+     inkscape:window-x="0"+     inkscape:window-y="0"+     inkscape:window-maximized="1"+     inkscape:current-layer="svg63" />+  <defs+     id="defs1">+    <rect+       x="437.02939"+       y="219.77409"+       width="280.69162"+       height="68.801841"+       id="rect66" />+    <rect+       x="97.172925"+       y="109.89411"+       width="44.628759"+       height="31.090587"+       id="rect64" />+    <rect+       x="93.266106"+       y="103.33563"+       width="48.001288"+       height="28.925158"+       id="rect63" />+    <rect+       x="97.172928"+       y="109.89411"+       width="44.628757"+       height="31.090588"+       id="rect64-3" />+    <rect+       x="97.172928"+       y="109.89411"+       width="44.628757"+       height="31.090588"+       id="rect64-9" />+    <rect+       x="97.172928"+       y="109.89411"+       width="44.628757"+       height="31.090588"+       id="rect64-9-4" />+    <rect+       x="97.172928"+       y="109.89411"+       width="44.628757"+       height="31.090588"+       id="rect64-9-0" />+    <rect+       x="97.172928"+       y="109.89411"+       width="44.628757"+       height="31.090588"+       id="rect64-9-1" />+  </defs>+  <g+     stroke-linejoin="bevel"+     fill-opacity="1.0"+     fill="rgb(255,255,255)"+     stroke="rgb(0,0,0)"+     stroke-linecap="butt"+     stroke-miterlimit="10.0"+     stroke-opacity="0.0"+     stroke-width="0.0"+     id="g1">+    <path+       d="M 0.0000,0.0000 v 600.0000 h 800.0000 v -600.0000 Z"+       id="path1" />+  </g>+  <g+     stroke-linejoin="bevel"+     fill-opacity="1"+     fill="#000000"+     stroke="#000000"+     stroke-linecap="butt"+     stroke-miterlimit="10"+     stroke-opacity="0"+     stroke-width="0"+     id="g61-2"+     transform="translate(123.0381,15.4622)">+    <path+       d="m 512.9619,562 z m 1.7017,-12.4034 h 1.8529 l 2.4013,6.6555 0.9076,2.5336 h 0.0756 l 0.8697,-2.5336 2.3824,-6.6555 h 1.8529 V 562 h -1.4937 v -6.8256 c 0,-0.8319 0.0662,-1.834 0.0662,-1.834 0.0662,-1.0021 0.1418,-1.834 0.1418,-1.834 h -0.0756 l -1.0021,2.7605 -2.3824,6.4853 h -0.8887 l -2.4013,-6.4853 -0.9832,-2.7605 h -0.0756 c 0.0567,0.8319 0.1324,1.834 0.1324,1.834 0.0756,1.0021 0.0756,1.834 0.0756,1.834 V 562 h -1.4559 V 549.5966 Z M 526.7077,562 Z m 1.0967,-2.3824 c 0,-1.5126 1.3519,-2.3162 1.3519,-2.3162 1.3519,-0.8036 4.3015,-1.125 4.3015,-1.125 0,-0.4349 -0.0851,-0.8508 -0.0851,-0.8508 -0.0851,-0.416 -0.3025,-0.7374 -0.3025,-0.7374 -0.2174,-0.3214 -0.5767,-0.52 -0.5767,-0.52 -0.3592,-0.1985 -0.9265,-0.1985 -0.9265,-0.1985 -0.813,0 -1.5032,0.3025 -1.5032,0.3025 -0.6901,0.3025 -1.2384,0.6807 -1.2384,0.6807 l -0.6239,-1.0777 c 0.6429,-0.416 1.5693,-0.8036 1.5693,-0.8036 0.9265,-0.3876 2.042,-0.3876 2.042,-0.3876 1.6828,0 2.4391,1.0305 2.4391,1.0305 0.7563,1.0305 0.7563,2.7511 0.7563,2.7511 v 5.6345 h -1.2857 l -0.1324,-1.0966 h -0.0378 c -0.6618,0.5483 -1.4275,0.9359 -1.4275,0.9359 -0.7658,0.3876 -1.6166,0.3876 -1.6166,0.3876 -1.1723,0 -1.938,-0.6807 -1.938,-0.6807 -0.7658,-0.6807 -0.7658,-1.9286 -0.7658,-1.9286 z m 0,0 z m 1.5315,-0.1134 c 0,0.7941 0.4632,1.1345 0.4632,1.1345 0.4632,0.3403 1.1439,0.3403 1.1439,0.3403 0.6618,0 1.2574,-0.312 1.2574,-0.312 0.5956,-0.312 1.2574,-0.917 1.2574,-0.917 v -2.5525 c -1.1534,0.1513 -1.9475,0.3592 -1.9475,0.3592 -0.7941,0.208 -1.2763,0.4916 -1.2763,0.4916 -0.4821,0.2836 -0.6901,0.6523 -0.6901,0.6523 -0.208,0.3687 -0.208,0.8036 -0.208,0.8036 z M 536.3884,562 Z m 2.2122,1.5504 c 0,0.7374 0.709,1.1723 0.709,1.1723 0.709,0.4349 1.9569,0.4349 1.9569,0.4349 0.6618,0 1.2006,-0.1607 1.2006,-0.1607 0.5389,-0.1607 0.917,-0.416 0.917,-0.416 0.3782,-0.2553 0.5861,-0.5956 0.5861,-0.5956 0.208,-0.3403 0.208,-0.6996 0.208,-0.6996 0,-0.6429 -0.4727,-0.8887 -0.4727,-0.8887 -0.4727,-0.2458 -1.3803,-0.2458 -1.3803,-0.2458 h -1.5882 c -0.2647,0 -0.5767,-0.0284 -0.5767,-0.0284 -0.312,-0.0284 -0.6145,-0.1229 -0.6145,-0.1229 -0.4916,0.3592 -0.7185,0.7563 -0.7185,0.7563 -0.2269,0.3971 -0.2269,0.7941 -0.2269,0.7941 z m 0,0 z m -1.3614,0.208 c 0,-0.5861 0.3592,-1.1155 0.3592,-1.1155 0.3592,-0.5294 0.9832,-0.9643 0.9832,-0.9643 v -0.0756 c -0.3403,-0.208 -0.5767,-0.5767 -0.5767,-0.5767 -0.2363,-0.3687 -0.2363,-0.917 -0.2363,-0.917 0,-0.5861 0.3214,-1.021 0.3214,-1.021 0.3214,-0.4349 0.6807,-0.6807 0.6807,-0.6807 v -0.0756 c -0.4538,-0.3782 -0.8225,-1.0116 -0.8225,-1.0116 -0.3687,-0.6334 -0.3687,-1.4653 -0.3687,-1.4653 0,-0.7563 0.2742,-1.3613 0.2742,-1.3613 0.2742,-0.605 0.7468,-1.0305 0.7468,-1.0305 0.4727,-0.4254 1.1061,-0.6523 1.1061,-0.6523 0.6334,-0.2269 1.333,-0.2269 1.333,-0.2269 0.3782,0 0.709,0.0662 0.709,0.0662 0.3309,0.0662 0.5956,0.1607 0.5956,0.1607 h 3.1954 v 1.1912 h -1.8908 c 0.3214,0.3214 0.5389,0.813 0.5389,0.813 0.2174,0.4916 0.2174,1.0777 0.2174,1.0777 0,0.7374 -0.2647,1.333 -0.2647,1.333 -0.2647,0.5956 -0.7185,1.0021 -0.7185,1.0021 -0.4538,0.4065 -1.0683,0.6334 -1.0683,0.6334 -0.6145,0.2269 -1.3141,0.2269 -1.3141,0.2269 -0.3403,0 -0.6996,-0.0851 -0.6996,-0.0851 -0.3592,-0.0851 -0.6807,-0.2363 -0.6807,-0.2363 -0.2458,0.208 -0.416,0.4632 -0.416,0.4632 -0.1702,0.2553 -0.1702,0.6334 -0.1702,0.6334 0,0.4349 0.3403,0.7185 0.3403,0.7185 0.3403,0.2836 1.2857,0.2836 1.2857,0.2836 h 1.7773 c 1.6071,0 2.4107,0.52 2.4107,0.52 0.8036,0.52 0.8036,1.6733 0.8036,1.6733 0,0.6429 -0.3214,1.2195 -0.3214,1.2195 -0.3214,0.5767 -0.9265,1.0116 -0.9265,1.0116 -0.605,0.4349 -1.4653,0.6901 -1.4653,0.6901 -0.8603,0.2553 -1.938,0.2553 -1.938,0.2553 -0.8508,0 -1.5504,-0.1607 -1.5504,-0.1607 -0.6996,-0.1607 -1.2006,-0.4821 -1.2006,-0.4821 -0.5011,-0.3214 -0.7752,-0.7752 -0.7752,-0.7752 -0.2742,-0.4538 -0.2742,-1.0588 -0.2742,-1.0588 z m 0,0 z m 3.8005,-5.7101 c 0.3971,0 0.7468,-0.1513 0.7468,-0.1513 0.3498,-0.1513 0.6239,-0.4349 0.6239,-0.4349 0.2742,-0.2836 0.4254,-0.6901 0.4254,-0.6901 0.1513,-0.4065 0.1513,-0.917 0.1513,-0.917 0,-1.021 -0.5672,-1.5788 -0.5672,-1.5788 -0.5672,-0.5578 -1.3803,-0.5578 -1.3803,-0.5578 -0.813,0 -1.3803,0.5578 -1.3803,0.5578 -0.5672,0.5578 -0.5672,1.5788 -0.5672,1.5788 0,0.5105 0.1513,0.917 0.1513,0.917 0.1513,0.4065 0.4254,0.6901 0.4254,0.6901 0.2742,0.2836 0.6239,0.4349 0.6239,0.4349 0.3498,0.1513 0.7468,0.1513 0.7468,0.1513 z M 545.9178,562 Z m 2.3445,-11.0798 c -0.4538,0 -0.7658,-0.2836 -0.7658,-0.2836 -0.312,-0.2836 -0.312,-0.7185 -0.312,-0.7185 0,-0.4538 0.312,-0.7279 0.312,-0.7279 0.312,-0.2742 0.7658,-0.2742 0.7658,-0.2742 0.4538,0 0.7658,0.2742 0.7658,0.2742 0.312,0.2742 0.312,0.7279 0.312,0.7279 0,0.4349 -0.312,0.7185 -0.312,0.7185 -0.312,0.2836 -0.7658,0.2836 -0.7658,0.2836 z m 0,0 z m -0.7941,1.8907 h 1.5504 V 562 h -1.5504 z M 550.5691,562 Z m 0.8697,-4.5756 c 0,-1.1534 0.3592,-2.0515 0.3592,-2.0515 0.3592,-0.8981 0.9643,-1.5221 0.9643,-1.5221 0.605,-0.6239 1.4086,-0.9454 1.4086,-0.9454 0.8036,-0.3214 1.6922,-0.3214 1.6922,-0.3214 0.9076,0 1.5599,0.3309 1.5599,0.3309 0.6523,0.3309 1.125,0.7658 1.125,0.7658 l -0.7752,1.0021 c -0.416,-0.3592 -0.8603,-0.5861 -0.8603,-0.5861 -0.4443,-0.2269 -0.9926,-0.2269 -0.9926,-0.2269 -0.6239,0 -1.1534,0.2553 -1.1534,0.2553 -0.5294,0.2553 -0.9076,0.7279 -0.9076,0.7279 -0.3782,0.4727 -0.5956,1.125 -0.5956,1.125 -0.2174,0.6523 -0.2174,1.4464 -0.2174,1.4464 0,0.7941 0.208,1.437 0.208,1.437 0.208,0.6429 0.5767,1.1061 0.5767,1.1061 0.3687,0.4632 0.8981,0.7185 0.8981,0.7185 0.5294,0.2553 1.1534,0.2553 1.1534,0.2553 0.6618,0 1.2006,-0.2742 1.2006,-0.2742 0.5389,-0.2742 0.9548,-0.6523 0.9548,-0.6523 l 0.6996,1.021 c -0.6239,0.5483 -1.3897,0.8697 -1.3897,0.8697 -0.7658,0.3214 -1.5977,0.3214 -1.5977,0.3214 -0.9076,0 -1.7017,-0.3214 -1.7017,-0.3214 -0.7941,-0.3214 -1.3708,-0.9359 -1.3708,-0.9359 -0.5767,-0.6145 -0.9076,-1.5126 -0.9076,-1.5126 -0.3309,-0.8981 -0.3309,-2.0326 -0.3309,-2.0326 z M 563.0102,562 Z m 3.271,-6.5231 h 2.0798 c 1.4559,0 2.2311,-0.5956 2.2311,-0.5956 0.7752,-0.5956 0.7752,-1.8057 0.7752,-1.8057 0,-1.229 -0.7752,-1.7206 -0.7752,-1.7206 -0.7752,-0.4916 -2.2311,-0.4916 -2.2311,-0.4916 h -2.0798 v 4.6134 z m 0,0 z m 5.2374,6.5231 -2.9874,-5.2374 h -2.25 V 562 h -1.5693 v -12.4034 h 3.8761 c 0.9454,0 1.7489,0.1796 1.7489,0.1796 0.8036,0.1796 1.3803,0.5956 1.3803,0.5956 0.5767,0.416 0.8981,1.0777 0.8981,1.0777 0.3214,0.6618 0.3214,1.6261 0.3214,1.6261 0,1.4559 -0.7563,2.3256 -0.7563,2.3256 -0.7563,0.8697 -2.0231,1.1912 -2.0231,1.1912 L 573.296,562 h -1.7773 z m 2.2879,0 z m 0.8697,-4.5756 c 0,-1.1534 0.3498,-2.0515 0.3498,-2.0515 0.3498,-0.8981 0.9359,-1.5221 0.9359,-1.5221 0.5861,-0.6239 1.3519,-0.9454 1.3519,-0.9454 0.7658,-0.3214 1.6166,-0.3214 1.6166,-0.3214 0.8508,0 1.6166,0.3214 1.6166,0.3214 0.7658,0.3214 1.3519,0.9454 1.3519,0.9454 0.5861,0.6239 0.9359,1.5221 0.9359,1.5221 0.3498,0.8981 0.3498,2.0515 0.3498,2.0515 0,1.1345 -0.3498,2.0326 -0.3498,2.0326 -0.3498,0.8981 -0.9359,1.5126 -0.9359,1.5126 -0.5861,0.6145 -1.3519,0.9359 -1.3519,0.9359 -0.7658,0.3214 -1.6166,0.3214 -1.6166,0.3214 -0.8508,0 -1.6166,-0.3214 -1.6166,-0.3214 -0.7658,-0.3214 -1.3519,-0.9359 -1.3519,-0.9359 -0.5861,-0.6145 -0.9359,-1.5126 -0.9359,-1.5126 -0.3498,-0.8981 -0.3498,-2.0326 -0.3498,-2.0326 z m 0,0 z m 1.6072,0 c 0,0.7941 0.1891,1.437 0.1891,1.437 0.1891,0.6429 0.5389,1.1061 0.5389,1.1061 0.3498,0.4632 0.8414,0.7185 0.8414,0.7185 0.4916,0.2553 1.0777,0.2553 1.0777,0.2553 0.5861,0 1.0777,-0.2553 1.0777,-0.2553 0.4916,-0.2553 0.8414,-0.7185 0.8414,-0.7185 0.3498,-0.4632 0.5389,-1.1061 0.5389,-1.1061 0.1891,-0.6429 0.1891,-1.437 0.1891,-1.437 0,-0.7941 -0.1891,-1.4464 -0.1891,-1.4464 -0.1891,-0.6523 -0.5389,-1.125 -0.5389,-1.125 -0.3498,-0.4727 -0.8414,-0.7279 -0.8414,-0.7279 -0.4916,-0.2553 -1.0777,-0.2553 -1.0777,-0.2553 -0.5861,0 -1.0777,0.2553 -1.0777,0.2553 -0.4916,0.2553 -0.8414,0.7279 -0.8414,0.7279 -0.3498,0.4727 -0.5389,1.125 -0.5389,1.125 -0.1891,0.6523 -0.1891,1.4464 -0.1891,1.4464 z m 7.771,4.5756 z m 1.5504,-13.4622 h 1.5504 v 3.6681 l -0.0378,1.6639 c 0.6239,-0.5483 1.3613,-0.917 1.3613,-0.917 0.7374,-0.3687 1.5126,-0.3687 1.5126,-0.3687 0.8887,0 1.5693,0.3309 1.5693,0.3309 0.6807,0.3309 1.1439,0.9454 1.1439,0.9454 0.4632,0.6145 0.6996,1.4748 0.6996,1.4748 0.2363,0.8603 0.2363,1.9191 0.2363,1.9191 0,1.1723 -0.3214,2.0987 -0.3214,2.0987 -0.3214,0.9265 -0.8697,1.5693 -0.8697,1.5693 -0.5483,0.6429 -1.2668,0.9737 -1.2668,0.9737 -0.7185,0.3309 -1.5126,0.3309 -1.5126,0.3309 -0.6429,0 -1.333,-0.2931 -1.333,-0.2931 -0.6901,-0.2931 -1.2952,-0.8414 -1.2952,-0.8414 H 586.985 L 586.8526,562 h -1.2479 v -13.4622 z m 0,0 z m 1.5504,11.4202 c 0.605,0.5294 1.2006,0.7468 1.2006,0.7468 0.5956,0.2174 1.0494,0.2174 1.0494,0.2174 0.5672,0 1.0494,-0.2553 1.0494,-0.2553 0.4821,-0.2553 0.8319,-0.7185 0.8319,-0.7185 0.3498,-0.4632 0.5483,-1.1439 0.5483,-1.1439 0.1985,-0.6807 0.1985,-1.5315 0.1985,-1.5315 0,-0.7563 -0.1324,-1.3803 -0.1324,-1.3803 -0.1324,-0.6239 -0.4254,-1.0683 -0.4254,-1.0683 -0.2931,-0.4443 -0.7563,-0.6901 -0.7563,-0.6901 -0.4632,-0.2458 -1.1061,-0.2458 -1.1061,-0.2458 -1.1155,0 -2.458,1.2479 -2.458,1.2479 v 4.8214 z m 7.3929,2.042 z m 1.418,-9.1891 h 1.5693 v 5.6155 c 0,1.3046 0.4065,1.8813 0.4065,1.8813 0.4065,0.5767 1.3141,0.5767 1.3141,0.5767 0.7185,0 1.2668,-0.3687 1.2668,-0.3687 0.5483,-0.3687 1.2101,-1.1817 1.2101,-1.1817 v -6.5231 h 1.5504 V 562 h -1.2857 l -0.1324,-1.437 h -0.0567 c -0.6429,0.7563 -1.3519,1.2101 -1.3519,1.2101 -0.709,0.4538 -1.6733,0.4538 -1.6733,0.4538 -1.4748,0 -2.146,-0.9076 -2.146,-0.9076 -0.6712,-0.9076 -0.6712,-2.6849 -0.6712,-2.6849 z M 604.8338,562 Z m 1.3046,-2.0798 c 0.605,0.4916 1.2384,0.7941 1.2384,0.7941 0.6334,0.3025 1.4653,0.3025 1.4653,0.3025 0.9076,0 1.3613,-0.416 1.3613,-0.416 0.4538,-0.416 0.4538,-1.021 0.4538,-1.021 0,-0.3592 -0.1891,-0.6239 -0.1891,-0.6239 -0.1891,-0.2647 -0.4821,-0.4632 -0.4821,-0.4632 -0.2931,-0.1985 -0.6712,-0.3498 -0.6712,-0.3498 l -0.7563,-0.3025 c -0.4916,-0.1702 -0.9832,-0.3876 -0.9832,-0.3876 -0.4916,-0.2174 -0.8792,-0.5294 -0.8792,-0.5294 -0.3876,-0.312 -0.6334,-0.7279 -0.6334,-0.7279 -0.2458,-0.416 -0.2458,-1.0021 -0.2458,-1.0021 0,-0.5483 0.2174,-1.0305 0.2174,-1.0305 0.2174,-0.4821 0.6239,-0.8319 0.6239,-0.8319 0.4065,-0.3498 0.9926,-0.5483 0.9926,-0.5483 0.5861,-0.1985 1.3235,-0.1985 1.3235,-0.1985 0.8697,0 1.5977,0.3025 1.5977,0.3025 0.7279,0.3025 1.2574,0.7374 1.2574,0.7374 l -0.7374,0.9832 c -0.4727,-0.3592 -0.9832,-0.5861 -0.9832,-0.5861 -0.5105,-0.2269 -1.1155,-0.2269 -1.1155,-0.2269 -0.8697,0 -1.2763,0.3971 -1.2763,0.3971 -0.4065,0.3971 -0.4065,0.9265 -0.4065,0.9265 0,0.3214 0.1702,0.5578 0.1702,0.5578 0.1702,0.2363 0.4538,0.416 0.4538,0.416 0.2836,0.1796 0.6523,0.3214 0.6523,0.3214 0.3687,0.1418 0.7658,0.2931 0.7658,0.2931 0.4916,0.1891 0.9926,0.3971 0.9926,0.3971 0.5011,0.208 0.8981,0.52 0.8981,0.52 0.3971,0.312 0.6523,0.7658 0.6523,0.7658 0.2553,0.4538 0.2553,1.0966 0.2553,1.0966 0,0.5672 -0.2174,1.0588 -0.2174,1.0588 -0.2174,0.4916 -0.6429,0.8697 -0.6429,0.8697 -0.4254,0.3782 -1.0588,0.5956 -1.0588,0.5956 -0.6334,0.2174 -1.4464,0.2174 -1.4464,0.2174 -0.9832,0 -1.8718,-0.3592 -1.8718,-0.3592 -0.8887,-0.3592 -1.5504,-0.9076 -1.5504,-0.9076 z M 612.756,562 Z m 1.8152,-7.9223 h -1.3613 v -1.1723 l 1.437,-0.0945 0.1891,-2.5714 h 1.3046 v 2.5714 h 2.4769 v 1.2668 h -2.4769 v 5.105 c 0,0.8508 0.312,1.3141 0.312,1.3141 0.312,0.4632 1.1061,0.4632 1.1061,0.4632 0.2458,0 0.5294,-0.0756 0.5294,-0.0756 0.2836,-0.0756 0.5105,-0.1702 0.5105,-0.1702 l 0.3025,1.1723 c -0.3782,0.1324 -0.8225,0.2363 -0.8225,0.2363 -0.4443,0.104 -0.8792,0.104 -0.8792,0.104 -0.7374,0 -1.2384,-0.2269 -1.2384,-0.2269 -0.5011,-0.2269 -0.813,-0.6239 -0.813,-0.6239 -0.312,-0.3971 -0.4443,-0.9643 -0.4443,-0.9643 -0.1324,-0.5672 -0.1324,-1.2479 -0.1324,-1.2479 v -5.0861 z"+       id="path60-7" />+  </g>+  <g+     stroke-linejoin="bevel"+     fill-opacity="1"+     fill="#000000"+     stroke="#000000"+     stroke-linecap="butt"+     stroke-miterlimit="10"+     stroke-opacity="0"+     stroke-width="0"+     id="g60-6"+     transform="translate(113.7531,-0.5967)">+    <path+       d="m 308.2469,562 z m 4.2731,-11.0798 h -3.7437 v -1.3235 h 9.0756 v 1.3235 h -3.7437 V 562 H 312.52 Z M 317.1335,562 Z m 0.8697,-4.5756 c 0,-1.1345 0.3498,-2.0326 0.3498,-2.0326 0.3498,-0.8981 0.9265,-1.5221 0.9265,-1.5221 0.5767,-0.6239 1.3141,-0.9548 1.3141,-0.9548 0.7374,-0.3309 1.5315,-0.3309 1.5315,-0.3309 0.8697,0 1.5599,0.3025 1.5599,0.3025 0.6901,0.3025 1.1534,0.8697 1.1534,0.8697 0.4632,0.5672 0.709,1.3613 0.709,1.3613 0.2458,0.7941 0.2458,1.7773 0.2458,1.7773 0,0.5105 -0.0567,0.8508 -0.0567,0.8508 h -6.2017 c 0.0945,1.4937 0.917,2.3634 0.917,2.3634 0.8225,0.8697 2.146,0.8697 2.146,0.8697 0.6618,0 1.2195,-0.1985 1.2195,-0.1985 0.5578,-0.1985 1.0683,-0.52 1.0683,-0.52 l 0.5483,1.021 c -0.605,0.3782 -1.3424,0.6618 -1.3424,0.6618 -0.7374,0.2836 -1.6828,0.2836 -1.6828,0.2836 -0.9265,0 -1.73,-0.3309 -1.73,-0.3309 -0.8036,-0.3309 -1.3992,-0.9454 -1.3992,-0.9454 -0.5956,-0.6145 -0.9359,-1.5032 -0.9359,-1.5032 -0.3403,-0.8887 -0.3403,-2.0231 -0.3403,-2.0231 z m 0,0 z m 6.4286,-0.6996 c 0,-1.4181 -0.5956,-2.1649 -0.5956,-2.1649 -0.5956,-0.7468 -1.6733,-0.7468 -1.6733,-0.7468 -0.4916,0 -0.9359,0.1985 -0.9359,0.1985 -0.4443,0.1985 -0.8036,0.5672 -0.8036,0.5672 -0.3592,0.3687 -0.5956,0.9076 -0.5956,0.9076 -0.2363,0.5389 -0.312,1.2384 -0.312,1.2384 z M 326.5116,562 Z m 1.5505,-9.1891 h 1.2857 l 0.1324,1.3235 h 0.0567 c 0.6618,-0.6618 1.3897,-1.1061 1.3897,-1.1061 0.7279,-0.4443 1.6922,-0.4443 1.6922,-0.4443 1.4559,0 2.1271,0.9076 2.1271,0.9076 0.6712,0.9076 0.6712,2.6849 0.6712,2.6849 V 562 h -1.5504 v -5.6155 c 0,-1.3046 -0.416,-1.8813 -0.416,-1.8813 -0.416,-0.5767 -1.3235,-0.5767 -1.3235,-0.5767 -0.7185,0 -1.2668,0.3592 -1.2668,0.3592 -0.5483,0.3592 -1.2479,1.0588 -1.2479,1.0588 V 562 h -1.5504 z m 8.792,9.1891 z m 1.3046,-2.0798 c 0.605,0.4916 1.2384,0.7941 1.2384,0.7941 0.6334,0.3025 1.4653,0.3025 1.4653,0.3025 0.9076,0 1.3613,-0.416 1.3613,-0.416 0.4538,-0.416 0.4538,-1.021 0.4538,-1.021 0,-0.3592 -0.1891,-0.6239 -0.1891,-0.6239 -0.1891,-0.2647 -0.4821,-0.4632 -0.4821,-0.4632 -0.2931,-0.1985 -0.6712,-0.3498 -0.6712,-0.3498 l -0.7563,-0.3025 c -0.4916,-0.1702 -0.9832,-0.3876 -0.9832,-0.3876 -0.4916,-0.2174 -0.8792,-0.5294 -0.8792,-0.5294 -0.3876,-0.312 -0.6334,-0.7279 -0.6334,-0.7279 -0.2458,-0.416 -0.2458,-1.0021 -0.2458,-1.0021 0,-0.5483 0.2174,-1.0305 0.2174,-1.0305 0.2174,-0.4821 0.6239,-0.8319 0.6239,-0.8319 0.4065,-0.3498 0.9926,-0.5483 0.9926,-0.5483 0.5861,-0.1985 1.3235,-0.1985 1.3235,-0.1985 0.8697,0 1.5977,0.3025 1.5977,0.3025 0.7279,0.3025 1.2574,0.7374 1.2574,0.7374 l -0.7374,0.9832 c -0.4727,-0.3592 -0.9832,-0.5861 -0.9832,-0.5861 -0.5105,-0.2269 -1.1155,-0.2269 -1.1155,-0.2269 -0.8697,0 -1.2763,0.3971 -1.2763,0.3971 -0.4065,0.3971 -0.4065,0.9265 -0.4065,0.9265 0,0.3214 0.1702,0.5578 0.1702,0.5578 0.1702,0.2363 0.4538,0.416 0.4538,0.416 0.2836,0.1796 0.6523,0.3214 0.6523,0.3214 0.3687,0.1418 0.7658,0.2931 0.7658,0.2931 0.4916,0.1891 0.9926,0.3971 0.9926,0.3971 0.5011,0.208 0.8981,0.52 0.8981,0.52 0.3971,0.312 0.6523,0.7658 0.6523,0.7658 0.2553,0.4538 0.2553,1.0966 0.2553,1.0966 0,0.5672 -0.2174,1.0588 -0.2174,1.0588 -0.2174,0.4916 -0.6429,0.8697 -0.6429,0.8697 -0.4254,0.3782 -1.0588,0.5956 -1.0588,0.5956 -0.6334,0.2174 -1.4464,0.2174 -1.4464,0.2174 -0.9832,0 -1.8718,-0.3592 -1.8718,-0.3592 -0.8887,-0.3592 -1.5504,-0.9076 -1.5504,-0.9076 z M 344.7763,562 Z m 0.8698,-4.5756 c 0,-1.1534 0.3498,-2.0515 0.3498,-2.0515 0.3498,-0.8981 0.9359,-1.5221 0.9359,-1.5221 0.5861,-0.6239 1.3519,-0.9454 1.3519,-0.9454 0.7658,-0.3214 1.6166,-0.3214 1.6166,-0.3214 0.8508,0 1.6166,0.3214 1.6166,0.3214 0.7658,0.3214 1.3519,0.9454 1.3519,0.9454 0.5861,0.6239 0.9359,1.5221 0.9359,1.5221 0.3498,0.8981 0.3498,2.0515 0.3498,2.0515 0,1.1345 -0.3498,2.0326 -0.3498,2.0326 -0.3498,0.8981 -0.9359,1.5126 -0.9359,1.5126 -0.5861,0.6145 -1.3519,0.9359 -1.3519,0.9359 -0.7658,0.3214 -1.6166,0.3214 -1.6166,0.3214 -0.8508,0 -1.6166,-0.3214 -1.6166,-0.3214 -0.7658,-0.3214 -1.3519,-0.9359 -1.3519,-0.9359 -0.5861,-0.6145 -0.9359,-1.5126 -0.9359,-1.5126 -0.3498,-0.8981 -0.3498,-2.0326 -0.3498,-2.0326 z m 0,0 z m 1.6071,0 c 0,0.7941 0.1891,1.437 0.1891,1.437 0.1891,0.6429 0.5389,1.1061 0.5389,1.1061 0.3498,0.4632 0.8414,0.7185 0.8414,0.7185 0.4916,0.2553 1.0777,0.2553 1.0777,0.2553 0.5861,0 1.0777,-0.2553 1.0777,-0.2553 0.4916,-0.2553 0.8414,-0.7185 0.8414,-0.7185 0.3498,-0.4632 0.5389,-1.1061 0.5389,-1.1061 0.1891,-0.6429 0.1891,-1.437 0.1891,-1.437 0,-0.7941 -0.1891,-1.4464 -0.1891,-1.4464 -0.1891,-0.6523 -0.5389,-1.125 -0.5389,-1.125 -0.3498,-0.4727 -0.8414,-0.7279 -0.8414,-0.7279 -0.4916,-0.2553 -1.0777,-0.2553 -1.0777,-0.2553 -0.5861,0 -1.0777,0.2553 -1.0777,0.2553 -0.4916,0.2553 -0.8414,0.7279 -0.8414,0.7279 -0.3498,0.4727 -0.5389,1.125 -0.5389,1.125 -0.1891,0.6523 -0.1891,1.4464 -0.1891,1.4464 z m 7.771,4.5756 z m 1.5505,-9.1891 h 1.2857 l 0.1324,1.6639 h 0.0567 c 0.4727,-0.8697 1.1439,-1.3803 1.1439,-1.3803 0.6712,-0.5105 1.4653,-0.5105 1.4653,-0.5105 0.5483,0 0.9832,0.1891 0.9832,0.1891 l -0.3025,1.3613 c -0.2269,-0.0756 -0.416,-0.1134 -0.416,-0.1134 -0.1891,-0.0378 -0.4727,-0.0378 -0.4727,-0.0378 -0.5861,0 -1.2195,0.4727 -1.2195,0.4727 -0.6334,0.4727 -1.1061,1.645 -1.1061,1.645 v 5.8992 h -1.5504 v -9.1891 z"+       id="path59-2" />+  </g>+  <g+     stroke-linejoin="bevel"+     fill-opacity="1"+     fill="#000000"+     stroke="#000000"+     stroke-linecap="butt"+     stroke-miterlimit="10"+     stroke-opacity="0"+     stroke-width="0"+     id="g59-7"+     transform="translate(114.5804,-1.5966)">+    <path+       d="m 81.4196,562 z m 1.7016,-12.4034 h 1.8529 l 2.4013,6.6555 0.9076,2.5336 h 0.0756 l 0.8697,-2.5336 2.3824,-6.6555 h 1.8529 V 562 h -1.4937 v -6.8256 c 0,-0.8319 0.0662,-1.834 0.0662,-1.834 0.0662,-1.0021 0.1418,-1.834 0.1418,-1.834 h -0.0756 l -1.0021,2.7605 -2.3824,6.4853 h -0.8887 l -2.4013,-6.4853 -0.9832,-2.7605 H 84.369 c 0.0567,0.8319 0.1324,1.834 0.1324,1.834 0.0756,1.0021 0.0756,1.834 0.0756,1.834 V 562 H 83.1211 V 549.5966 Z M 95.1654,562 Z m 0.8697,-4.5756 c 0,-1.1345 0.3498,-2.0326 0.3498,-2.0326 0.3498,-0.8981 0.9265,-1.5221 0.9265,-1.5221 0.5767,-0.6239 1.3141,-0.9548 1.3141,-0.9548 0.7374,-0.3309 1.5315,-0.3309 1.5315,-0.3309 0.8697,0 1.5599,0.3025 1.5599,0.3025 0.6901,0.3025 1.1534,0.8697 1.1534,0.8697 0.4632,0.5672 0.709,1.3613 0.709,1.3613 0.2458,0.7941 0.2458,1.7773 0.2458,1.7773 0,0.5105 -0.0567,0.8508 -0.0567,0.8508 h -6.2017 c 0.0945,1.4937 0.917,2.3634 0.917,2.3634 0.8225,0.8697 2.146,0.8697 2.146,0.8697 0.6618,0 1.2195,-0.1985 1.2195,-0.1985 0.5578,-0.1985 1.0683,-0.52 1.0683,-0.52 l 0.5483,1.021 c -0.605,0.3782 -1.3424,0.6618 -1.3424,0.6618 -0.7374,0.2836 -1.6828,0.2836 -1.6828,0.2836 -0.9265,0 -1.73,-0.3309 -1.73,-0.3309 -0.8036,-0.3309 -1.3992,-0.9454 -1.3992,-0.9454 -0.5956,-0.6145 -0.9359,-1.5032 -0.9359,-1.5032 -0.3403,-0.8887 -0.3403,-2.0231 -0.3403,-2.0231 z m 0,0 z m 6.4286,-0.6996 c 0,-1.4181 -0.5956,-2.1649 -0.5956,-2.1649 -0.5956,-0.7468 -1.6733,-0.7468 -1.6733,-0.7468 -0.4916,0 -0.9359,0.1985 -0.9359,0.1985 -0.4443,0.1985 -0.8036,0.5672 -0.8036,0.5672 -0.3592,0.3687 -0.5956,0.9076 -0.5956,0.9076 -0.2363,0.5389 -0.312,1.2384 -0.312,1.2384 z M 104.5435,562 Z m 1.5504,-9.1891 h 1.2857 l 0.1324,1.6639 h 0.0567 c 0.4727,-0.8697 1.1439,-1.3803 1.1439,-1.3803 0.6712,-0.5105 1.4653,-0.5105 1.4653,-0.5105 0.5483,0 0.9832,0.1891 0.9832,0.1891 l -0.3025,1.3613 c -0.2269,-0.0756 -0.416,-0.1134 -0.416,-0.1134 -0.1891,-0.0378 -0.4727,-0.0378 -0.4727,-0.0378 -0.5861,0 -1.2195,0.4727 -1.2195,0.4727 -0.6334,0.4727 -1.1061,1.645 -1.1061,1.645 v 5.8992 h -1.5504 V 552.811 Z M 110.9154,562 Z m 2.2121,1.5504 c 0,0.7374 0.709,1.1723 0.709,1.1723 0.709,0.4349 1.9569,0.4349 1.9569,0.4349 0.6618,0 1.2006,-0.1607 1.2006,-0.1607 0.5389,-0.1607 0.917,-0.416 0.917,-0.416 0.3782,-0.2553 0.5861,-0.5956 0.5861,-0.5956 0.208,-0.3403 0.208,-0.6996 0.208,-0.6996 0,-0.6429 -0.4727,-0.8887 -0.4727,-0.8887 -0.4727,-0.2458 -1.3803,-0.2458 -1.3803,-0.2458 h -1.5882 c -0.2647,0 -0.5767,-0.0284 -0.5767,-0.0284 -0.312,-0.0284 -0.6145,-0.1229 -0.6145,-0.1229 -0.4916,0.3592 -0.7185,0.7563 -0.7185,0.7563 -0.2269,0.3971 -0.2269,0.7941 -0.2269,0.7941 z m 0,0 z m -1.3613,0.208 c 0,-0.5861 0.3592,-1.1155 0.3592,-1.1155 0.3592,-0.5294 0.9832,-0.9643 0.9832,-0.9643 v -0.0756 c -0.3403,-0.208 -0.5767,-0.5767 -0.5767,-0.5767 -0.2363,-0.3687 -0.2363,-0.917 -0.2363,-0.917 0,-0.5861 0.3214,-1.021 0.3214,-1.021 0.3214,-0.4349 0.6807,-0.6807 0.6807,-0.6807 v -0.0756 c -0.4538,-0.3782 -0.8225,-1.0116 -0.8225,-1.0116 -0.3687,-0.6334 -0.3687,-1.4653 -0.3687,-1.4653 0,-0.7563 0.2742,-1.3613 0.2742,-1.3613 0.2742,-0.605 0.7468,-1.0305 0.7468,-1.0305 0.4727,-0.4254 1.1061,-0.6523 1.1061,-0.6523 0.6334,-0.2269 1.333,-0.2269 1.333,-0.2269 0.3782,0 0.709,0.0662 0.709,0.0662 0.3309,0.0662 0.5956,0.1607 0.5956,0.1607 h 3.1954 v 1.1912 h -1.8908 c 0.3214,0.3214 0.5389,0.813 0.5389,0.813 0.2174,0.4916 0.2174,1.0777 0.2174,1.0777 0,0.7374 -0.2647,1.333 -0.2647,1.333 -0.2647,0.5956 -0.7185,1.0021 -0.7185,1.0021 -0.4538,0.4065 -1.0683,0.6334 -1.0683,0.6334 -0.6145,0.2269 -1.3141,0.2269 -1.3141,0.2269 -0.3403,0 -0.6996,-0.0851 -0.6996,-0.0851 -0.3592,-0.0851 -0.6807,-0.2363 -0.6807,-0.2363 -0.2458,0.208 -0.416,0.4632 -0.416,0.4632 -0.1702,0.2553 -0.1702,0.6334 -0.1702,0.6334 0,0.4349 0.3403,0.7185 0.3403,0.7185 0.3403,0.2836 1.2857,0.2836 1.2857,0.2836 h 1.7773 c 1.6071,0 2.4107,0.52 2.4107,0.52 0.8036,0.52 0.8036,1.6733 0.8036,1.6733 0,0.6429 -0.3214,1.2195 -0.3214,1.2195 -0.3214,0.5767 -0.9265,1.0116 -0.9265,1.0116 -0.605,0.4349 -1.4653,0.6901 -1.4653,0.6901 -0.8603,0.2553 -1.938,0.2553 -1.938,0.2553 -0.8508,0 -1.5504,-0.1607 -1.5504,-0.1607 -0.6996,-0.1607 -1.2006,-0.4821 -1.2006,-0.4821 -0.5011,-0.3214 -0.7752,-0.7752 -0.7752,-0.7752 -0.2742,-0.4538 -0.2742,-1.0588 -0.2742,-1.0588 z m 0,0 z m 3.8004,-5.7101 c 0.3971,0 0.7468,-0.1513 0.7468,-0.1513 0.3498,-0.1513 0.6239,-0.4349 0.6239,-0.4349 0.2742,-0.2836 0.4254,-0.6901 0.4254,-0.6901 0.1513,-0.4065 0.1513,-0.917 0.1513,-0.917 0,-1.021 -0.5672,-1.5788 -0.5672,-1.5788 -0.5672,-0.5578 -1.3803,-0.5578 -1.3803,-0.5578 -0.813,0 -1.3803,0.5578 -1.3803,0.5578 -0.5672,0.5578 -0.5672,1.5788 -0.5672,1.5788 0,0.5105 0.1513,0.917 0.1513,0.917 0.1513,0.4065 0.4254,0.6901 0.4254,0.6901 0.2742,0.2836 0.6239,0.4349 0.6239,0.4349 0.3498,0.1513 0.7468,0.1513 0.7468,0.1513 z M 120.1801,562 Z m 0.8697,-4.5756 c 0,-1.1345 0.3498,-2.0326 0.3498,-2.0326 0.3498,-0.8981 0.9265,-1.5221 0.9265,-1.5221 0.5767,-0.6239 1.3141,-0.9548 1.3141,-0.9548 0.7374,-0.3309 1.5315,-0.3309 1.5315,-0.3309 0.8697,0 1.5599,0.3025 1.5599,0.3025 0.6901,0.3025 1.1534,0.8697 1.1534,0.8697 0.4632,0.5672 0.709,1.3613 0.709,1.3613 0.2458,0.7941 0.2458,1.7773 0.2458,1.7773 0,0.5105 -0.0567,0.8508 -0.0567,0.8508 h -6.2017 c 0.0945,1.4937 0.917,2.3634 0.917,2.3634 0.8225,0.8697 2.146,0.8697 2.146,0.8697 0.6618,0 1.2195,-0.1985 1.2195,-0.1985 0.5578,-0.1985 1.0683,-0.52 1.0683,-0.52 l 0.5483,1.021 c -0.605,0.3782 -1.3424,0.6618 -1.3424,0.6618 -0.7374,0.2836 -1.6828,0.2836 -1.6828,0.2836 -0.9265,0 -1.73,-0.3309 -1.73,-0.3309 -0.8036,-0.3309 -1.3992,-0.9454 -1.3992,-0.9454 -0.5956,-0.6145 -0.9359,-1.5032 -0.9359,-1.5032 -0.3403,-0.8887 -0.3403,-2.0231 -0.3403,-2.0231 z m 0,0 z m 6.4286,-0.6996 c 0,-1.4181 -0.5956,-2.1649 -0.5956,-2.1649 -0.5956,-0.7468 -1.6733,-0.7468 -1.6733,-0.7468 -0.4916,0 -0.9359,0.1985 -0.9359,0.1985 -0.4443,0.1985 -0.8036,0.5672 -0.8036,0.5672 -0.3592,0.3687 -0.5956,0.9076 -0.5956,0.9076 -0.2363,0.5389 -0.312,1.2384 -0.312,1.2384 z"+       id="path58-5" />+  </g>+  <g+     stroke-linejoin="bevel"+     fill-opacity="1.0"+     fill="rgb(0,0,0)"+     stroke="rgb(0,0,0)"+     stroke-linecap="butt"+     stroke-miterlimit="10.0"+     stroke-opacity="0.0"+     stroke-width="0.0"+     id="g2">+    <path+       d="M 163.1263,15.9220 ZM 164.5493,3.8727 h 7.5400 v 2.2916 h -4.8234 v 2.4209 h 4.1027 v 2.2731 h -4.1027 v 2.7721 h 5.0082 v 2.2916 h -7.7248 v -12.0493 ZM 173.2536,15.9220 ZM 174.4548,6.7556 h 2.2177 l 0.1848,1.6078 h 0.0739 c 0.4990,-0.9425 1.2012,-1.3860 1.2012 -1.3860c 0.7023,-0.4435 1.4045,-0.4435 1.4045 -0.4435c 0.3881,0.0000 0.6376,0.0462 0.6376 0.0462c 0.2495,0.0462 0.4528,0.1386 0.4528 0.1386l -0.4435,2.3470 c -0.2587,-0.0739 -0.4805,-0.1109 -0.4805 -0.1109c -0.2218,-0.0370 -0.5175,-0.0370 -0.5175 -0.0370c -0.5175,-0.0000 -1.0811,0.3696 -1.0811 0.3696c -0.5637,0.3696 -0.9333,1.3121 -0.9333 1.3121v 5.3224 h -2.7166 v -9.1663 ZM 180.6088,15.9220 ZM 181.8101,6.7556 h 2.2177 l 0.1848,1.6078 h 0.0739 c 0.4990,-0.9425 1.2012,-1.3860 1.2012 -1.3860c 0.7023,-0.4435 1.4045,-0.4435 1.4045 -0.4435c 0.3881,0.0000 0.6376,0.0462 0.6376 0.0462c 0.2495,0.0462 0.4528,0.1386 0.4528 0.1386l -0.4435,2.3470 c -0.2587,-0.0739 -0.4805,-0.1109 -0.4805 -0.1109c -0.2218,-0.0370 -0.5175,-0.0370 -0.5175 -0.0370c -0.5175,-0.0000 -1.0811,0.3696 -1.0811 0.3696c -0.5637,0.3696 -0.9333,1.3121 -0.9333 1.3121v 5.3224 h -2.7166 v -9.1663 ZM 187.7793,15.9220 ZM 188.4446,11.3388 c 0.0000,-1.1458 0.3696,-2.0421 0.3696 -2.0421c 0.3696,-0.8963 0.9887,-1.5062 0.9887 -1.5062c 0.6191,-0.6099 1.4322,-0.9333 1.4322 -0.9333c 0.8131,-0.3234 1.6817,-0.3234 1.6817 -0.3234c 0.8686,0.0000 1.6725,0.3234 1.6725 0.3234c 0.8039,0.3234 1.4230,0.9333 1.4230 0.9333c 0.6191,0.6099 0.9887,1.5062 0.9887 1.5062c 0.3696,0.8963 0.3696,2.0421 0.3696 2.0421c 0.0000,1.1458 -0.3696,2.0421 -0.3696 2.0421c -0.3696,0.8963 -0.9887,1.5062 -0.9887 1.5062c -0.6191,0.6099 -1.4230,0.9333 -1.4230 0.9333c -0.8039,0.3234 -1.6725,0.3234 -1.6725 0.3234c -0.8686,-0.0000 -1.6817,-0.3234 -1.6817 -0.3234c -0.8131,-0.3234 -1.4322,-0.9333 -1.4322 -0.9333c -0.6191,-0.6099 -0.9887,-1.5062 -0.9887 -1.5062c -0.3696,-0.8963 -0.3696,-2.0421 -0.3696 -2.0421ZM 188.4446,11.3388 ZM 191.2351,11.3388 c 0.0000,1.2012 0.4158,1.9035 0.4158 1.9035c 0.4158,0.7023 1.2659,0.7023 1.2659 0.7023c 0.8316,0.0000 1.2567,-0.7023 1.2567 -0.7023c 0.4251,-0.7023 0.4251,-1.9035 0.4251 -1.9035c 0.0000,-1.2012 -0.4251,-1.9035 -0.4251 -1.9035c -0.4251,-0.7023 -1.2567,-0.7023 -1.2567 -0.7023c -0.8501,-0.0000 -1.2659,0.7023 -1.2659 0.7023c -0.4158,0.7023 -0.4158,1.9035 -0.4158 1.9035ZM 198.0359,15.9220 ZM 199.2372,6.7556 h 2.2177 l 0.1848,1.6078 h 0.0739 c 0.4990,-0.9425 1.2012,-1.3860 1.2012 -1.3860c 0.7023,-0.4435 1.4045,-0.4435 1.4045 -0.4435c 0.3881,0.0000 0.6376,0.0462 0.6376 0.0462c 0.2495,0.0462 0.4528,0.1386 0.4528 0.1386l -0.4435,2.3470 c -0.2587,-0.0739 -0.4805,-0.1109 -0.4805 -0.1109c -0.2218,-0.0370 -0.5175,-0.0370 -0.5175 -0.0370c -0.5175,-0.0000 -1.0811,0.3696 -1.0811 0.3696c -0.5637,0.3696 -0.9333,1.3121 -0.9333 1.3121v 5.3224 h -2.7166 v -9.1663 ZM 205.2064,15.9220 ZM 206.8142,13.1684 c 0.6283,0.4805 1.2012,0.7207 1.2012 0.7207c 0.5729,0.2402 1.1643,0.2402 1.1643 0.2402c 0.6099,0.0000 0.8871,-0.2033 0.8871 -0.2033c 0.2772,-0.2033 0.2772,-0.5729 0.2772 -0.5729c 0.0000,-0.2218 -0.1571,-0.3973 -0.1571 -0.3973c -0.1571,-0.1756 -0.4251,-0.3234 -0.4251 -0.3234c -0.2680,-0.1478 -0.6006,-0.2680 -0.6006 -0.2680c -0.3326,-0.1201 -0.6838,-0.2680 -0.6838 -0.2680c -0.4251,-0.1663 -0.8501,-0.3881 -0.8501 -0.3881c -0.4251,-0.2218 -0.7762,-0.5452 -0.7762 -0.5452c -0.3511,-0.3234 -0.5729,-0.7577 -0.5729 -0.7577c -0.2218,-0.4343 -0.2218,-1.0072 -0.2218 -1.0072c 0.0000,-0.6283 0.2495,-1.1643 0.2495 -1.1643c 0.2495,-0.5359 0.7115,-0.9055 0.7115 -0.9055c 0.4620,-0.3696 1.1088,-0.5821 1.1088 -0.5821c 0.6468,-0.2125 1.4415,-0.2125 1.4415 -0.2125c 1.0534,0.0000 1.8480,0.3604 1.8480 0.3604c 0.7947,0.3604 1.3860,0.8039 1.3860 0.8039l -1.2197,1.6263 c -0.4990,-0.3696 -0.9795,-0.5729 -0.9795 -0.5729c -0.4805,-0.2033 -0.9610,-0.2033 -0.9610 -0.2033c -1.0349,-0.0000 -1.0349,0.7207 -1.0349 0.7207c 0.0000,0.2218 0.1478,0.3789 0.1478 0.3789c 0.1478,0.1571 0.3973,0.2864 0.3973 0.2864c 0.2495,0.1294 0.5729,0.2495 0.5729 0.2495c 0.3234,0.1201 0.6745,0.2495 0.6745 0.2495c 0.4435,0.1663 0.8778,0.3789 0.8778 0.3789c 0.4343,0.2125 0.7947,0.5267 0.7947 0.5267c 0.3604,0.3142 0.5821,0.7669 0.5821 0.7669c 0.2218,0.4528 0.2218,1.0811 0.2218 1.0811c 0.0000,0.6283 -0.2402,1.1643 -0.2402 1.1643c -0.2402,0.5359 -0.7207,0.9333 -0.7207 0.9333c -0.4805,0.3973 -1.1828,0.6283 -1.1828 0.6283c -0.7023,0.2310 -1.6263,0.2310 -1.6263 0.2310c -0.9055,-0.0000 -1.8573,-0.3511 -1.8573 -0.3511c -0.9517,-0.3511 -1.6540,-0.9240 -1.6540 -0.9240ZM 217.2372,15.9220 ZM 218.8450,13.1684 c 0.6283,0.4805 1.2012,0.7207 1.2012 0.7207c 0.5729,0.2402 1.1643,0.2402 1.1643 0.2402c 0.6099,0.0000 0.8871,-0.2033 0.8871 -0.2033c 0.2772,-0.2033 0.2772,-0.5729 0.2772 -0.5729c 0.0000,-0.2218 -0.1571,-0.3973 -0.1571 -0.3973c -0.1571,-0.1756 -0.4251,-0.3234 -0.4251 -0.3234c -0.2680,-0.1478 -0.6006,-0.2680 -0.6006 -0.2680c -0.3326,-0.1201 -0.6838,-0.2680 -0.6838 -0.2680c -0.4251,-0.1663 -0.8501,-0.3881 -0.8501 -0.3881c -0.4251,-0.2218 -0.7762,-0.5452 -0.7762 -0.5452c -0.3511,-0.3234 -0.5729,-0.7577 -0.5729 -0.7577c -0.2218,-0.4343 -0.2218,-1.0072 -0.2218 -1.0072c 0.0000,-0.6283 0.2495,-1.1643 0.2495 -1.1643c 0.2495,-0.5359 0.7115,-0.9055 0.7115 -0.9055c 0.4620,-0.3696 1.1088,-0.5821 1.1088 -0.5821c 0.6468,-0.2125 1.4415,-0.2125 1.4415 -0.2125c 1.0534,0.0000 1.8480,0.3604 1.8480 0.3604c 0.7947,0.3604 1.3860,0.8039 1.3860 0.8039l -1.2197,1.6263 c -0.4990,-0.3696 -0.9795,-0.5729 -0.9795 -0.5729c -0.4805,-0.2033 -0.9610,-0.2033 -0.9610 -0.2033c -1.0349,-0.0000 -1.0349,0.7207 -1.0349 0.7207c 0.0000,0.2218 0.1478,0.3789 0.1478 0.3789c 0.1478,0.1571 0.3973,0.2864 0.3973 0.2864c 0.2495,0.1294 0.5729,0.2495 0.5729 0.2495c 0.3234,0.1201 0.6745,0.2495 0.6745 0.2495c 0.4435,0.1663 0.8778,0.3789 0.8778 0.3789c 0.4343,0.2125 0.7947,0.5267 0.7947 0.5267c 0.3604,0.3142 0.5821,0.7669 0.5821 0.7669c 0.2218,0.4528 0.2218,1.0811 0.2218 1.0811c 0.0000,0.6283 -0.2402,1.1643 -0.2402 1.1643c -0.2402,0.5359 -0.7207,0.9333 -0.7207 0.9333c -0.4805,0.3973 -1.1828,0.6283 -1.1828 0.6283c -0.7023,0.2310 -1.6263,0.2310 -1.6263 0.2310c -0.9055,-0.0000 -1.8573,-0.3511 -1.8573 -0.3511c -0.9517,-0.3511 -1.6540,-0.9240 -1.6540 -0.9240ZM 225.4240,15.9220 ZM 226.0893,11.3388 c 0.0000,-1.1458 0.3696,-2.0421 0.3696 -2.0421c 0.3696,-0.8963 0.9887,-1.5062 0.9887 -1.5062c 0.6191,-0.6099 1.4322,-0.9333 1.4322 -0.9333c 0.8131,-0.3234 1.6817,-0.3234 1.6817 -0.3234c 0.8686,0.0000 1.6725,0.3234 1.6725 0.3234c 0.8039,0.3234 1.4230,0.9333 1.4230 0.9333c 0.6191,0.6099 0.9887,1.5062 0.9887 1.5062c 0.3696,0.8963 0.3696,2.0421 0.3696 2.0421c 0.0000,1.1458 -0.3696,2.0421 -0.3696 2.0421c -0.3696,0.8963 -0.9887,1.5062 -0.9887 1.5062c -0.6191,0.6099 -1.4230,0.9333 -1.4230 0.9333c -0.8039,0.3234 -1.6725,0.3234 -1.6725 0.3234c -0.8686,-0.0000 -1.6817,-0.3234 -1.6817 -0.3234c -0.8131,-0.3234 -1.4322,-0.9333 -1.4322 -0.9333c -0.6191,-0.6099 -0.9887,-1.5062 -0.9887 -1.5062c -0.3696,-0.8963 -0.3696,-2.0421 -0.3696 -2.0421ZM 226.0893,11.3388 ZM 228.8799,11.3388 c 0.0000,1.2012 0.4158,1.9035 0.4158 1.9035c 0.4158,0.7023 1.2659,0.7023 1.2659 0.7023c 0.8316,0.0000 1.2567,-0.7023 1.2567 -0.7023c 0.4251,-0.7023 0.4251,-1.9035 0.4251 -1.9035c 0.0000,-1.2012 -0.4251,-1.9035 -0.4251 -1.9035c -0.4251,-0.7023 -1.2567,-0.7023 -1.2567 -0.7023c -0.8501,-0.0000 -1.2659,0.7023 -1.2659 0.7023c -0.4158,0.7023 -0.4158,1.9035 -0.4158 1.9035ZM 235.6807,15.9220 ZM 236.8819,6.7556 h 2.2177 l 0.1848,1.6078 h 0.0739 c 0.4990,-0.9425 1.2012,-1.3860 1.2012 -1.3860c 0.7023,-0.4435 1.4045,-0.4435 1.4045 -0.4435c 0.3881,0.0000 0.6376,0.0462 0.6376 0.0462c 0.2495,0.0462 0.4528,0.1386 0.4528 0.1386l -0.4435,2.3470 c -0.2587,-0.0739 -0.4805,-0.1109 -0.4805 -0.1109c -0.2218,-0.0370 -0.5175,-0.0370 -0.5175 -0.0370c -0.5175,-0.0000 -1.0811,0.3696 -1.0811 0.3696c -0.5637,0.3696 -0.9333,1.3121 -0.9333 1.3121v 5.3224 h -2.7166 v -9.1663 ZM 243.0359,15.9220 ZM 244.6068,8.8809 h -1.2567 v -2.0144 l 1.4045,-0.1109 l 0.3142,-2.4394 h 2.2546 v 2.4394 h 2.1992 v 2.1253 h -2.1992 v 3.6776 c 0.0000,0.7762 0.3234,1.1181 0.3234 1.1181c 0.3234,0.3419 0.8593,0.3419 0.8593 0.3419c 0.2218,0.0000 0.4528,-0.0554 0.4528 -0.0554c 0.2310,-0.0554 0.4158,-0.1294 0.4158 -0.1294l 0.4251,1.9774 c -0.3696,0.1109 -0.8686,0.2218 -0.8686 0.2218c -0.4990,0.1109 -1.1643,0.1109 -1.1643 0.1109c -0.8501,-0.0000 -1.4507,-0.2587 -1.4507 -0.2587c -0.6006,-0.2587 -0.9795,-0.7207 -0.9795 -0.7207c -0.3789,-0.4620 -0.5544,-1.1181 -0.5544 -1.1181c -0.1756,-0.6561 -0.1756,-1.4507 -0.1756 -1.4507v -3.7146 ZM 250.1140,15.9220 ZM 252.6643,5.4066 c -0.6838,-0.0000 -1.1273,-0.3973 -1.1273 -0.3973c -0.4435,-0.3973 -0.4435,-1.0257 -0.4435 -1.0257c 0.0000,-0.6283 0.4435,-1.0164 0.4435 -1.0164c 0.4435,-0.3881 1.1273,-0.3881 1.1273 -0.3881c 0.7023,0.0000 1.1366,0.3881 1.1366 0.3881c 0.4343,0.3881 0.4343,1.0164 0.4343 1.0164c 0.0000,0.6283 -0.4343,1.0257 -0.4343 1.0257c -0.4343,0.3973 -1.1366,0.3973 -1.1366 0.3973ZM 252.6643,5.4066 ZM 251.3152,6.7556 h 2.7166 v 9.1663 h -2.7166 v -9.1663 ZM 255.2146,15.9220 ZM 256.4158,6.7556 h 2.2177 l 0.1848,1.1643 h 0.0739 c 0.5914,-0.5544 1.2936,-0.9702 1.2936 -0.9702c 0.7023,-0.4158 1.6448,-0.4158 1.6448 -0.4158c 1.4969,0.0000 2.1715,0.9795 2.1715 0.9795c 0.6745,0.9795 0.6745,2.7166 0.6745 2.7166v 5.6920 h -2.7166 v -5.3409 c 0.0000,-0.9979 -0.2680,-1.3676 -0.2680 -1.3676c -0.2680,-0.3696 -0.8593,-0.3696 -0.8593 -0.3696c -0.5175,-0.0000 -0.8871,0.2310 -0.8871 0.2310c -0.3696,0.2310 -0.8131,0.6561 -0.8131 0.6561v 6.1910 h -2.7166 v -9.1663 ZM 265.7854,15.9220 ZM 268.6499,17.0678 c 0.0000,0.5175 0.5544,0.7854 0.5544 0.7854c 0.5544,0.2680 1.4784,0.2680 1.4784 0.2680c 0.9240,0.0000 1.5154,-0.3234 1.5154 -0.3234c 0.5914,-0.3234 0.5914,-0.8039 0.5914 -0.8039c 0.0000,-0.4251 -0.3604,-0.5729 -0.3604 -0.5729c -0.3604,-0.1478 -1.0441,-0.1478 -1.0441 -0.1478h -0.9425 c -0.4805,-0.0000 -0.7762,-0.0277 -0.7762 -0.0277c -0.2957,-0.0277 -0.5175,-0.0832 -0.5175 -0.0832c -0.4990,0.4435 -0.4990,0.9055 -0.4990 0.9055ZM 268.6499,17.0678 ZM 266.4138,17.4928 c 0.0000,-1.1088 1.3121,-1.8480 1.3121 -1.8480v -0.0739 c -0.3696,-0.2402 -0.6099,-0.6099 -0.6099 -0.6099c -0.2402,-0.3696 -0.2402,-0.9425 -0.2402 -0.9425c 0.0000,-0.4990 0.2957,-0.9517 0.2957 -0.9517c 0.2957,-0.4528 0.7392,-0.7669 0.7392 -0.7669v -0.0739 c -0.4805,-0.3326 -0.8593,-0.9517 -0.8593 -0.9517c -0.3789,-0.6191 -0.3789,-1.4322 -0.3789 -1.4322c 0.0000,-0.8316 0.3142,-1.4507 0.3142 -1.4507c 0.3142,-0.6191 0.8409,-1.0349 0.8409 -1.0349c 0.5267,-0.4158 1.2105,-0.6191 1.2105 -0.6191c 0.6838,-0.2033 1.4230,-0.2033 1.4230 -0.2033c 0.8131,0.0000 1.4230,0.2218 1.4230 0.2218h 3.3450 v 1.9774 h -1.4600 c 0.1294,0.2033 0.2125,0.5175 0.2125 0.5175c 0.0832,0.3142 0.0832,0.6838 0.0832 0.6838c 0.0000,0.7947 -0.2772,1.3768 -0.2772 1.3768c -0.2772,0.5821 -0.7669,0.9610 -0.7669 0.9610c -0.4897,0.3789 -1.1458,0.5637 -1.1458 0.5637c -0.6561,0.1848 -1.4138,0.1848 -1.4138 0.1848c -0.5359,-0.0000 -1.1088,-0.1848 -1.1088 -0.1848c -0.1848,0.1478 -0.2587,0.2957 -0.2587 0.2957c -0.0739,0.1478 -0.0739,0.3881 -0.0739 0.3881c 0.0000,0.3511 0.3049,0.5175 0.3049 0.5175c 0.3049,0.1663 1.0811,0.1663 1.0811 0.1663h 1.4784 c 1.7002,0.0000 2.5965,0.5452 2.5965 0.5452c 0.8963,0.5452 0.8963,1.7834 0.8963 1.7834c 0.0000,0.7207 -0.3604,1.3214 -0.3604 1.3214c -0.3604,0.6006 -1.0257,1.0349 -1.0257 1.0349c -0.6653,0.4343 -1.6078,0.6838 -1.6078 0.6838c -0.9425,0.2495 -2.1253,0.2495 -2.1253 0.2495c -0.8131,-0.0000 -1.5062,-0.1386 -1.5062 -0.1386c -0.6930,-0.1386 -1.2197,-0.4158 -1.2197 -0.4158c -0.5267,-0.2772 -0.8224,-0.7207 -0.8224 -0.7207c -0.2957,-0.4435 -0.2957,-1.0534 -0.2957 -1.0534ZM 266.4138,17.4928 ZM 270.4610,11.3758 c 0.5359,0.0000 0.8963,-0.3789 0.8963 -0.3789c 0.3604,-0.3789 0.3604,-1.1550 0.3604 -1.1550c 0.0000,-0.7207 -0.3604,-1.0996 -0.3604 -1.0996c -0.3604,-0.3789 -0.8963,-0.3789 -0.8963 -0.3789c -0.5359,-0.0000 -0.8963,0.3696 -0.8963 0.3696c -0.3604,0.3696 -0.3604,1.1088 -0.3604 1.1088c 0.0000,0.7762 0.3604,1.1550 0.3604 1.1550c 0.3604,0.3789 0.8963,0.3789 0.8963 0.3789ZM 279.4979,15.9220 ZM 280.3665,13.3717 c 0.0000,-1.4415 1.2197,-2.2546 1.2197 -2.2546c 1.2197,-0.8131 3.9363,-1.0903 3.9363 -1.0903c -0.0370,-0.6099 -0.3696,-0.9702 -0.3696 -0.9702c -0.3326,-0.3604 -1.0719,-0.3604 -1.0719 -0.3604c -0.5914,-0.0000 -1.1828,0.2218 -1.1828 0.2218c -0.5914,0.2218 -1.2567,0.6099 -1.2567 0.6099l -0.9610,-1.7926 c 0.8871,-0.5359 1.8573,-0.8686 1.8573 -0.8686c 0.9702,-0.3326 2.0606,-0.3326 2.0606 -0.3326c 1.7741,0.0000 2.7074,1.0072 2.7074 1.0072c 0.9333,1.0072 0.9333,3.1324 0.9333 3.1324v 5.2485 h -2.2177 l -0.2033,-0.9425 h -0.0554 c -0.5914,0.5175 -1.2474,0.8409 -1.2474 0.8409c -0.6561,0.3234 -1.4322,0.3234 -1.4322 0.3234c -0.6283,-0.0000 -1.1273,-0.2125 -1.1273 -0.2125c -0.4990,-0.2125 -0.8501,-0.5914 -0.8501 -0.5914c -0.3511,-0.3789 -0.5452,-0.8778 -0.5452 -0.8778c -0.1940,-0.4990 -0.1940,-1.0903 -0.1940 -1.0903ZM 280.3665,13.3717 ZM 282.9538,13.1684 c 0.0000,0.4435 0.2864,0.6561 0.2864 0.6561c 0.2864,0.2125 0.7669,0.2125 0.7669 0.2125c 0.4805,0.0000 0.8131,-0.2033 0.8131 -0.2033c 0.3326,-0.2033 0.7023,-0.5729 0.7023 -0.5729v -1.6078 c -1.4600,0.2033 -2.0144,0.5914 -2.0144 0.5914c -0.5544,0.3881 -0.5544,0.9240 -0.5544 0.9240ZM 293.2105,15.9220 ZM 293.9312,11.3388 c 0.0000,-1.1273 0.3234,-2.0144 0.3234 -2.0144c 0.3234,-0.8871 0.8501,-1.5062 0.8501 -1.5062c 0.5267,-0.6191 1.2197,-0.9517 1.2197 -0.9517c 0.6930,-0.3326 1.4138,-0.3326 1.4138 -0.3326c 0.7762,0.0000 1.2752,0.2587 1.2752 0.2587c 0.4990,0.2587 0.9795,0.7023 0.9795 0.7023l -0.1109,-1.4045 v -3.1232 h 2.7166 v 12.9548 h -2.2177 l -0.1848,-0.9055 h -0.0739 c -0.4805,0.4805 -1.1273,0.8039 -1.1273 0.8039c -0.6468,0.3234 -1.3121,0.3234 -1.3121 0.3234c -0.8501,-0.0000 -1.5431,-0.3326 -1.5431 -0.3326c -0.6930,-0.3326 -1.1828,-0.9517 -1.1828 -0.9517c -0.4897,-0.6191 -0.7577,-1.5062 -0.7577 -1.5062c -0.2680,-0.8871 -0.2680,-2.0144 -0.2680 -2.0144ZM 293.9312,11.3388 ZM 296.7218,11.3018 c 0.0000,1.3676 0.4343,1.9959 0.4343 1.9959c 0.4343,0.6283 1.2290,0.6283 1.2290 0.6283c 0.4435,0.0000 0.8039,-0.1848 0.8039 -0.1848c 0.3604,-0.1848 0.6930,-0.6468 0.6930 -0.6468v -3.7515 c -0.3696,-0.3326 -0.7577,-0.4620 -0.7577 -0.4620c -0.3881,-0.1294 -0.7577,-0.1294 -0.7577 -0.1294c -0.6468,-0.0000 -1.1458,0.6191 -1.1458 0.6191c -0.4990,0.6191 -0.4990,1.9312 -0.4990 1.9312ZM 303.7998,15.9220 ZM 304.4651,11.3388 c 0.0000,-1.1088 0.3696,-2.0051 0.3696 -2.0051c 0.3696,-0.8963 0.9702,-1.5154 0.9702 -1.5154c 0.6006,-0.6191 1.3768,-0.9517 1.3768 -0.9517c 0.7762,-0.3326 1.6078,-0.3326 1.6078 -0.3326c 0.9795,0.0000 1.7094,0.3326 1.7094 0.3326c 0.7300,0.3326 1.2197,0.9240 1.2197 0.9240c 0.4897,0.5914 0.7300,1.3953 0.7300 1.3953c 0.2402,0.8039 0.2402,1.7464 0.2402 1.7464c 0.0000,0.3696 -0.0370,0.6745 -0.0370 0.6745c -0.0370,0.3049 -0.0739,0.4713 -0.0739 0.4713h -5.4887 c 0.1848,1.0534 0.8224,1.5246 0.8224 1.5246c 0.6376,0.4713 1.5616,0.4713 1.5616 0.4713c 0.9795,0.0000 1.9774,-0.6099 1.9774 -0.6099l 0.9055,1.6448 c -0.7023,0.4805 -1.5616,0.7577 -1.5616 0.7577c -0.8593,0.2772 -1.6910,0.2772 -1.6910 0.2772c -0.9795,-0.0000 -1.8296,-0.3234 -1.8296 -0.3234c -0.8501,-0.3234 -1.4784,-0.9425 -1.4784 -0.9425c -0.6283,-0.6191 -0.9795,-1.5062 -0.9795 -1.5062c -0.3511,-0.8871 -0.3511,-2.0329 -0.3511 -2.0329ZM 304.4651,11.3388 ZM 310.3789,10.3963 c 0.0000,-0.7947 -0.3511,-1.2936 -0.3511 -1.2936c -0.3511,-0.4990 -1.1828,-0.4990 -1.1828 -0.4990c -0.6468,-0.0000 -1.1366,0.4343 -1.1366 0.4343c -0.4897,0.4343 -0.6376,1.3583 -0.6376 1.3583h 3.3080 ZM 313.3727,15.9220 ZM 314.0380,11.3388 c 0.0000,-1.1458 0.3881,-2.0421 0.3881 -2.0421c 0.3881,-0.8963 1.0441,-1.5062 1.0441 -1.5062c 0.6561,-0.6099 1.5246,-0.9333 1.5246 -0.9333c 0.8686,-0.3234 1.8111,-0.3234 1.8111 -0.3234c 0.8501,0.0000 1.5339,0.2864 1.5339 0.2864c 0.6838,0.2864 1.1458,0.7669 1.1458 0.7669l -1.2382,1.6817 c -0.6468,-0.5359 -1.2752,-0.5359 -1.2752 -0.5359c -0.9979,-0.0000 -1.5708,0.7023 -1.5708 0.7023c -0.5729,0.7023 -0.5729,1.9035 -0.5729 1.9035c 0.0000,1.2012 0.5821,1.9035 0.5821 1.9035c 0.5821,0.7023 1.4692,0.7023 1.4692 0.7023c 0.4990,0.0000 0.9055,-0.2033 0.9055 -0.2033c 0.4066,-0.2033 0.7392,-0.4620 0.7392 -0.4620l 1.0903,1.7187 c -0.6653,0.5914 -1.4784,0.8686 -1.4784 0.8686c -0.8131,0.2772 -1.5708,0.2772 -1.5708 0.2772c -0.9610,-0.0000 -1.7834,-0.3234 -1.7834 -0.3234c -0.8224,-0.3234 -1.4322,-0.9333 -1.4322 -0.9333c -0.6099,-0.6099 -0.9610,-1.5062 -0.9610 -1.5062c -0.3511,-0.8963 -0.3511,-2.0421 -0.3511 -2.0421ZM 322.0031,15.9220 ZM 323.2043,2.9671 h 2.6427 v 7.4292 h 0.0739 l 2.9014,-3.6407 h 2.9569 l -3.2156,3.7700 l 3.4559,5.3963 h -2.9384 l -2.0698,-3.5667 l -1.1643,1.3121 v 2.2546 h -2.6427 v -12.9548 ZM 335.9743,15.9220 ZM 336.6396,11.3388 c 0.0000,-1.1458 0.3696,-2.0421 0.3696 -2.0421c 0.3696,-0.8963 0.9887,-1.5062 0.9887 -1.5062c 0.6191,-0.6099 1.4322,-0.9333 1.4322 -0.9333c 0.8131,-0.3234 1.6817,-0.3234 1.6817 -0.3234c 0.8686,0.0000 1.6725,0.3234 1.6725 0.3234c 0.8039,0.3234 1.4230,0.9333 1.4230 0.9333c 0.6191,0.6099 0.9887,1.5062 0.9887 1.5062c 0.3696,0.8963 0.3696,2.0421 0.3696 2.0421c 0.0000,1.1458 -0.3696,2.0421 -0.3696 2.0421c -0.3696,0.8963 -0.9887,1.5062 -0.9887 1.5062c -0.6191,0.6099 -1.4230,0.9333 -1.4230 0.9333c -0.8039,0.3234 -1.6725,0.3234 -1.6725 0.3234c -0.8686,-0.0000 -1.6817,-0.3234 -1.6817 -0.3234c -0.8131,-0.3234 -1.4322,-0.9333 -1.4322 -0.9333c -0.6191,-0.6099 -0.9887,-1.5062 -0.9887 -1.5062c -0.3696,-0.8963 -0.3696,-2.0421 -0.3696 -2.0421ZM 336.6396,11.3388 ZM 339.4302,11.3388 c 0.0000,1.2012 0.4158,1.9035 0.4158 1.9035c 0.4158,0.7023 1.2659,0.7023 1.2659 0.7023c 0.8316,0.0000 1.2567,-0.7023 1.2567 -0.7023c 0.4251,-0.7023 0.4251,-1.9035 0.4251 -1.9035c 0.0000,-1.2012 -0.4251,-1.9035 -0.4251 -1.9035c -0.4251,-0.7023 -1.2567,-0.7023 -1.2567 -0.7023c -0.8501,-0.0000 -1.2659,0.7023 -1.2659 0.7023c -0.4158,0.7023 -0.4158,1.9035 -0.4158 1.9035ZM 346.1386,15.9220 ZM 352.5144,5.0739 c -0.5175,-0.1848 -0.9425,-0.1848 -0.9425 -0.1848c -0.4990,-0.0000 -0.7762,0.3049 -0.7762 0.3049c -0.2772,0.3049 -0.2772,1.0072 -0.2772 1.0072v 0.5544 h 1.6448 v 2.1253 h -1.6448 v 7.0411 h -2.7166 v -7.0411 h -1.2197 v -2.0144 l 1.2197,-0.0924 v -0.4990 c 0.0000,-0.7207 0.1756,-1.3676 0.1756 -1.3676c 0.1756,-0.6468 0.5821,-1.1273 0.5821 -1.1273c 0.4066,-0.4805 1.0534,-0.7577 1.0534 -0.7577c 0.6468,-0.2772 1.5708,-0.2772 1.5708 -0.2772c 0.5729,0.0000 1.0441,0.1109 1.0441 0.1109c 0.4713,0.1109 0.7854,0.2218 0.7854 0.2218ZM 356.2844,15.9220 ZM 356.9497,11.3388 c 0.0000,-1.1458 0.3881,-2.0421 0.3881 -2.0421c 0.3881,-0.8963 1.0441,-1.5062 1.0441 -1.5062c 0.6561,-0.6099 1.5246,-0.9333 1.5246 -0.9333c 0.8686,-0.3234 1.8111,-0.3234 1.8111 -0.3234c 0.8501,0.0000 1.5339,0.2864 1.5339 0.2864c 0.6838,0.2864 1.1458,0.7669 1.1458 0.7669l -1.2382,1.6817 c -0.6468,-0.5359 -1.2752,-0.5359 -1.2752 -0.5359c -0.9979,-0.0000 -1.5708,0.7023 -1.5708 0.7023c -0.5729,0.7023 -0.5729,1.9035 -0.5729 1.9035c 0.0000,1.2012 0.5821,1.9035 0.5821 1.9035c 0.5821,0.7023 1.4692,0.7023 1.4692 0.7023c 0.4990,0.0000 0.9055,-0.2033 0.9055 -0.2033c 0.4066,-0.2033 0.7392,-0.4620 0.7392 -0.4620l 1.0903,1.7187 c -0.6653,0.5914 -1.4784,0.8686 -1.4784 0.8686c -0.8131,0.2772 -1.5708,0.2772 -1.5708 0.2772c -0.9610,-0.0000 -1.7834,-0.3234 -1.7834 -0.3234c -0.8224,-0.3234 -1.4322,-0.9333 -1.4322 -0.9333c -0.6099,-0.6099 -0.9610,-1.5062 -0.9610 -1.5062c -0.3511,-0.8963 -0.3511,-2.0421 -0.3511 -2.0421ZM 364.7300,15.9220 ZM 365.5986,13.3717 c 0.0000,-1.4415 1.2197,-2.2546 1.2197 -2.2546c 1.2197,-0.8131 3.9363,-1.0903 3.9363 -1.0903c -0.0370,-0.6099 -0.3696,-0.9702 -0.3696 -0.9702c -0.3326,-0.3604 -1.0719,-0.3604 -1.0719 -0.3604c -0.5914,-0.0000 -1.1828,0.2218 -1.1828 0.2218c -0.5914,0.2218 -1.2567,0.6099 -1.2567 0.6099l -0.9610,-1.7926 c 0.8871,-0.5359 1.8573,-0.8686 1.8573 -0.8686c 0.9702,-0.3326 2.0606,-0.3326 2.0606 -0.3326c 1.7741,0.0000 2.7074,1.0072 2.7074 1.0072c 0.9333,1.0072 0.9333,3.1324 0.9333 3.1324v 5.2485 h -2.2177 l -0.2033,-0.9425 h -0.0554 c -0.5914,0.5175 -1.2474,0.8409 -1.2474 0.8409c -0.6561,0.3234 -1.4322,0.3234 -1.4322 0.3234c -0.6283,-0.0000 -1.1273,-0.2125 -1.1273 -0.2125c -0.4990,-0.2125 -0.8501,-0.5914 -0.8501 -0.5914c -0.3511,-0.3789 -0.5452,-0.8778 -0.5452 -0.8778c -0.1940,-0.4990 -0.1940,-1.0903 -0.1940 -1.0903ZM 365.5986,13.3717 ZM 368.1858,13.1684 c 0.0000,0.4435 0.2864,0.6561 0.2864 0.6561c 0.2864,0.2125 0.7669,0.2125 0.7669 0.2125c 0.4805,0.0000 0.8131,-0.2033 0.8131 -0.2033c 0.3326,-0.2033 0.7023,-0.5729 0.7023 -0.5729v -1.6078 c -1.4600,0.2033 -2.0144,0.5914 -2.0144 0.5914c -0.5544,0.3881 -0.5544,0.9240 -0.5544 0.9240ZM 374.5986,15.9220 ZM 375.7998,6.7556 h 2.2177 l 0.1848,1.6078 h 0.0739 c 0.4990,-0.9425 1.2012,-1.3860 1.2012 -1.3860c 0.7023,-0.4435 1.4045,-0.4435 1.4045 -0.4435c 0.3881,0.0000 0.6376,0.0462 0.6376 0.0462c 0.2495,0.0462 0.4528,0.1386 0.4528 0.1386l -0.4435,2.3470 c -0.2587,-0.0739 -0.4805,-0.1109 -0.4805 -0.1109c -0.2218,-0.0370 -0.5175,-0.0370 -0.5175 -0.0370c -0.5175,-0.0000 -1.0811,0.3696 -1.0811 0.3696c -0.5637,0.3696 -0.9333,1.3121 -0.9333 1.3121v 5.3224 h -2.7166 v -9.1663 ZM 381.7690,15.9220 ZM 382.4897,11.3388 c 0.0000,-1.1273 0.3234,-2.0144 0.3234 -2.0144c 0.3234,-0.8871 0.8501,-1.5062 0.8501 -1.5062c 0.5267,-0.6191 1.2197,-0.9517 1.2197 -0.9517c 0.6930,-0.3326 1.4138,-0.3326 1.4138 -0.3326c 0.7762,0.0000 1.2752,0.2587 1.2752 0.2587c 0.4990,0.2587 0.9795,0.7023 0.9795 0.7023l -0.1109,-1.4045 v -3.1232 h 2.7166 v 12.9548 h -2.2177 l -0.1848,-0.9055 h -0.0739 c -0.4805,0.4805 -1.1273,0.8039 -1.1273 0.8039c -0.6468,0.3234 -1.3121,0.3234 -1.3121 0.3234c -0.8501,-0.0000 -1.5431,-0.3326 -1.5431 -0.3326c -0.6930,-0.3326 -1.1828,-0.9517 -1.1828 -0.9517c -0.4897,-0.6191 -0.7577,-1.5062 -0.7577 -1.5062c -0.2680,-0.8871 -0.2680,-2.0144 -0.2680 -2.0144ZM 382.4897,11.3388 ZM 385.2803,11.3018 c 0.0000,1.3676 0.4343,1.9959 0.4343 1.9959c 0.4343,0.6283 1.2290,0.6283 1.2290 0.6283c 0.4435,0.0000 0.8039,-0.1848 0.8039 -0.1848c 0.3604,-0.1848 0.6930,-0.6468 0.6930 -0.6468v -3.7515 c -0.3696,-0.3326 -0.7577,-0.4620 -0.7577 -0.4620c -0.3881,-0.1294 -0.7577,-0.1294 -0.7577 -0.1294c -0.6468,-0.0000 -1.1458,0.6191 -1.1458 0.6191c -0.4990,0.6191 -0.4990,1.9312 -0.4990 1.9312ZM 392.3583,15.9220 ZM 393.9661,13.1684 c 0.6283,0.4805 1.2012,0.7207 1.2012 0.7207c 0.5729,0.2402 1.1643,0.2402 1.1643 0.2402c 0.6099,0.0000 0.8871,-0.2033 0.8871 -0.2033c 0.2772,-0.2033 0.2772,-0.5729 0.2772 -0.5729c 0.0000,-0.2218 -0.1571,-0.3973 -0.1571 -0.3973c -0.1571,-0.1756 -0.4251,-0.3234 -0.4251 -0.3234c -0.2680,-0.1478 -0.6006,-0.2680 -0.6006 -0.2680c -0.3326,-0.1201 -0.6838,-0.2680 -0.6838 -0.2680c -0.4251,-0.1663 -0.8501,-0.3881 -0.8501 -0.3881c -0.4251,-0.2218 -0.7762,-0.5452 -0.7762 -0.5452c -0.3511,-0.3234 -0.5729,-0.7577 -0.5729 -0.7577c -0.2218,-0.4343 -0.2218,-1.0072 -0.2218 -1.0072c 0.0000,-0.6283 0.2495,-1.1643 0.2495 -1.1643c 0.2495,-0.5359 0.7115,-0.9055 0.7115 -0.9055c 0.4620,-0.3696 1.1088,-0.5821 1.1088 -0.5821c 0.6468,-0.2125 1.4415,-0.2125 1.4415 -0.2125c 1.0534,0.0000 1.8480,0.3604 1.8480 0.3604c 0.7947,0.3604 1.3860,0.8039 1.3860 0.8039l -1.2197,1.6263 c -0.4990,-0.3696 -0.9795,-0.5729 -0.9795 -0.5729c -0.4805,-0.2033 -0.9610,-0.2033 -0.9610 -0.2033c -1.0349,-0.0000 -1.0349,0.7207 -1.0349 0.7207c 0.0000,0.2218 0.1478,0.3789 0.1478 0.3789c 0.1478,0.1571 0.3973,0.2864 0.3973 0.2864c 0.2495,0.1294 0.5729,0.2495 0.5729 0.2495c 0.3234,0.1201 0.6745,0.2495 0.6745 0.2495c 0.4435,0.1663 0.8778,0.3789 0.8778 0.3789c 0.4343,0.2125 0.7947,0.5267 0.7947 0.5267c 0.3604,0.3142 0.5821,0.7669 0.5821 0.7669c 0.2218,0.4528 0.2218,1.0811 0.2218 1.0811c 0.0000,0.6283 -0.2402,1.1643 -0.2402 1.1643c -0.2402,0.5359 -0.7207,0.9333 -0.7207 0.9333c -0.4805,0.3973 -1.1828,0.6283 -1.1828 0.6283c -0.7023,0.2310 -1.6263,0.2310 -1.6263 0.2310c -0.9055,-0.0000 -1.8573,-0.3511 -1.8573 -0.3511c -0.9517,-0.3511 -1.6540,-0.9240 -1.6540 -0.9240ZM 404.3891,15.9220 ZM 404.8326,6.7556 h 2.6982 l 0.8871,4.2505 c 0.1109,0.6838 0.2033,1.3491 0.2033 1.3491c 0.0924,0.6653 0.2033,1.3676 0.2033 1.3676h 0.0739 c 0.1294,-0.7023 0.2495,-1.3860 0.2495 -1.3860c 0.1201,-0.6838 0.2864,-1.3306 0.2864 -1.3306l 1.0164,-4.2505 h 2.3470 l 1.0349,4.2505 c 0.1663,0.6838 0.2957,1.3491 0.2957 1.3491c 0.1294,0.6653 0.2772,1.3676 0.2772 1.3676h 0.0739 c 0.1294,-0.7023 0.2125,-1.3676 0.2125 -1.3676c 0.0832,-0.6653 0.2125,-1.3491 0.2125 -1.3491l 0.8686,-4.2505 h 2.5133 l -2.1992,9.1663 h -3.1786 l -0.8316,-3.6591 c -0.1478,-0.6468 -0.2587,-1.2936 -0.2587 -1.2936c -0.1109,-0.6468 -0.2402,-1.3860 -0.2402 -1.3860h -0.0739 c -0.1294,0.7392 -0.2310,1.3860 -0.2310 1.3860c -0.1016,0.6468 -0.2310,1.2936 -0.2310 1.2936l -0.8131,3.6591 h -3.1047 ZM 418.7300,15.9220 ZM 421.2803,5.4066 c -0.6838,-0.0000 -1.1273,-0.3973 -1.1273 -0.3973c -0.4435,-0.3973 -0.4435,-1.0257 -0.4435 -1.0257c 0.0000,-0.6283 0.4435,-1.0164 0.4435 -1.0164c 0.4435,-0.3881 1.1273,-0.3881 1.1273 -0.3881c 0.7023,0.0000 1.1366,0.3881 1.1366 0.3881c 0.4343,0.3881 0.4343,1.0164 0.4343 1.0164c 0.0000,0.6283 -0.4343,1.0257 -0.4343 1.0257c -0.4343,0.3973 -1.1366,0.3973 -1.1366 0.3973ZM 421.2803,5.4066 ZM 419.9312,6.7556 h 2.7166 v 9.1663 h -2.7166 v -9.1663 ZM 423.8306,15.9220 ZM 425.4014,8.8809 h -1.2567 v -2.0144 l 1.4045,-0.1109 l 0.3142,-2.4394 h 2.2546 v 2.4394 h 2.1992 v 2.1253 h -2.1992 v 3.6776 c 0.0000,0.7762 0.3234,1.1181 0.3234 1.1181c 0.3234,0.3419 0.8593,0.3419 0.8593 0.3419c 0.2218,0.0000 0.4528,-0.0554 0.4528 -0.0554c 0.2310,-0.0554 0.4158,-0.1294 0.4158 -0.1294l 0.4251,1.9774 c -0.3696,0.1109 -0.8686,0.2218 -0.8686 0.2218c -0.4990,0.1109 -1.1643,0.1109 -1.1643 0.1109c -0.8501,-0.0000 -1.4507,-0.2587 -1.4507 -0.2587c -0.6006,-0.2587 -0.9795,-0.7207 -0.9795 -0.7207c -0.3789,-0.4620 -0.5544,-1.1181 -0.5544 -1.1181c -0.1756,-0.6561 -0.1756,-1.4507 -0.1756 -1.4507v -3.7146 ZM 430.9086,15.9220 ZM 432.1099,2.9671 h 2.7166 v 3.1786 l -0.1294,1.6448 c 0.5175,-0.4620 1.2012,-0.8593 1.2012 -0.8593c 0.6838,-0.3973 1.6263,-0.3973 1.6263 -0.3973c 1.4969,0.0000 2.1715,0.9795 2.1715 0.9795c 0.6745,0.9795 0.6745,2.7166 0.6745 2.7166v 5.6920 h -2.7166 v -5.3409 c 0.0000,-0.9979 -0.2680,-1.3676 -0.2680 -1.3676c -0.2680,-0.3696 -0.8593,-0.3696 -0.8593 -0.3696c -0.5175,-0.0000 -0.8871,0.2310 -0.8871 0.2310c -0.3696,0.2310 -0.8131,0.6561 -0.8131 0.6561v 6.1910 h -2.7166 v -12.9548 ZM 445.3049,15.9220 ZM 446.5986,13.7228 h 2.5503 v -6.7823 h -2.1992 v -1.6817 c 0.9610,-0.1848 1.6263,-0.4435 1.6263 -0.4435c 0.6653,-0.2587 1.2936,-0.6283 1.2936 -0.6283h 1.9959 v 9.5359 h 2.1992 v 2.1992 h -7.4661 v -2.1992 ZM 455.0626,15.9220 ZM 459.9415,16.1437 c -0.9425,-0.0000 -1.7187,-0.3973 -1.7187 -0.3973c -0.7762,-0.3973 -1.3214,-1.1735 -1.3214 -1.1735c -0.5452,-0.7762 -0.8501,-1.9220 -0.8501 -1.9220c -0.3049,-1.1458 -0.3049,-2.6427 -0.3049 -2.6427c 0.0000,-1.4969 0.3049,-2.6242 0.3049 -2.6242c 0.3049,-1.1273 0.8501,-1.8943 0.8501 -1.8943c 0.5452,-0.7669 1.3214,-1.1458 1.3214 -1.1458c 0.7762,-0.3789 1.7187,-0.3789 1.7187 -0.3789c 0.9425,0.0000 1.7187,0.3789 1.7187 0.3789c 0.7762,0.3789 1.3214,1.1458 1.3214 1.1458c 0.5452,0.7669 0.8501,1.8943 0.8501 1.8943c 0.3049,1.1273 0.3049,2.6242 0.3049 2.6242c 0.0000,1.4969 -0.3049,2.6427 -0.3049 2.6427c -0.3049,1.1458 -0.8501,1.9220 -0.8501 1.9220c -0.5452,0.7762 -1.3214,1.1735 -1.3214 1.1735c -0.7762,0.3973 -1.7187,0.3973 -1.7187 0.3973ZM 459.9415,16.1437 ZM 459.9415,14.0370 c 0.3511,0.0000 0.6468,-0.1756 0.6468 -0.1756c 0.2957,-0.1756 0.5175,-0.6376 0.5175 -0.6376c 0.2218,-0.4620 0.3419,-1.2382 0.3419 -1.2382c 0.1201,-0.7762 0.1201,-1.9774 0.1201 -1.9774c 0.0000,-1.2012 -0.1201,-1.9682 -0.1201 -1.9682c -0.1201,-0.7669 -0.3419,-1.2012 -0.3419 -1.2012c -0.2218,-0.4343 -0.5175,-0.6006 -0.5175 -0.6006c -0.2957,-0.1663 -0.6468,-0.1663 -0.6468 -0.1663c -0.3326,-0.0000 -0.6283,0.1663 -0.6283 0.1663c -0.2957,0.1663 -0.5175,0.6006 -0.5175 0.6006c -0.2218,0.4343 -0.3511,1.2012 -0.3511 1.2012c -0.1294,0.7669 -0.1294,1.9682 -0.1294 1.9682c 0.0000,1.2012 0.1294,1.9774 0.1294 1.9774c 0.1294,0.7762 0.3511,1.2382 0.3511 1.2382c 0.2218,0.4620 0.5175,0.6376 0.5175 0.6376c 0.2957,0.1756 0.6283,0.1756 0.6283 0.1756ZM 464.8203,15.9220 ZM 468.2947,11.3018 c -0.6468,-0.0000 -1.2012,-0.2587 -1.2012 -0.2587c -0.5544,-0.2587 -0.9517,-0.7577 -0.9517 -0.7577c -0.3973,-0.4990 -0.6191,-1.2105 -0.6191 -1.2105c -0.2218,-0.7115 -0.2218,-1.6170 -0.2218 -1.6170c 0.0000,-0.9055 0.2218,-1.6078 0.2218 -1.6078c 0.2218,-0.7023 0.6191,-1.1920 0.6191 -1.1920c 0.3973,-0.4897 0.9517,-0.7485 0.9517 -0.7485c 0.5544,-0.2587 1.2012,-0.2587 1.2012 -0.2587c 0.6468,0.0000 1.2012,0.2587 1.2012 0.2587c 0.5544,0.2587 0.9517,0.7485 0.9517 0.7485c 0.3973,0.4897 0.6283,1.1920 0.6283 1.1920c 0.2310,0.7023 0.2310,1.6078 0.2310 1.6078c 0.0000,0.9055 -0.2310,1.6170 -0.2310 1.6170c -0.2310,0.7115 -0.6283,1.2105 -0.6283 1.2105c -0.3973,0.4990 -0.9517,0.7577 -0.9517 0.7577c -0.5544,0.2587 -1.2012,0.2587 -1.2012 0.2587ZM 468.2947,11.3018 ZM 468.2947,9.7864 c 0.4620,0.0000 0.7854,-0.5175 0.7854 -0.5175c 0.3234,-0.5175 0.3234,-1.8111 0.3234 -1.8111c 0.0000,-1.2936 -0.3234,-1.7926 -0.3234 -1.7926c -0.3234,-0.4990 -0.7854,-0.4990 -0.7854 -0.4990c -0.4620,-0.0000 -0.7854,0.4990 -0.7854 0.4990c -0.3234,0.4990 -0.3234,1.7926 -0.3234 1.7926c 0.0000,1.2936 0.3234,1.8111 0.3234 1.8111c 0.3234,0.5175 0.7854,0.5175 0.7854 0.5175ZM 468.2947,9.7864 ZM 468.7012,16.1437 l 6.5051,-12.4928 h 1.5708 l -6.5051,12.4928 h -1.5708 ZM 468.7012,16.1437 ZM 477.1838,16.1437 c -0.6468,-0.0000 -1.2012,-0.2587 -1.2012 -0.2587c -0.5544,-0.2587 -0.9517,-0.7577 -0.9517 -0.7577c -0.3973,-0.4990 -0.6191,-1.2105 -0.6191 -1.2105c -0.2218,-0.7115 -0.2218,-1.6170 -0.2218 -1.6170c 0.0000,-0.9055 0.2218,-1.6078 0.2218 -1.6078c 0.2218,-0.7023 0.6191,-1.1920 0.6191 -1.1920c 0.3973,-0.4897 0.9517,-0.7485 0.9517 -0.7485c 0.5544,-0.2587 1.2012,-0.2587 1.2012 -0.2587c 0.6468,0.0000 1.2012,0.2587 1.2012 0.2587c 0.5544,0.2587 0.9517,0.7485 0.9517 0.7485c 0.3973,0.4897 0.6283,1.1920 0.6283 1.1920c 0.2310,0.7023 0.2310,1.6078 0.2310 1.6078c 0.0000,0.9055 -0.2310,1.6170 -0.2310 1.6170c -0.2310,0.7115 -0.6283,1.2105 -0.6283 1.2105c -0.3973,0.4990 -0.9517,0.7577 -0.9517 0.7577c -0.5544,0.2587 -1.2012,0.2587 -1.2012 0.2587ZM 477.1838,16.1437 ZM 477.1838,14.6283 c 0.4620,0.0000 0.7854,-0.5175 0.7854 -0.5175c 0.3234,-0.5175 0.3234,-1.8111 0.3234 -1.8111c 0.0000,-1.2936 -0.3234,-1.7926 -0.3234 -1.7926c -0.3234,-0.4990 -0.7854,-0.4990 -0.7854 -0.4990c -0.4620,-0.0000 -0.7854,0.4990 -0.7854 0.4990c -0.3234,0.4990 -0.3234,1.7926 -0.3234 1.7926c 0.0000,1.2936 0.3234,1.8111 0.3234 1.8111c 0.3234,0.5175 0.7854,0.5175 0.7854 0.5175ZM 484.5021,15.9220 ZM 490.8778,5.0739 c -0.5175,-0.1848 -0.9425,-0.1848 -0.9425 -0.1848c -0.4990,-0.0000 -0.7762,0.3049 -0.7762 0.3049c -0.2772,0.3049 -0.2772,1.0072 -0.2772 1.0072v 0.5544 h 1.6448 v 2.1253 h -1.6448 v 7.0411 h -2.7166 v -7.0411 h -1.2197 v -2.0144 l 1.2197,-0.0924 v -0.4990 c 0.0000,-0.7207 0.1756,-1.3676 0.1756 -1.3676c 0.1756,-0.6468 0.5821,-1.1273 0.5821 -1.1273c 0.4066,-0.4805 1.0534,-0.7577 1.0534 -0.7577c 0.6468,-0.2772 1.5708,-0.2772 1.5708 -0.2772c 0.5729,0.0000 1.0441,0.1109 1.0441 0.1109c 0.4713,0.1109 0.7854,0.2218 0.7854 0.2218ZM 490.4343,15.9220 ZM 491.3029,13.3717 c 0.0000,-1.4415 1.2197,-2.2546 1.2197 -2.2546c 1.2197,-0.8131 3.9363,-1.0903 3.9363 -1.0903c -0.0370,-0.6099 -0.3696,-0.9702 -0.3696 -0.9702c -0.3326,-0.3604 -1.0719,-0.3604 -1.0719 -0.3604c -0.5914,-0.0000 -1.1828,0.2218 -1.1828 0.2218c -0.5914,0.2218 -1.2567,0.6099 -1.2567 0.6099l -0.9610,-1.7926 c 0.8871,-0.5359 1.8573,-0.8686 1.8573 -0.8686c 0.9702,-0.3326 2.0606,-0.3326 2.0606 -0.3326c 1.7741,0.0000 2.7074,1.0072 2.7074 1.0072c 0.9333,1.0072 0.9333,3.1324 0.9333 3.1324v 5.2485 h -2.2177 l -0.2033,-0.9425 h -0.0554 c -0.5914,0.5175 -1.2474,0.8409 -1.2474 0.8409c -0.6561,0.3234 -1.4322,0.3234 -1.4322 0.3234c -0.6283,-0.0000 -1.1273,-0.2125 -1.1273 -0.2125c -0.4990,-0.2125 -0.8501,-0.5914 -0.8501 -0.5914c -0.3511,-0.3789 -0.5452,-0.8778 -0.5452 -0.8778c -0.1940,-0.4990 -0.1940,-1.0903 -0.1940 -1.0903ZM 491.3029,13.3717 ZM 493.8901,13.1684 c 0.0000,0.4435 0.2864,0.6561 0.2864 0.6561c 0.2864,0.2125 0.7669,0.2125 0.7669 0.2125c 0.4805,0.0000 0.8131,-0.2033 0.8131 -0.2033c 0.3326,-0.2033 0.7023,-0.5729 0.7023 -0.5729v -1.6078 c -1.4600,0.2033 -2.0144,0.5914 -2.0144 0.5914c -0.5544,0.3881 -0.5544,0.9240 -0.5544 0.9240ZM 500.3029,15.9220 ZM 502.8532,5.4066 c -0.6838,-0.0000 -1.1273,-0.3973 -1.1273 -0.3973c -0.4435,-0.3973 -0.4435,-1.0257 -0.4435 -1.0257c 0.0000,-0.6283 0.4435,-1.0164 0.4435 -1.0164c 0.4435,-0.3881 1.1273,-0.3881 1.1273 -0.3881c 0.7023,0.0000 1.1366,0.3881 1.1366 0.3881c 0.4343,0.3881 0.4343,1.0164 0.4343 1.0164c 0.0000,0.6283 -0.4343,1.0257 -0.4343 1.0257c -0.4343,0.3973 -1.1366,0.3973 -1.1366 0.3973ZM 502.8532,5.4066 ZM 501.5041,6.7556 h 2.7166 v 9.1663 h -2.7166 v -9.1663 ZM 505.4035,15.9220 ZM 506.6047,2.9671 h 2.7166 v 10.2197 c 0.0000,0.4251 0.1571,0.5914 0.1571 0.5914c 0.1571,0.1663 0.3234,0.1663 0.3234 0.1663h 0.1571 c 0.0000,0.0000 0.1756,-0.0370 0.1756 -0.0370l 0.3326,2.0144 c -0.2218,0.0924 -0.5637,0.1571 -0.5637 0.1571c -0.3419,0.0647 -0.8039,0.0647 -0.8039 0.0647c -0.7023,-0.0000 -1.1828,-0.2218 -1.1828 -0.2218c -0.4805,-0.2218 -0.7669,-0.6191 -0.7669 -0.6191c -0.2864,-0.3973 -0.4158,-0.9610 -0.4158 -0.9610c -0.1294,-0.5637 -0.1294,-1.2659 -0.1294 -1.2659v -10.1088 ZM 510.6889,15.9220 ZM 511.3542,11.3388 c 0.0000,-1.1088 0.3696,-2.0051 0.3696 -2.0051c 0.3696,-0.8963 0.9702,-1.5154 0.9702 -1.5154c 0.6006,-0.6191 1.3768,-0.9517 1.3768 -0.9517c 0.7762,-0.3326 1.6078,-0.3326 1.6078 -0.3326c 0.9795,0.0000 1.7094,0.3326 1.7094 0.3326c 0.7300,0.3326 1.2197,0.9240 1.2197 0.9240c 0.4897,0.5914 0.7300,1.3953 0.7300 1.3953c 0.2402,0.8039 0.2402,1.7464 0.2402 1.7464c 0.0000,0.3696 -0.0370,0.6745 -0.0370 0.6745c -0.0370,0.3049 -0.0739,0.4713 -0.0739 0.4713h -5.4887 c 0.1848,1.0534 0.8224,1.5246 0.8224 1.5246c 0.6376,0.4713 1.5616,0.4713 1.5616 0.4713c 0.9795,0.0000 1.9774,-0.6099 1.9774 -0.6099l 0.9055,1.6448 c -0.7023,0.4805 -1.5616,0.7577 -1.5616 0.7577c -0.8593,0.2772 -1.6910,0.2772 -1.6910 0.2772c -0.9795,-0.0000 -1.8296,-0.3234 -1.8296 -0.3234c -0.8501,-0.3234 -1.4784,-0.9425 -1.4784 -0.9425c -0.6283,-0.6191 -0.9795,-1.5062 -0.9795 -1.5062c -0.3511,-0.8871 -0.3511,-2.0329 -0.3511 -2.0329ZM 511.3542,11.3388 ZM 517.2680,10.3963 c 0.0000,-0.7947 -0.3511,-1.2936 -0.3511 -1.2936c -0.3511,-0.4990 -1.1828,-0.4990 -1.1828 -0.4990c -0.6468,-0.0000 -1.1366,0.4343 -1.1366 0.4343c -0.4897,0.4343 -0.6376,1.3583 -0.6376 1.3583h 3.3080 ZM 520.2618,15.9220 ZM 520.9825,11.3388 c 0.0000,-1.1273 0.3234,-2.0144 0.3234 -2.0144c 0.3234,-0.8871 0.8501,-1.5062 0.8501 -1.5062c 0.5267,-0.6191 1.2197,-0.9517 1.2197 -0.9517c 0.6930,-0.3326 1.4138,-0.3326 1.4138 -0.3326c 0.7762,0.0000 1.2752,0.2587 1.2752 0.2587c 0.4990,0.2587 0.9795,0.7023 0.9795 0.7023l -0.1109,-1.4045 v -3.1232 h 2.7166 v 12.9548 h -2.2177 l -0.1848,-0.9055 h -0.0739 c -0.4805,0.4805 -1.1273,0.8039 -1.1273 0.8039c -0.6468,0.3234 -1.3121,0.3234 -1.3121 0.3234c -0.8501,-0.0000 -1.5431,-0.3326 -1.5431 -0.3326c -0.6930,-0.3326 -1.1828,-0.9517 -1.1828 -0.9517c -0.4897,-0.6191 -0.7577,-1.5062 -0.7577 -1.5062c -0.2680,-0.8871 -0.2680,-2.0144 -0.2680 -2.0144ZM 520.9825,11.3388 ZM 523.7731,11.3018 c 0.0000,1.3676 0.4343,1.9959 0.4343 1.9959c 0.4343,0.6283 1.2290,0.6283 1.2290 0.6283c 0.4435,0.0000 0.8039,-0.1848 0.8039 -0.1848c 0.3604,-0.1848 0.6930,-0.6468 0.6930 -0.6468v -3.7515 c -0.3696,-0.3326 -0.7577,-0.4620 -0.7577 -0.4620c -0.3881,-0.1294 -0.7577,-0.1294 -0.7577 -0.1294c -0.6468,-0.0000 -1.1458,0.6191 -1.1458 0.6191c -0.4990,0.6191 -0.4990,1.9312 -0.4990 1.9312ZM 534.6951,15.9220 ZM 535.3604,11.3388 c 0.0000,-1.1458 0.3881,-2.0421 0.3881 -2.0421c 0.3881,-0.8963 1.0441,-1.5062 1.0441 -1.5062c 0.6561,-0.6099 1.5246,-0.9333 1.5246 -0.9333c 0.8686,-0.3234 1.8111,-0.3234 1.8111 -0.3234c 0.8501,0.0000 1.5339,0.2864 1.5339 0.2864c 0.6838,0.2864 1.1458,0.7669 1.1458 0.7669l -1.2382,1.6817 c -0.6468,-0.5359 -1.2752,-0.5359 -1.2752 -0.5359c -0.9979,-0.0000 -1.5708,0.7023 -1.5708 0.7023c -0.5729,0.7023 -0.5729,1.9035 -0.5729 1.9035c 0.0000,1.2012 0.5821,1.9035 0.5821 1.9035c 0.5821,0.7023 1.4692,0.7023 1.4692 0.7023c 0.4990,0.0000 0.9055,-0.2033 0.9055 -0.2033c 0.4066,-0.2033 0.7392,-0.4620 0.7392 -0.4620l 1.0903,1.7187 c -0.6653,0.5914 -1.4784,0.8686 -1.4784 0.8686c -0.8131,0.2772 -1.5708,0.2772 -1.5708 0.2772c -0.9610,-0.0000 -1.7834,-0.3234 -1.7834 -0.3234c -0.8224,-0.3234 -1.4322,-0.9333 -1.4322 -0.9333c -0.6099,-0.6099 -0.9610,-1.5062 -0.9610 -1.5062c -0.3511,-0.8963 -0.3511,-2.0421 -0.3511 -2.0421ZM 542.8080,15.9220 ZM 543.4733,11.3388 c 0.0000,-1.1458 0.3696,-2.0421 0.3696 -2.0421c 0.3696,-0.8963 0.9887,-1.5062 0.9887 -1.5062c 0.6191,-0.6099 1.4322,-0.9333 1.4322 -0.9333c 0.8131,-0.3234 1.6817,-0.3234 1.6817 -0.3234c 0.8686,0.0000 1.6725,0.3234 1.6725 0.3234c 0.8039,0.3234 1.4230,0.9333 1.4230 0.9333c 0.6191,0.6099 0.9887,1.5062 0.9887 1.5062c 0.3696,0.8963 0.3696,2.0421 0.3696 2.0421c 0.0000,1.1458 -0.3696,2.0421 -0.3696 2.0421c -0.3696,0.8963 -0.9887,1.5062 -0.9887 1.5062c -0.6191,0.6099 -1.4230,0.9333 -1.4230 0.9333c -0.8039,0.3234 -1.6725,0.3234 -1.6725 0.3234c -0.8686,-0.0000 -1.6817,-0.3234 -1.6817 -0.3234c -0.8131,-0.3234 -1.4322,-0.9333 -1.4322 -0.9333c -0.6191,-0.6099 -0.9887,-1.5062 -0.9887 -1.5062c -0.3696,-0.8963 -0.3696,-2.0421 -0.3696 -2.0421ZM 543.4733,11.3388 ZM 546.2639,11.3388 c 0.0000,1.2012 0.4158,1.9035 0.4158 1.9035c 0.4158,0.7023 1.2659,0.7023 1.2659 0.7023c 0.8316,0.0000 1.2567,-0.7023 1.2567 -0.7023c 0.4251,-0.7023 0.4251,-1.9035 0.4251 -1.9035c 0.0000,-1.2012 -0.4251,-1.9035 -0.4251 -1.9035c -0.4251,-0.7023 -1.2567,-0.7023 -1.2567 -0.7023c -0.8501,-0.0000 -1.2659,0.7023 -1.2659 0.7023c -0.4158,0.7023 -0.4158,1.9035 -0.4158 1.9035ZM 553.0647,15.9220 ZM 554.2659,6.7556 h 2.2177 l 0.1848,1.1828 h 0.0739 c 0.5729,-0.5729 1.2197,-0.9887 1.2197 -0.9887c 0.6468,-0.4158 1.5524,-0.4158 1.5524 -0.4158c 0.9795,0.0000 1.5801,0.3973 1.5801 0.3973c 0.6006,0.3973 0.9517,1.1366 0.9517 1.1366c 0.6099,-0.6283 1.2844,-1.0811 1.2844 -1.0811c 0.6745,-0.4528 1.5986,-0.4528 1.5986 -0.4528c 1.4784,0.0000 2.1715,0.9887 2.1715 0.9887c 0.6930,0.9887 0.6930,2.7074 0.6930 2.7074v 5.6920 h -2.7166 v -5.3409 c 0.0000,-0.9979 -0.2680,-1.3676 -0.2680 -1.3676c -0.2680,-0.3696 -0.8593,-0.3696 -0.8593 -0.3696c -0.6838,-0.0000 -1.5708,0.8871 -1.5708 0.8871v 6.1910 h -2.7166 v -5.3409 c 0.0000,-0.9979 -0.2680,-1.3676 -0.2680 -1.3676c -0.2680,-0.3696 -0.8593,-0.3696 -0.8593 -0.3696c -0.7023,-0.0000 -1.5524,0.8871 -1.5524 0.8871v 6.1910 h -2.7166 v -9.1663 ZM 568.9025,15.9220 ZM 572.8203,16.6427 v 2.6797 h -2.7166 v -12.5667 h 2.2177 l 0.1848,0.9055 h 0.0739 c 0.5359,-0.4805 1.2105,-0.8039 1.2105 -0.8039c 0.6745,-0.3234 1.3953,-0.3234 1.3953 -0.3234c 0.8316,0.0000 1.4969,0.3326 1.4969 0.3326c 0.6653,0.3326 1.1273,0.9425 1.1273 0.9425c 0.4620,0.6099 0.7115,1.4692 0.7115 1.4692c 0.2495,0.8593 0.2495,1.9127 0.2495 1.9127c 0.0000,1.1828 -0.3234,2.0975 -0.3234 2.0975c -0.3234,0.9148 -0.8686,1.5524 -0.8686 1.5524c -0.5452,0.6376 -1.2382,0.9702 -1.2382 0.9702c -0.6930,0.3326 -1.4322,0.3326 -1.4322 0.3326c -0.5914,-0.0000 -1.1458,-0.2495 -1.1458 -0.2495c -0.5544,-0.2495 -1.0349,-0.7115 -1.0349 -0.7115ZM 572.8203,16.6427 ZM 572.8203,13.3347 c 0.3696,0.3326 0.7392,0.4620 0.7392 0.4620c 0.3696,0.1294 0.7207,0.1294 0.7207 0.1294c 0.7023,0.0000 1.2012,-0.6376 1.2012 -0.6376c 0.4990,-0.6376 0.4990,-2.0606 0.4990 -2.0606c 0.0000,-2.4764 -1.5893,-2.4764 -1.5893 -2.4764c -0.7947,-0.0000 -1.5708,0.8316 -1.5708 0.8316v 3.7515 ZM 579.2885,15.9220 ZM 580.1571,13.3717 c 0.0000,-1.4415 1.2197,-2.2546 1.2197 -2.2546c 1.2197,-0.8131 3.9363,-1.0903 3.9363 -1.0903c -0.0370,-0.6099 -0.3696,-0.9702 -0.3696 -0.9702c -0.3326,-0.3604 -1.0719,-0.3604 -1.0719 -0.3604c -0.5914,-0.0000 -1.1828,0.2218 -1.1828 0.2218c -0.5914,0.2218 -1.2567,0.6099 -1.2567 0.6099l -0.9610,-1.7926 c 0.8871,-0.5359 1.8573,-0.8686 1.8573 -0.8686c 0.9702,-0.3326 2.0606,-0.3326 2.0606 -0.3326c 1.7741,0.0000 2.7074,1.0072 2.7074 1.0072c 0.9333,1.0072 0.9333,3.1324 0.9333 3.1324v 5.2485 h -2.2177 l -0.2033,-0.9425 h -0.0554 c -0.5914,0.5175 -1.2474,0.8409 -1.2474 0.8409c -0.6561,0.3234 -1.4322,0.3234 -1.4322 0.3234c -0.6283,-0.0000 -1.1273,-0.2125 -1.1273 -0.2125c -0.4990,-0.2125 -0.8501,-0.5914 -0.8501 -0.5914c -0.3511,-0.3789 -0.5452,-0.8778 -0.5452 -0.8778c -0.1940,-0.4990 -0.1940,-1.0903 -0.1940 -1.0903ZM 580.1571,13.3717 ZM 582.7444,13.1684 c 0.0000,0.4435 0.2864,0.6561 0.2864 0.6561c 0.2864,0.2125 0.7669,0.2125 0.7669 0.2125c 0.4805,0.0000 0.8131,-0.2033 0.8131 -0.2033c 0.3326,-0.2033 0.7023,-0.5729 0.7023 -0.5729v -1.6078 c -1.4600,0.2033 -2.0144,0.5914 -2.0144 0.5914c -0.5544,0.3881 -0.5544,0.9240 -0.5544 0.9240ZM 589.1571,15.9220 ZM 590.3583,6.7556 h 2.2177 l 0.1848,1.6078 h 0.0739 c 0.4990,-0.9425 1.2012,-1.3860 1.2012 -1.3860c 0.7023,-0.4435 1.4045,-0.4435 1.4045 -0.4435c 0.3881,0.0000 0.6376,0.0462 0.6376 0.0462c 0.2495,0.0462 0.4528,0.1386 0.4528 0.1386l -0.4435,2.3470 c -0.2587,-0.0739 -0.4805,-0.1109 -0.4805 -0.1109c -0.2218,-0.0370 -0.5175,-0.0370 -0.5175 -0.0370c -0.5175,-0.0000 -1.0811,0.3696 -1.0811 0.3696c -0.5637,0.3696 -0.9333,1.3121 -0.9333 1.3121v 5.3224 h -2.7166 v -9.1663 ZM 596.5123,15.9220 ZM 599.0626,5.4066 c -0.6838,-0.0000 -1.1273,-0.3973 -1.1273 -0.3973c -0.4435,-0.3973 -0.4435,-1.0257 -0.4435 -1.0257c 0.0000,-0.6283 0.4435,-1.0164 0.4435 -1.0164c 0.4435,-0.3881 1.1273,-0.3881 1.1273 -0.3881c 0.7023,0.0000 1.1366,0.3881 1.1366 0.3881c 0.4343,0.3881 0.4343,1.0164 0.4343 1.0164c 0.0000,0.6283 -0.4343,1.0257 -0.4343 1.0257c -0.4343,0.3973 -1.1366,0.3973 -1.1366 0.3973ZM 599.0626,5.4066 ZM 597.7136,6.7556 h 2.7166 v 9.1663 h -2.7166 v -9.1663 ZM 601.6129,15.9220 ZM 603.2207,13.1684 c 0.6283,0.4805 1.2012,0.7207 1.2012 0.7207c 0.5729,0.2402 1.1643,0.2402 1.1643 0.2402c 0.6099,0.0000 0.8871,-0.2033 0.8871 -0.2033c 0.2772,-0.2033 0.2772,-0.5729 0.2772 -0.5729c 0.0000,-0.2218 -0.1571,-0.3973 -0.1571 -0.3973c -0.1571,-0.1756 -0.4251,-0.3234 -0.4251 -0.3234c -0.2680,-0.1478 -0.6006,-0.2680 -0.6006 -0.2680c -0.3326,-0.1201 -0.6838,-0.2680 -0.6838 -0.2680c -0.4251,-0.1663 -0.8501,-0.3881 -0.8501 -0.3881c -0.4251,-0.2218 -0.7762,-0.5452 -0.7762 -0.5452c -0.3511,-0.3234 -0.5729,-0.7577 -0.5729 -0.7577c -0.2218,-0.4343 -0.2218,-1.0072 -0.2218 -1.0072c 0.0000,-0.6283 0.2495,-1.1643 0.2495 -1.1643c 0.2495,-0.5359 0.7115,-0.9055 0.7115 -0.9055c 0.4620,-0.3696 1.1088,-0.5821 1.1088 -0.5821c 0.6468,-0.2125 1.4415,-0.2125 1.4415 -0.2125c 1.0534,0.0000 1.8480,0.3604 1.8480 0.3604c 0.7947,0.3604 1.3860,0.8039 1.3860 0.8039l -1.2197,1.6263 c -0.4990,-0.3696 -0.9795,-0.5729 -0.9795 -0.5729c -0.4805,-0.2033 -0.9610,-0.2033 -0.9610 -0.2033c -1.0349,-0.0000 -1.0349,0.7207 -1.0349 0.7207c 0.0000,0.2218 0.1478,0.3789 0.1478 0.3789c 0.1478,0.1571 0.3973,0.2864 0.3973 0.2864c 0.2495,0.1294 0.5729,0.2495 0.5729 0.2495c 0.3234,0.1201 0.6745,0.2495 0.6745 0.2495c 0.4435,0.1663 0.8778,0.3789 0.8778 0.3789c 0.4343,0.2125 0.7947,0.5267 0.7947 0.5267c 0.3604,0.3142 0.5821,0.7669 0.5821 0.7669c 0.2218,0.4528 0.2218,1.0811 0.2218 1.0811c 0.0000,0.6283 -0.2402,1.1643 -0.2402 1.1643c -0.2402,0.5359 -0.7207,0.9333 -0.7207 0.9333c -0.4805,0.3973 -1.1828,0.6283 -1.1828 0.6283c -0.7023,0.2310 -1.6263,0.2310 -1.6263 0.2310c -0.9055,-0.0000 -1.8573,-0.3511 -1.8573 -0.3511c -0.9517,-0.3511 -1.6540,-0.9240 -1.6540 -0.9240ZM 609.7998,15.9220 ZM 610.4651,11.3388 c 0.0000,-1.1458 0.3696,-2.0421 0.3696 -2.0421c 0.3696,-0.8963 0.9887,-1.5062 0.9887 -1.5062c 0.6191,-0.6099 1.4322,-0.9333 1.4322 -0.9333c 0.8131,-0.3234 1.6817,-0.3234 1.6817 -0.3234c 0.8686,0.0000 1.6725,0.3234 1.6725 0.3234c 0.8039,0.3234 1.4230,0.9333 1.4230 0.9333c 0.6191,0.6099 0.9887,1.5062 0.9887 1.5062c 0.3696,0.8963 0.3696,2.0421 0.3696 2.0421c 0.0000,1.1458 -0.3696,2.0421 -0.3696 2.0421c -0.3696,0.8963 -0.9887,1.5062 -0.9887 1.5062c -0.6191,0.6099 -1.4230,0.9333 -1.4230 0.9333c -0.8039,0.3234 -1.6725,0.3234 -1.6725 0.3234c -0.8686,-0.0000 -1.6817,-0.3234 -1.6817 -0.3234c -0.8131,-0.3234 -1.4322,-0.9333 -1.4322 -0.9333c -0.6191,-0.6099 -0.9887,-1.5062 -0.9887 -1.5062c -0.3696,-0.8963 -0.3696,-2.0421 -0.3696 -2.0421ZM 610.4651,11.3388 ZM 613.2556,11.3388 c 0.0000,1.2012 0.4158,1.9035 0.4158 1.9035c 0.4158,0.7023 1.2659,0.7023 1.2659 0.7023c 0.8316,0.0000 1.2567,-0.7023 1.2567 -0.7023c 0.4251,-0.7023 0.4251,-1.9035 0.4251 -1.9035c 0.0000,-1.2012 -0.4251,-1.9035 -0.4251 -1.9035c -0.4251,-0.7023 -1.2567,-0.7023 -1.2567 -0.7023c -0.8501,-0.0000 -1.2659,0.7023 -1.2659 0.7023c -0.4158,0.7023 -0.4158,1.9035 -0.4158 1.9035ZM 620.0565,15.9220 ZM 621.2577,6.7556 h 2.2177 l 0.1848,1.1643 h 0.0739 c 0.5914,-0.5544 1.2936,-0.9702 1.2936 -0.9702c 0.7023,-0.4158 1.6448,-0.4158 1.6448 -0.4158c 1.4969,0.0000 2.1715,0.9795 2.1715 0.9795c 0.6745,0.9795 0.6745,2.7166 0.6745 2.7166v 5.6920 h -2.7166 v -5.3409 c 0.0000,-0.9979 -0.2680,-1.3676 -0.2680 -1.3676c -0.2680,-0.3696 -0.8593,-0.3696 -0.8593 -0.3696c -0.5175,-0.0000 -0.8871,0.2310 -0.8871 0.2310c -0.3696,0.2310 -0.8131,0.6561 -0.8131 0.6561v 6.1910 h -2.7166 v -9.1663 ZM 630.6273,15.9220 ZM 632.2351,13.1684 c 0.6283,0.4805 1.2012,0.7207 1.2012 0.7207c 0.5729,0.2402 1.1643,0.2402 1.1643 0.2402c 0.6099,0.0000 0.8871,-0.2033 0.8871 -0.2033c 0.2772,-0.2033 0.2772,-0.5729 0.2772 -0.5729c 0.0000,-0.2218 -0.1571,-0.3973 -0.1571 -0.3973c -0.1571,-0.1756 -0.4251,-0.3234 -0.4251 -0.3234c -0.2680,-0.1478 -0.6006,-0.2680 -0.6006 -0.2680c -0.3326,-0.1201 -0.6838,-0.2680 -0.6838 -0.2680c -0.4251,-0.1663 -0.8501,-0.3881 -0.8501 -0.3881c -0.4251,-0.2218 -0.7762,-0.5452 -0.7762 -0.5452c -0.3511,-0.3234 -0.5729,-0.7577 -0.5729 -0.7577c -0.2218,-0.4343 -0.2218,-1.0072 -0.2218 -1.0072c 0.0000,-0.6283 0.2495,-1.1643 0.2495 -1.1643c 0.2495,-0.5359 0.7115,-0.9055 0.7115 -0.9055c 0.4620,-0.3696 1.1088,-0.5821 1.1088 -0.5821c 0.6468,-0.2125 1.4415,-0.2125 1.4415 -0.2125c 1.0534,0.0000 1.8480,0.3604 1.8480 0.3604c 0.7947,0.3604 1.3860,0.8039 1.3860 0.8039l -1.2197,1.6263 c -0.4990,-0.3696 -0.9795,-0.5729 -0.9795 -0.5729c -0.4805,-0.2033 -0.9610,-0.2033 -0.9610 -0.2033c -1.0349,-0.0000 -1.0349,0.7207 -1.0349 0.7207c 0.0000,0.2218 0.1478,0.3789 0.1478 0.3789c 0.1478,0.1571 0.3973,0.2864 0.3973 0.2864c 0.2495,0.1294 0.5729,0.2495 0.5729 0.2495c 0.3234,0.1201 0.6745,0.2495 0.6745 0.2495c 0.4435,0.1663 0.8778,0.3789 0.8778 0.3789c 0.4343,0.2125 0.7947,0.5267 0.7947 0.5267c 0.3604,0.3142 0.5821,0.7669 0.5821 0.7669c 0.2218,0.4528 0.2218,1.0811 0.2218 1.0811c 0.0000,0.6283 -0.2402,1.1643 -0.2402 1.1643c -0.2402,0.5359 -0.7207,0.9333 -0.7207 0.9333c -0.4805,0.3973 -1.1828,0.6283 -1.1828 0.6283c -0.7023,0.2310 -1.6263,0.2310 -1.6263 0.2310c -0.9055,-0.0000 -1.8573,-0.3511 -1.8573 -0.3511c -0.9517,-0.3511 -1.6540,-0.9240 -1.6540 -0.9240Z"+       id="path2" />+  </g>+  <g+     stroke-linejoin="miter"+     fill-opacity="0.0"+     stroke-dashoffset="0.0"+     fill="rgb(0,0,0)"+     stroke="rgb(211,211,211)"+     stroke-linecap="butt"+     stroke-miterlimit="10.0"+     stroke-opacity="1.0"+     stroke-dasharray="4.999999999999998,4.999999999999998"+     stroke-width="0.9999999999999997"+     id="g3">+    <path+       d="M 46.6786,534.0000 h 691.2027 "+       id="path3" />+  </g>+  <g+     stroke-linejoin="miter"+     fill-opacity="0.0"+     stroke-dashoffset="0.0"+     fill="rgb(0,0,0)"+     stroke="rgb(211,211,211)"+     stroke-linecap="butt"+     stroke-miterlimit="10.0"+     stroke-opacity="1.0"+     stroke-dasharray="4.999999999999998,4.999999999999998"+     stroke-width="0.9999999999999997"+     id="g4">+    <path+       d="M 46.6786,435.6000 h 691.2027 "+       id="path4" />+  </g>+  <g+     stroke-linejoin="miter"+     fill-opacity="0.0"+     stroke-dashoffset="0.0"+     fill="rgb(0,0,0)"+     stroke="rgb(211,211,211)"+     stroke-linecap="butt"+     stroke-miterlimit="10.0"+     stroke-opacity="1.0"+     stroke-dasharray="4.999999999999998,4.999999999999998"+     stroke-width="0.9999999999999997"+     id="g5">+    <path+       d="M 46.6786,337.2000 h 691.2027 "+       id="path5" />+  </g>+  <g+     stroke-linejoin="miter"+     fill-opacity="0.0"+     stroke-dashoffset="0.0"+     fill="rgb(0,0,0)"+     stroke="rgb(211,211,211)"+     stroke-linecap="butt"+     stroke-miterlimit="10.0"+     stroke-opacity="1.0"+     stroke-dasharray="4.999999999999998,4.999999999999998"+     stroke-width="0.9999999999999997"+     id="g6">+    <path+       d="M 46.6786,238.8000 h 691.2027 "+       id="path6" />+  </g>+  <g+     stroke-linejoin="miter"+     fill-opacity="0.0"+     stroke-dashoffset="0.0"+     fill="rgb(0,0,0)"+     stroke="rgb(211,211,211)"+     stroke-linecap="butt"+     stroke-miterlimit="10.0"+     stroke-opacity="1.0"+     stroke-dasharray="4.999999999999998,4.999999999999998"+     stroke-width="0.9999999999999997"+     id="g7">+    <path+       d="M 46.6786,140.4000 h 691.2027 "+       id="path7" />+  </g>+  <g+     stroke-linejoin="miter"+     fill-opacity="0.0"+     stroke-dashoffset="0.0"+     fill="rgb(0,0,0)"+     stroke="rgb(211,211,211)"+     stroke-linecap="butt"+     stroke-miterlimit="10.0"+     stroke-opacity="1.0"+     stroke-dasharray="4.999999999999998,4.999999999999998"+     stroke-width="0.9999999999999997"+     id="g8">+    <path+       d="M 46.6786,42.0000 h 691.2027 "+       id="path8" />+  </g>+  <g+     stroke-linejoin="bevel"+     fill-opacity="1.0"+     fill="rgb(0,0,255)"+     stroke="rgb(0,0,0)"+     stroke-linecap="butt"+     stroke-miterlimit="10.0"+     stroke-opacity="0.0"+     stroke-width="0.0"+     id="g11">+    <defs+       id="defs9">+      <clipPath+         id="myClip1">+        <path+           d="M 46.6786,42.0000 v 492.0000 h 691.2027 v -492.0000 Z"+           id="path9" />+      </clipPath>+    </defs>+    <g+       clip-path="url(#myClip1)"+       id="g10">+      <path+         d="M 61.6786,534.0000 v -395.5680 h 85.2005 v 395.5680 Z"+         id="path10" />+    </g>+  </g>+  <g+     stroke-linejoin="miter"+     fill-opacity="0.0"+     fill="rgb(0,0,0)"+     stroke="rgb(0,0,0)"+     stroke-linecap="butt"+     stroke-miterlimit="10.0"+     stroke-opacity="1.0"+     stroke-width="0.9999999999999997"+     id="g13">+    <defs+       id="defs11">+      <clipPath+         id="myClip2">+        <path+           d="M 46.6786,42.0000 v 492.0000 h 691.2027 v -492.0000 Z"+           id="path11" />+      </clipPath>+    </defs>+    <g+       clip-path="url(#myClip2)"+       id="g12">+      <path+         d="M 61.6786,534.0000 v -395.5680 h 85.2005 v 395.5680 Z"+         id="path12" />+    </g>+  </g>+  <g+     stroke-linejoin="bevel"+     fill-opacity="1.0"+     fill="rgb(0,0,255)"+     stroke="rgb(0,0,0)"+     stroke-linecap="butt"+     stroke-miterlimit="10.0"+     stroke-opacity="0.0"+     stroke-width="0.0"+     id="g15">+    <defs+       id="defs13">+      <clipPath+         id="myClip3">+        <path+           d="M 46.6786,42.0000 v 492.0000 h 691.2027 v -492.0000 Z"+           id="path13" />+      </clipPath>+    </defs>+    <g+       clip-path="url(#myClip3)"+       id="g14">+      <path+         d="M 176.8790,534.0000 v -397.5360 h 85.2005 v 397.5360 Z"+         id="path14" />+    </g>+  </g>+  <g+     stroke-linejoin="miter"+     fill-opacity="0.0"+     fill="rgb(0,0,0)"+     stroke="rgb(0,0,0)"+     stroke-linecap="butt"+     stroke-miterlimit="10.0"+     stroke-opacity="1.0"+     stroke-width="0.9999999999999997"+     id="g17">+    <defs+       id="defs15">+      <clipPath+         id="myClip4">+        <path+           d="M 46.6786,42.0000 v 492.0000 h 691.2027 v -492.0000 Z"+           id="path15" />+      </clipPath>+    </defs>+    <g+       clip-path="url(#myClip4)"+       id="g16">+      <path+         d="M 176.8790,534.0000 v -397.5360 h 85.2005 v 397.5360 Z"+         id="path16" />+    </g>+  </g>+  <g+     stroke-linejoin="bevel"+     fill-opacity="1.0"+     fill="rgb(0,0,255)"+     stroke="rgb(0,0,0)"+     stroke-linecap="butt"+     stroke-miterlimit="10.0"+     stroke-opacity="0.0"+     stroke-width="0.0"+     id="g19">+    <defs+       id="defs17">+      <clipPath+         id="myClip5">+        <path+           d="M 46.6786,42.0000 v 492.0000 h 691.2027 v -492.0000 Z"+           id="path17" />+      </clipPath>+    </defs>+    <g+       clip-path="url(#myClip5)"+       id="g18">+      <path+         d="M 292.0795,534.0000 v -7.8720 h 85.2005 v 7.8720 Z"+         id="path18" />+    </g>+  </g>+  <g+     stroke-linejoin="miter"+     fill-opacity="0.0"+     fill="rgb(0,0,0)"+     stroke="rgb(0,0,0)"+     stroke-linecap="butt"+     stroke-miterlimit="10.0"+     stroke-opacity="1.0"+     stroke-width="0.9999999999999997"+     id="g21">+    <defs+       id="defs19">+      <clipPath+         id="myClip6">+        <path+           d="M 46.6786,42.0000 v 492.0000 h 691.2027 v -492.0000 Z"+           id="path19" />+      </clipPath>+    </defs>+    <g+       clip-path="url(#myClip6)"+       id="g20">+      <path+         d="M 292.0795,534.0000 v -7.8720 h 85.2005 v 7.8720 Z"+         id="path20" />+    </g>+  </g>+  <g+     stroke-linejoin="bevel"+     fill-opacity="1.0"+     fill="rgb(0,0,255)"+     stroke="rgb(0,0,0)"+     stroke-linecap="butt"+     stroke-miterlimit="10.0"+     stroke-opacity="0.0"+     stroke-width="0.0"+     id="g23">+    <defs+       id="defs21">+      <clipPath+         id="myClip7">+        <path+           d="M 46.6786,42.0000 v 492.0000 h 691.2027 v -492.0000 Z"+           id="path21" />+      </clipPath>+    </defs>+    <g+       clip-path="url(#myClip7)"+       id="g22">+      <path+         d="M 407.2799,534.0000 v -100.3680 h 85.2005 v 100.3680 Z"+         id="path22" />+    </g>+  </g>+  <g+     stroke-linejoin="miter"+     fill-opacity="0.0"+     fill="rgb(0,0,0)"+     stroke="rgb(0,0,0)"+     stroke-linecap="butt"+     stroke-miterlimit="10.0"+     stroke-opacity="1.0"+     stroke-width="0.9999999999999997"+     id="g25">+    <defs+       id="defs23">+      <clipPath+         id="myClip8">+        <path+           d="M 46.6786,42.0000 v 492.0000 h 691.2027 v -492.0000 Z"+           id="path23" />+      </clipPath>+    </defs>+    <g+       clip-path="url(#myClip8)"+       id="g24">+      <path+         d="M 407.2799,534.0000 v -100.3680 h 85.2005 v 100.3680 Z"+         id="path24" />+    </g>+  </g>+  <g+     stroke-linejoin="bevel"+     fill-opacity="1.0"+     fill="rgb(0,0,255)"+     stroke="rgb(0,0,0)"+     stroke-linecap="butt"+     stroke-miterlimit="10.0"+     stroke-opacity="0.0"+     stroke-width="0.0"+     id="g27">+    <defs+       id="defs25">+      <clipPath+         id="myClip9">+        <path+           d="M 46.6786,42.0000 v 492.0000 h 691.2027 v -492.0000 Z"+           id="path25" />+      </clipPath>+    </defs>+    <g+       clip-path="url(#myClip9)"+       id="g26">+      <path+         d="M 522.4804,534.0000 v -21.6480 h 85.2005 v 21.6480 Z"+         id="path26" />+    </g>+  </g>+  <g+     stroke-linejoin="miter"+     fill-opacity="0.0"+     fill="rgb(0,0,0)"+     stroke="rgb(0,0,0)"+     stroke-linecap="butt"+     stroke-miterlimit="10.0"+     stroke-opacity="1.0"+     stroke-width="0.9999999999999997"+     id="g29">+    <defs+       id="defs27">+      <clipPath+         id="myClip10">+        <path+           d="M 46.6786,42.0000 v 492.0000 h 691.2027 v -492.0000 Z"+           id="path27" />+      </clipPath>+    </defs>+    <g+       clip-path="url(#myClip10)"+       id="g28">+      <path+         d="M 522.4804,534.0000 v -21.6480 h 85.2005 v 21.6480 Z"+         id="path28" />+    </g>+  </g>+  <g+     stroke-linejoin="bevel"+     fill-opacity="1.0"+     fill="rgb(0,0,255)"+     stroke="rgb(0,0,0)"+     stroke-linecap="butt"+     stroke-miterlimit="10.0"+     stroke-opacity="0.0"+     stroke-width="0.0"+     id="g31">+    <defs+       id="defs29">+      <clipPath+         id="myClip11">+        <path+           d="M 46.6786,42.0000 v 492.0000 h 691.2027 v -492.0000 Z"+           id="path29" />+      </clipPath>+    </defs>+    <g+       clip-path="url(#myClip11)"+       id="g30">+      <path+         d="M 637.6808,534.0000 v -1.9680 h 85.2005 v 1.9680 Z"+         id="path30" />+    </g>+  </g>+  <g+     stroke-linejoin="miter"+     fill-opacity="0.0"+     fill="rgb(0,0,0)"+     stroke="rgb(0,0,0)"+     stroke-linecap="butt"+     stroke-miterlimit="10.0"+     stroke-opacity="1.0"+     stroke-width="0.9999999999999997"+     id="g33">+    <defs+       id="defs31">+      <clipPath+         id="myClip12">+        <path+           d="M 46.6786,42.0000 v 492.0000 h 691.2027 v -492.0000 Z"+           id="path31" />+      </clipPath>+    </defs>+    <g+       clip-path="url(#myClip12)"+       id="g32">+      <path+         d="M 637.6808,534.0000 v -1.9680 h 85.2005 v 1.9680 Z"+         id="path32" />+    </g>+  </g>+  <g+     stroke-linejoin="miter"+     fill-opacity="0.0"+     fill="rgb(0,0,0)"+     stroke="rgb(0,0,0)"+     stroke-linecap="square"+     stroke-miterlimit="10.0"+     stroke-opacity="1.0"+     stroke-width="0.9999999999999997"+     id="g34">+    <path+       d="M 46.6786,534.0000 v -492.0000 "+       id="path33" />+  </g>+  <g+     stroke-linejoin="miter"+     fill-opacity="0.0"+     fill="rgb(0,0,0)"+     stroke="rgb(0,0,0)"+     stroke-linecap="butt"+     stroke-miterlimit="10.0"+     stroke-opacity="1.0"+     stroke-width="0.9999999999999997"+     id="g35">+    <path+       d="M 46.6786,534.0000 h 2.0000 "+       id="path34" />+  </g>+  <g+     stroke-linejoin="miter"+     fill-opacity="0.0"+     fill="rgb(0,0,0)"+     stroke="rgb(0,0,0)"+     stroke-linecap="butt"+     stroke-miterlimit="10.0"+     stroke-opacity="1.0"+     stroke-width="0.9999999999999997"+     id="g36">+    <path+       d="M 46.6786,484.8000 h 2.0000 "+       id="path35" />+  </g>+  <g+     stroke-linejoin="miter"+     fill-opacity="0.0"+     fill="rgb(0,0,0)"+     stroke="rgb(0,0,0)"+     stroke-linecap="butt"+     stroke-miterlimit="10.0"+     stroke-opacity="1.0"+     stroke-width="0.9999999999999997"+     id="g37">+    <path+       d="M 46.6786,435.6000 h 2.0000 "+       id="path36" />+  </g>+  <g+     stroke-linejoin="miter"+     fill-opacity="0.0"+     fill="rgb(0,0,0)"+     stroke="rgb(0,0,0)"+     stroke-linecap="butt"+     stroke-miterlimit="10.0"+     stroke-opacity="1.0"+     stroke-width="0.9999999999999997"+     id="g38">+    <path+       d="M 46.6786,386.4000 h 2.0000 "+       id="path37" />+  </g>+  <g+     stroke-linejoin="miter"+     fill-opacity="0.0"+     fill="rgb(0,0,0)"+     stroke="rgb(0,0,0)"+     stroke-linecap="butt"+     stroke-miterlimit="10.0"+     stroke-opacity="1.0"+     stroke-width="0.9999999999999997"+     id="g39">+    <path+       d="M 46.6786,337.2000 h 2.0000 "+       id="path38" />+  </g>+  <g+     stroke-linejoin="miter"+     fill-opacity="0.0"+     fill="rgb(0,0,0)"+     stroke="rgb(0,0,0)"+     stroke-linecap="butt"+     stroke-miterlimit="10.0"+     stroke-opacity="1.0"+     stroke-width="0.9999999999999997"+     id="g40">+    <path+       d="M 46.6786,288.0000 h 2.0000 "+       id="path39" />+  </g>+  <g+     stroke-linejoin="miter"+     fill-opacity="0.0"+     fill="rgb(0,0,0)"+     stroke="rgb(0,0,0)"+     stroke-linecap="butt"+     stroke-miterlimit="10.0"+     stroke-opacity="1.0"+     stroke-width="0.9999999999999997"+     id="g41">+    <path+       d="M 46.6786,238.8000 h 2.0000 "+       id="path40" />+  </g>+  <g+     stroke-linejoin="miter"+     fill-opacity="0.0"+     fill="rgb(0,0,0)"+     stroke="rgb(0,0,0)"+     stroke-linecap="butt"+     stroke-miterlimit="10.0"+     stroke-opacity="1.0"+     stroke-width="0.9999999999999997"+     id="g42">+    <path+       d="M 46.6786,189.6000 h 2.0000 "+       id="path41" />+  </g>+  <g+     stroke-linejoin="miter"+     fill-opacity="0.0"+     fill="rgb(0,0,0)"+     stroke="rgb(0,0,0)"+     stroke-linecap="butt"+     stroke-miterlimit="10.0"+     stroke-opacity="1.0"+     stroke-width="0.9999999999999997"+     id="g43">+    <path+       d="M 46.6786,140.4000 h 2.0000 "+       id="path42" />+  </g>+  <g+     stroke-linejoin="miter"+     fill-opacity="0.0"+     fill="rgb(0,0,0)"+     stroke="rgb(0,0,0)"+     stroke-linecap="butt"+     stroke-miterlimit="10.0"+     stroke-opacity="1.0"+     stroke-width="0.9999999999999997"+     id="g44">+    <path+       d="M 46.6786,91.2000 h 2.0000 "+       id="path43" />+  </g>+  <g+     stroke-linejoin="miter"+     fill-opacity="0.0"+     fill="rgb(0,0,0)"+     stroke="rgb(0,0,0)"+     stroke-linecap="butt"+     stroke-miterlimit="10.0"+     stroke-opacity="1.0"+     stroke-width="0.9999999999999997"+     id="g45">+    <path+       d="M 46.6786,42.0000 h 2.0000 "+       id="path44" />+  </g>+  <g+     stroke-linejoin="miter"+     fill-opacity="0.0"+     fill="rgb(0,0,0)"+     stroke="rgb(0,0,0)"+     stroke-linecap="butt"+     stroke-miterlimit="10.0"+     stroke-opacity="1.0"+     stroke-width="0.9999999999999997"+     id="g46">+    <path+       d="M 46.6786,534.0000 h 5.0000 "+       id="path45" />+  </g>+  <g+     stroke-linejoin="miter"+     fill-opacity="0.0"+     fill="rgb(0,0,0)"+     stroke="rgb(0,0,0)"+     stroke-linecap="butt"+     stroke-miterlimit="10.0"+     stroke-opacity="1.0"+     stroke-width="0.9999999999999997"+     id="g47">+    <path+       d="M 46.6786,435.6000 h 5.0000 "+       id="path46" />+  </g>+  <g+     stroke-linejoin="miter"+     fill-opacity="0.0"+     fill="rgb(0,0,0)"+     stroke="rgb(0,0,0)"+     stroke-linecap="butt"+     stroke-miterlimit="10.0"+     stroke-opacity="1.0"+     stroke-width="0.9999999999999997"+     id="g48">+    <path+       d="M 46.6786,337.2000 h 5.0000 "+       id="path47" />+  </g>+  <g+     stroke-linejoin="miter"+     fill-opacity="0.0"+     fill="rgb(0,0,0)"+     stroke="rgb(0,0,0)"+     stroke-linecap="butt"+     stroke-miterlimit="10.0"+     stroke-opacity="1.0"+     stroke-width="0.9999999999999997"+     id="g49">+    <path+       d="M 46.6786,238.8000 h 5.0000 "+       id="path48" />+  </g>+  <g+     stroke-linejoin="miter"+     fill-opacity="0.0"+     fill="rgb(0,0,0)"+     stroke="rgb(0,0,0)"+     stroke-linecap="butt"+     stroke-miterlimit="10.0"+     stroke-opacity="1.0"+     stroke-width="0.9999999999999997"+     id="g50">+    <path+       d="M 46.6786,140.4000 h 5.0000 "+       id="path49" />+  </g>+  <g+     stroke-linejoin="miter"+     fill-opacity="0.0"+     fill="rgb(0,0,0)"+     stroke="rgb(0,0,0)"+     stroke-linecap="butt"+     stroke-miterlimit="10.0"+     stroke-opacity="1.0"+     stroke-width="0.9999999999999997"+     id="g51">+    <path+       d="M 46.6786,42.0000 h 5.0000 "+       id="path50" />+  </g>+  <g+     stroke-linejoin="bevel"+     fill-opacity="1.0"+     fill="rgb(0,0,0)"+     stroke="rgb(0,0,0)"+     stroke-linecap="butt"+     stroke-miterlimit="10.0"+     stroke-opacity="0.0"+     stroke-width="0.0"+     id="g52">+    <path+       d="M 28.9454,540.2017 ZM 33.6534,540.4286 c -1.8340,-0.0000 -2.8550,-1.6261 -2.8550 -1.6261c -1.0210,-1.6261 -1.0210,-4.6702 -1.0210 -4.6702c 0.0000,-3.0441 1.0210,-4.6324 1.0210 -4.6324c 1.0210,-1.5882 2.8550,-1.5882 2.8550 -1.5882c 1.8151,0.0000 2.8361,1.5882 2.8361 1.5882c 1.0210,1.5882 1.0210,4.6324 1.0210 4.6324c 0.0000,3.0441 -1.0210,4.6702 -1.0210 4.6702c -1.0210,1.6261 -2.8361,1.6261 -2.8361 1.6261ZM 33.6534,540.4286 ZM 33.6534,539.1807 c 0.5294,0.0000 0.9548,-0.2931 0.9548 -0.2931c 0.4254,-0.2931 0.7374,-0.9076 0.7374 -0.9076c 0.3120,-0.6145 0.4821,-1.5693 0.4821 -1.5693c 0.1702,-0.9548 0.1702,-2.2784 0.1702 -2.2784c 0.0000,-1.3235 -0.1702,-2.2689 -0.1702 -2.2689c -0.1702,-0.9454 -0.4821,-1.5410 -0.4821 -1.5410c -0.3120,-0.5956 -0.7374,-0.8792 -0.7374 -0.8792c -0.4254,-0.2836 -0.9548,-0.2836 -0.9548 -0.2836c -0.5294,-0.0000 -0.9643,0.2836 -0.9643 0.2836c -0.4349,0.2836 -0.7468,0.8792 -0.7468 0.8792c -0.3120,0.5956 -0.4821,1.5410 -0.4821 1.5410c -0.1702,0.9454 -0.1702,2.2689 -0.1702 2.2689c 0.0000,2.6471 0.6523,3.8477 0.6523 3.8477c 0.6523,1.2006 1.7111,1.2006 1.7111 1.2006Z"+       id="path51" />+  </g>+  <g+     stroke-linejoin="bevel"+     fill-opacity="1.0"+     fill="rgb(0,0,0)"+     stroke="rgb(0,0,0)"+     stroke-linecap="butt"+     stroke-miterlimit="10.0"+     stroke-opacity="0.0"+     stroke-width="0.0"+     id="g53">+    <path+       d="M 19.1891,441.8017 ZM 20.4181,439.3626 c 0.5294,0.5483 1.2574,0.9643 1.2574 0.9643c 0.7279,0.4160 1.7868,0.4160 1.7868 0.4160c 0.5483,0.0000 1.0305,-0.1985 1.0305 -0.1985c 0.4821,-0.1985 0.8414,-0.5578 0.8414 -0.5578c 0.3592,-0.3592 0.5672,-0.8697 0.5672 -0.8697c 0.2080,-0.5105 0.2080,-1.1345 0.2080 -1.1345c 0.0000,-1.2479 -0.6996,-1.9475 -0.6996 -1.9475c -0.6996,-0.6996 -1.8718,-0.6996 -1.8718 -0.6996c -0.6239,-0.0000 -1.0683,0.1891 -1.0683 0.1891c -0.4443,0.1891 -0.9926,0.5483 -0.9926 0.5483l -0.8319,-0.5294 l 0.3971,-5.8046 h 6.0315 v 1.3424 h -4.6702 l -0.3214,3.5735 c 0.4349,-0.2269 0.8697,-0.3592 0.8697 -0.3592c 0.4349,-0.1324 0.9832,-0.1324 0.9832 -0.1324c 0.7752,0.0000 1.4559,0.2269 1.4559 0.2269c 0.6807,0.2269 1.1912,0.6901 1.1912 0.6901c 0.5105,0.4632 0.8036,1.1723 0.8036 1.1723c 0.2931,0.7090 0.2931,1.6922 0.2931 1.6922c 0.0000,0.9832 -0.3403,1.7395 -0.3403 1.7395c -0.3403,0.7563 -0.9076,1.2763 -0.9076 1.2763c -0.5672,0.5200 -1.2952,0.7941 -1.2952 0.7941c -0.7279,0.2742 -1.5221,0.2742 -1.5221 0.2742c -0.7185,-0.0000 -1.3141,-0.1418 -1.3141 -0.1418c -0.5956,-0.1418 -1.0777,-0.3687 -1.0777 -0.3687c -0.4821,-0.2269 -0.8697,-0.5200 -0.8697 -0.5200c -0.3876,-0.2931 -0.6901,-0.6145 -0.6901 -0.6145ZM 28.5861,441.8017 ZM 33.2941,442.0286 c -1.8340,-0.0000 -2.8550,-1.6261 -2.8550 -1.6261c -1.0210,-1.6261 -1.0210,-4.6702 -1.0210 -4.6702c 0.0000,-3.0441 1.0210,-4.6324 1.0210 -4.6324c 1.0210,-1.5882 2.8550,-1.5882 2.8550 -1.5882c 1.8151,0.0000 2.8361,1.5882 2.8361 1.5882c 1.0210,1.5882 1.0210,4.6324 1.0210 4.6324c 0.0000,3.0441 -1.0210,4.6702 -1.0210 4.6702c -1.0210,1.6261 -2.8361,1.6261 -2.8361 1.6261ZM 33.2941,442.0286 ZM 33.2941,440.7807 c 0.5294,0.0000 0.9548,-0.2931 0.9548 -0.2931c 0.4254,-0.2931 0.7374,-0.9076 0.7374 -0.9076c 0.3120,-0.6145 0.4821,-1.5693 0.4821 -1.5693c 0.1702,-0.9548 0.1702,-2.2784 0.1702 -2.2784c 0.0000,-1.3235 -0.1702,-2.2689 -0.1702 -2.2689c -0.1702,-0.9454 -0.4821,-1.5410 -0.4821 -1.5410c -0.3120,-0.5956 -0.7374,-0.8792 -0.7374 -0.8792c -0.4254,-0.2836 -0.9548,-0.2836 -0.9548 -0.2836c -0.5294,-0.0000 -0.9643,0.2836 -0.9643 0.2836c -0.4349,0.2836 -0.7468,0.8792 -0.7468 0.8792c -0.3120,0.5956 -0.4821,1.5410 -0.4821 1.5410c -0.1702,0.9454 -0.1702,2.2689 -0.1702 2.2689c 0.0000,2.6471 0.6523,3.8477 0.6523 3.8477c 0.6523,1.2006 1.7111,1.2006 1.7111 1.2006Z"+       id="path52" />+  </g>+  <g+     stroke-linejoin="bevel"+     fill-opacity="1.0"+     fill="rgb(0,0,0)"+     stroke="rgb(0,0,0)"+     stroke-linecap="butt"+     stroke-miterlimit="10.0"+     stroke-opacity="0.0"+     stroke-width="0.0"+     id="g54">+    <path+       d="M 10.8130,343.4017 ZM 12.3067,342.1160 h 2.7605 v -8.8866 h -2.1933 v -1.0021 c 0.8319,-0.1513 1.4464,-0.3687 1.4464 -0.3687c 0.6145,-0.2174 1.1061,-0.5200 1.1061 -0.5200h 1.1912 v 10.7773 h 2.4958 v 1.2857 h -6.8067 v -1.2857 ZM 20.2101,343.4017 ZM 24.9181,343.6286 c -1.8340,-0.0000 -2.8550,-1.6261 -2.8550 -1.6261c -1.0210,-1.6261 -1.0210,-4.6702 -1.0210 -4.6702c 0.0000,-3.0441 1.0210,-4.6324 1.0210 -4.6324c 1.0210,-1.5882 2.8550,-1.5882 2.8550 -1.5882c 1.8151,0.0000 2.8361,1.5882 2.8361 1.5882c 1.0210,1.5882 1.0210,4.6324 1.0210 4.6324c 0.0000,3.0441 -1.0210,4.6702 -1.0210 4.6702c -1.0210,1.6261 -2.8361,1.6261 -2.8361 1.6261ZM 24.9181,343.6286 ZM 24.9181,342.3807 c 0.5294,0.0000 0.9548,-0.2931 0.9548 -0.2931c 0.4254,-0.2931 0.7374,-0.9076 0.7374 -0.9076c 0.3120,-0.6145 0.4821,-1.5693 0.4821 -1.5693c 0.1702,-0.9548 0.1702,-2.2784 0.1702 -2.2784c 0.0000,-1.3235 -0.1702,-2.2689 -0.1702 -2.2689c -0.1702,-0.9454 -0.4821,-1.5410 -0.4821 -1.5410c -0.3120,-0.5956 -0.7374,-0.8792 -0.7374 -0.8792c -0.4254,-0.2836 -0.9548,-0.2836 -0.9548 -0.2836c -0.5294,-0.0000 -0.9643,0.2836 -0.9643 0.2836c -0.4349,0.2836 -0.7468,0.8792 -0.7468 0.8792c -0.3120,0.5956 -0.4821,1.5410 -0.4821 1.5410c -0.1702,0.9454 -0.1702,2.2689 -0.1702 2.2689c 0.0000,2.6471 0.6523,3.8477 0.6523 3.8477c 0.6523,1.2006 1.7111,1.2006 1.7111 1.2006ZM 29.6071,343.4017 ZM 34.3151,343.6286 c -1.8340,-0.0000 -2.8550,-1.6261 -2.8550 -1.6261c -1.0210,-1.6261 -1.0210,-4.6702 -1.0210 -4.6702c 0.0000,-3.0441 1.0210,-4.6324 1.0210 -4.6324c 1.0210,-1.5882 2.8550,-1.5882 2.8550 -1.5882c 1.8151,0.0000 2.8361,1.5882 2.8361 1.5882c 1.0210,1.5882 1.0210,4.6324 1.0210 4.6324c 0.0000,3.0441 -1.0210,4.6702 -1.0210 4.6702c -1.0210,1.6261 -2.8361,1.6261 -2.8361 1.6261ZM 34.3151,343.6286 ZM 34.3151,342.3807 c 0.5294,0.0000 0.9548,-0.2931 0.9548 -0.2931c 0.4254,-0.2931 0.7374,-0.9076 0.7374 -0.9076c 0.3120,-0.6145 0.4821,-1.5693 0.4821 -1.5693c 0.1702,-0.9548 0.1702,-2.2784 0.1702 -2.2784c 0.0000,-1.3235 -0.1702,-2.2689 -0.1702 -2.2689c -0.1702,-0.9454 -0.4821,-1.5410 -0.4821 -1.5410c -0.3120,-0.5956 -0.7374,-0.8792 -0.7374 -0.8792c -0.4254,-0.2836 -0.9548,-0.2836 -0.9548 -0.2836c -0.5294,-0.0000 -0.9643,0.2836 -0.9643 0.2836c -0.4349,0.2836 -0.7468,0.8792 -0.7468 0.8792c -0.3120,0.5956 -0.4821,1.5410 -0.4821 1.5410c -0.1702,0.9454 -0.1702,2.2689 -0.1702 2.2689c 0.0000,2.6471 0.6523,3.8477 0.6523 3.8477c 0.6523,1.2006 1.7111,1.2006 1.7111 1.2006Z"+       id="path53" />+  </g>+  <g+     stroke-linejoin="bevel"+     fill-opacity="1.0"+     fill="rgb(0,0,0)"+     stroke="rgb(0,0,0)"+     stroke-linecap="butt"+     stroke-miterlimit="10.0"+     stroke-opacity="0.0"+     stroke-width="0.0"+     id="g55">+    <path+       d="M 10.8130,245.0017 ZM 12.3067,243.7160 h 2.7605 v -8.8866 h -2.1933 v -1.0021 c 0.8319,-0.1513 1.4464,-0.3687 1.4464 -0.3687c 0.6145,-0.2174 1.1061,-0.5200 1.1061 -0.5200h 1.1912 v 10.7773 h 2.4958 v 1.2857 h -6.8067 v -1.2857 ZM 20.2101,245.0017 ZM 21.4391,242.5626 c 0.5294,0.5483 1.2574,0.9643 1.2574 0.9643c 0.7279,0.4160 1.7868,0.4160 1.7868 0.4160c 0.5483,0.0000 1.0305,-0.1985 1.0305 -0.1985c 0.4821,-0.1985 0.8414,-0.5578 0.8414 -0.5578c 0.3592,-0.3592 0.5672,-0.8697 0.5672 -0.8697c 0.2080,-0.5105 0.2080,-1.1345 0.2080 -1.1345c 0.0000,-1.2479 -0.6996,-1.9475 -0.6996 -1.9475c -0.6996,-0.6996 -1.8718,-0.6996 -1.8718 -0.6996c -0.6239,-0.0000 -1.0683,0.1891 -1.0683 0.1891c -0.4443,0.1891 -0.9926,0.5483 -0.9926 0.5483l -0.8319,-0.5294 l 0.3971,-5.8046 h 6.0315 v 1.3424 h -4.6702 l -0.3214,3.5735 c 0.4349,-0.2269 0.8697,-0.3592 0.8697 -0.3592c 0.4349,-0.1324 0.9832,-0.1324 0.9832 -0.1324c 0.7752,0.0000 1.4559,0.2269 1.4559 0.2269c 0.6807,0.2269 1.1912,0.6901 1.1912 0.6901c 0.5105,0.4632 0.8036,1.1723 0.8036 1.1723c 0.2931,0.7090 0.2931,1.6922 0.2931 1.6922c 0.0000,0.9832 -0.3403,1.7395 -0.3403 1.7395c -0.3403,0.7563 -0.9076,1.2763 -0.9076 1.2763c -0.5672,0.5200 -1.2952,0.7941 -1.2952 0.7941c -0.7279,0.2742 -1.5221,0.2742 -1.5221 0.2742c -0.7185,-0.0000 -1.3141,-0.1418 -1.3141 -0.1418c -0.5956,-0.1418 -1.0777,-0.3687 -1.0777 -0.3687c -0.4821,-0.2269 -0.8697,-0.5200 -0.8697 -0.5200c -0.3876,-0.2931 -0.6901,-0.6145 -0.6901 -0.6145ZM 29.6071,245.0017 ZM 34.3151,245.2286 c -1.8340,-0.0000 -2.8550,-1.6261 -2.8550 -1.6261c -1.0210,-1.6261 -1.0210,-4.6702 -1.0210 -4.6702c 0.0000,-3.0441 1.0210,-4.6324 1.0210 -4.6324c 1.0210,-1.5882 2.8550,-1.5882 2.8550 -1.5882c 1.8151,0.0000 2.8361,1.5882 2.8361 1.5882c 1.0210,1.5882 1.0210,4.6324 1.0210 4.6324c 0.0000,3.0441 -1.0210,4.6702 -1.0210 4.6702c -1.0210,1.6261 -2.8361,1.6261 -2.8361 1.6261ZM 34.3151,245.2286 ZM 34.3151,243.9807 c 0.5294,0.0000 0.9548,-0.2931 0.9548 -0.2931c 0.4254,-0.2931 0.7374,-0.9076 0.7374 -0.9076c 0.3120,-0.6145 0.4821,-1.5693 0.4821 -1.5693c 0.1702,-0.9548 0.1702,-2.2784 0.1702 -2.2784c 0.0000,-1.3235 -0.1702,-2.2689 -0.1702 -2.2689c -0.1702,-0.9454 -0.4821,-1.5410 -0.4821 -1.5410c -0.3120,-0.5956 -0.7374,-0.8792 -0.7374 -0.8792c -0.4254,-0.2836 -0.9548,-0.2836 -0.9548 -0.2836c -0.5294,-0.0000 -0.9643,0.2836 -0.9643 0.2836c -0.4349,0.2836 -0.7468,0.8792 -0.7468 0.8792c -0.3120,0.5956 -0.4821,1.5410 -0.4821 1.5410c -0.1702,0.9454 -0.1702,2.2689 -0.1702 2.2689c 0.0000,2.6471 0.6523,3.8477 0.6523 3.8477c 0.6523,1.2006 1.7111,1.2006 1.7111 1.2006Z"+       id="path54" />+  </g>+  <g+     stroke-linejoin="bevel"+     fill-opacity="1.0"+     fill="rgb(0,0,0)"+     stroke="rgb(0,0,0)"+     stroke-linecap="butt"+     stroke-miterlimit="10.0"+     stroke-opacity="0.0"+     stroke-width="0.0"+     id="g56">+    <path+       d="M 10.0000,146.6017 ZM 10.7563,145.6752 c 1.3613,-1.3613 2.4202,-2.4580 2.4202 -2.4580c 1.0588,-1.0966 1.7773,-2.0326 1.7773 -2.0326c 0.7185,-0.9359 1.0966,-1.7206 1.0966 -1.7206c 0.3782,-0.7847 0.3782,-1.5221 0.3782 -1.5221c 0.0000,-1.0399 -0.5672,-1.7017 -0.5672 -1.7017c -0.5672,-0.6618 -1.7206,-0.6618 -1.7206 -0.6618c -0.7563,-0.0000 -1.3992,0.4254 -1.3992 0.4254c -0.6429,0.4254 -1.1723,1.0305 -1.1723 1.0305l -0.8887,-0.8887 c 0.7563,-0.8319 1.6071,-1.3330 1.6071 -1.3330c 0.8508,-0.5011 2.0420,-0.5011 2.0420 -0.5011c 1.6828,0.0000 2.6471,0.9737 2.6471 0.9737c 0.9643,0.9737 0.9643,2.5809 0.9643 2.5809c 0.0000,0.8508 -0.3687,1.7111 -0.3687 1.7111c -0.3687,0.8603 -1.0210,1.7773 -1.0210 1.7773c -0.6523,0.9170 -1.5504,1.9097 -1.5504 1.9097c -0.8981,0.9926 -1.9758,2.1082 -1.9758 2.1082c 0.4916,-0.0378 1.0210,-0.0756 1.0210 -0.0756c 0.5294,-0.0378 1.0021,-0.0378 1.0021 -0.0378h 3.4979 v 1.3424 h -7.7899 v -0.9265 ZM 19.3971,146.6017 ZM 24.1050,146.8286 c -1.8340,-0.0000 -2.8550,-1.6261 -2.8550 -1.6261c -1.0210,-1.6261 -1.0210,-4.6702 -1.0210 -4.6702c 0.0000,-3.0441 1.0210,-4.6324 1.0210 -4.6324c 1.0210,-1.5882 2.8550,-1.5882 2.8550 -1.5882c 1.8151,0.0000 2.8361,1.5882 2.8361 1.5882c 1.0210,1.5882 1.0210,4.6324 1.0210 4.6324c 0.0000,3.0441 -1.0210,4.6702 -1.0210 4.6702c -1.0210,1.6261 -2.8361,1.6261 -2.8361 1.6261ZM 24.1050,146.8286 ZM 24.1050,145.5807 c 0.5294,0.0000 0.9548,-0.2931 0.9548 -0.2931c 0.4254,-0.2931 0.7374,-0.9076 0.7374 -0.9076c 0.3120,-0.6145 0.4821,-1.5693 0.4821 -1.5693c 0.1702,-0.9548 0.1702,-2.2784 0.1702 -2.2784c 0.0000,-1.3235 -0.1702,-2.2689 -0.1702 -2.2689c -0.1702,-0.9454 -0.4821,-1.5410 -0.4821 -1.5410c -0.3120,-0.5956 -0.7374,-0.8792 -0.7374 -0.8792c -0.4254,-0.2836 -0.9548,-0.2836 -0.9548 -0.2836c -0.5294,-0.0000 -0.9643,0.2836 -0.9643 0.2836c -0.4349,0.2836 -0.7468,0.8792 -0.7468 0.8792c -0.3120,0.5956 -0.4821,1.5410 -0.4821 1.5410c -0.1702,0.9454 -0.1702,2.2689 -0.1702 2.2689c 0.0000,2.6471 0.6523,3.8477 0.6523 3.8477c 0.6523,1.2006 1.7111,1.2006 1.7111 1.2006ZM 28.7941,146.6017 ZM 33.5021,146.8286 c -1.8340,-0.0000 -2.8550,-1.6261 -2.8550 -1.6261c -1.0210,-1.6261 -1.0210,-4.6702 -1.0210 -4.6702c 0.0000,-3.0441 1.0210,-4.6324 1.0210 -4.6324c 1.0210,-1.5882 2.8550,-1.5882 2.8550 -1.5882c 1.8151,0.0000 2.8361,1.5882 2.8361 1.5882c 1.0210,1.5882 1.0210,4.6324 1.0210 4.6324c 0.0000,3.0441 -1.0210,4.6702 -1.0210 4.6702c -1.0210,1.6261 -2.8361,1.6261 -2.8361 1.6261ZM 33.5021,146.8286 ZM 33.5021,145.5807 c 0.5294,0.0000 0.9548,-0.2931 0.9548 -0.2931c 0.4254,-0.2931 0.7374,-0.9076 0.7374 -0.9076c 0.3120,-0.6145 0.4821,-1.5693 0.4821 -1.5693c 0.1702,-0.9548 0.1702,-2.2784 0.1702 -2.2784c 0.0000,-1.3235 -0.1702,-2.2689 -0.1702 -2.2689c -0.1702,-0.9454 -0.4821,-1.5410 -0.4821 -1.5410c -0.3120,-0.5956 -0.7374,-0.8792 -0.7374 -0.8792c -0.4254,-0.2836 -0.9548,-0.2836 -0.9548 -0.2836c -0.5294,-0.0000 -0.9643,0.2836 -0.9643 0.2836c -0.4349,0.2836 -0.7468,0.8792 -0.7468 0.8792c -0.3120,0.5956 -0.4821,1.5410 -0.4821 1.5410c -0.1702,0.9454 -0.1702,2.2689 -0.1702 2.2689c 0.0000,2.6471 0.6523,3.8477 0.6523 3.8477c 0.6523,1.2006 1.7111,1.2006 1.7111 1.2006Z"+       id="path55" />+  </g>+  <g+     stroke-linejoin="bevel"+     fill-opacity="1.0"+     fill="rgb(0,0,0)"+     stroke="rgb(0,0,0)"+     stroke-linecap="butt"+     stroke-miterlimit="10.0"+     stroke-opacity="0.0"+     stroke-width="0.0"+     id="g57">+    <path+       d="M 10.0000,48.2017 ZM 10.7563,47.2752 c 1.3613,-1.3613 2.4202,-2.4580 2.4202 -2.4580c 1.0588,-1.0966 1.7773,-2.0326 1.7773 -2.0326c 0.7185,-0.9359 1.0966,-1.7206 1.0966 -1.7206c 0.3782,-0.7847 0.3782,-1.5221 0.3782 -1.5221c 0.0000,-1.0399 -0.5672,-1.7017 -0.5672 -1.7017c -0.5672,-0.6618 -1.7206,-0.6618 -1.7206 -0.6618c -0.7563,-0.0000 -1.3992,0.4254 -1.3992 0.4254c -0.6429,0.4254 -1.1723,1.0305 -1.1723 1.0305l -0.8887,-0.8887 c 0.7563,-0.8319 1.6071,-1.3330 1.6071 -1.3330c 0.8508,-0.5011 2.0420,-0.5011 2.0420 -0.5011c 1.6828,0.0000 2.6471,0.9737 2.6471 0.9737c 0.9643,0.9737 0.9643,2.5809 0.9643 2.5809c 0.0000,0.8508 -0.3687,1.7111 -0.3687 1.7111c -0.3687,0.8603 -1.0210,1.7773 -1.0210 1.7773c -0.6523,0.9170 -1.5504,1.9097 -1.5504 1.9097c -0.8981,0.9926 -1.9758,2.1082 -1.9758 2.1082c 0.4916,-0.0378 1.0210,-0.0756 1.0210 -0.0756c 0.5294,-0.0378 1.0021,-0.0378 1.0021 -0.0378h 3.4979 v 1.3424 h -7.7899 v -0.9265 ZM 19.3971,48.2017 ZM 20.6261,45.7626 c 0.5294,0.5483 1.2574,0.9643 1.2574 0.9643c 0.7279,0.4160 1.7868,0.4160 1.7868 0.4160c 0.5483,0.0000 1.0305,-0.1985 1.0305 -0.1985c 0.4821,-0.1985 0.8414,-0.5578 0.8414 -0.5578c 0.3592,-0.3592 0.5672,-0.8697 0.5672 -0.8697c 0.2080,-0.5105 0.2080,-1.1345 0.2080 -1.1345c 0.0000,-1.2479 -0.6996,-1.9475 -0.6996 -1.9475c -0.6996,-0.6996 -1.8718,-0.6996 -1.8718 -0.6996c -0.6239,-0.0000 -1.0683,0.1891 -1.0683 0.1891c -0.4443,0.1891 -0.9926,0.5483 -0.9926 0.5483l -0.8319,-0.5294 l 0.3971,-5.8046 h 6.0315 v 1.3424 h -4.6702 l -0.3214,3.5735 c 0.4349,-0.2269 0.8697,-0.3592 0.8697 -0.3592c 0.4349,-0.1324 0.9832,-0.1324 0.9832 -0.1324c 0.7752,0.0000 1.4559,0.2269 1.4559 0.2269c 0.6807,0.2269 1.1912,0.6901 1.1912 0.6901c 0.5105,0.4632 0.8036,1.1723 0.8036 1.1723c 0.2931,0.7090 0.2931,1.6922 0.2931 1.6922c 0.0000,0.9832 -0.3403,1.7395 -0.3403 1.7395c -0.3403,0.7563 -0.9076,1.2763 -0.9076 1.2763c -0.5672,0.5200 -1.2952,0.7941 -1.2952 0.7941c -0.7279,0.2742 -1.5221,0.2742 -1.5221 0.2742c -0.7185,-0.0000 -1.3141,-0.1418 -1.3141 -0.1418c -0.5956,-0.1418 -1.0777,-0.3687 -1.0777 -0.3687c -0.4821,-0.2269 -0.8697,-0.5200 -0.8697 -0.5200c -0.3876,-0.2931 -0.6901,-0.6145 -0.6901 -0.6145ZM 28.7941,48.2017 ZM 33.5021,48.4286 c -1.8340,-0.0000 -2.8550,-1.6261 -2.8550 -1.6261c -1.0210,-1.6261 -1.0210,-4.6702 -1.0210 -4.6702c 0.0000,-3.0441 1.0210,-4.6324 1.0210 -4.6324c 1.0210,-1.5882 2.8550,-1.5882 2.8550 -1.5882c 1.8151,0.0000 2.8361,1.5882 2.8361 1.5882c 1.0210,1.5882 1.0210,4.6324 1.0210 4.6324c 0.0000,3.0441 -1.0210,4.6702 -1.0210 4.6702c -1.0210,1.6261 -2.8361,1.6261 -2.8361 1.6261ZM 33.5021,48.4286 ZM 33.5021,47.1807 c 0.5294,0.0000 0.9548,-0.2931 0.9548 -0.2931c 0.4254,-0.2931 0.7374,-0.9076 0.7374 -0.9076c 0.3120,-0.6145 0.4821,-1.5693 0.4821 -1.5693c 0.1702,-0.9548 0.1702,-2.2784 0.1702 -2.2784c 0.0000,-1.3235 -0.1702,-2.2689 -0.1702 -2.2689c -0.1702,-0.9454 -0.4821,-1.5410 -0.4821 -1.5410c -0.3120,-0.5956 -0.7374,-0.8792 -0.7374 -0.8792c -0.4254,-0.2836 -0.9548,-0.2836 -0.9548 -0.2836c -0.5294,-0.0000 -0.9643,0.2836 -0.9643 0.2836c -0.4349,0.2836 -0.7468,0.8792 -0.7468 0.8792c -0.3120,0.5956 -0.4821,1.5410 -0.4821 1.5410c -0.1702,0.9454 -0.1702,2.2689 -0.1702 2.2689c 0.0000,2.6471 0.6523,3.8477 0.6523 3.8477c 0.6523,1.2006 1.7111,1.2006 1.7111 1.2006Z"+       id="path56" />+  </g>+  <g+     stroke-linejoin="miter"+     fill-opacity="0.0"+     fill="rgb(0,0,0)"+     stroke="rgb(0,0,0)"+     stroke-linecap="square"+     stroke-miterlimit="10.0"+     stroke-opacity="1.0"+     stroke-width="0.9999999999999997"+     id="g58">+    <path+       d="M 46.6786,534.0000 h 691.2027 "+       id="path57" />+  </g>+  <g+     stroke-linejoin="bevel"+     fill-opacity="1.0"+     fill="rgb(0,0,0)"+     stroke="rgb(0,0,0)"+     stroke-linecap="butt"+     stroke-miterlimit="10.0"+     stroke-opacity="0.0"+     stroke-width="0.0"+     id="g59">+    <path+       d="M 82.1191,562.0000 ZM 84.7284,555.7416 c 0.0000,1.1912 0.2647,2.1460 0.2647 2.1460c 0.2647,0.9548 0.7468,1.6355 0.7468 1.6355c 0.4821,0.6807 1.1534,1.0399 1.1534 1.0399c 0.6712,0.3592 1.5032,0.3592 1.5032 0.3592c 0.8319,0.0000 1.5032,-0.3592 1.5032 -0.3592c 0.6712,-0.3592 1.1534,-1.0399 1.1534 -1.0399c 0.4821,-0.6807 0.7468,-1.6355 0.7468 -1.6355c 0.2647,-0.9548 0.2647,-2.1460 0.2647 -2.1460c 0.0000,-1.1534 -0.2647,-2.0798 -0.2647 -2.0798c -0.2647,-0.9265 -0.7468,-1.5693 -0.7468 -1.5693c -0.4821,-0.6429 -1.1534,-0.9926 -1.1534 -0.9926c -0.6712,-0.3498 -1.5032,-0.3498 -1.5032 -0.3498c -0.8319,-0.0000 -1.5032,0.3498 -1.5032 0.3498c -0.6712,0.3498 -1.1534,0.9926 -1.1534 0.9926c -0.4821,0.6429 -0.7468,1.5693 -0.7468 1.5693c -0.2647,0.9265 -0.2647,2.0798 -0.2647 2.0798ZM 84.7284,555.7416 ZM 93.9742,564.8172 c -0.2836,0.0945 -0.7563,0.1891 -0.7563 0.1891c -0.4727,0.0945 -1.0210,0.0945 -1.0210 0.0945c -1.7206,-0.0000 -2.8739,-0.8225 -2.8739 -0.8225c -1.1534,-0.8225 -1.7017,-2.1082 -1.7017 -2.1082c -1.0210,-0.1324 -1.8529,-0.6429 -1.8529 -0.6429c -0.8319,-0.5105 -1.4275,-1.3424 -1.4275 -1.3424c -0.5956,-0.8319 -0.9170,-1.9569 -0.9170 -1.9569c -0.3214,-1.1250 -0.3214,-2.4863 -0.3214 -2.4863c 0.0000,-1.4937 0.3876,-2.6754 0.3876 -2.6754c 0.3876,-1.1817 1.0872,-2.0042 1.0872 -2.0042c 0.6996,-0.8225 1.6733,-1.2574 1.6733 -1.2574c 0.9737,-0.4349 2.1460,-0.4349 2.1460 -0.4349c 1.1723,0.0000 2.1460,0.4443 2.1460 0.4443c 0.9737,0.4443 1.6828,1.2668 1.6828 1.2668c 0.7090,0.8225 1.0966,2.0042 1.0966 2.0042c 0.3876,1.1817 0.3876,2.6565 0.3876 2.6565c 0.0000,1.3424 -0.3120,2.4485 -0.3120 2.4485c -0.3120,1.1061 -0.8887,1.9286 -0.8887 1.9286c -0.5767,0.8225 -1.3897,1.3424 -1.3897 1.3424c -0.8130,0.5200 -1.7962,0.6901 -1.7962 0.6901c 0.4349,0.8319 1.2290,1.2290 1.2290 1.2290c 0.7941,0.3971 1.8151,0.3971 1.8151 0.3971c 0.4160,0.0000 0.7279,-0.0567 0.7279 -0.0567c 0.3120,-0.0567 0.5767,-0.1324 0.5767 -0.1324ZM 94.6738,562.0000 ZM 96.0918,552.8109 h 1.5693 v 5.6155 c 0.0000,1.3046 0.4065,1.8813 0.4065 1.8813c 0.4065,0.5767 1.3141,0.5767 1.3141 0.5767c 0.7185,0.0000 1.2668,-0.3687 1.2668 -0.3687c 0.5483,-0.3687 1.2101,-1.1817 1.2101 -1.1817v -6.5231 h 1.5504 v 9.1891 h -1.2857 l -0.1324,-1.4370 h -0.0567 c -0.6429,0.7563 -1.3519,1.2101 -1.3519 1.2101c -0.7090,0.4538 -1.6733,0.4538 -1.6733 0.4538c -1.4748,-0.0000 -2.1460,-0.9076 -2.1460 -0.9076c -0.6712,-0.9076 -0.6712,-2.6849 -0.6712 -2.6849v -5.8235 ZM 104.9595,562.0000 ZM 107.3040,550.9202 c -0.4538,-0.0000 -0.7658,-0.2836 -0.7658 -0.2836c -0.3120,-0.2836 -0.3120,-0.7185 -0.3120 -0.7185c 0.0000,-0.4538 0.3120,-0.7279 0.3120 -0.7279c 0.3120,-0.2742 0.7658,-0.2742 0.7658 -0.2742c 0.4538,0.0000 0.7658,0.2742 0.7658 0.2742c 0.3120,0.2742 0.3120,0.7279 0.3120 0.7279c 0.0000,0.4349 -0.3120,0.7185 -0.3120 0.7185c -0.3120,0.2836 -0.7658,0.2836 -0.7658 0.2836ZM 107.3040,550.9202 ZM 106.5099,552.8109 h 1.5504 v 9.1891 h -1.5504 v -9.1891 ZM 109.6107,562.0000 ZM 110.4805,557.4244 c 0.0000,-1.1534 0.3592,-2.0515 0.3592 -2.0515c 0.3592,-0.8981 0.9643,-1.5221 0.9643 -1.5221c 0.6050,-0.6239 1.4086,-0.9454 1.4086 -0.9454c 0.8036,-0.3214 1.6922,-0.3214 1.6922 -0.3214c 0.9076,0.0000 1.5599,0.3309 1.5599 0.3309c 0.6523,0.3309 1.1250,0.7658 1.1250 0.7658l -0.7752,1.0021 c -0.4160,-0.3592 -0.8603,-0.5861 -0.8603 -0.5861c -0.4443,-0.2269 -0.9926,-0.2269 -0.9926 -0.2269c -0.6239,-0.0000 -1.1534,0.2553 -1.1534 0.2553c -0.5294,0.2553 -0.9076,0.7279 -0.9076 0.7279c -0.3782,0.4727 -0.5956,1.1250 -0.5956 1.1250c -0.2174,0.6523 -0.2174,1.4464 -0.2174 1.4464c 0.0000,0.7941 0.2080,1.4370 0.2080 1.4370c 0.2080,0.6429 0.5767,1.1061 0.5767 1.1061c 0.3687,0.4632 0.8981,0.7185 0.8981 0.7185c 0.5294,0.2553 1.1534,0.2553 1.1534 0.2553c 0.6618,0.0000 1.2006,-0.2742 1.2006 -0.2742c 0.5389,-0.2742 0.9548,-0.6523 0.9548 -0.6523l 0.6996,1.0210 c -0.6239,0.5483 -1.3897,0.8697 -1.3897 0.8697c -0.7658,0.3214 -1.5977,0.3214 -1.5977 0.3214c -0.9076,-0.0000 -1.7017,-0.3214 -1.7017 -0.3214c -0.7941,-0.3214 -1.3708,-0.9359 -1.3708 -0.9359c -0.5767,-0.6145 -0.9076,-1.5126 -0.9076 -1.5126c -0.3309,-0.8981 -0.3309,-2.0326 -0.3309 -2.0326ZM 118.2326,562.0000 ZM 119.7830,548.5378 h 1.5315 v 9.1134 h 0.0567 l 3.9139,-4.8403 h 1.7206 l -3.0819,3.6870 l 3.4979,5.5021 h -1.7017 l -2.6849,-4.4244 l -1.7206,2.0042 v 2.4202 h -1.5315 v -13.4622 Z"+       id="path58" />+  </g>+  <g+     stroke-linejoin="bevel"+     fill-opacity="1.0"+     fill="rgb(0,0,0)"+     stroke="rgb(0,0,0)"+     stroke-linecap="butt"+     stroke-miterlimit="10.0"+     stroke-opacity="0.0"+     stroke-width="0.0"+     id="g60">+    <path+       d="M 307.5946,562.0000 ZM 309.2963,549.5966 h 3.6870 c 0.9454,0.0000 1.7300,0.1702 1.7300 0.1702c 0.7847,0.1702 1.3424,0.5294 1.3424 0.5294c 0.5578,0.3592 0.8697,0.9359 0.8697 0.9359c 0.3120,0.5767 0.3120,1.3897 0.3120 1.3897c 0.0000,0.9265 -0.5294,1.6733 -0.5294 1.6733c -0.5294,0.7468 -1.6261,1.0305 -1.6261 1.0305v 0.0756 c 1.3613,0.2080 2.1176,0.9454 2.1176 0.9454c 0.7563,0.7374 0.7563,2.0231 0.7563 2.0231c 0.0000,0.9076 -0.3403,1.5882 -0.3403 1.5882c -0.3403,0.6807 -0.9643,1.1345 -0.9643 1.1345c -0.6239,0.4538 -1.4937,0.6807 -1.4937 0.6807c -0.8697,0.2269 -1.9097,0.2269 -1.9097 0.2269h -3.9517 v -12.4034 ZM 309.2963,549.5966 ZM 312.6997,554.8908 c 1.6071,0.0000 2.2973,-0.5483 2.2973 -0.5483c 0.6901,-0.5483 0.6901,-1.5882 0.6901 -1.5882c 0.0000,-1.0210 -0.7279,-1.4653 -0.7279 -1.4653c -0.7279,-0.4443 -2.1838,-0.4443 -2.1838 -0.4443h -1.9097 v 4.0462 h 1.8340 ZM 312.6997,554.8908 ZM 313.0211,560.7521 c 1.6071,0.0000 2.4958,-0.5956 2.4958 -0.5956c 0.8887,-0.5956 0.8887,-1.8624 0.8887 -1.8624c 0.0000,-1.1534 -0.8697,-1.6922 -0.8697 -1.6922c -0.8697,-0.5389 -2.5147,-0.5389 -2.5147 -0.5389h -2.1555 v 4.6891 h 2.1555 ZM 318.7123,562.0000 ZM 320.1303,552.8109 h 1.5693 v 5.6155 c 0.0000,1.3046 0.4065,1.8813 0.4065 1.8813c 0.4065,0.5767 1.3141,0.5767 1.3141 0.5767c 0.7185,0.0000 1.2668,-0.3687 1.2668 -0.3687c 0.5483,-0.3687 1.2101,-1.1817 1.2101 -1.1817v -6.5231 h 1.5504 v 9.1891 h -1.2857 l -0.1324,-1.4370 h -0.0567 c -0.6429,0.7563 -1.3519,1.2101 -1.3519 1.2101c -0.7090,0.4538 -1.6733,0.4538 -1.6733 0.4538c -1.4748,-0.0000 -2.1460,-0.9076 -2.1460 -0.9076c -0.6712,-0.9076 -0.6712,-2.6849 -0.6712 -2.6849v -5.8235 ZM 328.9980,562.0000 ZM 330.5484,548.5378 h 1.5504 v 3.6681 l -0.0378,1.6639 c 0.6239,-0.5483 1.3613,-0.9170 1.3613 -0.9170c 0.7374,-0.3687 1.5126,-0.3687 1.5126 -0.3687c 0.8887,0.0000 1.5693,0.3309 1.5693 0.3309c 0.6807,0.3309 1.1439,0.9454 1.1439 0.9454c 0.4632,0.6145 0.6996,1.4748 0.6996 1.4748c 0.2363,0.8603 0.2363,1.9191 0.2363 1.9191c 0.0000,1.1723 -0.3214,2.0987 -0.3214 2.0987c -0.3214,0.9265 -0.8697,1.5693 -0.8697 1.5693c -0.5483,0.6429 -1.2668,0.9737 -1.2668 0.9737c -0.7185,0.3309 -1.5126,0.3309 -1.5126 0.3309c -0.6429,-0.0000 -1.3330,-0.2931 -1.3330 -0.2931c -0.6901,-0.2931 -1.2952,-0.8414 -1.2952 -0.8414h -0.0567 l -0.1324,0.9076 h -1.2479 v -13.4622 ZM 330.5484,548.5378 ZM 332.0988,559.9580 c 0.6050,0.5294 1.2006,0.7468 1.2006 0.7468c 0.5956,0.2174 1.0494,0.2174 1.0494 0.2174c 0.5672,0.0000 1.0494,-0.2553 1.0494 -0.2553c 0.4821,-0.2553 0.8319,-0.7185 0.8319 -0.7185c 0.3498,-0.4632 0.5483,-1.1439 0.5483 -1.1439c 0.1985,-0.6807 0.1985,-1.5315 0.1985 -1.5315c 0.0000,-0.7563 -0.1324,-1.3803 -0.1324 -1.3803c -0.1324,-0.6239 -0.4254,-1.0683 -0.4254 -1.0683c -0.2931,-0.4443 -0.7563,-0.6901 -0.7563 -0.6901c -0.4632,-0.2458 -1.1061,-0.2458 -1.1061 -0.2458c -1.1155,-0.0000 -2.4580,1.2479 -2.4580 1.2479v 4.8214 ZM 339.4917,562.0000 ZM 341.0421,548.5378 h 1.5504 v 3.6681 l -0.0378,1.6639 c 0.6239,-0.5483 1.3613,-0.9170 1.3613 -0.9170c 0.7374,-0.3687 1.5126,-0.3687 1.5126 -0.3687c 0.8887,0.0000 1.5693,0.3309 1.5693 0.3309c 0.6807,0.3309 1.1439,0.9454 1.1439 0.9454c 0.4632,0.6145 0.6996,1.4748 0.6996 1.4748c 0.2363,0.8603 0.2363,1.9191 0.2363 1.9191c 0.0000,1.1723 -0.3214,2.0987 -0.3214 2.0987c -0.3214,0.9265 -0.8697,1.5693 -0.8697 1.5693c -0.5483,0.6429 -1.2668,0.9737 -1.2668 0.9737c -0.7185,0.3309 -1.5126,0.3309 -1.5126 0.3309c -0.6429,-0.0000 -1.3330,-0.2931 -1.3330 -0.2931c -0.6901,-0.2931 -1.2952,-0.8414 -1.2952 -0.8414h -0.0567 l -0.1324,0.9076 h -1.2479 v -13.4622 ZM 341.0421,548.5378 ZM 342.5925,559.9580 c 0.6050,0.5294 1.2006,0.7468 1.2006 0.7468c 0.5956,0.2174 1.0494,0.2174 1.0494 0.2174c 0.5672,0.0000 1.0494,-0.2553 1.0494 -0.2553c 0.4821,-0.2553 0.8319,-0.7185 0.8319 -0.7185c 0.3498,-0.4632 0.5483,-1.1439 0.5483 -1.1439c 0.1985,-0.6807 0.1985,-1.5315 0.1985 -1.5315c 0.0000,-0.7563 -0.1324,-1.3803 -0.1324 -1.3803c -0.1324,-0.6239 -0.4254,-1.0683 -0.4254 -1.0683c -0.2931,-0.4443 -0.7563,-0.6901 -0.7563 -0.6901c -0.4632,-0.2458 -1.1061,-0.2458 -1.1061 -0.2458c -1.1155,-0.0000 -2.4580,1.2479 -2.4580 1.2479v 4.8214 ZM 349.9854,562.0000 ZM 351.5358,548.5378 h 1.5504 v 11.7227 c 0.0000,0.3782 0.1324,0.5294 0.1324 0.5294c 0.1324,0.1513 0.3025,0.1513 0.3025 0.1513h 0.1418 c 0.0000,0.0000 0.1985,-0.0378 0.1985 -0.0378l 0.2080,1.1723 c -0.1513,0.0756 -0.3592,0.1134 -0.3592 0.1134c -0.2080,0.0378 -0.5294,0.0378 -0.5294 0.0378c -0.8887,-0.0000 -1.2668,-0.5294 -1.2668 -0.5294c -0.3782,-0.5294 -0.3782,-1.5504 -0.3782 -1.5504v -11.6092 ZM 354.8068,562.0000 ZM 355.6766,557.4244 c 0.0000,-1.1345 0.3498,-2.0326 0.3498 -2.0326c 0.3498,-0.8981 0.9265,-1.5221 0.9265 -1.5221c 0.5767,-0.6239 1.3141,-0.9548 1.3141 -0.9548c 0.7374,-0.3309 1.5315,-0.3309 1.5315 -0.3309c 0.8697,0.0000 1.5599,0.3025 1.5599 0.3025c 0.6901,0.3025 1.1534,0.8697 1.1534 0.8697c 0.4632,0.5672 0.7090,1.3613 0.7090 1.3613c 0.2458,0.7941 0.2458,1.7773 0.2458 1.7773c 0.0000,0.5105 -0.0567,0.8508 -0.0567 0.8508h -6.2017 c 0.0945,1.4937 0.9170,2.3634 0.9170 2.3634c 0.8225,0.8697 2.1460,0.8697 2.1460 0.8697c 0.6618,0.0000 1.2195,-0.1985 1.2195 -0.1985c 0.5578,-0.1985 1.0683,-0.5200 1.0683 -0.5200l 0.5483,1.0210 c -0.6050,0.3782 -1.3424,0.6618 -1.3424 0.6618c -0.7374,0.2836 -1.6828,0.2836 -1.6828 0.2836c -0.9265,-0.0000 -1.7300,-0.3309 -1.7300 -0.3309c -0.8036,-0.3309 -1.3992,-0.9454 -1.3992 -0.9454c -0.5956,-0.6145 -0.9359,-1.5032 -0.9359 -1.5032c -0.3403,-0.8887 -0.3403,-2.0231 -0.3403 -2.0231ZM 355.6766,557.4244 ZM 362.1051,556.7248 c 0.0000,-1.4181 -0.5956,-2.1649 -0.5956 -2.1649c -0.5956,-0.7468 -1.6733,-0.7468 -1.6733 -0.7468c -0.4916,-0.0000 -0.9359,0.1985 -0.9359 0.1985c -0.4443,0.1985 -0.8036,0.5672 -0.8036 0.5672c -0.3592,0.3687 -0.5956,0.9076 -0.5956 0.9076c -0.2363,0.5389 -0.3120,1.2384 -0.3120 1.2384h 4.9160 Z"+       id="path59" />+  </g>+  <g+     stroke-linejoin="bevel"+     fill-opacity="1"+     fill="#000000"+     stroke="#000000"+     stroke-linecap="butt"+     stroke-miterlimit="10"+     stroke-opacity="0"+     stroke-width="0"+     id="g61"+     transform="translate(2,-6)">+    <path+       d="m 498.942,562 z m 1.7016,-12.4034 h 1.8529 l 2.4013,6.6555 0.9076,2.5336 h 0.0756 l 0.8697,-2.5336 2.3824,-6.6555 h 1.8529 V 562 h -1.4937 v -6.8256 c 0,-0.8319 0.0662,-1.834 0.0662,-1.834 0.0662,-1.0021 0.1418,-1.834 0.1418,-1.834 h -0.0756 l -1.0021,2.7605 -2.3824,6.4853 h -0.8887 l -2.4013,-6.4853 -0.9832,-2.7605 h -0.0756 c 0.0567,0.8319 0.1324,1.834 0.1324,1.834 0.0756,1.0021 0.0756,1.834 0.0756,1.834 V 562 h -1.4559 V 549.5966 Z M 512.6878,562 Z m 1.418,-9.1891 h 1.5693 v 5.6155 c 0,1.3046 0.4065,1.8813 0.4065,1.8813 0.4065,0.5767 1.3141,0.5767 1.3141,0.5767 0.7185,0 1.2668,-0.3687 1.2668,-0.3687 0.5483,-0.3687 1.2101,-1.1817 1.2101,-1.1817 v -6.5231 h 1.5504 V 562 h -1.2857 l -0.1324,-1.437 h -0.0567 c -0.6429,0.7563 -1.3519,1.2101 -1.3519,1.2101 -0.709,0.4538 -1.6733,0.4538 -1.6733,0.4538 -1.4748,0 -2.146,-0.9076 -2.146,-0.9076 -0.6712,-0.9076 -0.6712,-2.6849 -0.6712,-2.6849 z M 522.9735,562 Z m 1.5504,-9.1891 h 1.2857 l 0.1324,1.3235 h 0.0567 c 0.6618,-0.6618 1.3897,-1.1061 1.3897,-1.1061 0.7279,-0.4443 1.6922,-0.4443 1.6922,-0.4443 1.4559,0 2.1271,0.9076 2.1271,0.9076 0.6712,0.9076 0.6712,2.6849 0.6712,2.6849 V 562 h -1.5504 v -5.6155 c 0,-1.3046 -0.416,-1.8813 -0.416,-1.8813 -0.416,-0.5767 -1.3235,-0.5767 -1.3235,-0.5767 -0.7185,0 -1.2668,0.3592 -1.2668,0.3592 -0.5483,0.3592 -1.2479,1.0588 -1.2479,1.0588 V 562 h -1.5504 z m 8.792,9.1891 z m 0.8887,-4.5756 c 0,-1.1155 0.3309,-2.0137 0.3309,-2.0137 0.3309,-0.8981 0.8792,-1.5221 0.8792,-1.5221 0.5483,-0.6239 1.2668,-0.9643 1.2668,-0.9643 0.7185,-0.3403 1.5126,-0.3403 1.5126,-0.3403 0.7941,0 1.3803,0.2836 1.3803,0.2836 0.5861,0.2836 1.1912,0.7752 1.1912,0.7752 l -0.0756,-1.5693 v -3.5357 h 1.5693 V 562 h -1.2857 l -0.1324,-1.0777 h -0.0567 c -0.5483,0.5294 -1.2574,0.917 -1.2574,0.917 -0.709,0.3876 -1.5221,0.3876 -1.5221,0.3876 -1.7395,0 -2.77,-1.2479 -2.77,-1.2479 -1.0305,-1.2479 -1.0305,-3.5546 -1.0305,-3.5546 z m 0,0 z m 1.6071,-0.0189 c 0,1.6639 0.6618,2.5903 0.6618,2.5903 0.6618,0.9265 1.8718,0.9265 1.8718,0.9265 0.6429,0 1.2101,-0.312 1.2101,-0.312 0.5672,-0.312 1.1345,-0.9548 1.1345,-0.9548 v -4.8025 c -0.5861,-0.5294 -1.125,-0.7468 -1.125,-0.7468 -0.5389,-0.2174 -1.1061,-0.2174 -1.1061,-0.2174 -0.5483,0 -1.0305,0.2553 -1.0305,0.2553 -0.4821,0.2553 -0.8414,0.7185 -0.8414,0.7185 -0.3592,0.4632 -0.5672,1.1061 -0.5672,1.1061 -0.208,0.6429 -0.208,1.437 -0.208,1.437 z M 543.8096,562 Z m 1.0966,-2.3824 c 0,-1.5126 1.3519,-2.3162 1.3519,-2.3162 1.3519,-0.8036 4.3015,-1.125 4.3015,-1.125 0,-0.4349 -0.0851,-0.8508 -0.0851,-0.8508 -0.0851,-0.416 -0.3025,-0.7374 -0.3025,-0.7374 -0.2174,-0.3214 -0.5767,-0.52 -0.5767,-0.52 -0.3592,-0.1985 -0.9265,-0.1985 -0.9265,-0.1985 -0.813,0 -1.5032,0.3025 -1.5032,0.3025 -0.6901,0.3025 -1.2384,0.6807 -1.2384,0.6807 l -0.6239,-1.0777 c 0.6429,-0.416 1.5693,-0.8036 1.5693,-0.8036 0.9265,-0.3876 2.042,-0.3876 2.042,-0.3876 1.6828,0 2.4391,1.0305 2.4391,1.0305 0.7563,1.0305 0.7563,2.7511 0.7563,2.7511 v 5.6345 h -1.2857 l -0.1324,-1.0966 h -0.0378 c -0.6618,0.5483 -1.4275,0.9359 -1.4275,0.9359 -0.7658,0.3876 -1.6166,0.3876 -1.6166,0.3876 -1.1723,0 -1.938,-0.6807 -1.938,-0.6807 -0.7658,-0.6807 -0.7658,-1.9286 -0.7658,-1.9286 z m 0,0 z m 1.5316,-0.1134 c 0,0.7941 0.4632,1.1345 0.4632,1.1345 0.4632,0.3403 1.1439,0.3403 1.1439,0.3403 0.6618,0 1.2574,-0.312 1.2574,-0.312 0.5956,-0.312 1.2574,-0.917 1.2574,-0.917 v -2.5525 c -1.1534,0.1513 -1.9475,0.3592 -1.9475,0.3592 -0.7941,0.208 -1.2763,0.4916 -1.2763,0.4916 -0.4821,0.2836 -0.6901,0.6523 -0.6901,0.6523 -0.208,0.3687 -0.208,0.8036 -0.208,0.8036 z M 553.4903,562 Z m 1.5504,-9.1891 h 1.2857 l 0.1324,1.3235 h 0.0567 c 0.6618,-0.6618 1.3897,-1.1061 1.3897,-1.1061 0.7279,-0.4443 1.6922,-0.4443 1.6922,-0.4443 1.4559,0 2.1271,0.9076 2.1271,0.9076 0.6712,0.9076 0.6712,2.6849 0.6712,2.6849 V 562 h -1.5504 v -5.6155 c 0,-1.3046 -0.416,-1.8813 -0.416,-1.8813 -0.416,-0.5767 -1.3235,-0.5767 -1.3235,-0.5767 -0.7185,0 -1.2668,0.3592 -1.2668,0.3592 -0.5483,0.3592 -1.2479,1.0588 -1.2479,1.0588 V 562 h -1.5504 z m 8.792,9.1891 z m 0.8698,-4.5756 c 0,-1.1345 0.3498,-2.0326 0.3498,-2.0326 0.3498,-0.8981 0.9265,-1.5221 0.9265,-1.5221 0.5767,-0.6239 1.3141,-0.9548 1.3141,-0.9548 0.7374,-0.3309 1.5315,-0.3309 1.5315,-0.3309 0.8697,0 1.5599,0.3025 1.5599,0.3025 0.6901,0.3025 1.1534,0.8697 1.1534,0.8697 0.4632,0.5672 0.709,1.3613 0.709,1.3613 0.2458,0.7941 0.2458,1.7773 0.2458,1.7773 0,0.5105 -0.0567,0.8508 -0.0567,0.8508 h -6.2017 c 0.0945,1.4937 0.917,2.3634 0.917,2.3634 0.8225,0.8697 2.146,0.8697 2.146,0.8697 0.6618,0 1.2195,-0.1985 1.2195,-0.1985 0.5578,-0.1985 1.0683,-0.52 1.0683,-0.52 l 0.5483,1.021 c -0.605,0.3782 -1.3424,0.6618 -1.3424,0.6618 -0.7374,0.2836 -1.6828,0.2836 -1.6828,0.2836 -0.9265,0 -1.73,-0.3309 -1.73,-0.3309 -0.8036,-0.3309 -1.3992,-0.9454 -1.3992,-0.9454 -0.5956,-0.6145 -0.9359,-1.5032 -0.9359,-1.5032 -0.3403,-0.8887 -0.3403,-2.0231 -0.3403,-2.0231 z m 0,0 z m 6.4285,-0.6996 c 0,-1.4181 -0.5956,-2.1649 -0.5956,-2.1649 -0.5956,-0.7468 -1.6733,-0.7468 -1.6733,-0.7468 -0.4916,0 -0.9359,0.1985 -0.9359,0.1985 -0.4443,0.1985 -0.8036,0.5672 -0.8036,0.5672 -0.3592,0.3687 -0.5956,0.9076 -0.5956,0.9076 -0.2363,0.5389 -0.312,1.2384 -0.312,1.2384 z M 577.0302,562 Z m 3.271,-6.5231 h 2.0798 c 1.4559,0 2.2311,-0.5956 2.2311,-0.5956 0.7752,-0.5956 0.7752,-1.8057 0.7752,-1.8057 0,-1.229 -0.7752,-1.7206 -0.7752,-1.7206 -0.7752,-0.4916 -2.2311,-0.4916 -2.2311,-0.4916 h -2.0798 v 4.6134 z m 0,0 z m 5.2374,6.5231 -2.9874,-5.2374 h -2.25 V 562 h -1.5693 v -12.4034 h 3.8761 c 0.9454,0 1.7489,0.1796 1.7489,0.1796 0.8036,0.1796 1.3803,0.5956 1.3803,0.5956 0.5767,0.416 0.8981,1.0777 0.8981,1.0777 0.3214,0.6618 0.3214,1.6261 0.3214,1.6261 0,1.4559 -0.7563,2.3256 -0.7563,2.3256 -0.7563,0.8697 -2.0231,1.1912 -2.0231,1.1912 L 587.316,562 h -1.7773 z m 2.2878,0 z m 0.8698,-4.5756 c 0,-1.1534 0.3498,-2.0515 0.3498,-2.0515 0.3498,-0.8981 0.9359,-1.5221 0.9359,-1.5221 0.5861,-0.6239 1.3519,-0.9454 1.3519,-0.9454 0.7658,-0.3214 1.6166,-0.3214 1.6166,-0.3214 0.8508,0 1.6166,0.3214 1.6166,0.3214 0.7658,0.3214 1.3519,0.9454 1.3519,0.9454 0.5861,0.6239 0.9359,1.5221 0.9359,1.5221 0.3498,0.8981 0.3498,2.0515 0.3498,2.0515 0,1.1345 -0.3498,2.0326 -0.3498,2.0326 -0.3498,0.8981 -0.9359,1.5126 -0.9359,1.5126 -0.5861,0.6145 -1.3519,0.9359 -1.3519,0.9359 -0.7658,0.3214 -1.6166,0.3214 -1.6166,0.3214 -0.8508,0 -1.6166,-0.3214 -1.6166,-0.3214 -0.7658,-0.3214 -1.3519,-0.9359 -1.3519,-0.9359 -0.5861,-0.6145 -0.9359,-1.5126 -0.9359,-1.5126 -0.3498,-0.8981 -0.3498,-2.0326 -0.3498,-2.0326 z m 0,0 z m 1.6071,0 c 0,0.7941 0.1891,1.437 0.1891,1.437 0.1891,0.6429 0.5389,1.1061 0.5389,1.1061 0.3498,0.4632 0.8414,0.7185 0.8414,0.7185 0.4916,0.2553 1.0777,0.2553 1.0777,0.2553 0.5861,0 1.0777,-0.2553 1.0777,-0.2553 0.4916,-0.2553 0.8414,-0.7185 0.8414,-0.7185 0.3498,-0.4632 0.5389,-1.1061 0.5389,-1.1061 0.1891,-0.6429 0.1891,-1.437 0.1891,-1.437 0,-0.7941 -0.1891,-1.4464 -0.1891,-1.4464 -0.1891,-0.6523 -0.5389,-1.125 -0.5389,-1.125 -0.3498,-0.4727 -0.8414,-0.7279 -0.8414,-0.7279 -0.4916,-0.2553 -1.0777,-0.2553 -1.0777,-0.2553 -0.5861,0 -1.0777,0.2553 -1.0777,0.2553 -0.4916,0.2553 -0.8414,0.7279 -0.8414,0.7279 -0.3498,0.4727 -0.5389,1.125 -0.5389,1.125 -0.1891,0.6523 -0.1891,1.4464 -0.1891,1.4464 z m 7.771,4.5756 z m 1.5504,-13.4622 h 1.5504 v 3.6681 l -0.0378,1.6639 c 0.6239,-0.5483 1.3613,-0.917 1.3613,-0.917 0.7374,-0.3687 1.5126,-0.3687 1.5126,-0.3687 0.8887,0 1.5693,0.3309 1.5693,0.3309 0.6807,0.3309 1.1439,0.9454 1.1439,0.9454 0.4632,0.6145 0.6996,1.4748 0.6996,1.4748 0.2363,0.8603 0.2363,1.9191 0.2363,1.9191 0,1.1723 -0.3214,2.0987 -0.3214,2.0987 -0.3214,0.9265 -0.8697,1.5693 -0.8697,1.5693 -0.5483,0.6429 -1.2668,0.9737 -1.2668,0.9737 -0.7185,0.3309 -1.5126,0.3309 -1.5126,0.3309 -0.6429,0 -1.333,-0.2931 -1.333,-0.2931 -0.6901,-0.2931 -1.2952,-0.8414 -1.2952,-0.8414 h -0.0567 L 600.8725,562 h -1.2479 v -13.4622 z m 0,0 z m 1.5505,11.4202 c 0.605,0.5294 1.2006,0.7468 1.2006,0.7468 0.5956,0.2174 1.0494,0.2174 1.0494,0.2174 0.5672,0 1.0494,-0.2553 1.0494,-0.2553 0.4821,-0.2553 0.8319,-0.7185 0.8319,-0.7185 0.3498,-0.4632 0.5483,-1.1439 0.5483,-1.1439 0.1985,-0.6807 0.1985,-1.5315 0.1985,-1.5315 0,-0.7563 -0.1324,-1.3803 -0.1324,-1.3803 -0.1324,-0.6239 -0.4254,-1.0683 -0.4254,-1.0683 -0.2931,-0.4443 -0.7563,-0.6901 -0.7563,-0.6901 -0.4632,-0.2458 -1.1061,-0.2458 -1.1061,-0.2458 -1.1155,0 -2.458,1.2479 -2.458,1.2479 v 4.8214 z M 608.568,562 Z m 1.4181,-9.1891 h 1.5693 v 5.6155 c 0,1.3046 0.4065,1.8813 0.4065,1.8813 0.4065,0.5767 1.3141,0.5767 1.3141,0.5767 0.7185,0 1.2668,-0.3687 1.2668,-0.3687 0.5483,-0.3687 1.2101,-1.1817 1.2101,-1.1817 v -6.5231 h 1.5504 V 562 h -1.2857 l -0.1324,-1.437 h -0.0567 c -0.6429,0.7563 -1.3519,1.2101 -1.3519,1.2101 -0.709,0.4538 -1.6733,0.4538 -1.6733,0.4538 -1.4748,0 -2.146,-0.9076 -2.146,-0.9076 -0.6712,-0.9076 -0.6712,-2.6849 -0.6712,-2.6849 z M 618.8537,562 Z m 1.3047,-2.0798 c 0.605,0.4916 1.2384,0.7941 1.2384,0.7941 0.6334,0.3025 1.4653,0.3025 1.4653,0.3025 0.9076,0 1.3613,-0.416 1.3613,-0.416 0.4538,-0.416 0.4538,-1.021 0.4538,-1.021 0,-0.3592 -0.1891,-0.6239 -0.1891,-0.6239 -0.1891,-0.2647 -0.4821,-0.4632 -0.4821,-0.4632 -0.2931,-0.1985 -0.6712,-0.3498 -0.6712,-0.3498 l -0.7563,-0.3025 c -0.4916,-0.1702 -0.9832,-0.3876 -0.9832,-0.3876 -0.4916,-0.2174 -0.8792,-0.5294 -0.8792,-0.5294 -0.3876,-0.312 -0.6334,-0.7279 -0.6334,-0.7279 -0.2458,-0.416 -0.2458,-1.0021 -0.2458,-1.0021 0,-0.5483 0.2174,-1.0305 0.2174,-1.0305 0.2174,-0.4821 0.6239,-0.8319 0.6239,-0.8319 0.4065,-0.3498 0.9926,-0.5483 0.9926,-0.5483 0.5861,-0.1985 1.3235,-0.1985 1.3235,-0.1985 0.8697,0 1.5977,0.3025 1.5977,0.3025 0.7279,0.3025 1.2574,0.7374 1.2574,0.7374 l -0.7374,0.9832 c -0.4727,-0.3592 -0.9832,-0.5861 -0.9832,-0.5861 -0.5105,-0.2269 -1.1155,-0.2269 -1.1155,-0.2269 -0.8697,0 -1.2763,0.3971 -1.2763,0.3971 -0.4065,0.3971 -0.4065,0.9265 -0.4065,0.9265 0,0.3214 0.1702,0.5578 0.1702,0.5578 0.1702,0.2363 0.4538,0.416 0.4538,0.416 0.2836,0.1796 0.6523,0.3214 0.6523,0.3214 0.3687,0.1418 0.7658,0.2931 0.7658,0.2931 0.4916,0.1891 0.9926,0.3971 0.9926,0.3971 0.5011,0.208 0.8981,0.52 0.8981,0.52 0.3971,0.312 0.6523,0.7658 0.6523,0.7658 0.2553,0.4538 0.2553,1.0966 0.2553,1.0966 0,0.5672 -0.2174,1.0588 -0.2174,1.0588 -0.2174,0.4916 -0.6429,0.8697 -0.6429,0.8697 -0.4254,0.3782 -1.0588,0.5956 -1.0588,0.5956 -0.6334,0.2174 -1.4464,0.2174 -1.4464,0.2174 -0.9832,0 -1.8718,-0.3592 -1.8718,-0.3592 -0.8887,-0.3592 -1.5504,-0.9076 -1.5504,-0.9076 z M 626.776,562 Z m 1.8151,-7.9223 h -1.3613 v -1.1723 l 1.437,-0.0945 0.1891,-2.5714 h 1.3046 v 2.5714 h 2.4769 v 1.2668 h -2.4769 v 5.105 c 0,0.8508 0.312,1.3141 0.312,1.3141 0.312,0.4632 1.1061,0.4632 1.1061,0.4632 0.2458,0 0.5294,-0.0756 0.5294,-0.0756 0.2836,-0.0756 0.5105,-0.1702 0.5105,-0.1702 l 0.3025,1.1723 c -0.3782,0.1324 -0.8225,0.2363 -0.8225,0.2363 -0.4443,0.104 -0.8792,0.104 -0.8792,0.104 -0.7374,0 -1.2384,-0.2269 -1.2384,-0.2269 -0.5011,-0.2269 -0.813,-0.6239 -0.813,-0.6239 -0.312,-0.3971 -0.4443,-0.9643 -0.4443,-0.9643 -0.1324,-0.5672 -0.1324,-1.2479 -0.1324,-1.2479 v -5.0861 z"+       id="path60" />+  </g>+  <g+     stroke-linejoin="bevel"+     fill-opacity="1.0"+     fill="rgb(0,0,255)"+     stroke="rgb(0,0,0)"+     stroke-linecap="butt"+     stroke-miterlimit="10.0"+     stroke-opacity="0.0"+     stroke-width="0.0"+     id="g62">+    <path+       d="M 10.0000,572.0000 v 18.0000 h 20.0000 v -18.0000 Z"+       id="path61" />+  </g>+  <g+     stroke-linejoin="bevel"+     fill-opacity="1.0"+     fill="rgb(0,0,0)"+     stroke="rgb(0,0,0)"+     stroke-linecap="butt"+     stroke-miterlimit="10.0"+     stroke-opacity="0.0"+     stroke-width="0.0"+     id="g63">+    <path+       d="M 39.1324,583.8929 ZM 43.4055,572.8130 h -3.7437 v -1.3235 h 9.0756 v 1.3235 h -3.7437 v 11.0798 h -1.5882 v -11.0798 ZM 48.0189,583.8929 ZM 48.8887,579.3172 c 0.0000,-1.1534 0.3498,-2.0515 0.3498 -2.0515c 0.3498,-0.8981 0.9359,-1.5221 0.9359 -1.5221c 0.5861,-0.6239 1.3519,-0.9454 1.3519 -0.9454c 0.7658,-0.3214 1.6166,-0.3214 1.6166 -0.3214c 0.8508,0.0000 1.6166,0.3214 1.6166 0.3214c 0.7658,0.3214 1.3519,0.9454 1.3519 0.9454c 0.5861,0.6239 0.9359,1.5221 0.9359 1.5221c 0.3498,0.8981 0.3498,2.0515 0.3498 2.0515c 0.0000,1.1345 -0.3498,2.0326 -0.3498 2.0326c -0.3498,0.8981 -0.9359,1.5126 -0.9359 1.5126c -0.5861,0.6145 -1.3519,0.9359 -1.3519 0.9359c -0.7658,0.3214 -1.6166,0.3214 -1.6166 0.3214c -0.8508,-0.0000 -1.6166,-0.3214 -1.6166 -0.3214c -0.7658,-0.3214 -1.3519,-0.9359 -1.3519 -0.9359c -0.5861,-0.6145 -0.9359,-1.5126 -0.9359 -1.5126c -0.3498,-0.8981 -0.3498,-2.0326 -0.3498 -2.0326ZM 48.8887,579.3172 ZM 50.4958,579.3172 c 0.0000,0.7941 0.1891,1.4370 0.1891 1.4370c 0.1891,0.6429 0.5389,1.1061 0.5389 1.1061c 0.3498,0.4632 0.8414,0.7185 0.8414 0.7185c 0.4916,0.2553 1.0777,0.2553 1.0777 0.2553c 0.5861,0.0000 1.0777,-0.2553 1.0777 -0.2553c 0.4916,-0.2553 0.8414,-0.7185 0.8414 -0.7185c 0.3498,-0.4632 0.5389,-1.1061 0.5389 -1.1061c 0.1891,-0.6429 0.1891,-1.4370 0.1891 -1.4370c 0.0000,-0.7941 -0.1891,-1.4464 -0.1891 -1.4464c -0.1891,-0.6523 -0.5389,-1.1250 -0.5389 -1.1250c -0.3498,-0.4727 -0.8414,-0.7279 -0.8414 -0.7279c -0.4916,-0.2553 -1.0777,-0.2553 -1.0777 -0.2553c -0.5861,-0.0000 -1.0777,0.2553 -1.0777 0.2553c -0.4916,0.2553 -0.8414,0.7279 -0.8414 0.7279c -0.3498,0.4727 -0.5389,1.1250 -0.5389 1.1250c -0.1891,0.6523 -0.1891,1.4464 -0.1891 1.4464ZM 58.2668,583.8929 ZM 60.0819,575.9706 h -1.3613 v -1.1723 l 1.4370,-0.0945 l 0.1891,-2.5714 h 1.3046 v 2.5714 h 2.4769 v 1.2668 h -2.4769 v 5.1050 c 0.0000,0.8508 0.3120,1.3141 0.3120 1.3141c 0.3120,0.4632 1.1061,0.4632 1.1061 0.4632c 0.2458,0.0000 0.5294,-0.0756 0.5294 -0.0756c 0.2836,-0.0756 0.5105,-0.1702 0.5105 -0.1702l 0.3025,1.1723 c -0.3782,0.1324 -0.8225,0.2363 -0.8225 0.2363c -0.4443,0.1040 -0.8792,0.1040 -0.8792 0.1040c -0.7374,-0.0000 -1.2384,-0.2269 -1.2384 -0.2269c -0.5011,-0.2269 -0.8130,-0.6239 -0.8130 -0.6239c -0.3120,-0.3971 -0.4443,-0.9643 -0.4443 -0.9643c -0.1324,-0.5672 -0.1324,-1.2479 -0.1324 -1.2479v -5.0861 ZM 64.3172,583.8929 ZM 65.4139,581.5105 c 0.0000,-1.5126 1.3519,-2.3162 1.3519 -2.3162c 1.3519,-0.8036 4.3015,-1.1250 4.3015 -1.1250c 0.0000,-0.4349 -0.0851,-0.8508 -0.0851 -0.8508c -0.0851,-0.4160 -0.3025,-0.7374 -0.3025 -0.7374c -0.2174,-0.3214 -0.5767,-0.5200 -0.5767 -0.5200c -0.3592,-0.1985 -0.9265,-0.1985 -0.9265 -0.1985c -0.8130,-0.0000 -1.5032,0.3025 -1.5032 0.3025c -0.6901,0.3025 -1.2384,0.6807 -1.2384 0.6807l -0.6239,-1.0777 c 0.6429,-0.4160 1.5693,-0.8036 1.5693 -0.8036c 0.9265,-0.3876 2.0420,-0.3876 2.0420 -0.3876c 1.6828,0.0000 2.4391,1.0305 2.4391 1.0305c 0.7563,1.0305 0.7563,2.7511 0.7563 2.7511v 5.6345 h -1.2857 l -0.1324,-1.0966 h -0.0378 c -0.6618,0.5483 -1.4275,0.9359 -1.4275 0.9359c -0.7658,0.3876 -1.6166,0.3876 -1.6166 0.3876c -1.1723,-0.0000 -1.9380,-0.6807 -1.9380 -0.6807c -0.7658,-0.6807 -0.7658,-1.9286 -0.7658 -1.9286ZM 65.4139,581.5105 ZM 66.9454,581.3971 c 0.0000,0.7941 0.4632,1.1345 0.4632 1.1345c 0.4632,0.3403 1.1439,0.3403 1.1439 0.3403c 0.6618,0.0000 1.2574,-0.3120 1.2574 -0.3120c 0.5956,-0.3120 1.2574,-0.9170 1.2574 -0.9170v -2.5525 c -1.1534,0.1513 -1.9475,0.3592 -1.9475 0.3592c -0.7941,0.2080 -1.2763,0.4916 -1.2763 0.4916c -0.4821,0.2836 -0.6901,0.6523 -0.6901 0.6523c -0.2080,0.3687 -0.2080,0.8036 -0.2080 0.8036ZM 73.9979,583.8929 ZM 75.5483,570.4307 h 1.5504 v 11.7227 c 0.0000,0.3782 0.1324,0.5294 0.1324 0.5294c 0.1324,0.1513 0.3025,0.1513 0.3025 0.1513h 0.1418 c 0.0000,0.0000 0.1985,-0.0378 0.1985 -0.0378l 0.2080,1.1723 c -0.1513,0.0756 -0.3592,0.1134 -0.3592 0.1134c -0.2080,0.0378 -0.5294,0.0378 -0.5294 0.0378c -0.8887,-0.0000 -1.2668,-0.5294 -1.2668 -0.5294c -0.3782,-0.5294 -0.3782,-1.5504 -0.3782 -1.5504v -11.6092 ZM 82.6387,583.8929 ZM 83.5084,579.3172 c 0.0000,-1.1534 0.3592,-2.0515 0.3592 -2.0515c 0.3592,-0.8981 0.9643,-1.5221 0.9643 -1.5221c 0.6050,-0.6239 1.4086,-0.9454 1.4086 -0.9454c 0.8036,-0.3214 1.6922,-0.3214 1.6922 -0.3214c 0.9076,0.0000 1.5599,0.3309 1.5599 0.3309c 0.6523,0.3309 1.1250,0.7658 1.1250 0.7658l -0.7752,1.0021 c -0.4160,-0.3592 -0.8603,-0.5861 -0.8603 -0.5861c -0.4443,-0.2269 -0.9926,-0.2269 -0.9926 -0.2269c -0.6239,-0.0000 -1.1534,0.2553 -1.1534 0.2553c -0.5294,0.2553 -0.9076,0.7279 -0.9076 0.7279c -0.3782,0.4727 -0.5956,1.1250 -0.5956 1.1250c -0.2174,0.6523 -0.2174,1.4464 -0.2174 1.4464c 0.0000,0.7941 0.2080,1.4370 0.2080 1.4370c 0.2080,0.6429 0.5767,1.1061 0.5767 1.1061c 0.3687,0.4632 0.8981,0.7185 0.8981 0.7185c 0.5294,0.2553 1.1534,0.2553 1.1534 0.2553c 0.6618,0.0000 1.2006,-0.2742 1.2006 -0.2742c 0.5389,-0.2742 0.9548,-0.6523 0.9548 -0.6523l 0.6996,1.0210 c -0.6239,0.5483 -1.3897,0.8697 -1.3897 0.8697c -0.7658,0.3214 -1.5977,0.3214 -1.5977 0.3214c -0.9076,-0.0000 -1.7017,-0.3214 -1.7017 -0.3214c -0.7941,-0.3214 -1.3708,-0.9359 -1.3708 -0.9359c -0.5767,-0.6145 -0.9076,-1.5126 -0.9076 -1.5126c -0.3309,-0.8981 -0.3309,-2.0326 -0.3309 -2.0326ZM 91.0714,583.8929 ZM 92.1681,581.5105 c 0.0000,-1.5126 1.3519,-2.3162 1.3519 -2.3162c 1.3519,-0.8036 4.3015,-1.1250 4.3015 -1.1250c 0.0000,-0.4349 -0.0851,-0.8508 -0.0851 -0.8508c -0.0851,-0.4160 -0.3025,-0.7374 -0.3025 -0.7374c -0.2174,-0.3214 -0.5767,-0.5200 -0.5767 -0.5200c -0.3592,-0.1985 -0.9265,-0.1985 -0.9265 -0.1985c -0.8130,-0.0000 -1.5032,0.3025 -1.5032 0.3025c -0.6901,0.3025 -1.2384,0.6807 -1.2384 0.6807l -0.6239,-1.0777 c 0.6429,-0.4160 1.5693,-0.8036 1.5693 -0.8036c 0.9265,-0.3876 2.0420,-0.3876 2.0420 -0.3876c 1.6828,0.0000 2.4391,1.0305 2.4391 1.0305c 0.7563,1.0305 0.7563,2.7511 0.7563 2.7511v 5.6345 h -1.2857 l -0.1324,-1.0966 h -0.0378 c -0.6618,0.5483 -1.4275,0.9359 -1.4275 0.9359c -0.7658,0.3876 -1.6166,0.3876 -1.6166 0.3876c -1.1723,-0.0000 -1.9380,-0.6807 -1.9380 -0.6807c -0.7658,-0.6807 -0.7658,-1.9286 -0.7658 -1.9286ZM 92.1681,581.5105 ZM 93.6996,581.3971 c 0.0000,0.7941 0.4632,1.1345 0.4632 1.1345c 0.4632,0.3403 1.1439,0.3403 1.1439 0.3403c 0.6618,0.0000 1.2574,-0.3120 1.2574 -0.3120c 0.5956,-0.3120 1.2574,-0.9170 1.2574 -0.9170v -2.5525 c -1.1534,0.1513 -1.9475,0.3592 -1.9475 0.3592c -0.7941,0.2080 -1.2763,0.4916 -1.2763 0.4916c -0.4821,0.2836 -0.6901,0.6523 -0.6901 0.6523c -0.2080,0.3687 -0.2080,0.8036 -0.2080 0.8036ZM 100.7521,583.8929 ZM 102.3025,574.7038 h 1.2857 l 0.1324,1.6639 h 0.0567 c 0.4727,-0.8697 1.1439,-1.3803 1.1439 -1.3803c 0.6712,-0.5105 1.4653,-0.5105 1.4653 -0.5105c 0.5483,0.0000 0.9832,0.1891 0.9832 0.1891l -0.3025,1.3613 c -0.2269,-0.0756 -0.4160,-0.1134 -0.4160 -0.1134c -0.1891,-0.0378 -0.4727,-0.0378 -0.4727 -0.0378c -0.5861,-0.0000 -1.2195,0.4727 -1.2195 0.4727c -0.6334,0.4727 -1.1061,1.6450 -1.1061 1.6450v 5.8992 h -1.5504 v -9.1891 ZM 107.1239,583.8929 ZM 108.0126,579.3172 c 0.0000,-1.1155 0.3309,-2.0137 0.3309 -2.0137c 0.3309,-0.8981 0.8792,-1.5221 0.8792 -1.5221c 0.5483,-0.6239 1.2668,-0.9643 1.2668 -0.9643c 0.7185,-0.3403 1.5126,-0.3403 1.5126 -0.3403c 0.7941,0.0000 1.3803,0.2836 1.3803 0.2836c 0.5861,0.2836 1.1912,0.7752 1.1912 0.7752l -0.0756,-1.5693 v -3.5357 h 1.5693 v 13.4622 h -1.2857 l -0.1324,-1.0777 h -0.0567 c -0.5483,0.5294 -1.2574,0.9170 -1.2574 0.9170c -0.7090,0.3876 -1.5221,0.3876 -1.5221 0.3876c -1.7395,-0.0000 -2.7700,-1.2479 -2.7700 -1.2479c -1.0305,-1.2479 -1.0305,-3.5546 -1.0305 -3.5546ZM 108.0126,579.3172 ZM 109.6197,579.2983 c 0.0000,1.6639 0.6618,2.5903 0.6618 2.5903c 0.6618,0.9265 1.8718,0.9265 1.8718 0.9265c 0.6429,0.0000 1.2101,-0.3120 1.2101 -0.3120c 0.5672,-0.3120 1.1345,-0.9548 1.1345 -0.9548v -4.8025 c -0.5861,-0.5294 -1.1250,-0.7468 -1.1250 -0.7468c -0.5389,-0.2174 -1.1061,-0.2174 -1.1061 -0.2174c -0.5483,-0.0000 -1.0305,0.2553 -1.0305 0.2553c -0.4821,0.2553 -0.8414,0.7185 -0.8414 0.7185c -0.3592,0.4632 -0.5672,1.1061 -0.5672 1.1061c -0.2080,0.6429 -0.2080,1.4370 -0.2080 1.4370ZM 121.4370,583.8929 ZM 124.5378,584.6681 v 3.1008 h -1.5504 v -13.0651 h 1.2857 l 0.1324,1.0588 h 0.0567 c 0.6239,-0.5294 1.3708,-0.9076 1.3708 -0.9076c 0.7468,-0.3782 1.5599,-0.3782 1.5599 -0.3782c 0.8887,0.0000 1.5693,0.3309 1.5693 0.3309c 0.6807,0.3309 1.1345,0.9454 1.1345 0.9454c 0.4538,0.6145 0.6901,1.4748 0.6901 1.4748c 0.2363,0.8603 0.2363,1.9380 0.2363 1.9380c 0.0000,1.1723 -0.3214,2.0893 -0.3214 2.0893c -0.3214,0.9170 -0.8697,1.5599 -0.8697 1.5599c -0.5483,0.6429 -1.2668,0.9737 -1.2668 0.9737c -0.7185,0.3309 -1.5126,0.3309 -1.5126 0.3309c -0.6429,-0.0000 -1.2763,-0.2836 -1.2763 -0.2836c -0.6334,-0.2836 -1.2763,-0.7752 -1.2763 -0.7752ZM 124.5378,584.6681 ZM 124.5378,581.8508 c 0.6239,0.5294 1.2101,0.7468 1.2101 0.7468c 0.5861,0.2174 1.0399,0.2174 1.0399 0.2174c 0.5672,0.0000 1.0494,-0.2553 1.0494 -0.2553c 0.4821,-0.2553 0.8319,-0.7185 0.8319 -0.7185c 0.3498,-0.4632 0.5483,-1.1439 0.5483 -1.1439c 0.1985,-0.6807 0.1985,-1.5315 0.1985 -1.5315c 0.0000,-0.7563 -0.1324,-1.3803 -0.1324 -1.3803c -0.1324,-0.6239 -0.4254,-1.0683 -0.4254 -1.0683c -0.2931,-0.4443 -0.7563,-0.6901 -0.7563 -0.6901c -0.4632,-0.2458 -1.1061,-0.2458 -1.1061 -0.2458c -0.5861,-0.0000 -1.1817,0.3214 -1.1817 0.3214c -0.5956,0.3214 -1.2763,0.9265 -1.2763 0.9265v 4.8214 ZM 131.9307,583.8929 ZM 132.8004,579.3172 c 0.0000,-1.1534 0.3498,-2.0515 0.3498 -2.0515c 0.3498,-0.8981 0.9359,-1.5221 0.9359 -1.5221c 0.5861,-0.6239 1.3519,-0.9454 1.3519 -0.9454c 0.7658,-0.3214 1.6166,-0.3214 1.6166 -0.3214c 0.8508,0.0000 1.6166,0.3214 1.6166 0.3214c 0.7658,0.3214 1.3519,0.9454 1.3519 0.9454c 0.5861,0.6239 0.9359,1.5221 0.9359 1.5221c 0.3498,0.8981 0.3498,2.0515 0.3498 2.0515c 0.0000,1.1345 -0.3498,2.0326 -0.3498 2.0326c -0.3498,0.8981 -0.9359,1.5126 -0.9359 1.5126c -0.5861,0.6145 -1.3519,0.9359 -1.3519 0.9359c -0.7658,0.3214 -1.6166,0.3214 -1.6166 0.3214c -0.8508,-0.0000 -1.6166,-0.3214 -1.6166 -0.3214c -0.7658,-0.3214 -1.3519,-0.9359 -1.3519 -0.9359c -0.5861,-0.6145 -0.9359,-1.5126 -0.9359 -1.5126c -0.3498,-0.8981 -0.3498,-2.0326 -0.3498 -2.0326ZM 132.8004,579.3172 ZM 134.4076,579.3172 c 0.0000,0.7941 0.1891,1.4370 0.1891 1.4370c 0.1891,0.6429 0.5389,1.1061 0.5389 1.1061c 0.3498,0.4632 0.8414,0.7185 0.8414 0.7185c 0.4916,0.2553 1.0777,0.2553 1.0777 0.2553c 0.5861,0.0000 1.0777,-0.2553 1.0777 -0.2553c 0.4916,-0.2553 0.8414,-0.7185 0.8414 -0.7185c 0.3498,-0.4632 0.5389,-1.1061 0.5389 -1.1061c 0.1891,-0.6429 0.1891,-1.4370 0.1891 -1.4370c 0.0000,-0.7941 -0.1891,-1.4464 -0.1891 -1.4464c -0.1891,-0.6523 -0.5389,-1.1250 -0.5389 -1.1250c -0.3498,-0.4727 -0.8414,-0.7279 -0.8414 -0.7279c -0.4916,-0.2553 -1.0777,-0.2553 -1.0777 -0.2553c -0.5861,-0.0000 -1.0777,0.2553 -1.0777 0.2553c -0.4916,0.2553 -0.8414,0.7279 -0.8414 0.7279c -0.3498,0.4727 -0.5389,1.1250 -0.5389 1.1250c -0.1891,0.6523 -0.1891,1.4464 -0.1891 1.4464ZM 142.1786,583.8929 ZM 143.4832,581.8130 c 0.6050,0.4916 1.2384,0.7941 1.2384 0.7941c 0.6334,0.3025 1.4653,0.3025 1.4653 0.3025c 0.9076,0.0000 1.3613,-0.4160 1.3613 -0.4160c 0.4538,-0.4160 0.4538,-1.0210 0.4538 -1.0210c 0.0000,-0.3592 -0.1891,-0.6239 -0.1891 -0.6239c -0.1891,-0.2647 -0.4821,-0.4632 -0.4821 -0.4632c -0.2931,-0.1985 -0.6712,-0.3498 -0.6712 -0.3498l -0.7563,-0.3025 c -0.4916,-0.1702 -0.9832,-0.3876 -0.9832 -0.3876c -0.4916,-0.2174 -0.8792,-0.5294 -0.8792 -0.5294c -0.3876,-0.3120 -0.6334,-0.7279 -0.6334 -0.7279c -0.2458,-0.4160 -0.2458,-1.0021 -0.2458 -1.0021c 0.0000,-0.5483 0.2174,-1.0305 0.2174 -1.0305c 0.2174,-0.4821 0.6239,-0.8319 0.6239 -0.8319c 0.4065,-0.3498 0.9926,-0.5483 0.9926 -0.5483c 0.5861,-0.1985 1.3235,-0.1985 1.3235 -0.1985c 0.8697,0.0000 1.5977,0.3025 1.5977 0.3025c 0.7279,0.3025 1.2574,0.7374 1.2574 0.7374l -0.7374,0.9832 c -0.4727,-0.3592 -0.9832,-0.5861 -0.9832 -0.5861c -0.5105,-0.2269 -1.1155,-0.2269 -1.1155 -0.2269c -0.8697,-0.0000 -1.2763,0.3971 -1.2763 0.3971c -0.4065,0.3971 -0.4065,0.9265 -0.4065 0.9265c 0.0000,0.3214 0.1702,0.5578 0.1702 0.5578c 0.1702,0.2363 0.4538,0.4160 0.4538 0.4160c 0.2836,0.1796 0.6523,0.3214 0.6523 0.3214c 0.3687,0.1418 0.7658,0.2931 0.7658 0.2931c 0.4916,0.1891 0.9926,0.3971 0.9926 0.3971c 0.5011,0.2080 0.8981,0.5200 0.8981 0.5200c 0.3971,0.3120 0.6523,0.7658 0.6523 0.7658c 0.2553,0.4538 0.2553,1.0966 0.2553 1.0966c 0.0000,0.5672 -0.2174,1.0588 -0.2174 1.0588c -0.2174,0.4916 -0.6429,0.8697 -0.6429 0.8697c -0.4254,0.3782 -1.0588,0.5956 -1.0588 0.5956c -0.6334,0.2174 -1.4464,0.2174 -1.4464 0.2174c -0.9832,-0.0000 -1.8718,-0.3592 -1.8718 -0.3592c -0.8887,-0.3592 -1.5504,-0.9076 -1.5504 -0.9076ZM 150.1008,583.8929 ZM 152.4454,572.8130 c -0.4538,-0.0000 -0.7658,-0.2836 -0.7658 -0.2836c -0.3120,-0.2836 -0.3120,-0.7185 -0.3120 -0.7185c 0.0000,-0.4538 0.3120,-0.7279 0.3120 -0.7279c 0.3120,-0.2742 0.7658,-0.2742 0.7658 -0.2742c 0.4538,0.0000 0.7658,0.2742 0.7658 0.2742c 0.3120,0.2742 0.3120,0.7279 0.3120 0.7279c 0.0000,0.4349 -0.3120,0.7185 -0.3120 0.7185c -0.3120,0.2836 -0.7658,0.2836 -0.7658 0.2836ZM 152.4454,572.8130 ZM 151.6513,574.7038 h 1.5504 v 9.1891 h -1.5504 v -9.1891 ZM 154.7521,583.8929 ZM 156.5672,575.9706 h -1.3613 v -1.1723 l 1.4370,-0.0945 l 0.1891,-2.5714 h 1.3046 v 2.5714 h 2.4769 v 1.2668 h -2.4769 v 5.1050 c 0.0000,0.8508 0.3120,1.3141 0.3120 1.3141c 0.3120,0.4632 1.1061,0.4632 1.1061 0.4632c 0.2458,0.0000 0.5294,-0.0756 0.5294 -0.0756c 0.2836,-0.0756 0.5105,-0.1702 0.5105 -0.1702l 0.3025,1.1723 c -0.3782,0.1324 -0.8225,0.2363 -0.8225 0.2363c -0.4443,0.1040 -0.8792,0.1040 -0.8792 0.1040c -0.7374,-0.0000 -1.2384,-0.2269 -1.2384 -0.2269c -0.5011,-0.2269 -0.8130,-0.6239 -0.8130 -0.6239c -0.3120,-0.3971 -0.4443,-0.9643 -0.4443 -0.9643c -0.1324,-0.5672 -0.1324,-1.2479 -0.1324 -1.2479v -5.0861 ZM 161.1429,583.8929 ZM 163.4874,572.8130 c -0.4538,-0.0000 -0.7658,-0.2836 -0.7658 -0.2836c -0.3120,-0.2836 -0.3120,-0.7185 -0.3120 -0.7185c 0.0000,-0.4538 0.3120,-0.7279 0.3120 -0.7279c 0.3120,-0.2742 0.7658,-0.2742 0.7658 -0.2742c 0.4538,0.0000 0.7658,0.2742 0.7658 0.2742c 0.3120,0.2742 0.3120,0.7279 0.3120 0.7279c 0.0000,0.4349 -0.3120,0.7185 -0.3120 0.7185c -0.3120,0.2836 -0.7658,0.2836 -0.7658 0.2836ZM 163.4874,572.8130 ZM 162.6933,574.7038 h 1.5504 v 9.1891 h -1.5504 v -9.1891 ZM 165.7941,583.8929 ZM 166.6639,579.3172 c 0.0000,-1.1534 0.3498,-2.0515 0.3498 -2.0515c 0.3498,-0.8981 0.9359,-1.5221 0.9359 -1.5221c 0.5861,-0.6239 1.3519,-0.9454 1.3519 -0.9454c 0.7658,-0.3214 1.6166,-0.3214 1.6166 -0.3214c 0.8508,0.0000 1.6166,0.3214 1.6166 0.3214c 0.7658,0.3214 1.3519,0.9454 1.3519 0.9454c 0.5861,0.6239 0.9359,1.5221 0.9359 1.5221c 0.3498,0.8981 0.3498,2.0515 0.3498 2.0515c 0.0000,1.1345 -0.3498,2.0326 -0.3498 2.0326c -0.3498,0.8981 -0.9359,1.5126 -0.9359 1.5126c -0.5861,0.6145 -1.3519,0.9359 -1.3519 0.9359c -0.7658,0.3214 -1.6166,0.3214 -1.6166 0.3214c -0.8508,-0.0000 -1.6166,-0.3214 -1.6166 -0.3214c -0.7658,-0.3214 -1.3519,-0.9359 -1.3519 -0.9359c -0.5861,-0.6145 -0.9359,-1.5126 -0.9359 -1.5126c -0.3498,-0.8981 -0.3498,-2.0326 -0.3498 -2.0326ZM 166.6639,579.3172 ZM 168.2710,579.3172 c 0.0000,0.7941 0.1891,1.4370 0.1891 1.4370c 0.1891,0.6429 0.5389,1.1061 0.5389 1.1061c 0.3498,0.4632 0.8414,0.7185 0.8414 0.7185c 0.4916,0.2553 1.0777,0.2553 1.0777 0.2553c 0.5861,0.0000 1.0777,-0.2553 1.0777 -0.2553c 0.4916,-0.2553 0.8414,-0.7185 0.8414 -0.7185c 0.3498,-0.4632 0.5389,-1.1061 0.5389 -1.1061c 0.1891,-0.6429 0.1891,-1.4370 0.1891 -1.4370c 0.0000,-0.7941 -0.1891,-1.4464 -0.1891 -1.4464c -0.1891,-0.6523 -0.5389,-1.1250 -0.5389 -1.1250c -0.3498,-0.4727 -0.8414,-0.7279 -0.8414 -0.7279c -0.4916,-0.2553 -1.0777,-0.2553 -1.0777 -0.2553c -0.5861,-0.0000 -1.0777,0.2553 -1.0777 0.2553c -0.4916,0.2553 -0.8414,0.7279 -0.8414 0.7279c -0.3498,0.4727 -0.5389,1.1250 -0.5389 1.1250c -0.1891,0.6523 -0.1891,1.4464 -0.1891 1.4464ZM 176.0420,583.8929 ZM 177.5924,574.7038 h 1.2857 l 0.1324,1.3235 h 0.0567 c 0.6618,-0.6618 1.3897,-1.1061 1.3897 -1.1061c 0.7279,-0.4443 1.6922,-0.4443 1.6922 -0.4443c 1.4559,0.0000 2.1271,0.9076 2.1271 0.9076c 0.6712,0.9076 0.6712,2.6849 0.6712 2.6849v 5.8235 h -1.5504 v -5.6155 c 0.0000,-1.3046 -0.4160,-1.8813 -0.4160 -1.8813c -0.4160,-0.5767 -1.3235,-0.5767 -1.3235 -0.5767c -0.7185,-0.0000 -1.2668,0.3592 -1.2668 0.3592c -0.5483,0.3592 -1.2479,1.0588 -1.2479 1.0588v 6.6555 h -1.5504 v -9.1891 ZM 186.3845,583.8929 ZM 187.4811,581.5105 c 0.0000,-1.5126 1.3519,-2.3162 1.3519 -2.3162c 1.3519,-0.8036 4.3015,-1.1250 4.3015 -1.1250c 0.0000,-0.4349 -0.0851,-0.8508 -0.0851 -0.8508c -0.0851,-0.4160 -0.3025,-0.7374 -0.3025 -0.7374c -0.2174,-0.3214 -0.5767,-0.5200 -0.5767 -0.5200c -0.3592,-0.1985 -0.9265,-0.1985 -0.9265 -0.1985c -0.8130,-0.0000 -1.5032,0.3025 -1.5032 0.3025c -0.6901,0.3025 -1.2384,0.6807 -1.2384 0.6807l -0.6239,-1.0777 c 0.6429,-0.4160 1.5693,-0.8036 1.5693 -0.8036c 0.9265,-0.3876 2.0420,-0.3876 2.0420 -0.3876c 1.6828,0.0000 2.4391,1.0305 2.4391 1.0305c 0.7563,1.0305 0.7563,2.7511 0.7563 2.7511v 5.6345 h -1.2857 l -0.1324,-1.0966 h -0.0378 c -0.6618,0.5483 -1.4275,0.9359 -1.4275 0.9359c -0.7658,0.3876 -1.6166,0.3876 -1.6166 0.3876c -1.1723,-0.0000 -1.9380,-0.6807 -1.9380 -0.6807c -0.7658,-0.6807 -0.7658,-1.9286 -0.7658 -1.9286ZM 187.4811,581.5105 ZM 189.0126,581.3971 c 0.0000,0.7941 0.4632,1.1345 0.4632 1.1345c 0.4632,0.3403 1.1439,0.3403 1.1439 0.3403c 0.6618,0.0000 1.2574,-0.3120 1.2574 -0.3120c 0.5956,-0.3120 1.2574,-0.9170 1.2574 -0.9170v -2.5525 c -1.1534,0.1513 -1.9475,0.3592 -1.9475 0.3592c -0.7941,0.2080 -1.2763,0.4916 -1.2763 0.4916c -0.4821,0.2836 -0.6901,0.6523 -0.6901 0.6523c -0.2080,0.3687 -0.2080,0.8036 -0.2080 0.8036ZM 196.0651,583.8929 ZM 197.6155,570.4307 h 1.5504 v 11.7227 c 0.0000,0.3782 0.1324,0.5294 0.1324 0.5294c 0.1324,0.1513 0.3025,0.1513 0.3025 0.1513h 0.1418 c 0.0000,0.0000 0.1985,-0.0378 0.1985 -0.0378l 0.2080,1.1723 c -0.1513,0.0756 -0.3592,0.1134 -0.3592 0.1134c -0.2080,0.0378 -0.5294,0.0378 -0.5294 0.0378c -0.8887,-0.0000 -1.2668,-0.5294 -1.2668 -0.5294c -0.3782,-0.5294 -0.3782,-1.5504 -0.3782 -1.5504v -11.6092 ZM 204.7059,583.8929 ZM 205.5756,579.3172 c 0.0000,-1.1345 0.3498,-2.0326 0.3498 -2.0326c 0.3498,-0.8981 0.9265,-1.5221 0.9265 -1.5221c 0.5767,-0.6239 1.3141,-0.9548 1.3141 -0.9548c 0.7374,-0.3309 1.5315,-0.3309 1.5315 -0.3309c 0.8697,0.0000 1.5599,0.3025 1.5599 0.3025c 0.6901,0.3025 1.1534,0.8697 1.1534 0.8697c 0.4632,0.5672 0.7090,1.3613 0.7090 1.3613c 0.2458,0.7941 0.2458,1.7773 0.2458 1.7773c 0.0000,0.5105 -0.0567,0.8508 -0.0567 0.8508h -6.2017 c 0.0945,1.4937 0.9170,2.3634 0.9170 2.3634c 0.8225,0.8697 2.1460,0.8697 2.1460 0.8697c 0.6618,0.0000 1.2195,-0.1985 1.2195 -0.1985c 0.5578,-0.1985 1.0683,-0.5200 1.0683 -0.5200l 0.5483,1.0210 c -0.6050,0.3782 -1.3424,0.6618 -1.3424 0.6618c -0.7374,0.2836 -1.6828,0.2836 -1.6828 0.2836c -0.9265,-0.0000 -1.7300,-0.3309 -1.7300 -0.3309c -0.8036,-0.3309 -1.3992,-0.9454 -1.3992 -0.9454c -0.5956,-0.6145 -0.9359,-1.5032 -0.9359 -1.5032c -0.3403,-0.8887 -0.3403,-2.0231 -0.3403 -2.0231ZM 205.5756,579.3172 ZM 212.0042,578.6176 c 0.0000,-1.4181 -0.5956,-2.1649 -0.5956 -2.1649c -0.5956,-0.7468 -1.6733,-0.7468 -1.6733 -0.7468c -0.4916,-0.0000 -0.9359,0.1985 -0.9359 0.1985c -0.4443,0.1985 -0.8036,0.5672 -0.8036 0.5672c -0.3592,0.3687 -0.5956,0.9076 -0.5956 0.9076c -0.2363,0.5389 -0.3120,1.2384 -0.3120 1.2384h 4.9160 ZM 214.0840,583.8929 ZM 215.6345,574.7038 h 1.2857 l 0.1324,1.6639 h 0.0567 c 0.4727,-0.8697 1.1439,-1.3803 1.1439 -1.3803c 0.6712,-0.5105 1.4653,-0.5105 1.4653 -0.5105c 0.5483,0.0000 0.9832,0.1891 0.9832 0.1891l -0.3025,1.3613 c -0.2269,-0.0756 -0.4160,-0.1134 -0.4160 -0.1134c -0.1891,-0.0378 -0.4727,-0.0378 -0.4727 -0.0378c -0.5861,-0.0000 -1.2195,0.4727 -1.2195 0.4727c -0.6334,0.4727 -1.1061,1.6450 -1.1061 1.6450v 5.8992 h -1.5504 v -9.1891 ZM 220.6450,583.8929 ZM 222.1954,574.7038 h 1.2857 l 0.1324,1.6639 h 0.0567 c 0.4727,-0.8697 1.1439,-1.3803 1.1439 -1.3803c 0.6712,-0.5105 1.4653,-0.5105 1.4653 -0.5105c 0.5483,0.0000 0.9832,0.1891 0.9832 0.1891l -0.3025,1.3613 c -0.2269,-0.0756 -0.4160,-0.1134 -0.4160 -0.1134c -0.1891,-0.0378 -0.4727,-0.0378 -0.4727 -0.0378c -0.5861,-0.0000 -1.2195,0.4727 -1.2195 0.4727c -0.6334,0.4727 -1.1061,1.6450 -1.1061 1.6450v 5.8992 h -1.5504 v -9.1891 ZM 227.0168,583.8929 ZM 227.8866,579.3172 c 0.0000,-1.1534 0.3498,-2.0515 0.3498 -2.0515c 0.3498,-0.8981 0.9359,-1.5221 0.9359 -1.5221c 0.5861,-0.6239 1.3519,-0.9454 1.3519 -0.9454c 0.7658,-0.3214 1.6166,-0.3214 1.6166 -0.3214c 0.8508,0.0000 1.6166,0.3214 1.6166 0.3214c 0.7658,0.3214 1.3519,0.9454 1.3519 0.9454c 0.5861,0.6239 0.9359,1.5221 0.9359 1.5221c 0.3498,0.8981 0.3498,2.0515 0.3498 2.0515c 0.0000,1.1345 -0.3498,2.0326 -0.3498 2.0326c -0.3498,0.8981 -0.9359,1.5126 -0.9359 1.5126c -0.5861,0.6145 -1.3519,0.9359 -1.3519 0.9359c -0.7658,0.3214 -1.6166,0.3214 -1.6166 0.3214c -0.8508,-0.0000 -1.6166,-0.3214 -1.6166 -0.3214c -0.7658,-0.3214 -1.3519,-0.9359 -1.3519 -0.9359c -0.5861,-0.6145 -0.9359,-1.5126 -0.9359 -1.5126c -0.3498,-0.8981 -0.3498,-2.0326 -0.3498 -2.0326ZM 227.8866,579.3172 ZM 229.4937,579.3172 c 0.0000,0.7941 0.1891,1.4370 0.1891 1.4370c 0.1891,0.6429 0.5389,1.1061 0.5389 1.1061c 0.3498,0.4632 0.8414,0.7185 0.8414 0.7185c 0.4916,0.2553 1.0777,0.2553 1.0777 0.2553c 0.5861,0.0000 1.0777,-0.2553 1.0777 -0.2553c 0.4916,-0.2553 0.8414,-0.7185 0.8414 -0.7185c 0.3498,-0.4632 0.5389,-1.1061 0.5389 -1.1061c 0.1891,-0.6429 0.1891,-1.4370 0.1891 -1.4370c 0.0000,-0.7941 -0.1891,-1.4464 -0.1891 -1.4464c -0.1891,-0.6523 -0.5389,-1.1250 -0.5389 -1.1250c -0.3498,-0.4727 -0.8414,-0.7279 -0.8414 -0.7279c -0.4916,-0.2553 -1.0777,-0.2553 -1.0777 -0.2553c -0.5861,-0.0000 -1.0777,0.2553 -1.0777 0.2553c -0.4916,0.2553 -0.8414,0.7279 -0.8414 0.7279c -0.3498,0.4727 -0.5389,1.1250 -0.5389 1.1250c -0.1891,0.6523 -0.1891,1.4464 -0.1891 1.4464ZM 237.2647,583.8929 ZM 238.8151,574.7038 h 1.2857 l 0.1324,1.6639 h 0.0567 c 0.4727,-0.8697 1.1439,-1.3803 1.1439 -1.3803c 0.6712,-0.5105 1.4653,-0.5105 1.4653 -0.5105c 0.5483,0.0000 0.9832,0.1891 0.9832 0.1891l -0.3025,1.3613 c -0.2269,-0.0756 -0.4160,-0.1134 -0.4160 -0.1134c -0.1891,-0.0378 -0.4727,-0.0378 -0.4727 -0.0378c -0.5861,-0.0000 -1.2195,0.4727 -1.2195 0.4727c -0.6334,0.4727 -1.1061,1.6450 -1.1061 1.6450v 5.8992 h -1.5504 v -9.1891 ZM 247.6450,583.8929 ZM 251.6912,587.2206 c -1.1723,-1.8908 -1.8340,-3.9895 -1.8340 -3.9895c -0.6618,-2.0987 -0.6618,-4.5945 -0.6618 -4.5945c 0.0000,-2.4958 0.6618,-4.5851 0.6618 -4.5851c 0.6618,-2.0893 1.8340,-3.9989 1.8340 -3.9989l 0.9643,0.4538 c -1.0966,1.8151 -1.6355,3.8855 -1.6355 3.8855c -0.5389,2.0704 -0.5389,4.2447 -0.5389 4.2447c 0.0000,2.1744 0.5389,4.2447 0.5389 4.2447c 0.5389,2.0704 1.6355,3.8855 1.6355 3.8855l -0.9643,0.4538 h 0.0000 ZM 253.3739,583.8929 ZM 254.4706,581.5105 c 0.0000,-1.5126 1.3519,-2.3162 1.3519 -2.3162c 1.3519,-0.8036 4.3015,-1.1250 4.3015 -1.1250c 0.0000,-0.4349 -0.0851,-0.8508 -0.0851 -0.8508c -0.0851,-0.4160 -0.3025,-0.7374 -0.3025 -0.7374c -0.2174,-0.3214 -0.5767,-0.5200 -0.5767 -0.5200c -0.3592,-0.1985 -0.9265,-0.1985 -0.9265 -0.1985c -0.8130,-0.0000 -1.5032,0.3025 -1.5032 0.3025c -0.6901,0.3025 -1.2384,0.6807 -1.2384 0.6807l -0.6239,-1.0777 c 0.6429,-0.4160 1.5693,-0.8036 1.5693 -0.8036c 0.9265,-0.3876 2.0420,-0.3876 2.0420 -0.3876c 1.6828,0.0000 2.4391,1.0305 2.4391 1.0305c 0.7563,1.0305 0.7563,2.7511 0.7563 2.7511v 5.6345 h -1.2857 l -0.1324,-1.0966 h -0.0378 c -0.6618,0.5483 -1.4275,0.9359 -1.4275 0.9359c -0.7658,0.3876 -1.6166,0.3876 -1.6166 0.3876c -1.1723,-0.0000 -1.9380,-0.6807 -1.9380 -0.6807c -0.7658,-0.6807 -0.7658,-1.9286 -0.7658 -1.9286ZM 254.4706,581.5105 ZM 256.0021,581.3971 c 0.0000,0.7941 0.4632,1.1345 0.4632 1.1345c 0.4632,0.3403 1.1439,0.3403 1.1439 0.3403c 0.6618,0.0000 1.2574,-0.3120 1.2574 -0.3120c 0.5956,-0.3120 1.2574,-0.9170 1.2574 -0.9170v -2.5525 c -1.1534,0.1513 -1.9475,0.3592 -1.9475 0.3592c -0.7941,0.2080 -1.2763,0.4916 -1.2763 0.4916c -0.4821,0.2836 -0.6901,0.6523 -0.6901 0.6523c -0.2080,0.3687 -0.2080,0.8036 -0.2080 0.8036ZM 263.0546,583.8929 ZM 263.2815,574.7038 h 1.6071 l 1.7395,5.2185 c 0.2080,0.6807 0.4254,1.3613 0.4254 1.3613c 0.2174,0.6807 0.4254,1.3424 0.4254 1.3424h 0.0756 c 0.2080,-0.6618 0.4160,-1.3424 0.4160 -1.3424l 0.4160,-1.3613 l 1.7395,-5.2185 h 1.5315 l -3.2521,9.1891 h -1.8151 ZM 271.8088,583.8929 ZM 272.6786,579.3172 c 0.0000,-1.1345 0.3498,-2.0326 0.3498 -2.0326c 0.3498,-0.8981 0.9265,-1.5221 0.9265 -1.5221c 0.5767,-0.6239 1.3141,-0.9548 1.3141 -0.9548c 0.7374,-0.3309 1.5315,-0.3309 1.5315 -0.3309c 0.8697,0.0000 1.5599,0.3025 1.5599 0.3025c 0.6901,0.3025 1.1534,0.8697 1.1534 0.8697c 0.4632,0.5672 0.7090,1.3613 0.7090 1.3613c 0.2458,0.7941 0.2458,1.7773 0.2458 1.7773c 0.0000,0.5105 -0.0567,0.8508 -0.0567 0.8508h -6.2017 c 0.0945,1.4937 0.9170,2.3634 0.9170 2.3634c 0.8225,0.8697 2.1460,0.8697 2.1460 0.8697c 0.6618,0.0000 1.2195,-0.1985 1.2195 -0.1985c 0.5578,-0.1985 1.0683,-0.5200 1.0683 -0.5200l 0.5483,1.0210 c -0.6050,0.3782 -1.3424,0.6618 -1.3424 0.6618c -0.7374,0.2836 -1.6828,0.2836 -1.6828 0.2836c -0.9265,-0.0000 -1.7300,-0.3309 -1.7300 -0.3309c -0.8036,-0.3309 -1.3992,-0.9454 -1.3992 -0.9454c -0.5956,-0.6145 -0.9359,-1.5032 -0.9359 -1.5032c -0.3403,-0.8887 -0.3403,-2.0231 -0.3403 -2.0231ZM 272.6786,579.3172 ZM 279.1071,578.6176 c 0.0000,-1.4181 -0.5956,-2.1649 -0.5956 -2.1649c -0.5956,-0.7468 -1.6733,-0.7468 -1.6733 -0.7468c -0.4916,-0.0000 -0.9359,0.1985 -0.9359 0.1985c -0.4443,0.1985 -0.8036,0.5672 -0.8036 0.5672c -0.3592,0.3687 -0.5956,0.9076 -0.5956 0.9076c -0.2363,0.5389 -0.3120,1.2384 -0.3120 1.2384h 4.9160 ZM 281.1870,583.8929 ZM 282.7374,574.7038 h 1.2857 l 0.1324,1.6639 h 0.0567 c 0.4727,-0.8697 1.1439,-1.3803 1.1439 -1.3803c 0.6712,-0.5105 1.4653,-0.5105 1.4653 -0.5105c 0.5483,0.0000 0.9832,0.1891 0.9832 0.1891l -0.3025,1.3613 c -0.2269,-0.0756 -0.4160,-0.1134 -0.4160 -0.1134c -0.1891,-0.0378 -0.4727,-0.0378 -0.4727 -0.0378c -0.5861,-0.0000 -1.2195,0.4727 -1.2195 0.4727c -0.6334,0.4727 -1.1061,1.6450 -1.1061 1.6450v 5.8992 h -1.5504 v -9.1891 ZM 287.2752,583.8929 ZM 288.3718,581.5105 c 0.0000,-1.5126 1.3519,-2.3162 1.3519 -2.3162c 1.3519,-0.8036 4.3015,-1.1250 4.3015 -1.1250c 0.0000,-0.4349 -0.0851,-0.8508 -0.0851 -0.8508c -0.0851,-0.4160 -0.3025,-0.7374 -0.3025 -0.7374c -0.2174,-0.3214 -0.5767,-0.5200 -0.5767 -0.5200c -0.3592,-0.1985 -0.9265,-0.1985 -0.9265 -0.1985c -0.8130,-0.0000 -1.5032,0.3025 -1.5032 0.3025c -0.6901,0.3025 -1.2384,0.6807 -1.2384 0.6807l -0.6239,-1.0777 c 0.6429,-0.4160 1.5693,-0.8036 1.5693 -0.8036c 0.9265,-0.3876 2.0420,-0.3876 2.0420 -0.3876c 1.6828,0.0000 2.4391,1.0305 2.4391 1.0305c 0.7563,1.0305 0.7563,2.7511 0.7563 2.7511v 5.6345 h -1.2857 l -0.1324,-1.0966 h -0.0378 c -0.6618,0.5483 -1.4275,0.9359 -1.4275 0.9359c -0.7658,0.3876 -1.6166,0.3876 -1.6166 0.3876c -1.1723,-0.0000 -1.9380,-0.6807 -1.9380 -0.6807c -0.7658,-0.6807 -0.7658,-1.9286 -0.7658 -1.9286ZM 288.3718,581.5105 ZM 289.9034,581.3971 c 0.0000,0.7941 0.4632,1.1345 0.4632 1.1345c 0.4632,0.3403 1.1439,0.3403 1.1439 0.3403c 0.6618,0.0000 1.2574,-0.3120 1.2574 -0.3120c 0.5956,-0.3120 1.2574,-0.9170 1.2574 -0.9170v -2.5525 c -1.1534,0.1513 -1.9475,0.3592 -1.9475 0.3592c -0.7941,0.2080 -1.2763,0.4916 -1.2763 0.4916c -0.4821,0.2836 -0.6901,0.6523 -0.6901 0.6523c -0.2080,0.3687 -0.2080,0.8036 -0.2080 0.8036ZM 296.9559,583.8929 ZM 299.1681,585.4433 c 0.0000,0.7374 0.7090,1.1723 0.7090 1.1723c 0.7090,0.4349 1.9569,0.4349 1.9569 0.4349c 0.6618,0.0000 1.2006,-0.1607 1.2006 -0.1607c 0.5389,-0.1607 0.9170,-0.4160 0.9170 -0.4160c 0.3782,-0.2553 0.5861,-0.5956 0.5861 -0.5956c 0.2080,-0.3403 0.2080,-0.6996 0.2080 -0.6996c 0.0000,-0.6429 -0.4727,-0.8887 -0.4727 -0.8887c -0.4727,-0.2458 -1.3803,-0.2458 -1.3803 -0.2458h -1.5882 c -0.2647,-0.0000 -0.5767,-0.0284 -0.5767 -0.0284c -0.3120,-0.0284 -0.6145,-0.1229 -0.6145 -0.1229c -0.4916,0.3592 -0.7185,0.7563 -0.7185 0.7563c -0.2269,0.3971 -0.2269,0.7941 -0.2269 0.7941ZM 299.1681,585.4433 ZM 297.8067,585.6513 c 0.0000,-0.5861 0.3592,-1.1155 0.3592 -1.1155c 0.3592,-0.5294 0.9832,-0.9643 0.9832 -0.9643v -0.0756 c -0.3403,-0.2080 -0.5767,-0.5767 -0.5767 -0.5767c -0.2363,-0.3687 -0.2363,-0.9170 -0.2363 -0.9170c 0.0000,-0.5861 0.3214,-1.0210 0.3214 -1.0210c 0.3214,-0.4349 0.6807,-0.6807 0.6807 -0.6807v -0.0756 c -0.4538,-0.3782 -0.8225,-1.0116 -0.8225 -1.0116c -0.3687,-0.6334 -0.3687,-1.4653 -0.3687 -1.4653c 0.0000,-0.7563 0.2742,-1.3613 0.2742 -1.3613c 0.2742,-0.6050 0.7468,-1.0305 0.7468 -1.0305c 0.4727,-0.4254 1.1061,-0.6523 1.1061 -0.6523c 0.6334,-0.2269 1.3330,-0.2269 1.3330 -0.2269c 0.3782,0.0000 0.7090,0.0662 0.7090 0.0662c 0.3309,0.0662 0.5956,0.1607 0.5956 0.1607h 3.1954 v 1.1912 h -1.8908 c 0.3214,0.3214 0.5389,0.8130 0.5389 0.8130c 0.2174,0.4916 0.2174,1.0777 0.2174 1.0777c 0.0000,0.7374 -0.2647,1.3330 -0.2647 1.3330c -0.2647,0.5956 -0.7185,1.0021 -0.7185 1.0021c -0.4538,0.4065 -1.0683,0.6334 -1.0683 0.6334c -0.6145,0.2269 -1.3141,0.2269 -1.3141 0.2269c -0.3403,-0.0000 -0.6996,-0.0851 -0.6996 -0.0851c -0.3592,-0.0851 -0.6807,-0.2363 -0.6807 -0.2363c -0.2458,0.2080 -0.4160,0.4632 -0.4160 0.4632c -0.1702,0.2553 -0.1702,0.6334 -0.1702 0.6334c 0.0000,0.4349 0.3403,0.7185 0.3403 0.7185c 0.3403,0.2836 1.2857,0.2836 1.2857 0.2836h 1.7773 c 1.6071,0.0000 2.4107,0.5200 2.4107 0.5200c 0.8036,0.5200 0.8036,1.6733 0.8036 1.6733c 0.0000,0.6429 -0.3214,1.2195 -0.3214 1.2195c -0.3214,0.5767 -0.9265,1.0116 -0.9265 1.0116c -0.6050,0.4349 -1.4653,0.6901 -1.4653 0.6901c -0.8603,0.2553 -1.9380,0.2553 -1.9380 0.2553c -0.8508,-0.0000 -1.5504,-0.1607 -1.5504 -0.1607c -0.6996,-0.1607 -1.2006,-0.4821 -1.2006 -0.4821c -0.5011,-0.3214 -0.7752,-0.7752 -0.7752 -0.7752c -0.2742,-0.4538 -0.2742,-1.0588 -0.2742 -1.0588ZM 297.8067,585.6513 ZM 301.6071,579.9412 c 0.3971,0.0000 0.7468,-0.1513 0.7468 -0.1513c 0.3498,-0.1513 0.6239,-0.4349 0.6239 -0.4349c 0.2742,-0.2836 0.4254,-0.6901 0.4254 -0.6901c 0.1513,-0.4065 0.1513,-0.9170 0.1513 -0.9170c 0.0000,-1.0210 -0.5672,-1.5788 -0.5672 -1.5788c -0.5672,-0.5578 -1.3803,-0.5578 -1.3803 -0.5578c -0.8130,-0.0000 -1.3803,0.5578 -1.3803 0.5578c -0.5672,0.5578 -0.5672,1.5788 -0.5672 1.5788c 0.0000,0.5105 0.1513,0.9170 0.1513 0.9170c 0.1513,0.4065 0.4254,0.6901 0.4254 0.6901c 0.2742,0.2836 0.6239,0.4349 0.6239 0.4349c 0.3498,0.1513 0.7468,0.1513 0.7468 0.1513ZM 306.2206,583.8929 ZM 307.0903,579.3172 c 0.0000,-1.1345 0.3498,-2.0326 0.3498 -2.0326c 0.3498,-0.8981 0.9265,-1.5221 0.9265 -1.5221c 0.5767,-0.6239 1.3141,-0.9548 1.3141 -0.9548c 0.7374,-0.3309 1.5315,-0.3309 1.5315 -0.3309c 0.8697,0.0000 1.5599,0.3025 1.5599 0.3025c 0.6901,0.3025 1.1534,0.8697 1.1534 0.8697c 0.4632,0.5672 0.7090,1.3613 0.7090 1.3613c 0.2458,0.7941 0.2458,1.7773 0.2458 1.7773c 0.0000,0.5105 -0.0567,0.8508 -0.0567 0.8508h -6.2017 c 0.0945,1.4937 0.9170,2.3634 0.9170 2.3634c 0.8225,0.8697 2.1460,0.8697 2.1460 0.8697c 0.6618,0.0000 1.2195,-0.1985 1.2195 -0.1985c 0.5578,-0.1985 1.0683,-0.5200 1.0683 -0.5200l 0.5483,1.0210 c -0.6050,0.3782 -1.3424,0.6618 -1.3424 0.6618c -0.7374,0.2836 -1.6828,0.2836 -1.6828 0.2836c -0.9265,-0.0000 -1.7300,-0.3309 -1.7300 -0.3309c -0.8036,-0.3309 -1.3992,-0.9454 -1.3992 -0.9454c -0.5956,-0.6145 -0.9359,-1.5032 -0.9359 -1.5032c -0.3403,-0.8887 -0.3403,-2.0231 -0.3403 -2.0231ZM 307.0903,579.3172 ZM 313.5189,578.6176 c 0.0000,-1.4181 -0.5956,-2.1649 -0.5956 -2.1649c -0.5956,-0.7468 -1.6733,-0.7468 -1.6733 -0.7468c -0.4916,-0.0000 -0.9359,0.1985 -0.9359 0.1985c -0.4443,0.1985 -0.8036,0.5672 -0.8036 0.5672c -0.3592,0.3687 -0.5956,0.9076 -0.5956 0.9076c -0.2363,0.5389 -0.3120,1.2384 -0.3120 1.2384h 4.9160 ZM 315.5987,583.8929 ZM 316.3172,586.7668 c 1.0966,-1.8151 1.6355,-3.8855 1.6355 -3.8855c 0.5389,-2.0704 0.5389,-4.2447 0.5389 -4.2447c 0.0000,-2.1744 -0.5389,-4.2447 -0.5389 -4.2447c -0.5389,-2.0704 -1.6355,-3.8855 -1.6355 -3.8855l 0.9643,-0.4538 c 1.1723,1.9097 1.8340,3.9989 1.8340 3.9989c 0.6618,2.0893 0.6618,4.5851 0.6618 4.5851c 0.0000,2.4958 -0.6618,4.5945 -0.6618 4.5945c -0.6618,2.0987 -1.8340,3.9895 -1.8340 3.9895l -0.9643,-0.4538 h 0.0000 Z"+       id="path62" />+  </g>+  <path+     style="fill:#000000;stroke-width:1.5;stroke-dasharray:none"+     d="m 685.70864,559.69275 -0.2629,-17.90442"+     id="path63"+     sodipodi:nodetypes="cc" />+  <text+     xml:space="preserve"+     id="text63"+     style="white-space:pre;shape-inside:url(#rect63);display:inline;fill:#000000;stroke-width:1.5;stroke-dasharray:none" />+  <text+     xml:space="preserve"+     id="text64"+     style="white-space:pre;shape-inside:url(#rect64);display:inline;fill:#000000;stroke-width:1.5;stroke-dasharray:none"+     transform="translate(-8)"><tspan+       x="97.173828"+       y="124.05078"+       id="tspan3"><tspan+         style="font-weight:200;font-size:16px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans, Ultra-Light'"+         id="tspan1">202</tspan></tspan></text>+  <text+     xml:space="preserve"+     id="text64-1"+     style="white-space:pre;shape-inside:url(#rect64-3);display:inline;fill:#000000;stroke-width:1.5;stroke-dasharray:none"+     transform="translate(110.6543,0.82422)"><tspan+       x="97.173828"+       y="124.05078"+       id="tspan5"><tspan+         style="font-weight:200;font-size:16px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans, Ultra-Light'"+         id="tspan4">201</tspan></tspan></text>+  <text+     xml:space="preserve"+     id="text64-19"+     style="white-space:pre;shape-inside:url(#rect64-9);display:inline;fill:#000000;stroke-width:1.5;stroke-dasharray:none"+     transform="translate(234.85135,386.36411)"><tspan+       x="97.173828"+       y="124.05078"+       id="tspan7"><tspan+         style="font-weight:200;font-size:16px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans, Ultra-Light'"+         id="tspan6">4</tspan></tspan></text>+  <text+     xml:space="preserve"+     id="text64-19-0"+     style="white-space:pre;shape-inside:url(#rect64-9-4);display:inline;fill:#000000;stroke-width:1.5;stroke-dasharray:none"+     transform="translate(343.13137,291.83431)"><tspan+       x="97.173828"+       y="124.05078"+       id="tspan9"><tspan+         style="font-weight:200;font-size:16px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans, Ultra-Light'"+         id="tspan8">51</tspan></tspan></text>+  <text+     xml:space="preserve"+     id="text64-19-3"+     style="white-space:pre;shape-inside:url(#rect64-9-0);display:inline;fill:#000000;stroke-width:1.5;stroke-dasharray:none"+     transform="translate(457.7129,375.35395)"><tspan+       x="97.173828"+       y="124.05078"+       id="tspan11"><tspan+         style="font-weight:200;font-size:16px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans, Ultra-Light'"+         id="tspan10">11</tspan></tspan></text>+  <text+     xml:space="preserve"+     id="text64-19-5"+     style="white-space:pre;shape-inside:url(#rect64-9-1);display:inline;fill:#000000;stroke-width:1.5;stroke-dasharray:none"+     transform="translate(581.71018,396.63451)"><tspan+       x="97.173828"+       y="124.05078"+       id="tspan13"><tspan+         style="font-weight:200;font-size:16px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans, Ultra-Light'"+         id="tspan12">1</tspan></tspan></text>+  <text+     xml:space="preserve"+     style="font-style:normal;font-variant:normal;font-weight:200;font-stretch:normal;font-size:16px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans, Ultra-Light';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;fill:#f9f9f9;stroke:#e6e6e6;stroke-width:1.5;stroke-dasharray:none;stroke-opacity:1"+     x="884.7276"+     y="377.01364"+     id="text67"><tspan+       sodipodi:role="line"+       id="tspan67"+       x="884.7276"+       y="377.01364">`1</tspan></text>+</svg>
+ assets/images/mc_confused.png view

binary file changed (absent → 527880 bytes)

+ assets/images/mc_doors.png view

binary file changed (absent → 482139 bytes)

+ data/WonkyComparator/deck_shuffle_errors_comparison_wonky.txt view
@@ -0,0 +1,14 @@+Average card displacement over 1000 runs for each algorithm on lists of+56 cards (integers) with a card comparator that gives a random result 10% of+the time+==========================================================+Mergesort Errors:             202+Quicksort Errors:             201+Bubblesort Errors:            4+TensortBL Errors:             51+RobustsortP Errors:           15+RobustsortB Errors:           11+RobustsortM Errors:           1+RobustsortRP Errors:          13+RobustsortRB Errors:          8+RobustsortRM Errors:          2
+ data/WonkyComparator/large_comparison_wonky.txt view
@@ -0,0 +1,149 @@+Single run time elapsed and average element displacement+over 100 runs for each algorithm on lists of integers of+length n with an element comparator that gives a random+result 10% of the time+==========================================================+ Algorithm    | Time            | Score    | n = 8+ Mergesort    | 0.000031449s    | 3        | + Quicksort    | 0.000010409s    | 3        | + Bubblesort   | 0.000031339s    | 0        | + TensortBL    | 0.000033613s    | 1        | + RobustsortP  | 0.000045666s    | 0        | + RobustsortB  | 0.000033643s    | 0        | + RobustsortM  | 0.000041718s    | 0        | + RobustsortRP | 0.000088796s    | 0        | + RobustsortRB | 0.000075191s    | 0        | + RobustsortRM | 0.000086171s    | 0        | +----------------------------------------------------------+ Algorithm    | Time            | Score    | n = 16+ Mergesort    | 0.000013054s    | 14       | + Quicksort    | 0.000009417s    | 15       | + Bubblesort   | 0.000059402s    | 1        | + TensortBL    | 0.000055594s    | 6        | + RobustsortP  | 0.000089748s    | 1        | + RobustsortB  | 0.00008043s     | 0        | + RobustsortM  | 0.000100989s    | 0        | + RobustsortRP | 0.000203711s    | 0        | + RobustsortRB | 0.000197609s    | 0        | + RobustsortRM | 0.000211665s    | 0        | +----------------------------------------------------------+ Algorithm    | Time            | Score    | n = 32+ Mergesort    | 0.000025838s    | 64       | + Quicksort    | 0.000018825s    | 69       | + Bubblesort   | 0.000354664s    | 2        | + TensortBL    | 0.000142116s    | 20       | + RobustsortP  | 0.000220602s    | 4        | + RobustsortB  | 0.00019793s     | 3        | + RobustsortM  | 0.000254476s    | 0        | + RobustsortRP | 0.0005989s      | 4        | + RobustsortRB | 0.000600803s    | 3        | + RobustsortRM | 0.000646549s    | 0        | +----------------------------------------------------------+ Algorithm    | Time            | Score    | n = 64+ Mergesort    | 0.000055654s    | 265      | + Quicksort    | 0.000041277s    | 300      | + Bubblesort   | 0.002297067s    | 4        | + TensortBL    | 0.000456134s    | 59       | + RobustsortP  | 0.000551952s    | 19       | + RobustsortB  | 0.000516175s    | 13       | + RobustsortM  | 0.000666727s    | 4        | + RobustsortRP | 0.002157896s    | 16       | + RobustsortRB | 0.002016001s    | 13       | + RobustsortRM | 0.002166592s    | 2        | +----------------------------------------------------------+ Algorithm    | Time            | Score    | n = 128+ Mergesort    | 0.000121037s    | 1130     | + Quicksort    | 0.000091542s    | 1053     | + Bubblesort   | 0.016473453s    | 11       | + TensortBL    | 0.001020198s    | 247      | + RobustsortP  | 0.001257431s    | 95       | + RobustsortB  | 0.001325068s    | 51       | + RobustsortM  | 0.001560928s    | 17       | + RobustsortRP | 0.005066665s    | 68       | + RobustsortRB | 0.005192839s    | 47       | + RobustsortRM | 0.00518222s     | 19       | +----------------------------------------------------------+ Algorithm    | Time            | Score    | n = 256+ Mergesort    | 0.000270485s    | 4666     | + Quicksort    | 0.000194895s    | 4112     | + Bubblesort   | 0.125792888s    | 28       | + TensortBL    | 0.003069248s    | 792      | + RobustsortP  | 0.003116046s    | 317      | + RobustsortB  | 0.003281486s    | 241      | + RobustsortM  | 0.003792913s    | 61       | + RobustsortRP | 0.012978649s    | 258      | + RobustsortRB | 0.013403694s    | 155      | + RobustsortRM | 0.013466592s    | 53       | +----------------------------------------------------------+ Algorithm    | Time            | Score    | n = 512+ Mergesort    | 0.000590213s    | 19355    | + Quicksort    | 0.000441095s    | 15842    | + Bubblesort   | 1.107719339s    | 79       | + TensortBL    | 0.008450123s    | 2582     | + RobustsortP  | 0.006841444s    | 1363     | + RobustsortB  | 0.007447098s    | 865      | + RobustsortM  | 0.008897289s    | 193      | + RobustsortRP | 0.035905499s    | 1138     | + RobustsortRB | 0.037010417s    | 876      | + RobustsortRM | 0.039570233s    | 160      | +----------------------------------------------------------+ Algorithm    | Time            | Score    | n = 1024+ Mergesort    | 0.001287126s    | 77637    | + Quicksort    | 0.001012112s    | 64753    | + Bubblesort   | 8.83146598s     | 212      | + TensortBL    | 0.020115045s    | 10193    | + RobustsortP  | 0.014715055s    | 5788     | + RobustsortB  | 0.016441053s    | 3976     | + RobustsortM  | 0.019110225s    | 806      | + RobustsortRP | 0.090961052s    | 4484     | + RobustsortRB | 0.091372881s    | 3163     | + RobustsortRM | 0.096884486s    | 558      | +----------------------------------------------------------+ Algorithm    | Time            | Score    | n = 2048+ Mergesort    | 0.002706653s    | 319199   | + Quicksort    | 0.002206037s    | 269252   | + Bubblesort   | 67.229769894s   | 707      | + TensortBL    | 0.056649886s    | 34223    | + RobustsortP  | 0.036861441s    | 21177    | + RobustsortB  | 0.038692015s    | 18025    | + RobustsortM  | 0.046679795s    | 3255     | + RobustsortRP | 0.229615609s    | 15254    | + RobustsortRB | 0.22648706s     | 10147    | + RobustsortRM | 0.249211013s    | 1824     | +----------------------------------------------------------+ Note: after this point Bubblesort is omitted from the + results due to its long run time+----------------------------------------------------------+ Algorithm    | Time            | Score    | n = 4096+ Mergesort    | 0.006077793s    | 1277538  | + Quicksort    | 0.005398393s    | 1047130  | + TensortBL    | 0.159859188s    | 123560   | + RobustsortP  | 0.084122461s    | 87496    | + RobustsortB  | 0.087930914s    | 68214    | + RobustsortM  | 0.105430827s    | 12660    | + RobustsortRP | 0.535468964s    | 66074    | + RobustsortRB | 0.567415965s    | 46761    | + RobustsortRM | 0.616807445s    | 5922     | +----------------------------------------------------------+ Algorithm    | Time            | Score    | n = 8192+ Mergesort    | 0.013603697s    | 5115761  | + Quicksort    | 0.012066814s    | 4335394  | + TensortBL    | 0.484234314s    | 457669   | + RobustsortP  | 0.215196709s    | 359897   | + RobustsortB  | 0.224570539s    | 276027   | + RobustsortM  | 0.261256298s    | 52303    | + RobustsortRP | 1.412261999s    | 286303   | + RobustsortRB | 1.460227814s    | 196659   | + RobustsortRM | 1.570891199s    | 25736    | +----------------------------------------------------------+ Algorithm    | Time            | Score    | n = 16384+ Mergesort    | 0.030196538s    | 20533658 | + Quicksort    | 0.029216759s    | 17064001 | + TensortBL    | 1.012220358s    | 1812368  | + RobustsortP  | 0.563116432s    | 1427610  | + RobustsortB  | 0.589861936s    | 1090989  | + RobustsortM  | 0.664186576s    | 200300   | + RobustsortRP | 2.804235108s    | 1144749  | + RobustsortRB | 2.927166582s    | 782040   | + RobustsortRM | 3.036211048s    | 105231   | +----------------------------------------------------------
+ data/WonkyStuckComparator/deck_shuffle_errors_comparison_wonky_stuck.txt view
@@ -0,0 +1,14 @@+Average card displacement over 1000 runs for each algorithm on lists of+56 cards (integers) with a card comparator that gives a random result 10% of+the time and repeats its previous answer 50% of the time+==========================================================+Mergesort Errors:             747+Quicksort Errors:             601+Bubblesort Errors:            97+TensortBL Errors:             451+RobustsortP Errors:           479+RobustsortB Errors:           391+RobustsortM Errors:           311+RobustsortRP Errors:          436+RobustsortRB Errors:          320+RobustsortRM Errors:          292
+ data/WonkyStuckComparator/large_comparison_stuck_wonky.txt view
@@ -0,0 +1,163 @@+Single run time elapsed and average element displacement+over 100 runs for each algorithm on lists of integers of+length n with an element comparator that gives both a +random result 10% of the time and repeats the previous+result 50% of the time.+==========================================================+ Algorithm    | Time            | Score    | n = 8++ Mergesort    | 0.000032251s    | 14       | + Quicksort    | 0.000010649s    | 12       | + Bubblesort   | 0.000034906s    | 6        | + TensortBL    | 0.000032702s    | 10       | + RobustsortP  | 0.000049584s    | 8        | + RobustsortB  | 0.000051066s    | 6        | + RobustsortM  | 0.000050816s    | 5        | + RobustsortRP | 0.00010599s     | 8        | + RobustsortRB | 0.000092084s    | 6        | + RobustsortRM | 0.000119836s    | 6        | +----------------------------------------------------------+ Algorithm    | Time            | Score    | n = 16++ Mergesort    | 0.000012613s    | 60       | + Quicksort    | 0.000010099s    | 47       | + Bubblesort   | 0.00006388s     | 18       | + TensortBL    | 0.000054552s    | 54       | + RobustsortP  | 0.000112221s    | 41       | + RobustsortB  | 0.000160473s    | 31       | + RobustsortM  | 0.000177856s    | 29       | + RobustsortRP | 0.000210056s    | 43       | + RobustsortRB | 0.000183516s    | 31       | + RobustsortRM | 0.000313051s    | 28       | +----------------------------------------------------------+ Algorithm    | Time            | Score    | n = 32++ Mergesort    | 0.000025257s    | 240      | + Quicksort    | 0.000021651s    | 201      | + Bubblesort   | 0.000369287s    | 41       | + TensortBL    | 0.000168798s    | 195      | + RobustsortP  | 0.000276081s    | 142      | + RobustsortB  | 0.000330023s    | 117      | + RobustsortM  | 0.000390306s    | 96       | + RobustsortRP | 0.000711242s    | 146      | + RobustsortRB | 0.000704069s    | 105      | + RobustsortRM | 0.00082642s     | 99       | +----------------------------------------------------------+ Algorithm    | Time            | Score    | n = 64++ Mergesort    | 0.000057719s    | 971      | + Quicksort    | 0.000045095s    | 808      | + Bubblesort   | 0.002554923s    | 117      | + TensortBL    | 0.000426495s    | 571      | + RobustsortP  | 0.00061976s     | 654      | + RobustsortB  | 0.000808996s    | 506      | + RobustsortM  | 0.001188904s    | 420      | + RobustsortRP | 0.002313266s    | 576      | + RobustsortRB | 0.002420409s    | 420      | + RobustsortRM | 0.002693795s    | 362      | +----------------------------------------------------------+ Algorithm    | Time            | Score    | n = 128++ Mergesort    | 0.000138482s    | 4062     | + Quicksort    | 0.000101882s    | 3228     | + Bubblesort   | 0.018920403s    | 369      | + TensortBL    | 0.001005007s    | 2207     | + RobustsortP  | 0.001521762s    | 2818     | + RobustsortB  | 0.001873687s    | 2305     | + RobustsortM  | 0.002396353s    | 1808     | + RobustsortRP | 0.005501404s    | 2391     | + RobustsortRB | 0.005889857s    | 1720     | + RobustsortRM | 0.006245249s    | 1420     | +----------------------------------------------------------+ Algorithm    | Time            | Score    | n = 256++ Mergesort    | 0.000262726s    | 16098    | + Quicksort    | 0.00022796s     | 12875    | + Bubblesort   | 0.140008324s    | 1294     | + TensortBL    | 0.003059445s    | 9378     | + RobustsortP  | 0.003879824s    | 10793    | + RobustsortB  | 0.004592999s    | 8992     | + RobustsortM  | 0.006356689s    | 7220     | + RobustsortRP | 0.01350889s     | 10893    | + RobustsortRB | 0.015709562s    | 7740     | + RobustsortRM | 0.017035926s    | 6305     | +----------------------------------------------------------+ Algorithm    | Time            | Score    | n = 512++ Mergesort    | 0.00061964s     | 65457    | + Quicksort    | 0.000459388s    | 51708    | + Bubblesort   | 1.470609003s    | 5380     | + TensortBL    | 0.008260523s    | 32057    | + RobustsortP  | 0.008339361s    | 44974    | + RobustsortB  | 0.010348875s    | 36285    | + RobustsortM  | 0.015314012s    | 28404    | + RobustsortRP | 0.038752864s    | 41821    | + RobustsortRB | 0.042059256s    | 31896    | + RobustsortRM | 0.052783839s    | 22845    | +----------------------------------------------------------+ Algorithm    | Time            | Score    | n = 1024++ Mergesort    | 0.001331684s    | 264525   | + Quicksort    | 0.001033171s    | 208115   | + Bubblesort   | 13.452793768s   | 21047    | + TensortBL    | 0.019672577s    | 116840   | + RobustsortP  | 0.017528235s    | 192327   | + RobustsortB  | 0.022825438s    | 158334   | + RobustsortM  | 0.031631765s    | 122512   | + RobustsortRP | 0.093026058s    | 162688   | + RobustsortRB | 0.10967526s     | 126694   | + RobustsortRM | 0.131919203s    | 90300    | +----------------------------------------------------------+ Algorithm    | Time            | Score    | n = 2048++ Mergesort    | 0.002660556s    | 1062535  | + Quicksort    | 0.002462854s    | 840206   | + Bubblesort   | 134.773207064s  | 87977    | + TensortBL    | 0.055963595s    | 425961   | + RobustsortP  | 0.042348373s    | 731536   | + RobustsortB  | 0.054674704s    | 607912   | + RobustsortM  | 0.082333458s    | 479960   | + RobustsortRP | 0.237273315s    | 626142   | + RobustsortRB | 0.274846319s    | 491091   | + RobustsortRM | 0.346625435s    | 333622   | ++----------------------------------------------------------+ Note: after this point Bubblesort is omitted from the + results due to its long run time+----------------------------------------------------------+ Algorithm    | Time            | Score    | n = 4096++ Mergesort    | 0.005942043s    | 4247423  | + Quicksort    | 0.005394119s    | 3319827  | + TensortBL    | 0.153502134s    | 1577063  | + RobustsortP  | 0.09774953s     | 3153973  | + RobustsortB  | 0.119230294s    | 2552633  | + RobustsortM  | 0.173643397s    | 1994121  | + RobustsortRP | 0.586039226s    | 2687189  | + RobustsortRB | 0.692494727s    | 2143171  | + RobustsortRM | 0.880613715s    | 1314278  | +----------------------------------------------------------+ Algorithm    | Time            | Score    | n = 8192++ Mergesort    | 0.013548986s    | 17041462 | + Quicksort    | 0.013005352s    | 13394776 | + TensortBL    | 0.463169809s    | 5988182  | + RobustsortP  | 0.245367061s    | 12007383 | + RobustsortB  | 0.302308762s    | 9898434  | + RobustsortM  | 0.4208429s      | 7951725  | + RobustsortRP | 1.531550402s    | 10110706 | + RobustsortRB | 1.789757822s    | 7809793  | + RobustsortRM | 2.201473668s    | 5181672  | +----------------------------------------------------------+ Algorithm    | Time            | Score    | n = 16384++ Mergesort    | 0.031012492s    | 68160357 | + Quicksort    | 0.029349454s    | 53301096 | + TensortBL    | 0.985868398s    | 25078288 | + RobustsortP  | 0.615555374s    | 50410789 | + RobustsortB  | 0.74278552s     | 40235803 | + RobustsortM  | 1.007819879s    | 31488449 | + RobustsortRP | 3.144343233s    | 42121317 | + RobustsortRB | 3.549654025s    | 31376518 | + RobustsortRM | 4.252823697s    | 20608983 | +----------------------------------------------------------
src/Data/Tensort/Utils/Compose.hs view
@@ -1,5 +1,8 @@ -- | Module for creating Tensors from Bytes and Tensors --+--   Functions ending in "B" are for sorting Bits in a base (non-recursive)+--   Tensort variant+-- --   Functions ending in "R" are for sorting Records when used in a recursive --   Tensort variant --@@ -55,12 +58,12 @@ -- STensorsBit [([(0,3),(1,7)],ByteMem [[1,3],[5,7]]),([(0,4),(1,8)],ByteMem [[2,4],[6,8]])] createInitialTensors :: TensortProps -> SBytes -> STensors createInitialTensors tsProps (SBytesBit bytes) =-  STensorsBit (createInitialTensorsBits tsProps bytes)+  STensorsBit (createInitialTensorsB tsProps bytes) createInitialTensors tsProps (SBytesRec recs) =-  STensorsRec (createInitialTensorsRecs tsProps recs)+  STensorsRec (createInitialTensorsR tsProps recs) -createInitialTensorsBits :: TensortProps -> [Byte] -> [Tensor]-createInitialTensorsBits tsProps bytes =+createInitialTensorsB :: TensortProps -> [Byte] -> [Tensor]+createInitialTensorsB tsProps bytes =   foldr acc [] (splitEvery (bytesize tsProps) bytes)   where     acc :: [Byte] -> [Tensor] -> [Tensor]@@ -70,8 +73,8 @@                (getTensorFromBytes (subAlgorithm tsProps) (SBytesBit byte))            ] -createInitialTensorsRecs :: TensortProps -> [ByteR] -> [TensorR]-createInitialTensorsRecs tsProps bytesR =+createInitialTensorsR :: TensortProps -> [ByteR] -> [TensorR]+createInitialTensorsR tsProps bytesR =   foldr acc [] (splitEvery (bytesize tsProps) bytesR)   where     acc :: [ByteR] -> [TensorR] -> [TensorR]@@ -252,12 +255,6 @@ -- SBitBit 38 getTopBitFromTensorStack :: STensor -> SBit getTopBitFromTensorStack (STensorBit tensor) =-  getTopBitFromTensorStackB tensor+  SBitBit (snd (last (fst tensor))) getTopBitFromTensorStack (STensorRec tensorR) =-  getTopBitFromTensorStackR tensorR--getTopBitFromTensorStackB :: Tensor -> SBit-getTopBitFromTensorStackB (register, _) = SBitBit (snd (last register))--getTopBitFromTensorStackR :: TensorR -> SBit-getTopBitFromTensorStackR (registerR, _) = SBitRec (snd (last registerR))+  SBitRec (snd (last (fst tensorR)))
src/Data/Tensort/Utils/Reduce.hs view
@@ -1,6 +1,9 @@ -- | This module provides functions to reduce a list of TensorStacks into a --   more compact list of TensorStacks --+--   Functions ending in "B" are for sorting Bits in a base (non-recursive)+--   Tensort variant+-- --   Functions ending in "R" are for sorting Records when used in a recursive --   Tensort variant --
src/Data/Tensort/Utils/Render.hs view
@@ -1,5 +1,8 @@ -- | Module for rendering a sorted list of Bits from a list of TensorStacks --+--   Functions ending in "B" are for sorting Bits in a base (non-recursive)+--   Tensort variant+-- --   Functions ending in "R" are for sorting Records when used in a recursive --   Tensort variant --@@ -49,7 +52,7 @@   where     acc :: TensorStack -> [SBit] -> [SBit]     acc tensor sortedBits = do-      let (nextBit, tensor') = removeTopBitFromTensor subAlg tensor+      let (nextBit, tensor') = removeTopBitFromTensorB subAlg tensor       let nextBit' = SBitBit nextBit       if isNothing tensor'         then nextBit' : sortedBits@@ -75,13 +78,13 @@  -- | ==== __Examples__ --   >>> import Data.Tensort.Subalgorithms.Bubblesort (bubblesort)---   >>> removeTopBitFromTensor bubblesort ([(0,5),(1,7)],ByteMem [[1,5],[3,7]])+--   >>> removeTopBitFromTensorB bubblesort ([(0,5),(1,7)],ByteMem [[1,5],[3,7]]) --   (7,Just ([(1,3),(0,5)],ByteMem [[1,5],[3]]))-removeTopBitFromTensor :: SortAlg -> Tensor -> (Bit, Maybe Tensor)-removeTopBitFromTensor subAlg (register, memory) = do+removeTopBitFromTensorB :: SortAlg -> Tensor -> (Bit, Maybe Tensor)+removeTopBitFromTensorB subAlg (register, memory) = do   let topRecord = last register   let topAddress = fst topRecord-  let (topBit, memory') = removeBitFromMemory subAlg memory topAddress+  let (topBit, memory') = removeBitFromMemoryB subAlg memory topAddress   if isNothing memory'     then (topBit, Nothing)     else@@ -113,8 +116,8 @@           )       ) -removeBitFromMemory :: SortAlg -> Memory -> Int -> (Bit, Maybe Memory)-removeBitFromMemory subAlg (ByteMem bytes) i = do+removeBitFromMemoryB :: SortAlg -> Memory -> Int -> (Bit, Maybe Memory)+removeBitFromMemoryB subAlg (ByteMem bytes) i = do   let topByte = bytes !! i   let topBit = last topByte   let topByte' = init topByte@@ -131,9 +134,9 @@       let topByte'' = fromSortBit (subAlg (SortBit topByte'))       let bytes' = take i bytes ++ [topByte''] ++ drop (i + 1) bytes       (topBit, Just (ByteMem bytes'))-removeBitFromMemory subAlg (TensorMem tensors) i = do+removeBitFromMemoryB subAlg (TensorMem tensors) i = do   let topTensor = tensors !! i-  let (topBit, topTensor') = removeTopBitFromTensor subAlg topTensor+  let (topBit, topTensor') = removeTopBitFromTensorB subAlg topTensor   if isNothing topTensor'     then do       let tensors' = take i tensors ++ drop (i + 1) tensors
tensort.cabal view
@@ -20,7 +20,7 @@ -- PVP summary:     +-+------- breaking API changes --                  | | +----- non-breaking API additions --                  | | | +--- code changes with no API change-version:            1.0.1.1+version:            1.0.1.2  tested-with:        GHC==9.8.2,                      GHC==9.6.4, @@ -77,10 +77,13 @@  -- Extra doc files to be distributed with the package, such as a CHANGELOG or a README. extra-doc-files:    README.md,-                    CHANGELOG.md+                    CHANGELOG.md,  -- Extra source files to be distributed with the package, such as examples, or a tutorial module.--- extra-source-files:+extra-source-files: assets/images/*.png,+                    assets/images/*.svg,+                    data/WonkyComparator/*.txt,+                    data/WonkyStuckComparator/*.txt,  source-repository head     type:           git