changeset 44:b796a4f4c332

add somefiles
author Masataka Kohagura <kohagura@cr.ie.u-ryukyu.ac.jp>
date Fri, 27 Nov 2015 11:59:04 +0900
parents 123b1f3a0833
children 37ae3e675c32
files 2015/1124.html 2015/1127.html 2015/images/omni/subsetConstraction.graffle 2015/images/vector/CharClassTree0.pdf 2015/images/vector/CharClassTree0.svg 2015/images/vector/CharClassTree1.pdf 2015/images/vector/CharClassTree1.svg 2015/images/vector/CharClassTreeMerge.pdf 2015/images/vector/CharClassTreeMerge.svg
diffstat 9 files changed, 2095 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/2015/1124.html	Fri Nov 27 11:59:04 2015 +0900
@@ -0,0 +1,291 @@
+<!DOCTYPE html>
+<html>
+<head>
+  <meta http-equiv="content-type" content="text/html;charset=utf-8"> 
+  <title>seminar</title>
+
+<!-- 
+   Notes on CSS media types used:
+ 
+   1) projection -> slideshow mode (display one slide at-a-time; hide all others)
+   2) screen     -> outline mode (display all slides-at-once on screen) 
+   3) print      -> print (and print preview)
+  
+   Note: toggle between projection/screen (that is, slideshow/outline) mode using t-key
+
+   Questions, comments?
+   - send them along to the mailinglist/forum online @ http://groups.google.com/group/webslideshow    
+-->
+
+<!-- styles  -->
+<style media="screen,projection">
+
+html,
+body,
+.presentation { margin: 0; padding: 0; }
+
+.slide { display: none;
+         position: absolute;
+         top: 0; left: 0; 
+         margin: 0;
+         border: none;
+         padding: 2% 4% 0% 4%;         /* css note: order is => top right bottom left  */
+         -moz-box-sizing: border-box;
+         -webkit-box-sizing: border-box;
+         box-sizing: border-box;
+         width: 100%; height: 100%;    /* css note: lets use border-box; no need to add padding+border to get to 100% */
+         overflow-x: hidden; overflow-y: auto;
+         z-index: 2;
+       }
+
+.slide.current { display: block; }  /* only display current slide in projection mode */
+
+.slide .stepcurrent { color: black; }
+.slide .step        { color: silver; } /* or hide next steps e.g. .step { visibility: hidden; } */
+
+.slide {
+/*
+  background-image: -webkit-linear-gradient(top, blue, aqua, blue, aqua);
+  background-image: -moz-linear-gradient(top, blue, aqua, blue, aqua);
+*/
+}
+</style>
+
+<style media="screen">
+.slide             { border-top: 1px solid #888; }
+.slide:first-child { border: none;  }
+</style>
+
+<style media="print">
+.slide    { page-break-inside: avoid; }
+.slide h1 { page-break-after:  avoid; }
+.slide ul { page-break-inside: avoid; }
+</style>
+
+
+<!-- add js lib (jquery) -->
+<script src="js/jquery-1.7.min.js"></script>
+
+<!-- S6 JS -->
+<script src="js/jquery.slideshow.js"></script>
+<script src="js/jquery.slideshow.counter.js"></script>
+<script src="js/jquery.slideshow.controls.js"></script>
+<script>
+  $(document).ready( function() {
+    Slideshow.init();
+    
+    // Example 2: Start Off in Outline Mode
+    // Slideshow.init( { mode: 'outline' } );
+    
+    // Example 3: Use Custom Transition
+    // Slideshow.transition = transitionScrollUp;
+    // Slideshow.init();
+
+    // Example 4: Start Off in Autoplay Mode with Custom Transition
+    // Slideshow.transition = transitionScrollUp;
+    // Slideshow.init( { mode: 'autoplay' } );
+  } );
+</script>
+
+</head>
+<body>
+
+<div class="presentation">
+
+  <div class='slide cover'>
+  <table width="90%" height="90%" border="0" align="center">
+  <tr>
+  <td><div align="center">
+      <h1>Cerium 上での正規表現の実装</h1>
+      </div>
+  </td>
+  </tr>
+      <tr>
+      <td><div align="right">
+          <name>Masataka Kohagura 4th, August , 2015</name>
+      </div></td>
+      </tr>
+  </tr>
+  </table>
+  </div>
+
+  <div id="cover">
+    <h1>研究目的</h1>
+    正規表現はオートマトンに変換することができ、 そしてオートマトンの受理の問題は Class NC と呼ばれる問題でもある。<br>
+    この問題は計算機の台数が多ければ多いほど高速化できるという特徴を持ち、並列化に向いている問題といえる。<br>
+    コンピュータの動作やゲームの動作などの多くの問題はオートマトンの受理問題に落としこむことができるので、この問題を解決すれば様々な問題に対応できるようになる。<br>
+    本研究では正規表現を並列処理で実装することによってこの問題を解決し、Class NC問題 に対応するライブラリを作成する。
+        </ul>
+  </div>
+
+  <div id="cover">
+    <h1>今日までにしたこと</h1>
+    <ul>
+      <li>とりあえず動くところまではプログラムを直した(若干バグが)</li>
+    </ul>
+    <p></p>
+  </div>
+
+  <div id="cover">
+    <h1>現在していること</h1>
+    <p>正規表現の parser tree から subset constraction に変換するプログラムを書いている途中</p>
+    <ul>
+      <li>Parser Tree のノードに word や CharClass を挿れる(今は一文字のみ)</li>
+    </ul>
+    <p>CharClass を Binary Tree で表現する</p>
+    <ul>
+      <li>正規表現の Parser Tree のノードに Character Class (例 : [a-z])が含まれている場合、Character Class を二分木で表現する</li>
+    </ul>
+    <object data="images/vector/CharClassTree0.svg" type="image/svg+xml" style="width:50%"></object><br>
+  </div>
+
+  <div id="cover">
+    <h1>Character Class が正規表現内に複数含まれる場合</h1>
+    <p>複数の Character Class の範囲が重複する場合</p>
+    <ul>
+      <li>Character Class Tree を Merge する</li>
+    </ul>
+    </ul>
+    <object data="images/vector/CharClassTree1.svg" type="image/svg+xml" style="width:50%"></object><br>
+    <object data="images/vector/CharClassTreeMerge.svg" type="image/svg+xml" style="width:50%"></object><br>
+  </div>
+
+<!--
+  <div id="cover">
+    <h1>正規表現で生成された二分木を表示</h1>
+    <pre>
+    <code>
+% ./regexParser -regex "test"
+
+            t
+        +
+            s
+    +
+        e
+ +
+    t
+
+% ./regexParser -regex "a*bc"
+
+        c
+    +
+        b
+ +
+    *
+        a
+    </code>
+    </pre>
+  </div>
+  -->
+
+
+<!--
+  <div id="cover">
+    <h1>問題点</h1>
+    <p>正規表現 a*b の tree 構造(本当はこうなってほしい)</p>
+
+    <object data="images/vector/aastabtrue.svg" type="image/svg+xml"></object><br>
+    <p>正規表現 a*b の tree 構造(現状)</p>
+    <object data="images/vector/aastabfalse.svg" type="image/svg+xml"></object><br>
+  </div>
+-->
+
+  <div id="cover">
+    <h1>どのようなリスト構造か</h1>
+    <pre>
+    <code>
+typedef struct bitVector {
+    int arrayNum;
+    unsigned long *bitContainer;
+}BitVector,*BitVectorPtr;
+
+typedef struct bitVectorList {
+    bitVectorList *self;
+    BitVectorPtr bi;
+    bitVectorList* initBvl;
+    bitVectorList* next[256];
+}BitVectorList, *BitVectorListPtr;
+    </code>
+    </pre>
+    <ul>
+      <li>BitVectorPtr-&gt;bitContainer に状態を格納する。 </li>
+      <li>BitVectorListPtr-&gt;next[c] は 'c' という文字が入力されたときの BitVectorListPtr の遷移先(アドレス)を格納している </li>
+      <li> </li>
+    </ul>
+    <img src="./images/sqrWave.png" width="50%" height="">
+  </div>
+
+<!--
+  <div id="cover">
+    <pre>
+    <code>
+NodePtr string() {
+    char c = *ptr;
+    NodePtr n = NULL;
+    if (isLiteral(c)) {
+        n = createNode(0,literal(),string());
+    } else {
+        n = createNode(0,0,0);
+    }
+    return n;
+}
+    </code>
+    </pre>
+    <p>string なのか literal なのか判断しないで createNode をしてる</p>
+  </div>
+-->
+
+
+<!--
+  <div id="cover">
+    <h1>今週のしたこと</h1>
+    例題 : ab(ab)+
+        <ul>
+            <object data="images/vector/abab.svg" type="image/svg+xml"></object><br>
+        </ul>
+        テキストが abab の途中で分割される場合を考える
+        <ul>
+            <object data="images/vector/ababautomata.svg" type="image/svg+xml"></object><br>
+        </ul>
+        分割されたファイルの1コ前の終わりが状態(3)の場合で、分割されたファイルの先頭が b の場合状態(4)に遷移して受理される。(正規表現にマッチする)
+        <ul>
+            <object data="images/vector/ababtable.svg" type="image/svg+xml"></object><br>
+        </ul>
+        <ul>
+            <object data="images/vector/bitvectorTable.svg" type="image/svg+xml"></object><br>
+        </ul>
+  </div>
+-->
+
+<!--
+  <div id="cover">
+    <h1>prog</h1>
+    <ul>
+    <li>
+
+    </li>
+
+    <pre>
+    <code>
+typedef struct SDL_AudioSpec {
+    int freq;          /** DSP frequency samples per second */
+    Uint16 format;     /** Audio data format */
+    Uint8  channels;   /** Number of channels: 1 mono, 2 stereo */
+    Uint8  silence;    /** Audio buffer silence value (calculated) */
+    Uint16 samples;    /** Audio buffer size in samples (power of 2) */
+    Uint16 padding;    /** Necessary for some compile environments */
+    Uint32 size;       /** Audio buffer size in bytes (calculated) */
+    void (SDLCALL *callback)(void *userdata, Uint8 *stream, int len);
+    void  *userdata;
+} SDL_AudioSpec;
+    </code>
+    </pre>
+    <img src="./images/sqrWave.png" width="50%" height="">
+    </ul>
+  </div>
+
+-->
+
+</div> <!-- presentation -->
+</body>
+</html>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/2015/1127.html	Fri Nov 27 11:59:04 2015 +0900
@@ -0,0 +1,280 @@
+<!DOCTYPE html>
+<html>
+<head>
+  <meta http-equiv="content-type" content="text/html;charset=utf-8"> 
+  <title>seminar</title>
+
+<!-- 
+   Notes on CSS media types used:
+ 
+   1) projection -> slideshow mode (display one slide at-a-time; hide all others)
+   2) screen     -> outline mode (display all slides-at-once on screen) 
+   3) print      -> print (and print preview)
+  
+   Note: toggle between projection/screen (that is, slideshow/outline) mode using t-key
+
+   Questions, comments?
+   - send them along to the mailinglist/forum online @ http://groups.google.com/group/webslideshow    
+-->
+
+<!-- styles  -->
+<style media="screen,projection">
+
+html,
+body,
+.presentation { margin: 0; padding: 0; }
+
+.slide { display: none;
+         position: absolute;
+         top: 0; left: 0; 
+         margin: 0;
+         border: none;
+         padding: 2% 4% 0% 4%;         /* css note: order is => top right bottom left  */
+         -moz-box-sizing: border-box;
+         -webkit-box-sizing: border-box;
+         box-sizing: border-box;
+         width: 100%; height: 100%;    /* css note: lets use border-box; no need to add padding+border to get to 100% */
+         overflow-x: hidden; overflow-y: auto;
+         z-index: 2;
+       }
+
+.slide.current { display: block; }  /* only display current slide in projection mode */
+
+.slide .stepcurrent { color: black; }
+.slide .step        { color: silver; } /* or hide next steps e.g. .step { visibility: hidden; } */
+
+.slide {
+/*
+  background-image: -webkit-linear-gradient(top, blue, aqua, blue, aqua);
+  background-image: -moz-linear-gradient(top, blue, aqua, blue, aqua);
+*/
+}
+</style>
+
+<style media="screen">
+.slide             { border-top: 1px solid #888; }
+.slide:first-child { border: none;  }
+</style>
+
+<style media="print">
+.slide    { page-break-inside: avoid; }
+.slide h1 { page-break-after:  avoid; }
+.slide ul { page-break-inside: avoid; }
+</style>
+
+
+<!-- add js lib (jquery) -->
+<script src="js/jquery-1.7.min.js"></script>
+
+<!-- S6 JS -->
+<script src="js/jquery.slideshow.js"></script>
+<script src="js/jquery.slideshow.counter.js"></script>
+<script src="js/jquery.slideshow.controls.js"></script>
+<script>
+  $(document).ready( function() {
+    Slideshow.init();
+    
+    // Example 2: Start Off in Outline Mode
+    // Slideshow.init( { mode: 'outline' } );
+    
+    // Example 3: Use Custom Transition
+    // Slideshow.transition = transitionScrollUp;
+    // Slideshow.init();
+
+    // Example 4: Start Off in Autoplay Mode with Custom Transition
+    // Slideshow.transition = transitionScrollUp;
+    // Slideshow.init( { mode: 'autoplay' } );
+  } );
+</script>
+
+</head>
+<body>
+
+<div class="presentation">
+
+  <div class='slide cover'>
+  <table width="90%" height="90%" border="0" align="center">
+  <tr>
+  <td><div align="center">
+      <h1>Cerium 上での正規表現の実装</h1>
+      </div>
+  </td>
+  </tr>
+      <tr>
+      <td><div align="right">
+          <name>Masataka Kohagura</name>
+      </div></td>
+      </tr>
+  </tr>
+  </table>
+  </div>
+
+  <div id="cover">
+    <h1>研究目的</h1>
+    正規表現はオートマトンに変換することができ、 そしてオートマトンの受理の問題は Class NC と呼ばれる問題でもある。<br>
+    この問題は計算機の台数が多ければ多いほど高速化できるという特徴を持ち、並列化に向いている問題といえる。<br>
+    コンピュータの動作やゲームの動作などの多くの問題はオートマトンの受理問題に落としこむことができるので、この問題を解決すれば様々な問題に対応できるようになる。<br>
+    本研究では正規表現を並列処理で実装することによってこの問題を解決し、Class NC問題 に対応するライブラリを作成する。
+        </ul>
+  </div>
+
+  <div id="cover">
+    <h1>今日までにしたこと</h1>
+    <ul>
+      <li>とりあえず動くところまではプログラムを直した(若干バグが)</li>
+    </ul>
+    <ul>
+      <li>正規表現木のノード内に一文字のアルファベットだけしか入らなかったが、単語をいれれるようにした</li>
+    </ul>
+    <p></p>
+  </div>
+
+  <div id="cover">
+    <h1>実装すること</h1>
+    <p>正規表現の parser tree から subset constraction に変換するプログラムを書く</p>
+    <ul>
+      <li>Parser Tree のノードに word や CharClass を挿れる(今は一文字のみ)</li>
+    </ul>
+    <p>CharClass を Binary Tree で表現する</p>
+    <ul>
+      <li>正規表現に Character Class (例 : [a-z])が含まれている場合、Character Class を二分木で表現する</li>
+    </ul>
+    <object data="images/vector/CharClassTree0.svg" type="image/svg+xml" style="width:50%"></object><br>
+  </div>
+
+  <div id="cover">
+    <h1>Character Class が正規表現内に複数含まれる場合</h1>
+    <p>複数の Character Class の範囲が重複する場合</p>
+    <ul>
+      <li>Character Class Tree を Merge し再構築する</li>
+    </ul>
+    </ul>
+    <object data="images/vector/CharClassTree1.svg" type="image/svg+xml" style="width:50%"></object><br>
+    <object data="images/vector/CharClassTreeMerge.svg" type="image/svg+xml" style="width:50%"></object><br>
+  </div>
+
+  <div id="cover">
+    <h1>直しているところ</h1>
+    <ul>
+      <li>'|' が複数含まれていると正しく正規表現木が構築されない</li>
+      <li>'()'や'*'直後の単語の先頭文字が Node に含まれない</li>
+    <pre>
+    <code>
+%  ./regexParser -regex "(ac|b|aa)*ac"
+regex : (ac|b|aa)*ac
+---Print Node----
+        c(6)
+    +(7)
+        *(5)
+                aa(3)
+            |(4)
+                b(2)
+ |(8)
+    ac(1)
+-----------------
+    </code>
+    </pre>
+    </ul>
+    <ul>
+    </ul>
+  </div>
+
+  <div id="cover">
+    <h1>どのようなリスト構造か</h1>
+    <pre>
+    <code>
+typedef struct bitVector {
+    int arrayNum;
+    unsigned long *bitContainer;
+}BitVector,*BitVectorPtr;
+
+typedef struct bitVectorList {
+    bitVectorList *self;
+    BitVectorPtr bi;
+    bitVectorList* initBvl;
+    bitVectorList* next[256];
+}BitVectorList, *BitVectorListPtr;
+    </code>
+    </pre>
+    <ul>
+      <li>BitVectorPtr-&gt;bitContainer に状態を格納する。 </li>
+      <li>BitVectorListPtr-&gt;next[c] は 'c' という文字が入力されたときの BitVectorListPtr の遷移先(アドレス)を格納している </li>
+      <li> </li>
+    </ul>
+    <img src="./images/sqrWave.png" width="50%" height="">
+  </div>
+
+<!--
+  <div id="cover">
+    <pre>
+    <code>
+NodePtr string() {
+    char c = *ptr;
+    NodePtr n = NULL;
+    if (isLiteral(c)) {
+        n = createNode(0,literal(),string());
+    } else {
+        n = createNode(0,0,0);
+    }
+    return n;
+}
+    </code>
+    </pre>
+    <p>string なのか literal なのか判断しないで createNode をしてる</p>
+  </div>
+-->
+
+
+<!--
+  <div id="cover">
+    <h1>今週のしたこと</h1>
+    例題 : ab(ab)+
+        <ul>
+            <object data="images/vector/abab.svg" type="image/svg+xml"></object><br>
+        </ul>
+        テキストが abab の途中で分割される場合を考える
+        <ul>
+            <object data="images/vector/ababautomata.svg" type="image/svg+xml"></object><br>
+        </ul>
+        分割されたファイルの1コ前の終わりが状態(3)の場合で、分割されたファイルの先頭が b の場合状態(4)に遷移して受理される。(正規表現にマッチする)
+        <ul>
+            <object data="images/vector/ababtable.svg" type="image/svg+xml"></object><br>
+        </ul>
+        <ul>
+            <object data="images/vector/bitvectorTable.svg" type="image/svg+xml"></object><br>
+        </ul>
+  </div>
+-->
+
+<!--
+  <div id="cover">
+    <h1>prog</h1>
+    <ul>
+    <li>
+
+    </li>
+
+    <pre>
+    <code>
+typedef struct SDL_AudioSpec {
+    int freq;          /** DSP frequency samples per second */
+    Uint16 format;     /** Audio data format */
+    Uint8  channels;   /** Number of channels: 1 mono, 2 stereo */
+    Uint8  silence;    /** Audio buffer silence value (calculated) */
+    Uint16 samples;    /** Audio buffer size in samples (power of 2) */
+    Uint16 padding;    /** Necessary for some compile environments */
+    Uint32 size;       /** Audio buffer size in bytes (calculated) */
+    void (SDLCALL *callback)(void *userdata, Uint8 *stream, int len);
+    void  *userdata;
+} SDL_AudioSpec;
+    </code>
+    </pre>
+    <img src="./images/sqrWave.png" width="50%" height="">
+    </ul>
+  </div>
+
+-->
+
+</div> <!-- presentation -->
+</body>
+</html>
Binary file 2015/images/omni/subsetConstraction.graffle has changed
Binary file 2015/images/vector/CharClassTree0.pdf has changed
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/2015/images/vector/CharClassTree0.svg	Fri Nov 27 11:59:04 2015 +0900
@@ -0,0 +1,367 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="1455pt" height="2265pt" viewBox="0 0 1455 2265" version="1.1">
+<defs>
+<g>
+<symbol overflow="visible" id="glyph0-0">
+<path style="stroke:none;" d="M 19.625 -31.96875 L 4.890625 -31.96875 L 4.890625 -2.25 L 19.625 -2.25 Z M 22.078125 -34.171875 L 22.078125 -0.046875 L 2.453125 -0.046875 L 2.453125 -34.171875 Z M 22.078125 -34.171875 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-1">
+<path style="stroke:none;" d="M 12.4375 -31.828125 L 12.4375 -35.09375 L 3.453125 -35.09375 L 3.453125 9.453125 L 12.4375 9.453125 L 12.4375 6.1875 L 7.296875 6.1875 L 7.296875 -31.828125 Z M 12.4375 -31.828125 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-2">
+<path style="stroke:none;" d="M 25.0625 -0.09375 C 24.351562 0.320312 23.375 0.53125 22.125 0.53125 C 21.070312 0.53125 20.234375 0.234375 19.609375 -0.359375 C 18.984375 -0.953125 18.671875 -1.921875 18.671875 -3.265625 C 17.546875 -1.921875 16.238281 -0.953125 14.75 -0.359375 C 13.269531 0.234375 11.664062 0.53125 9.9375 0.53125 C 8.8125 0.53125 7.742188 0.398438 6.734375 0.140625 C 5.734375 -0.109375 4.863281 -0.503906 4.125 -1.046875 C 3.394531 -1.597656 2.8125 -2.3125 2.375 -3.1875 C 1.945312 -4.070312 1.734375 -5.140625 1.734375 -6.390625 C 1.734375 -7.796875 1.972656 -8.945312 2.453125 -9.84375 C 2.929688 -10.738281 3.5625 -11.460938 4.34375 -12.015625 C 5.125 -12.578125 6.019531 -13.003906 7.03125 -13.296875 C 8.039062 -13.585938 9.070312 -13.828125 10.125 -14.015625 C 11.25 -14.242188 12.3125 -14.410156 13.3125 -14.515625 C 14.320312 -14.628906 15.210938 -14.789062 15.984375 -15 C 16.753906 -15.207031 17.363281 -15.507812 17.8125 -15.90625 C 18.257812 -16.3125 18.484375 -16.894531 18.484375 -17.65625 C 18.484375 -18.5625 18.3125 -19.285156 17.96875 -19.828125 C 17.632812 -20.367188 17.203125 -20.78125 16.671875 -21.0625 C 16.148438 -21.351562 15.5625 -21.546875 14.90625 -21.640625 C 14.25 -21.742188 13.597656 -21.796875 12.953125 -21.796875 C 11.234375 -21.796875 9.796875 -21.46875 8.640625 -20.8125 C 7.484375 -20.15625 6.859375 -18.914062 6.765625 -17.09375 L 2.6875 -17.09375 C 2.75 -18.625 3.066406 -19.914062 3.640625 -20.96875 C 4.222656 -22.03125 4.992188 -22.890625 5.953125 -23.546875 C 6.910156 -24.203125 8.003906 -24.671875 9.234375 -24.953125 C 10.472656 -25.242188 11.796875 -25.390625 13.203125 -25.390625 C 14.316406 -25.390625 15.425781 -25.304688 16.53125 -25.140625 C 17.632812 -24.984375 18.632812 -24.65625 19.53125 -24.15625 C 20.425781 -23.664062 21.144531 -22.972656 21.6875 -22.078125 C 22.238281 -21.179688 22.515625 -20.015625 22.515625 -18.578125 L 22.515625 -5.8125 C 22.515625 -4.851562 22.566406 -4.148438 22.671875 -3.703125 C 22.785156 -3.253906 23.164062 -3.03125 23.8125 -3.03125 C 24.164062 -3.03125 24.582031 -3.109375 25.0625 -3.265625 Z M 18.4375 -12.8125 C 17.914062 -12.425781 17.238281 -12.144531 16.40625 -11.96875 C 15.582031 -11.800781 14.710938 -11.660156 13.796875 -11.546875 C 12.890625 -11.429688 11.96875 -11.300781 11.03125 -11.15625 C 10.101562 -11.007812 9.269531 -10.773438 8.53125 -10.453125 C 7.800781 -10.140625 7.203125 -9.6875 6.734375 -9.09375 C 6.273438 -8.5 6.046875 -7.691406 6.046875 -6.671875 C 6.046875 -5.992188 6.179688 -5.421875 6.453125 -4.953125 C 6.722656 -4.492188 7.070312 -4.117188 7.5 -3.828125 C 7.9375 -3.546875 8.441406 -3.34375 9.015625 -3.21875 C 9.597656 -3.09375 10.207031 -3.03125 10.84375 -3.03125 C 12.1875 -3.03125 13.335938 -3.210938 14.296875 -3.578125 C 15.265625 -3.941406 16.050781 -4.40625 16.65625 -4.96875 C 17.257812 -5.53125 17.707031 -6.140625 18 -6.796875 C 18.289062 -7.453125 18.4375 -8.066406 18.4375 -8.640625 Z M 18.4375 -12.8125 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-3">
+<path style="stroke:none;" d="M 2.40625 -15.265625 L 2.40625 -11.421875 L 16.265625 -11.421875 L 16.265625 -15.265625 Z M 2.40625 -15.265625 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-4">
+<path style="stroke:none;" d="M 6.046875 -12.1875 C 6.046875 -13.40625 6.171875 -14.585938 6.421875 -15.734375 C 6.679688 -16.890625 7.097656 -17.914062 7.671875 -18.8125 C 8.253906 -19.707031 9.023438 -20.425781 9.984375 -20.96875 C 10.941406 -21.519531 12.109375 -21.796875 13.484375 -21.796875 C 14.890625 -21.796875 16.085938 -21.53125 17.078125 -21 C 18.078125 -20.46875 18.890625 -19.769531 19.515625 -18.90625 C 20.140625 -18.039062 20.59375 -17.039062 20.875 -15.90625 C 21.164062 -14.769531 21.3125 -13.597656 21.3125 -12.390625 C 21.3125 -11.234375 21.175781 -10.09375 20.90625 -8.96875 C 20.632812 -7.851562 20.191406 -6.851562 19.578125 -5.96875 C 18.972656 -5.09375 18.191406 -4.382812 17.234375 -3.84375 C 16.273438 -3.300781 15.109375 -3.03125 13.734375 -3.03125 C 12.421875 -3.03125 11.273438 -3.285156 10.296875 -3.796875 C 9.316406 -4.304688 8.515625 -4.992188 7.890625 -5.859375 C 7.265625 -6.722656 6.800781 -7.707031 6.5 -8.8125 C 6.195312 -9.914062 6.046875 -11.039062 6.046875 -12.1875 Z M 25.25 0 L 25.25 -34.265625 L 21.171875 -34.265625 L 21.171875 -21.5 L 21.078125 -21.5 C 20.628906 -22.238281 20.078125 -22.851562 19.421875 -23.34375 C 18.765625 -23.84375 18.066406 -24.242188 17.328125 -24.546875 C 16.585938 -24.859375 15.847656 -25.078125 15.109375 -25.203125 C 14.378906 -25.328125 13.695312 -25.390625 13.0625 -25.390625 C 11.164062 -25.390625 9.503906 -25.046875 8.078125 -24.359375 C 6.660156 -23.671875 5.476562 -22.742188 4.53125 -21.578125 C 3.59375 -20.410156 2.890625 -19.039062 2.421875 -17.46875 C 1.960938 -15.90625 1.734375 -14.242188 1.734375 -12.484375 C 1.734375 -10.722656 1.972656 -9.054688 2.453125 -7.484375 C 2.929688 -5.921875 3.640625 -4.546875 4.578125 -3.359375 C 5.523438 -2.171875 6.707031 -1.222656 8.125 -0.515625 C 9.550781 0.179688 11.226562 0.53125 13.15625 0.53125 C 14.882812 0.53125 16.46875 0.226562 17.90625 -0.375 C 19.34375 -0.988281 20.398438 -1.984375 21.078125 -3.359375 L 21.171875 -3.359375 L 21.171875 0 Z M 25.25 0 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-5">
+<path style="stroke:none;" d="M 0 6.1875 L 0 9.453125 L 8.96875 9.453125 L 8.96875 -35.09375 L 0 -35.09375 L 0 -31.828125 L 5.140625 -31.828125 L 5.140625 6.1875 Z M 0 6.1875 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-6">
+<path style="stroke:none;" d=""/>
+</symbol>
+<symbol overflow="visible" id="glyph0-7">
+<path style="stroke:none;" d="M 3.703125 -37.734375 L 3.703125 10.21875 L 6.953125 10.21875 L 6.953125 -37.734375 Z M 3.703125 -37.734375 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-8">
+<path style="stroke:none;" d="M 4.75 -21.21875 L 4.75 0 L 8.828125 0 L 8.828125 -21.21875 L 13.625 -21.21875 L 13.625 -24.8125 L 8.828125 -24.8125 L 8.828125 -28.265625 C 8.828125 -29.359375 9.097656 -30.097656 9.640625 -30.484375 C 10.191406 -30.867188 10.960938 -31.0625 11.953125 -31.0625 C 12.304688 -31.0625 12.691406 -31.035156 13.109375 -30.984375 C 13.523438 -30.929688 13.90625 -30.84375 14.25 -30.71875 L 14.25 -34.265625 C 13.875 -34.398438 13.4375 -34.5 12.9375 -34.5625 C 12.4375 -34.625 11.992188 -34.65625 11.609375 -34.65625 C 9.367188 -34.65625 7.664062 -34.132812 6.5 -33.09375 C 5.332031 -32.050781 4.75 -30.523438 4.75 -28.515625 L 4.75 -24.8125 L 0.578125 -24.8125 L 0.578125 -21.21875 Z M 4.75 -21.21875 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-9">
+<path style="stroke:none;" d="M 7.390625 -29.28125 L 7.390625 -34.265625 L 3.3125 -34.265625 L 3.3125 -29.28125 Z M 7.390625 3.125 L 7.390625 -24.8125 L 3.3125 -24.8125 L 3.3125 2.453125 C 3.3125 3.734375 3.148438 4.617188 2.828125 5.109375 C 2.515625 5.609375 1.910156 5.859375 1.015625 5.859375 L 0.140625 5.859375 C 0.015625 5.859375 -0.101562 5.847656 -0.21875 5.828125 C -0.332031 5.816406 -0.46875 5.796875 -0.625 5.765625 L -0.625 9.265625 C 0.0195312 9.390625 0.707031 9.453125 1.4375 9.453125 C 3.257812 9.453125 4.707031 8.945312 5.78125 7.9375 C 6.851562 6.9375 7.390625 5.332031 7.390625 3.125 Z M 7.390625 3.125 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-10">
+<path style="stroke:none;" d="M 3.078125 -24.8125 L 3.078125 0 L 7.15625 0 L 7.15625 -15.453125 C 7.15625 -15.929688 7.273438 -16.53125 7.515625 -17.25 C 7.753906 -17.976562 8.132812 -18.675781 8.65625 -19.34375 C 9.1875 -20.019531 9.875 -20.597656 10.71875 -21.078125 C 11.570312 -21.554688 12.59375 -21.796875 13.78125 -21.796875 C 14.707031 -21.796875 15.460938 -21.65625 16.046875 -21.375 C 16.640625 -21.101562 17.113281 -20.71875 17.46875 -20.21875 C 17.820312 -19.726562 18.070312 -19.144531 18.21875 -18.46875 C 18.363281 -17.800781 18.4375 -17.066406 18.4375 -16.265625 L 18.4375 0 L 22.515625 0 L 22.515625 -15.453125 C 22.515625 -17.378906 23.085938 -18.914062 24.234375 -20.0625 C 25.390625 -21.21875 26.972656 -21.796875 28.984375 -21.796875 C 29.984375 -21.796875 30.796875 -21.648438 31.421875 -21.359375 C 32.046875 -21.066406 32.53125 -20.671875 32.875 -20.171875 C 33.226562 -19.679688 33.46875 -19.097656 33.59375 -18.421875 C 33.726562 -17.753906 33.796875 -17.035156 33.796875 -16.265625 L 33.796875 0 L 37.875 0 L 37.875 -18.1875 C 37.875 -19.46875 37.671875 -20.5625 37.265625 -21.46875 C 36.867188 -22.382812 36.3125 -23.128906 35.59375 -23.703125 C 34.875 -24.285156 34.007812 -24.710938 33 -24.984375 C 31.988281 -25.253906 30.859375 -25.390625 29.609375 -25.390625 C 27.984375 -25.390625 26.488281 -25.019531 25.125 -24.28125 C 23.769531 -23.550781 22.675781 -22.515625 21.84375 -21.171875 C 21.332031 -22.703125 20.453125 -23.785156 19.203125 -24.421875 C 17.953125 -25.066406 16.5625 -25.390625 15.03125 -25.390625 C 11.539062 -25.390625 8.867188 -23.984375 7.015625 -21.171875 L 6.90625 -21.171875 L 6.90625 -24.8125 Z M 3.078125 -24.8125 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-11">
+<path style="stroke:none;" d="M 6.046875 -12.390625 C 6.046875 -13.890625 6.242188 -15.222656 6.640625 -16.390625 C 7.046875 -17.554688 7.597656 -18.539062 8.296875 -19.34375 C 9.003906 -20.144531 9.828125 -20.753906 10.765625 -21.171875 C 11.710938 -21.585938 12.71875 -21.796875 13.78125 -21.796875 C 14.832031 -21.796875 15.828125 -21.585938 16.765625 -21.171875 C 17.710938 -20.753906 18.535156 -20.144531 19.234375 -19.34375 C 19.941406 -18.539062 20.492188 -17.554688 20.890625 -16.390625 C 21.296875 -15.222656 21.5 -13.890625 21.5 -12.390625 C 21.5 -10.878906 21.296875 -9.539062 20.890625 -8.375 C 20.492188 -7.207031 19.941406 -6.226562 19.234375 -5.4375 C 18.535156 -4.65625 17.710938 -4.054688 16.765625 -3.640625 C 15.828125 -3.234375 14.832031 -3.03125 13.78125 -3.03125 C 12.71875 -3.03125 11.710938 -3.234375 10.765625 -3.640625 C 9.828125 -4.054688 9.003906 -4.65625 8.296875 -5.4375 C 7.597656 -6.226562 7.046875 -7.207031 6.640625 -8.375 C 6.242188 -9.539062 6.046875 -10.878906 6.046875 -12.390625 Z M 1.734375 -12.390625 C 1.734375 -10.554688 1.988281 -8.851562 2.5 -7.28125 C 3.007812 -5.71875 3.773438 -4.351562 4.796875 -3.1875 C 5.828125 -2.019531 7.09375 -1.109375 8.59375 -0.453125 C 10.09375 0.203125 11.820312 0.53125 13.78125 0.53125 C 15.757812 0.53125 17.492188 0.203125 18.984375 -0.453125 C 20.472656 -1.109375 21.726562 -2.019531 22.75 -3.1875 C 23.769531 -4.351562 24.535156 -5.71875 25.046875 -7.28125 C 25.566406 -8.851562 25.828125 -10.554688 25.828125 -12.390625 C 25.828125 -14.210938 25.566406 -15.914062 25.046875 -17.5 C 24.535156 -19.082031 23.769531 -20.457031 22.75 -21.625 C 21.726562 -22.789062 20.472656 -23.707031 18.984375 -24.375 C 17.492188 -25.050781 15.757812 -25.390625 13.78125 -25.390625 C 11.820312 -25.390625 10.09375 -25.050781 8.59375 -24.375 C 7.09375 -23.707031 5.828125 -22.789062 4.796875 -21.625 C 3.773438 -20.457031 3.007812 -19.082031 2.5 -17.5 C 1.988281 -15.914062 1.734375 -14.210938 1.734375 -12.390625 Z M 1.734375 -12.390625 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-12">
+<path style="stroke:none;" d="M 1.0625 -3.125 L 1.0625 0 L 21.984375 0 L 21.984375 -3.59375 L 6.140625 -3.59375 L 21.3125 -22.03125 L 21.3125 -24.8125 L 2.015625 -24.8125 L 2.015625 -21.21875 L 16.03125 -21.21875 Z M 1.0625 -3.125 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-13">
+<path style="stroke:none;" d="M 6.34375 -16.75 C 6.34375 -17.582031 6.347656 -18.503906 6.359375 -19.515625 C 6.378906 -20.523438 6.457031 -21.53125 6.59375 -22.53125 C 6.738281 -23.539062 6.945312 -24.523438 7.21875 -25.484375 C 7.488281 -26.441406 7.890625 -27.28125 8.421875 -28 C 8.953125 -28.726562 9.613281 -29.316406 10.40625 -29.765625 C 11.207031 -30.210938 12.1875 -30.4375 13.34375 -30.4375 C 14.5 -30.4375 15.472656 -30.210938 16.265625 -29.765625 C 17.066406 -29.316406 17.734375 -28.726562 18.265625 -28 C 18.796875 -27.28125 19.195312 -26.441406 19.46875 -25.484375 C 19.738281 -24.523438 19.941406 -23.539062 20.078125 -22.53125 C 20.222656 -21.53125 20.304688 -20.523438 20.328125 -19.515625 C 20.347656 -18.503906 20.359375 -17.582031 20.359375 -16.75 C 20.359375 -15.46875 20.316406 -14.035156 20.234375 -12.453125 C 20.148438 -10.867188 19.890625 -9.378906 19.453125 -7.984375 C 19.023438 -6.597656 18.332031 -5.425781 17.375 -4.46875 C 16.414062 -3.507812 15.070312 -3.03125 13.34375 -3.03125 C 11.613281 -3.03125 10.269531 -3.507812 9.3125 -4.46875 C 8.351562 -5.425781 7.65625 -6.597656 7.21875 -7.984375 C 6.789062 -9.378906 6.535156 -10.867188 6.453125 -12.453125 C 6.378906 -14.035156 6.34375 -15.46875 6.34375 -16.75 Z M 2.015625 -16.703125 C 2.015625 -15.453125 2.046875 -14.15625 2.109375 -12.8125 C 2.171875 -11.46875 2.328125 -10.15625 2.578125 -8.875 C 2.835938 -7.59375 3.207031 -6.382812 3.6875 -5.25 C 4.175781 -4.113281 4.832031 -3.113281 5.65625 -2.25 C 6.488281 -1.382812 7.535156 -0.703125 8.796875 -0.203125 C 10.066406 0.285156 11.582031 0.53125 13.34375 0.53125 C 15.132812 0.53125 16.65625 0.285156 17.90625 -0.203125 C 19.15625 -0.703125 20.191406 -1.382812 21.015625 -2.25 C 21.847656 -3.113281 22.503906 -4.113281 22.984375 -5.25 C 23.472656 -6.382812 23.84375 -7.59375 24.09375 -8.875 C 24.351562 -10.15625 24.515625 -11.46875 24.578125 -12.8125 C 24.640625 -14.15625 24.671875 -15.453125 24.671875 -16.703125 C 24.671875 -17.953125 24.640625 -19.25 24.578125 -20.59375 C 24.515625 -21.9375 24.351562 -23.25 24.09375 -24.53125 C 23.84375 -25.8125 23.472656 -27.023438 22.984375 -28.171875 C 22.503906 -29.328125 21.847656 -30.335938 21.015625 -31.203125 C 20.191406 -32.066406 19.144531 -32.753906 17.875 -33.265625 C 16.613281 -33.773438 15.101562 -34.03125 13.34375 -34.03125 C 11.582031 -34.03125 10.066406 -33.773438 8.796875 -33.265625 C 7.535156 -32.753906 6.488281 -32.066406 5.65625 -31.203125 C 4.832031 -30.335938 4.175781 -29.328125 3.6875 -28.171875 C 3.207031 -27.023438 2.835938 -25.8125 2.578125 -24.53125 C 2.328125 -23.25 2.171875 -21.9375 2.109375 -20.59375 C 2.046875 -19.25 2.015625 -17.953125 2.015625 -16.703125 Z M 2.015625 -16.703125 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-14">
+<path style="stroke:none;" d="M 17.09375 0 L 17.09375 -34.03125 L 13.96875 -34.03125 C 13.738281 -32.75 13.320312 -31.691406 12.71875 -30.859375 C 12.113281 -30.023438 11.367188 -29.367188 10.484375 -28.890625 C 9.609375 -28.410156 8.625 -28.082031 7.53125 -27.90625 C 6.445312 -27.726562 5.328125 -27.640625 4.171875 -27.640625 L 4.171875 -24.390625 L 13.015625 -24.390625 L 13.015625 0 Z M 17.09375 0 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-15">
+<path style="stroke:none;" d="M 2.109375 -21.984375 L 6.1875 -21.984375 C 6.15625 -23.003906 6.257812 -24.019531 6.5 -25.03125 C 6.738281 -26.039062 7.128906 -26.941406 7.671875 -27.734375 C 8.222656 -28.535156 8.921875 -29.1875 9.765625 -29.6875 C 10.617188 -30.1875 11.632812 -30.4375 12.8125 -30.4375 C 13.707031 -30.4375 14.554688 -30.289062 15.359375 -30 C 16.160156 -29.707031 16.859375 -29.289062 17.453125 -28.75 C 18.046875 -28.207031 18.515625 -27.5625 18.859375 -26.8125 C 19.210938 -26.0625 19.390625 -25.21875 19.390625 -24.28125 C 19.390625 -23.101562 19.203125 -22.066406 18.828125 -21.171875 C 18.460938 -20.273438 17.921875 -19.441406 17.203125 -18.671875 C 16.484375 -17.898438 15.578125 -17.140625 14.484375 -16.390625 C 13.398438 -15.640625 12.140625 -14.816406 10.703125 -13.921875 C 9.515625 -13.210938 8.375 -12.457031 7.28125 -11.65625 C 6.195312 -10.863281 5.222656 -9.9375 4.359375 -8.875 C 3.503906 -7.820312 2.796875 -6.582031 2.234375 -5.15625 C 1.671875 -3.738281 1.3125 -2.019531 1.15625 0 L 23.375 0 L 23.375 -3.59375 L 5.90625 -3.59375 C 6.09375 -4.65625 6.5 -5.59375 7.125 -6.40625 C 7.75 -7.21875 8.5 -7.976562 9.375 -8.6875 C 10.257812 -9.394531 11.226562 -10.054688 12.28125 -10.671875 C 13.34375 -11.296875 14.398438 -11.929688 15.453125 -12.578125 C 16.515625 -13.242188 17.539062 -13.945312 18.53125 -14.6875 C 19.519531 -15.425781 20.394531 -16.25 21.15625 -17.15625 C 21.925781 -18.070312 22.546875 -19.101562 23.015625 -20.25 C 23.484375 -21.40625 23.71875 -22.734375 23.71875 -24.234375 C 23.71875 -25.835938 23.4375 -27.242188 22.875 -28.453125 C 22.3125 -29.671875 21.550781 -30.6875 20.59375 -31.5 C 19.632812 -32.320312 18.503906 -32.945312 17.203125 -33.375 C 15.910156 -33.8125 14.53125 -34.03125 13.0625 -34.03125 C 11.269531 -34.03125 9.664062 -33.722656 8.25 -33.109375 C 6.84375 -32.503906 5.664062 -31.664062 4.71875 -30.59375 C 3.78125 -29.519531 3.085938 -28.25 2.640625 -26.78125 C 2.191406 -25.3125 2.015625 -23.710938 2.109375 -21.984375 Z M 2.109375 -21.984375 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-16">
+<path style="stroke:none;" d="M 10.46875 -19.4375 L 10.46875 -15.984375 C 11.226562 -16.078125 12.039062 -16.125 12.90625 -16.125 C 13.9375 -16.125 14.890625 -15.988281 15.765625 -15.71875 C 16.648438 -15.445312 17.410156 -15.03125 18.046875 -14.46875 C 18.691406 -13.90625 19.203125 -13.21875 19.578125 -12.40625 C 19.960938 -11.59375 20.15625 -10.65625 20.15625 -9.59375 C 20.15625 -8.570312 19.953125 -7.648438 19.546875 -6.828125 C 19.148438 -6.015625 18.613281 -5.328125 17.9375 -4.765625 C 17.269531 -4.210938 16.488281 -3.785156 15.59375 -3.484375 C 14.695312 -3.179688 13.753906 -3.03125 12.765625 -3.03125 C 10.429688 -3.03125 8.65625 -3.722656 7.4375 -5.109375 C 6.21875 -6.503906 5.578125 -8.304688 5.515625 -10.515625 L 1.4375 -10.515625 C 1.40625 -8.753906 1.648438 -7.1875 2.171875 -5.8125 C 2.703125 -4.4375 3.460938 -3.273438 4.453125 -2.328125 C 5.453125 -1.378906 6.65625 -0.664062 8.0625 -0.1875 C 9.46875 0.289062 11.035156 0.53125 12.765625 0.53125 C 14.367188 0.53125 15.878906 0.316406 17.296875 -0.109375 C 18.722656 -0.546875 19.960938 -1.195312 21.015625 -2.0625 C 22.078125 -2.925781 22.921875 -4.003906 23.546875 -5.296875 C 24.171875 -6.597656 24.484375 -8.097656 24.484375 -9.796875 C 24.484375 -11.835938 23.976562 -13.609375 22.96875 -15.109375 C 21.957031 -16.617188 20.414062 -17.597656 18.34375 -18.046875 L 18.34375 -18.140625 C 19.6875 -18.753906 20.804688 -19.648438 21.703125 -20.828125 C 22.597656 -22.015625 23.046875 -23.375 23.046875 -24.90625 C 23.046875 -26.476562 22.78125 -27.835938 22.25 -28.984375 C 21.71875 -30.140625 20.988281 -31.082031 20.0625 -31.8125 C 19.132812 -32.550781 18.035156 -33.101562 16.765625 -33.46875 C 15.503906 -33.84375 14.140625 -34.03125 12.671875 -34.03125 C 10.972656 -34.03125 9.472656 -33.757812 8.171875 -33.21875 C 6.878906 -32.675781 5.800781 -31.921875 4.9375 -30.953125 C 4.070312 -29.992188 3.40625 -28.84375 2.9375 -27.5 C 2.476562 -26.15625 2.21875 -24.671875 2.15625 -23.046875 L 6.234375 -23.046875 C 6.234375 -24.035156 6.363281 -24.976562 6.625 -25.875 C 6.882812 -26.769531 7.273438 -27.550781 7.796875 -28.21875 C 8.328125 -28.894531 9 -29.429688 9.8125 -29.828125 C 10.632812 -30.234375 11.585938 -30.4375 12.671875 -30.4375 C 14.398438 -30.4375 15.835938 -29.976562 16.984375 -29.0625 C 18.140625 -28.15625 18.71875 -26.785156 18.71875 -24.953125 C 18.71875 -24.054688 18.539062 -23.253906 18.1875 -22.546875 C 17.832031 -21.847656 17.359375 -21.265625 16.765625 -20.796875 C 16.179688 -20.335938 15.492188 -19.988281 14.703125 -19.75 C 13.921875 -19.507812 13.097656 -19.390625 12.234375 -19.390625 L 11.375 -19.390625 C 11.21875 -19.390625 11.054688 -19.390625 10.890625 -19.390625 C 10.765625 -19.390625 10.625 -19.40625 10.46875 -19.4375 Z M 10.46875 -19.4375 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-17">
+<path style="stroke:none;" d="M 16.265625 -11.5625 L 4.84375 -11.5625 L 16.171875 -28.21875 L 16.265625 -28.21875 Z M 20.109375 -11.5625 L 20.109375 -34.03125 L 16.84375 -34.03125 L 1.34375 -11.90625 L 1.34375 -7.96875 L 16.265625 -7.96875 L 16.265625 0 L 20.109375 0 L 20.109375 -7.96875 L 24.71875 -7.96875 L 24.71875 -11.5625 Z M 20.109375 -11.5625 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-18">
+<path style="stroke:none;" d="M 22.5625 -29.859375 L 22.5625 -33.453125 L 5.765625 -33.453125 L 2.59375 -15.796875 L 6.09375 -15.59375 C 6.894531 -16.5625 7.816406 -17.335938 8.859375 -17.921875 C 9.898438 -18.515625 11.09375 -18.8125 12.4375 -18.8125 C 13.582031 -18.8125 14.625 -18.617188 15.5625 -18.234375 C 16.507812 -17.847656 17.320312 -17.3125 18 -16.625 C 18.675781 -15.9375 19.195312 -15.117188 19.5625 -14.171875 C 19.925781 -13.234375 20.109375 -12.207031 20.109375 -11.09375 C 20.109375 -9.75 19.914062 -8.570312 19.53125 -7.5625 C 19.144531 -6.550781 18.625 -5.707031 17.96875 -5.03125 C 17.3125 -4.363281 16.546875 -3.863281 15.671875 -3.53125 C 14.796875 -3.195312 13.875 -3.03125 12.90625 -3.03125 C 11.882812 -3.03125 10.945312 -3.179688 10.09375 -3.484375 C 9.25 -3.785156 8.515625 -4.210938 7.890625 -4.765625 C 7.265625 -5.328125 6.769531 -5.984375 6.40625 -6.734375 C 6.039062 -7.492188 5.828125 -8.304688 5.765625 -9.171875 L 1.6875 -9.171875 C 1.71875 -7.628906 2.019531 -6.25 2.59375 -5.03125 C 3.164062 -3.820312 3.945312 -2.804688 4.9375 -1.984375 C 5.9375 -1.171875 7.082031 -0.546875 8.375 -0.109375 C 9.664062 0.316406 11.050781 0.53125 12.53125 0.53125 C 14.507812 0.53125 16.242188 0.21875 17.734375 -0.40625 C 19.222656 -1.03125 20.460938 -1.867188 21.453125 -2.921875 C 22.441406 -3.984375 23.1875 -5.191406 23.6875 -6.546875 C 24.1875 -7.910156 24.4375 -9.3125 24.4375 -10.75 C 24.4375 -12.707031 24.144531 -14.410156 23.5625 -15.859375 C 22.988281 -17.316406 22.207031 -18.53125 21.21875 -19.5 C 20.226562 -20.476562 19.0625 -21.207031 17.71875 -21.6875 C 16.375 -22.175781 14.945312 -22.421875 13.4375 -22.421875 C 12.289062 -22.421875 11.128906 -22.21875 9.953125 -21.8125 C 8.785156 -21.414062 7.835938 -20.800781 7.109375 -19.96875 L 7.015625 -20.0625 L 8.828125 -29.859375 Z M 22.5625 -29.859375 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-19">
+<path style="stroke:none;" d="M 19.875 -25.34375 L 23.953125 -25.34375 C 23.691406 -28.15625 22.726562 -30.304688 21.0625 -31.796875 C 19.40625 -33.285156 17.171875 -34.03125 14.359375 -34.03125 C 11.921875 -34.03125 9.898438 -33.515625 8.296875 -32.484375 C 6.703125 -31.460938 5.425781 -30.101562 4.46875 -28.40625 C 3.507812 -26.71875 2.828125 -24.773438 2.421875 -22.578125 C 2.023438 -20.390625 1.828125 -18.128906 1.828125 -15.796875 C 1.828125 -14.003906 1.960938 -12.144531 2.234375 -10.21875 C 2.503906 -8.300781 3.054688 -6.539062 3.890625 -4.9375 C 4.722656 -3.34375 5.90625 -2.03125 7.4375 -1 C 8.976562 0.0195312 11.007812 0.53125 13.53125 0.53125 C 15.675781 0.53125 17.476562 0.171875 18.9375 -0.546875 C 20.394531 -1.265625 21.5625 -2.175781 22.4375 -3.28125 C 23.320312 -4.382812 23.953125 -5.609375 24.328125 -6.953125 C 24.710938 -8.296875 24.90625 -9.59375 24.90625 -10.84375 C 24.90625 -12.414062 24.664062 -13.875 24.1875 -15.21875 C 23.707031 -16.5625 23.023438 -17.726562 22.140625 -18.71875 C 21.265625 -19.707031 20.175781 -20.484375 18.875 -21.046875 C 17.582031 -21.609375 16.125 -21.890625 14.5 -21.890625 C 12.644531 -21.890625 11.003906 -21.535156 9.578125 -20.828125 C 8.148438 -20.128906 6.957031 -18.992188 6 -17.421875 L 5.90625 -17.515625 C 5.9375 -18.828125 6.0625 -20.234375 6.28125 -21.734375 C 6.507812 -23.242188 6.921875 -24.644531 7.515625 -25.9375 C 8.109375 -27.238281 8.929688 -28.3125 9.984375 -29.15625 C 11.035156 -30.007812 12.425781 -30.4375 14.15625 -30.4375 C 15.789062 -30.4375 17.101562 -29.96875 18.09375 -29.03125 C 19.082031 -28.101562 19.675781 -26.875 19.875 -25.34375 Z M 13.734375 -18.28125 C 14.878906 -18.28125 15.882812 -18.070312 16.75 -17.65625 C 17.613281 -17.25 18.332031 -16.695312 18.90625 -16 C 19.488281 -15.3125 19.914062 -14.492188 20.1875 -13.546875 C 20.457031 -12.609375 20.59375 -11.613281 20.59375 -10.5625 C 20.59375 -9.570312 20.441406 -8.617188 20.140625 -7.703125 C 19.835938 -6.796875 19.394531 -5.988281 18.8125 -5.28125 C 18.238281 -4.570312 17.523438 -4.019531 16.671875 -3.625 C 15.828125 -3.226562 14.847656 -3.03125 13.734375 -3.03125 C 12.609375 -3.03125 11.601562 -3.226562 10.71875 -3.625 C 9.84375 -4.019531 9.109375 -4.550781 8.515625 -5.21875 C 7.921875 -5.894531 7.460938 -6.695312 7.140625 -7.625 C 6.828125 -8.5625 6.671875 -9.554688 6.671875 -10.609375 C 6.671875 -11.660156 6.820312 -12.660156 7.125 -13.609375 C 7.425781 -14.554688 7.878906 -15.375 8.484375 -16.0625 C 9.097656 -16.75 9.835938 -17.289062 10.703125 -17.6875 C 11.566406 -18.082031 12.578125 -18.28125 13.734375 -18.28125 Z M 13.734375 -18.28125 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-20">
+<path style="stroke:none;" d="M 27.84375 -23.953125 L 32.40625 -23.953125 C 32.144531 -25.773438 31.597656 -27.378906 30.765625 -28.765625 C 29.929688 -30.160156 28.890625 -31.320312 27.640625 -32.25 C 26.398438 -33.175781 24.976562 -33.878906 23.375 -34.359375 C 21.769531 -34.847656 20.070312 -35.09375 18.28125 -35.09375 C 15.664062 -35.09375 13.335938 -34.617188 11.296875 -33.671875 C 9.265625 -32.722656 7.566406 -31.429688 6.203125 -29.796875 C 4.847656 -28.171875 3.816406 -26.257812 3.109375 -24.0625 C 2.410156 -21.875 2.0625 -19.535156 2.0625 -17.046875 C 2.0625 -14.546875 2.390625 -12.207031 3.046875 -10.03125 C 3.703125 -7.851562 4.6875 -5.960938 6 -4.359375 C 7.3125 -2.765625 8.957031 -1.507812 10.9375 -0.59375 C 12.925781 0.3125 15.25 0.765625 17.90625 0.765625 C 22.289062 0.765625 25.742188 -0.429688 28.265625 -2.828125 C 30.796875 -5.234375 32.285156 -8.59375 32.734375 -12.90625 L 28.171875 -12.90625 C 28.078125 -11.5 27.789062 -10.1875 27.3125 -8.96875 C 26.832031 -7.757812 26.164062 -6.710938 25.3125 -5.828125 C 24.46875 -4.953125 23.460938 -4.265625 22.296875 -3.765625 C 21.128906 -3.273438 19.789062 -3.03125 18.28125 -3.03125 C 16.238281 -3.03125 14.476562 -3.410156 13 -4.171875 C 11.53125 -4.941406 10.320312 -5.972656 9.375 -7.265625 C 8.4375 -8.566406 7.742188 -10.085938 7.296875 -11.828125 C 6.847656 -13.578125 6.625 -15.425781 6.625 -17.375 C 6.625 -19.164062 6.847656 -20.894531 7.296875 -22.5625 C 7.742188 -24.226562 8.4375 -25.707031 9.375 -27 C 10.320312 -28.289062 11.523438 -29.320312 12.984375 -30.09375 C 14.441406 -30.863281 16.191406 -31.25 18.234375 -31.25 C 20.640625 -31.25 22.710938 -30.640625 24.453125 -29.421875 C 26.203125 -28.203125 27.332031 -26.378906 27.84375 -23.953125 Z M 27.84375 -23.953125 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-21">
+<path style="stroke:none;" d="M 3.078125 -34.265625 L 3.078125 0 L 7.15625 0 L 7.15625 -14.015625 C 7.15625 -15.140625 7.304688 -16.171875 7.609375 -17.109375 C 7.910156 -18.054688 8.363281 -18.878906 8.96875 -19.578125 C 9.582031 -20.285156 10.34375 -20.832031 11.25 -21.21875 C 12.164062 -21.601562 13.25 -21.796875 14.5 -21.796875 C 16.0625 -21.796875 17.289062 -21.347656 18.1875 -20.453125 C 19.082031 -19.554688 19.53125 -18.335938 19.53125 -16.796875 L 19.53125 0 L 23.609375 0 L 23.609375 -16.3125 C 23.609375 -17.664062 23.472656 -18.890625 23.203125 -19.984375 C 22.929688 -21.085938 22.457031 -22.039062 21.78125 -22.84375 C 21.113281 -23.644531 20.234375 -24.269531 19.140625 -24.71875 C 18.054688 -25.164062 16.703125 -25.390625 15.078125 -25.390625 C 14.335938 -25.390625 13.570312 -25.304688 12.78125 -25.140625 C 12 -24.984375 11.25 -24.738281 10.53125 -24.40625 C 9.8125 -24.070312 9.164062 -23.640625 8.59375 -23.109375 C 8.019531 -22.578125 7.570312 -21.929688 7.25 -21.171875 L 7.15625 -21.171875 L 7.15625 -34.265625 Z M 3.078125 -34.265625 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-22">
+<path style="stroke:none;" d="M 2.921875 -24.8125 L 2.921875 0 L 7.015625 0 L 7.015625 -11.046875 C 7.015625 -12.640625 7.171875 -14.050781 7.484375 -15.28125 C 7.804688 -16.519531 8.316406 -17.570312 9.015625 -18.4375 C 9.722656 -19.300781 10.648438 -19.957031 11.796875 -20.40625 C 12.953125 -20.851562 14.347656 -21.078125 15.984375 -21.078125 L 15.984375 -25.390625 C 13.773438 -25.453125 11.953125 -25.003906 10.515625 -24.046875 C 9.078125 -23.085938 7.859375 -21.597656 6.859375 -19.578125 L 6.765625 -19.578125 L 6.765625 -24.8125 Z M 2.921875 -24.8125 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-23">
+<path style="stroke:none;" d="M 3.3125 -34.265625 L 3.3125 0 L 7.390625 0 L 7.390625 -34.265625 Z M 3.3125 -34.265625 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-24">
+<path style="stroke:none;" d="M 5.5625 -7.828125 L 1.484375 -7.828125 C 1.546875 -6.285156 1.863281 -4.976562 2.4375 -3.90625 C 3.019531 -2.832031 3.789062 -1.96875 4.75 -1.3125 C 5.707031 -0.664062 6.8125 -0.195312 8.0625 0.09375 C 9.3125 0.382812 10.625 0.53125 12 0.53125 C 13.25 0.53125 14.503906 0.410156 15.765625 0.171875 C 17.023438 -0.0664062 18.160156 -0.488281 19.171875 -1.09375 C 20.179688 -1.707031 21 -2.507812 21.625 -3.5 C 22.25 -4.488281 22.5625 -5.738281 22.5625 -7.25 C 22.5625 -8.4375 22.328125 -9.425781 21.859375 -10.21875 C 21.398438 -11.019531 20.789062 -11.6875 20.03125 -12.21875 C 19.28125 -12.75 18.414062 -13.171875 17.4375 -13.484375 C 16.46875 -13.804688 15.472656 -14.078125 14.453125 -14.296875 C 13.492188 -14.523438 12.53125 -14.742188 11.5625 -14.953125 C 10.601562 -15.160156 9.738281 -15.414062 8.96875 -15.71875 C 8.207031 -16.019531 7.578125 -16.398438 7.078125 -16.859375 C 6.585938 -17.328125 6.34375 -17.914062 6.34375 -18.625 C 6.34375 -19.257812 6.5 -19.773438 6.8125 -20.171875 C 7.132812 -20.578125 7.550781 -20.898438 8.0625 -21.140625 C 8.570312 -21.378906 9.140625 -21.546875 9.765625 -21.640625 C 10.390625 -21.742188 11.003906 -21.796875 11.609375 -21.796875 C 12.285156 -21.796875 12.953125 -21.722656 13.609375 -21.578125 C 14.265625 -21.429688 14.863281 -21.195312 15.40625 -20.875 C 15.945312 -20.5625 16.394531 -20.140625 16.75 -19.609375 C 17.101562 -19.078125 17.3125 -18.410156 17.375 -17.609375 L 21.453125 -17.609375 C 21.359375 -19.117188 21.039062 -20.375 20.5 -21.375 C 19.957031 -22.382812 19.226562 -23.1875 18.3125 -23.78125 C 17.394531 -24.375 16.34375 -24.789062 15.15625 -25.03125 C 13.976562 -25.269531 12.6875 -25.390625 11.28125 -25.390625 C 10.1875 -25.390625 9.085938 -25.253906 7.984375 -24.984375 C 6.890625 -24.710938 5.898438 -24.296875 5.015625 -23.734375 C 4.140625 -23.171875 3.421875 -22.441406 2.859375 -21.546875 C 2.296875 -20.648438 2.015625 -19.582031 2.015625 -18.34375 C 2.015625 -16.738281 2.414062 -15.488281 3.21875 -14.59375 C 4.019531 -13.695312 5.019531 -13 6.21875 -12.5 C 7.414062 -12.007812 8.71875 -11.625 10.125 -11.34375 C 11.53125 -11.070312 12.832031 -10.769531 14.03125 -10.4375 C 15.238281 -10.101562 16.238281 -9.660156 17.03125 -9.109375 C 17.832031 -8.566406 18.234375 -7.769531 18.234375 -6.71875 C 18.234375 -5.945312 18.039062 -5.3125 17.65625 -4.8125 C 17.28125 -4.320312 16.796875 -3.945312 16.203125 -3.6875 C 15.609375 -3.4375 14.957031 -3.265625 14.25 -3.171875 C 13.550781 -3.078125 12.878906 -3.03125 12.234375 -3.03125 C 11.398438 -3.03125 10.59375 -3.109375 9.8125 -3.265625 C 9.03125 -3.421875 8.328125 -3.679688 7.703125 -4.046875 C 7.078125 -4.421875 6.570312 -4.921875 6.1875 -5.546875 C 5.800781 -6.171875 5.59375 -6.929688 5.5625 -7.828125 Z M 5.5625 -7.828125 "/>
+</symbol>
+<symbol overflow="visible" id="glyph1-0">
+<path style="stroke:none;" d="M 9.8125 -15.984375 L 2.453125 -15.984375 L 2.453125 -1.125 L 9.8125 -1.125 Z M 11.046875 -17.09375 L 11.046875 -0.03125 L 1.21875 -0.03125 L 1.21875 -17.09375 Z M 11.046875 -17.09375 "/>
+</symbol>
+<symbol overflow="visible" id="glyph1-1">
+<path style="stroke:none;" d="M 1.84375 -17.140625 L 1.84375 0 L 4.015625 0 L 4.015625 -13.75 L 4.0625 -13.75 L 13.015625 0 L 15.5 0 L 15.5 -17.140625 L 13.34375 -17.140625 L 13.34375 -3.234375 L 13.296875 -3.234375 L 4.265625 -17.140625 Z M 1.84375 -17.140625 "/>
+</symbol>
+<symbol overflow="visible" id="glyph1-2">
+<path style="stroke:none;" d="M 15.546875 -6.1875 L 15.546875 -17.140625 L 13.265625 -17.140625 L 13.265625 -6.1875 C 13.265625 -4.65625 12.882812 -3.492188 12.125 -2.703125 C 11.363281 -1.910156 10.257812 -1.515625 8.8125 -1.515625 C 7.269531 -1.515625 6.09375 -1.910156 5.28125 -2.703125 C 4.46875 -3.492188 4.0625 -4.65625 4.0625 -6.1875 L 4.0625 -17.140625 L 1.78125 -17.140625 L 1.78125 -6.1875 C 1.78125 -3.90625 2.398438 -2.238281 3.640625 -1.1875 C 4.878906 -0.132812 6.601562 0.390625 8.8125 0.390625 C 10.96875 0.390625 12.628906 -0.15625 13.796875 -1.25 C 14.960938 -2.351562 15.546875 -4 15.546875 -6.1875 Z M 15.546875 -6.1875 "/>
+</symbol>
+<symbol overflow="visible" id="glyph1-3">
+<path style="stroke:none;" d="M 1.875 -17.140625 L 1.875 0 L 13.21875 0 L 13.21875 -1.921875 L 4.15625 -1.921875 L 4.15625 -17.140625 Z M 1.875 -17.140625 "/>
+</symbol>
+<symbol overflow="visible" id="glyph2-0">
+<path style="stroke:none;" d="M 19.625 -31.96875 L 4.890625 -31.96875 L 4.890625 -2.25 L 19.625 -2.25 Z M 22.078125 -34.171875 L 22.078125 -0.046875 L 2.453125 -0.046875 L 2.453125 -34.171875 Z M 22.078125 -34.171875 "/>
+</symbol>
+<symbol overflow="visible" id="glyph2-1">
+<path style="stroke:none;" d="M 3.40625 -3.453125 L 5.71875 -1.15625 L 14.453125 -9.890625 L 23.140625 -1.15625 L 25.4375 -3.453125 L 16.75 -12.1875 L 25.390625 -20.828125 L 23.09375 -23.140625 L 14.453125 -14.5 L 5.765625 -23.140625 L 3.453125 -20.828125 L 12.140625 -12.1875 Z M 3.40625 -3.453125 "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-0">
+<path style="stroke:none;" d="M 4.703125 -41.28125 L 4.703125 4.796875 L 43.25 4.796875 L 43.25 -41.28125 Z M 39.03125 -38.78125 L 24 -20.25 L 8.96875 -38.78125 Z M 40.75 0.390625 L 25.6875 -18.1875 L 40.75 -36.765625 L 40.609375 -36.765625 L 40.609375 0.390625 Z M 9.03125 2.296875 L 24 -16.125 L 38.96875 2.296875 Z M 7.34375 0.4375 L 7.34375 -36.859375 L 7.203125 -36.859375 L 22.3125 -18.1875 L 7.203125 0.4375 Z M 7.34375 0.4375 "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-1">
+<path style="stroke:none;" d="M 26.59375 -31.828125 C 28.984375 -31.734375 30.390625 -31.390625 32.15625 -30.625 C 37.015625 -28.46875 39.796875 -24.046875 39.796875 -18.578125 C 39.796875 -12.671875 36.578125 -7.53125 31.296875 -5.140625 C 29.046875 -4.078125 26.78125 -3.453125 23.28125 -2.875 C 24.1875 -1.734375 24.484375 -1.25 24.953125 0.34375 C 28.265625 -0.390625 30.09375 -0.953125 32.25 -1.875 C 39.21875 -4.84375 43.25 -10.984375 43.25 -18.4375 C 43.25 -23.046875 41.609375 -27.21875 38.59375 -30.140625 C 35.46875 -33.21875 30.765625 -34.890625 25.390625 -34.890625 C 18.953125 -34.890625 13.734375 -32.734375 9.890625 -28.515625 C 6.671875 -24.90625 4.84375 -20.15625 4.84375 -15.265625 C 4.84375 -8.546875 8.25 -3.546875 12.8125 -3.546875 C 16.265625 -3.546875 19.109375 -6.4375 21.890625 -12.765625 C 24.046875 -17.8125 25.875 -25.15625 26.59375 -31.828125 Z M 23.140625 -31.78125 C 22.515625 -25.625 20.734375 -18.53125 18.765625 -14.015625 C 16.703125 -9.3125 14.78125 -7.0625 12.765625 -7.0625 C 10.171875 -7.0625 8.15625 -10.609375 8.15625 -15.21875 C 8.15625 -21.171875 11.140625 -26.59375 15.984375 -29.515625 C 18.1875 -30.859375 20.25 -31.53125 23.140625 -31.78125 Z M 23.140625 -31.78125 "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-2">
+<path style="stroke:none;" d="M 13.484375 -33.9375 C 14.40625 -32.5 15.03125 -31.25 15.84375 -29.515625 L 12.71875 -29.515625 C 12.90625 -28.609375 13.015625 -27.640625 13.015625 -26.25 L 6.671875 -26.25 C 4.84375 -26.25 4.03125 -26.296875 2.828125 -26.546875 L 2.828125 -23.65625 C 4.03125 -23.859375 4.984375 -23.90625 6.671875 -23.90625 L 13.015625 -23.90625 L 13.015625 -20.96875 L 9.5 -20.96875 C 7.296875 -20.96875 6.1875 -21.03125 4.84375 -21.171875 C 4.984375 -19.96875 5.046875 -18.953125 5.046875 -16.796875 L 5.046875 -11.515625 C 5.046875 -9.640625 4.984375 -8.296875 4.84375 -7.296875 C 6.1875 -7.4375 7.203125 -7.484375 9.40625 -7.484375 L 13.015625 -7.484375 L 13.015625 -4.171875 L 6.8125 -4.171875 C 5.140625 -4.171875 4.171875 -4.21875 3.03125 -4.421875 L 3.03125 -1.53125 C 4.265625 -1.6875 5.90625 -1.78125 6.8125 -1.78125 L 13.015625 -1.78125 L 13.015625 -1.296875 C 13.015625 1.109375 12.90625 2.25 12.71875 3.546875 L 15.9375 3.546875 C 15.703125 2.359375 15.640625 1.15625 15.640625 -1.296875 L 15.640625 -1.78125 L 20.78125 -1.78125 C 23.28125 -1.78125 23.8125 -1.78125 25.015625 -1.578125 L 25.015625 -4.421875 C 24.28125 -4.265625 23.046875 -4.171875 20.921875 -4.171875 L 15.640625 -4.171875 L 15.640625 -7.484375 L 19.484375 -7.484375 C 21.546875 -7.484375 22.84375 -7.4375 23.71875 -7.34375 C 23.609375 -8.109375 23.5625 -9.171875 23.5625 -11.46875 L 23.5625 -16.9375 C 23.5625 -19.015625 23.609375 -19.875 23.71875 -21.171875 C 22.65625 -21.03125 21.84375 -20.96875 19.109375 -20.96875 L 15.640625 -20.96875 L 15.640625 -23.90625 L 21.078125 -23.90625 C 22.796875 -23.90625 23.90625 -23.859375 25.109375 -23.71875 L 25.109375 -26.5 C 23.953125 -26.296875 22.9375 -26.25 21.078125 -26.25 L 15.640625 -26.25 C 15.640625 -27.703125 15.703125 -28.46875 15.890625 -29.375 L 16.171875 -28.65625 L 18.90625 -29.65625 C 17.71875 -31.78125 17.328125 -32.453125 16.3125 -33.9375 L 19.484375 -33.9375 C 21.3125 -33.9375 22.5625 -33.890625 23.859375 -33.75 L 23.859375 -36.765625 C 22.703125 -36.578125 21.3125 -36.484375 19.109375 -36.484375 L 10.9375 -36.484375 C 11.5625 -37.625 11.65625 -37.828125 12.71875 -40.078125 L 9.640625 -40.890625 C 9.21875 -39.078125 8.359375 -37.203125 7.109375 -35.1875 C 5.859375 -33.265625 4.65625 -31.828125 2.359375 -29.765625 C 3.21875 -29.234375 3.9375 -28.609375 4.5625 -27.84375 C 7.109375 -30.484375 8.109375 -31.734375 9.5 -33.9375 Z M 13.015625 -18.765625 L 13.015625 -15.359375 L 7.578125 -15.359375 L 7.578125 -18.765625 Z M 15.640625 -18.765625 L 21.03125 -18.765625 L 21.03125 -15.359375 L 15.640625 -15.359375 Z M 13.015625 -13.203125 L 13.015625 -9.703125 L 7.578125 -9.703125 L 7.578125 -13.203125 Z M 15.640625 -13.203125 L 21.03125 -13.203125 L 21.03125 -9.703125 L 15.640625 -9.703125 Z M 31.96875 -33.9375 C 33.359375 -31.6875 34.078125 -30.34375 34.9375 -28.171875 L 37.578125 -29.1875 C 36.859375 -30.71875 35.90625 -32.40625 34.890625 -33.9375 L 39.984375 -33.9375 C 42 -33.9375 43.53125 -33.890625 45.03125 -33.703125 L 45.03125 -36.765625 C 43.625 -36.53125 42.34375 -36.484375 39.9375 -36.484375 L 29.140625 -36.484375 C 29.859375 -37.96875 30.046875 -38.453125 30.71875 -39.984375 L 27.75 -40.796875 C 27.265625 -38.734375 26.78125 -37.578125 25.78125 -35.71875 C 24.53125 -33.453125 23.71875 -32.296875 21.453125 -29.953125 C 22.421875 -29.375 22.890625 -29.046875 23.71875 -28.265625 C 25.734375 -30.578125 26.546875 -31.734375 27.84375 -33.9375 Z M 40.3125 -23.859375 C 40.3125 -19.578125 40.171875 -15.890625 40.03125 -14.296875 C 39.796875 -12.140625 39.546875 -11.765625 38.25 -11.765625 C 37.25 -11.765625 36.046875 -11.90625 34.125 -12.1875 C 34.46875 -11.1875 34.609375 -10.5625 34.65625 -9.3125 C 36.234375 -9.125 37.390625 -9.078125 38.40625 -9.078125 C 41.09375 -9.078125 42.234375 -9.9375 42.671875 -12.28125 C 42.90625 -14.015625 43.15625 -18.234375 43.15625 -21.890625 C 43.203125 -24.8125 43.203125 -25.6875 43.34375 -26.640625 C 42.1875 -26.5 41.046875 -26.453125 38.96875 -26.453125 L 31.390625 -26.453125 C 29.46875 -26.453125 28.21875 -26.5 27.21875 -26.640625 C 27.40625 -25.53125 27.453125 -24.34375 27.453125 -22.125 L 27.453125 -0.90625 C 27.453125 2.25 28.65625 2.828125 35.1875 2.828125 C 41.421875 2.828125 43.203125 2.40625 44.109375 0.71875 C 44.828125 -0.625 45.125 -2.359375 45.265625 -6.234375 C 44.359375 -6.53125 43.6875 -6.859375 42.34375 -7.625 C 42.34375 -3.9375 42.09375 -1.96875 41.609375 -1.109375 C 41.046875 -0.046875 39.984375 0.140625 35.046875 0.140625 C 30.8125 0.140625 30.34375 -0.046875 30.34375 -1.6875 L 30.34375 -23.859375 Z M 40.3125 -23.859375 "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-3">
+<path style="stroke:none;" d="M 16.65625 -13.625 C 16.3125 -11.46875 15.890625 -10.375 14.96875 -9.078125 C 13.96875 -7.625 12.859375 -6.671875 10.375 -5.09375 C 11.375 -4.375 11.765625 -4.03125 12.625 -3.03125 C 16.984375 -6 18.8125 -8.828125 19.484375 -13.625 L 27.890625 -13.625 L 27.890625 -7.921875 C 27.890625 -6 27.84375 -4.796875 27.640625 -3.640625 L 30.90625 -3.640625 C 30.71875 -4.703125 30.671875 -5.90625 30.671875 -7.96875 L 30.671875 -13.625 L 34.609375 -13.625 C 36.578125 -13.625 37.625 -13.578125 38.734375 -13.390625 L 38.734375 -16.421875 C 37.78125 -16.21875 36.671875 -16.171875 34.609375 -16.171875 L 30.671875 -16.171875 L 30.671875 -24.28125 L 33.890625 -24.28125 C 35.8125 -24.28125 36.859375 -24.234375 37.921875 -24.046875 L 37.921875 -27.078125 C 36.859375 -26.875 35.90625 -26.828125 33.890625 -26.828125 L 30.671875 -26.828125 L 30.671875 -29.5625 C 30.671875 -31.34375 30.71875 -32.296875 30.90625 -33.3125 L 27.640625 -33.3125 C 27.84375 -32.25 27.890625 -31.296875 27.890625 -29.5625 L 27.890625 -26.828125 L 20.015625 -26.828125 L 20.015625 -29.65625 C 20.015625 -31.390625 20.0625 -32.25 20.25 -33.3125 L 16.984375 -33.3125 C 17.140625 -32.015625 17.234375 -30.859375 17.234375 -29.5625 L 17.234375 -26.828125 L 14.0625 -26.828125 C 12.046875 -26.828125 11.046875 -26.875 10.03125 -27.078125 L 10.03125 -24.046875 C 11.140625 -24.234375 12.140625 -24.28125 14.0625 -24.28125 L 17.234375 -24.28125 L 17.234375 -23.46875 C 17.234375 -20.40625 17.1875 -18.671875 16.984375 -16.171875 L 13.34375 -16.171875 C 11.328125 -16.171875 10.3125 -16.21875 9.359375 -16.421875 L 9.359375 -13.390625 C 10.375 -13.578125 11.46875 -13.625 13.34375 -13.625 Z M 20.015625 -24.28125 L 27.890625 -24.28125 L 27.890625 -16.171875 L 19.734375 -16.171875 C 19.921875 -19.109375 20.015625 -20.828125 20.015625 -23.234375 Z M 43.921875 3.703125 C 43.734375 2.40625 43.625 0.90625 43.625 -2.015625 L 43.625 -32.109375 C 43.625 -34.609375 43.734375 -36.234375 43.921875 -38.015625 C 42.140625 -37.828125 40.75 -37.78125 38.203125 -37.78125 L 9.5 -37.78125 C 7.015625 -37.78125 5.609375 -37.828125 3.890625 -38.015625 C 4.078125 -36.140625 4.171875 -34.515625 4.171875 -32.109375 L 4.171875 -2.0625 C 4.171875 0.71875 4.078125 2.296875 3.890625 3.703125 L 7.25 3.703125 L 7.25 0.8125 L 40.5625 0.8125 L 40.5625 3.703125 Z M 7.25 -35.046875 L 40.5625 -35.046875 L 40.5625 -1.921875 L 7.25 -1.921875 Z M 7.25 -35.046875 "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-4">
+<path style="stroke:none;" d="M 16.65625 -32.296875 C 11.765625 -32.296875 8.109375 -32.5 6.390625 -32.828125 L 6.34375 -29.515625 C 6.859375 -29.5625 6.953125 -29.5625 7.390625 -29.5625 C 7.53125 -29.5625 7.921875 -29.5625 8.15625 -29.5625 C 9.9375 -29.515625 14.453125 -29.421875 15.21875 -29.421875 C 15.453125 -29.421875 15.9375 -29.46875 16.125 -29.515625 C 15.84375 -29.046875 15.84375 -29.046875 15.703125 -28.796875 C 12.234375 -22.65625 8.25 -17.609375 4.9375 -15.078125 L 7.625 -12.390625 C 8.40625 -13.6875 9.453125 -14.78125 11.328125 -16.375 C 15.21875 -19.6875 19.015625 -21.453125 22.03125 -21.453125 C 24.28125 -21.453125 25.4375 -20.296875 25.828125 -17.65625 C 22.609375 -16.265625 20.296875 -15.03125 18.671875 -13.828125 C 15.40625 -11.375 13.78125 -8.875 13.78125 -6.234375 C 13.78125 -1.296875 17.953125 1.15625 26.546875 1.15625 C 30.234375 1.15625 34.421875 0.8125 38.203125 0.1875 C 39.171875 0.046875 39.40625 0 40.125 -0.046875 L 39.703125 -3.75 C 36.953125 -2.640625 31.625 -1.875 26.875 -1.875 C 20.109375 -1.875 17.140625 -3.265625 17.140625 -6.4375 C 17.140625 -9.3125 19.625 -11.5625 26.15625 -14.640625 C 26.203125 -14.0625 26.203125 -13.96875 26.203125 -13.203125 C 26.203125 -10.265625 26.0625 -7.34375 25.921875 -6.28125 L 29.1875 -6.34375 C 29.09375 -7.015625 29.09375 -7.390625 29.09375 -8.0625 C 29.09375 -8.5 29.09375 -9.171875 29.140625 -10.21875 C 29.1875 -11.1875 29.1875 -12.234375 29.1875 -12.859375 C 29.1875 -14.0625 29.1875 -14.546875 29.09375 -15.796875 C 35.09375 -18.140625 39.40625 -19.578125 41.90625 -20.015625 L 40.375 -23.375 C 39.59375 -22.84375 39.453125 -22.796875 37.109375 -21.984375 C 34.984375 -21.21875 32.25 -20.203125 28.75 -18.8125 C 28.125 -22.375 25.96875 -24.140625 22.421875 -24.140625 C 19.921875 -24.140625 17.375 -23.328125 15.171875 -21.796875 C 14.6875 -21.453125 14.6875 -21.453125 12.953125 -20.109375 C 12.90625 -20.15625 12.90625 -20.15625 12.859375 -20.25 C 12.859375 -20.25 12.859375 -20.25 12.859375 -20.296875 C 12.859375 -20.296875 12.90625 -20.296875 12.90625 -20.359375 C 12.953125 -20.40625 13.203125 -20.59375 13.53125 -20.828125 C 13.734375 -20.96875 14.6875 -22.078125 15.171875 -22.65625 C 16.84375 -24.71875 18.046875 -26.640625 19.484375 -29.46875 C 25.296875 -29.65625 30.34375 -30.046875 35.328125 -30.71875 C 36.1875 -30.859375 36.484375 -30.90625 37.25 -30.953125 L 36.953125 -34.21875 C 34.3125 -33.359375 29.515625 -32.78125 21.84375 -32.40625 C 21.40625 -32.40625 21.40625 -32.40625 20.828125 -32.359375 C 21.078125 -32.78125 21.703125 -34.078125 22.3125 -35.609375 C 23.140625 -37.578125 23.140625 -37.578125 23.5625 -38.203125 L 19.734375 -38.875 C 19.578125 -37.34375 19.015625 -35.671875 17.421875 -32.296875 Z M 16.65625 -32.296875 "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-5">
+<path style="stroke:none;" d="M 7.6875 -30.390625 C 9.265625 -30.578125 11.09375 -30.671875 13.875 -30.671875 L 33.59375 -30.671875 C 36.671875 -30.671875 38.015625 -30.625 39.890625 -30.390625 L 39.890625 -34.21875 C 38.203125 -33.984375 36.8125 -33.9375 33.59375 -33.9375 L 13.875 -33.9375 C 11.234375 -33.9375 9.359375 -34.03125 7.6875 -34.265625 Z M 44.59375 -6.140625 C 42.765625 -5.859375 41.421875 -5.8125 38.203125 -5.8125 L 9.703125 -5.8125 C 6.484375 -5.8125 5.09375 -5.90625 3.359375 -6.140625 L 3.359375 -2.203125 C 5.09375 -2.453125 6.859375 -2.546875 9.75 -2.546875 L 38.203125 -2.546875 C 41.140625 -2.546875 42.90625 -2.453125 44.59375 -2.203125 Z M 44.59375 -6.140625 "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-6">
+<path style="stroke:none;" d="M 18.8125 -19.78125 C 18.484375 -15.546875 17.8125 -12.90625 16.21875 -9.890625 C 13.921875 -5.515625 10.265625 -2.359375 4.125 0.625 C 5.140625 1.578125 5.609375 2.203125 6.234375 3.3125 C 12.09375 0.28125 15.84375 -2.96875 18.34375 -7.15625 C 20.546875 -10.890625 21.640625 -14.5 22.078125 -19.78125 L 33.265625 -19.78125 C 33.265625 -11.46875 32.6875 -4.9375 31.6875 -2.015625 C 31.34375 -1.109375 30.8125 -0.8125 29.28125 -0.8125 C 27.546875 -0.8125 25.15625 -1.109375 22.515625 -1.625 C 22.984375 -0.234375 23.140625 0.484375 23.28125 1.78125 C 26.296875 2.0625 27.984375 2.15625 29.5625 2.15625 C 32.359375 2.15625 33.5 1.6875 34.3125 0.234375 C 35.5625 -2.015625 36.484375 -10.125 36.484375 -19.4375 C 36.53125 -21.59375 36.53125 -21.984375 36.671875 -22.84375 C 35.28125 -22.65625 33.84375 -22.609375 31.625 -22.609375 L 15.84375 -22.609375 C 13.875 -22.609375 12.234375 -22.703125 10.84375 -22.890625 L 10.84375 -19.484375 C 12.34375 -19.6875 13.96875 -19.78125 15.796875 -19.78125 Z M 16.84375 -39.703125 C 16.609375 -38.25 15.984375 -36.765625 14.78125 -34.65625 C 11.5625 -28.890625 7.4375 -24.484375 1.625 -20.59375 C 2.734375 -19.6875 3.359375 -18.953125 3.984375 -18 C 10.75 -22.984375 15.40625 -28.5625 19.109375 -36 C 19.828125 -37.484375 20.015625 -37.875 20.453125 -38.453125 Z M 27.5 -38.359375 C 27.75 -37.96875 28.03125 -37.4375 28.265625 -37.015625 C 32.78125 -28.171875 36.859375 -23.328125 44.453125 -17.71875 C 45.171875 -18.953125 45.796875 -19.78125 46.703125 -20.640625 C 40.125 -24.953125 36.046875 -29.28125 32.546875 -35.5625 C 31.53125 -37.390625 31.109375 -38.359375 30.71875 -39.59375 Z M 27.5 -38.359375 "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-7">
+<path style="stroke:none;" d="M 39.359375 -26.921875 C 41.1875 -26.921875 43.015625 -26.828125 44.734375 -26.640625 L 44.734375 -30.09375 C 43.296875 -29.859375 41.8125 -29.765625 39.3125 -29.765625 L 25.203125 -29.765625 L 25.203125 -35.140625 C 25.203125 -36.625 25.296875 -38.015625 25.53125 -39.5 L 21.640625 -39.5 C 21.890625 -37.96875 21.984375 -36.71875 21.984375 -35.09375 L 21.984375 -29.765625 L 8.59375 -29.765625 C 6.53125 -29.765625 4.984375 -29.859375 3.359375 -30.09375 L 3.359375 -26.640625 C 5.1875 -26.828125 6.71875 -26.921875 8.640625 -26.921875 L 21.546875 -26.921875 C 18.859375 -22.125 16.796875 -19.15625 13.921875 -15.9375 C 10.46875 -12.046875 6 -8.296875 1.734375 -5.71875 C 2.6875 -4.984375 3.453125 -4.078125 4.171875 -2.921875 C 7.625 -5.328125 10.515625 -7.828125 13.4375 -10.796875 C 17.09375 -14.546875 19.6875 -18.28125 22.171875 -23.5625 C 22.078125 -21.59375 21.984375 -19.15625 21.984375 -17.5625 L 21.984375 -1.96875 C 21.984375 0.234375 21.890625 1.875 21.640625 3.546875 L 25.53125 3.546875 C 25.296875 2.015625 25.203125 0.28125 25.203125 -1.96875 L 25.203125 -17.5625 C 25.203125 -19.34375 25.109375 -21.5 24.953125 -23.765625 C 26.875 -20.15625 27.75 -18.71875 29.328125 -16.5625 C 31.875 -13.0625 33.453125 -11.375 37.296875 -8.015625 C 39.640625 -5.953125 40.84375 -5.046875 43.78125 -3.078125 C 44.546875 -4.421875 44.96875 -4.890625 46.171875 -6.09375 C 41.609375 -8.640625 37.78125 -11.5625 33.9375 -15.59375 C 30.953125 -18.671875 28.515625 -22.03125 25.6875 -26.921875 Z M 39.359375 -26.921875 "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-8">
+<path style="stroke:none;" d="M 4.5625 -27.984375 C 6.28125 -28.421875 11.5625 -28.890625 21.125 -29.5625 C 26.15625 -29.90625 28.9375 -30.140625 31.6875 -30.625 C 29.859375 -29.765625 28.609375 -29.09375 27.125 -28.078125 C 21.40625 -24.1875 18.140625 -18.90625 18.140625 -13.34375 C 18.140625 -9.359375 20.0625 -5.859375 23.46875 -3.546875 C 26.203125 -1.6875 29.09375 -0.671875 33.84375 0.140625 C 34.703125 0.28125 34.796875 0.34375 35.328125 0.4375 L 35.953125 -3.453125 C 35.765625 -3.453125 35.5625 -3.453125 35.46875 -3.453125 C 33.640625 -3.453125 30.625 -4.125 28.265625 -4.984375 C 24 -6.625 21.546875 -9.84375 21.546875 -13.875 C 21.546875 -17.859375 23.609375 -21.75 27.453125 -24.953125 C 30.09375 -27.21875 33.453125 -28.9375 36.671875 -29.765625 C 38.5 -30.234375 40.125 -30.4375 42.046875 -30.4375 L 41.765625 -33.984375 C 41.09375 -33.796875 40.171875 -33.703125 36.046875 -33.453125 L 33.3125 -33.359375 C 31.734375 -33.3125 31.109375 -33.265625 25.203125 -32.921875 L 17.65625 -32.453125 C 11.765625 -32.109375 11.46875 -32.0625 8.78125 -31.875 C 7.296875 -31.78125 6.71875 -31.734375 6.046875 -31.734375 C 5.71875 -31.734375 5.234375 -31.734375 4.3125 -31.78125 Z M 34.03125 -23.375 C 35.46875 -21.890625 37.78125 -18.28125 38.921875 -15.75 L 41.375 -17.1875 C 39.9375 -20.015625 38.59375 -22.03125 36.4375 -24.625 Z M 39.5 -25.96875 C 41.375 -23.765625 43.34375 -20.6875 44.40625 -18.4375 L 46.796875 -19.78125 C 45.21875 -22.796875 44.015625 -24.625 41.859375 -27.265625 Z M 39.5 -25.96875 "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-9">
+<path style="stroke:none;" d="M 15.546875 -1.15625 C 12.578125 -0.578125 10.5625 -0.34375 8.453125 -0.234375 L 9.265625 3.125 C 9.890625 2.921875 10.75 2.734375 11.515625 2.546875 C 18.625 1.15625 23.09375 0.046875 29.328125 -1.734375 L 29.328125 -4.65625 C 24.4375 -3.21875 22.375 -2.640625 18.484375 -1.78125 L 18.484375 -13.015625 C 20.78125 -14.96875 21.21875 -15.40625 23.140625 -17.46875 L 23.65625 -17.46875 C 27.890625 -7.78125 33.640625 -2.15625 44.25 2.640625 C 44.828125 1.578125 45.40625 0.71875 46.3125 -0.234375 C 40.84375 -2.296875 37.015625 -4.515625 33.59375 -7.6875 C 36.28125 -9.703125 38.546875 -11.65625 40.5625 -13.625 C 41.1875 -14.25 41.1875 -14.25 41.515625 -14.546875 L 38.734375 -16.421875 C 37.203125 -14.40625 34.84375 -12.140625 31.6875 -9.703125 C 29.328125 -12.4375 28.265625 -14.0625 26.6875 -17.46875 L 40.078125 -17.46875 C 42.140625 -17.46875 43.828125 -17.375 45.3125 -17.1875 L 45.3125 -20.453125 C 44.109375 -20.25 42.625 -20.15625 40.078125 -20.15625 L 25.0625 -20.15625 L 25.0625 -24.8125 L 35.71875 -24.8125 C 38.59375 -24.8125 39.640625 -24.765625 40.796875 -24.625 L 40.796875 -27.703125 C 39.640625 -27.546875 38.546875 -27.5 35.71875 -27.5 L 25.0625 -27.5 L 25.0625 -32.015625 L 38.359375 -32.015625 C 40.75 -32.015625 42.1875 -31.96875 43.53125 -31.78125 L 43.53125 -34.9375 C 42.234375 -34.75 40.703125 -34.65625 38.25 -34.65625 L 25.0625 -34.65625 L 25.0625 -35.765625 C 25.0625 -37.734375 25.109375 -38.640625 25.34375 -39.9375 L 21.84375 -39.9375 C 22.03125 -38.78125 22.125 -37.828125 22.125 -35.765625 L 22.125 -34.65625 L 9.796875 -34.65625 C 7.390625 -34.65625 5.859375 -34.75 4.609375 -34.9375 L 4.609375 -31.78125 C 5.859375 -31.96875 7.34375 -32.015625 9.703125 -32.015625 L 22.125 -32.015625 L 22.125 -27.5 L 12.1875 -27.5 C 9.5 -27.5 8.40625 -27.546875 7.296875 -27.703125 L 7.296875 -24.625 C 8.359375 -24.765625 9.453125 -24.8125 12.1875 -24.8125 L 22.125 -24.8125 L 22.125 -20.15625 L 7.96875 -20.15625 C 5.234375 -20.15625 3.890625 -20.203125 2.640625 -20.453125 L 2.640625 -17.1875 C 4.078125 -17.375 5.8125 -17.46875 7.96875 -17.46875 L 19.53125 -17.46875 C 15.21875 -13.015625 9.453125 -9.546875 2.203125 -7.0625 C 3.21875 -5.90625 3.703125 -5.234375 4.125 -4.3125 C 9.265625 -6.625 11.765625 -8.015625 15.546875 -10.703125 Z M 15.546875 -1.15625 "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-10">
+<path style="stroke:none;" d="M 8.921875 -34.375 L 8.921875 -23.09375 L 6.71875 -23.09375 C 5.234375 -23.09375 4.5625 -23.140625 3.453125 -23.328125 L 3.453125 -20.203125 C 4.5625 -20.40625 5.375 -20.453125 6.671875 -20.453125 L 8.921875 -20.453125 L 8.921875 -7.6875 C 5.765625 -6.484375 3.890625 -5.90625 2.25 -5.609375 L 3.265625 -2.25 C 3.9375 -2.546875 4.796875 -2.921875 5.859375 -3.3125 C 10.65625 -5.140625 13.921875 -6.625 18.140625 -8.921875 L 18.09375 -11.953125 C 14.921875 -10.265625 13.734375 -9.703125 11.90625 -8.921875 L 11.90625 -20.453125 L 13.96875 -20.453125 C 15.21875 -20.453125 15.9375 -20.40625 17.140625 -20.25 L 17.140625 -23.328125 C 15.984375 -23.140625 15.453125 -23.09375 13.96875 -23.09375 L 11.90625 -23.09375 L 11.90625 -34.375 L 14.0625 -34.375 C 15.703125 -34.375 16.703125 -34.3125 17.90625 -34.171875 L 17.90625 -37.34375 C 16.75 -37.109375 15.75 -37.0625 13.921875 -37.0625 L 6.859375 -37.0625 C 4.9375 -37.0625 3.9375 -37.109375 2.734375 -37.34375 L 2.734375 -34.125 C 4.125 -34.3125 4.703125 -34.375 6.765625 -34.375 Z M 25.484375 -11.859375 C 25.34375 -8.78125 24.34375 -6.1875 22.3125 -3.9375 C 20.015625 -1.34375 17.1875 0.234375 12.8125 1.390625 C 13.828125 2.359375 14.40625 3.078125 14.921875 4.078125 C 20.0625 2.296875 23.328125 0.046875 25.6875 -3.40625 C 27.3125 -5.8125 28.21875 -8.59375 28.46875 -11.859375 L 32.828125 -11.859375 L 32.828125 -0.140625 C 32.828125 2.40625 33.796875 2.875 38.921875 2.875 C 45.21875 2.875 45.546875 2.5 46.171875 -5.28125 C 45.171875 -5.5625 44.453125 -5.90625 43.296875 -6.578125 C 43.296875 -3.890625 43.0625 -1.53125 42.71875 -0.71875 C 42.4375 -0.09375 41.71875 0.09375 39.3125 0.09375 C 36.09375 0.09375 35.8125 0 35.8125 -0.90625 L 35.8125 -11.859375 L 37.734375 -11.859375 C 40.078125 -11.859375 40.890625 -11.8125 42.390625 -11.65625 C 42.234375 -12.953125 42.1875 -14.296875 42.1875 -16.65625 L 42.1875 -33.59375 C 42.1875 -35.953125 42.234375 -37.25 42.390625 -38.5 C 41.140625 -38.359375 40.078125 -38.296875 37.828125 -38.296875 L 24.4375 -38.296875 C 22.03125 -38.296875 20.921875 -38.359375 19.734375 -38.5 C 19.875 -37.15625 19.921875 -36 19.921875 -33.59375 L 19.921875 -16.5625 C 19.921875 -14.359375 19.875 -12.953125 19.78125 -11.71875 C 21.125 -11.8125 22.421875 -11.859375 24.4375 -11.859375 Z M 22.796875 -35.5625 L 39.3125 -35.5625 L 39.3125 -30.34375 L 22.796875 -30.34375 Z M 22.796875 -27.703125 L 39.3125 -27.703125 L 39.3125 -22.515625 L 22.796875 -22.515625 Z M 22.796875 -19.875 L 39.3125 -19.875 L 39.3125 -14.359375 L 22.796875 -14.359375 Z M 22.796875 -19.875 "/>
+</symbol>
+</g>
+</defs>
+<g id="surface1">
+<rect x="0" y="0" width="1455" height="2265" style="fill:rgb(100%,100%,100%);fill-opacity:1;stroke:none;"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-1" x="207.3861" y="253.690003"/>
+  <use xlink:href="#glyph0-2" x="219.8181" y="253.690003"/>
+  <use xlink:href="#glyph0-3" x="245.5941" y="253.690003"/>
+  <use xlink:href="#glyph0-4" x="264.2661" y="253.690003"/>
+  <use xlink:href="#glyph0-5" x="292.7301" y="253.690003"/>
+  <use xlink:href="#glyph0-6" x="305.1621" y="253.690003"/>
+  <use xlink:href="#glyph0-7" x="318.5061" y="253.690003"/>
+  <use xlink:href="#glyph0-6" x="329.1621" y="253.690003"/>
+  <use xlink:href="#glyph0-1" x="342.5061" y="253.690003"/>
+  <use xlink:href="#glyph0-8" x="354.9381" y="253.690003"/>
+  <use xlink:href="#glyph0-6" x="369.1461" y="253.690003"/>
+  <use xlink:href="#glyph0-3" x="382.4901" y="253.690003"/>
+  <use xlink:href="#glyph0-6" x="401.1621" y="253.690003"/>
+  <use xlink:href="#glyph0-9" x="414.5061" y="253.690003"/>
+  <use xlink:href="#glyph0-5" x="425.1621" y="253.690003"/>
+  <use xlink:href="#glyph0-6" x="437.5941" y="253.690003"/>
+  <use xlink:href="#glyph0-7" x="450.9381" y="253.690003"/>
+  <use xlink:href="#glyph0-6" x="461.5941" y="253.690003"/>
+  <use xlink:href="#glyph0-10" x="474.9381" y="253.690003"/>
+  <use xlink:href="#glyph0-6" x="515.8821" y="253.690003"/>
+  <use xlink:href="#glyph0-7" x="529.2261" y="253.690003"/>
+  <use xlink:href="#glyph0-6" x="539.8821" y="253.690003"/>
+  <use xlink:href="#glyph0-1" x="553.2261" y="253.690003"/>
+  <use xlink:href="#glyph0-11" x="565.6581" y="253.690003"/>
+  <use xlink:href="#glyph0-3" x="593.2101" y="253.690003"/>
+  <use xlink:href="#glyph0-12" x="611.8821" y="253.690003"/>
+  <use xlink:href="#glyph0-5" x="634.9221" y="253.690003"/>
+</g>
+<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 52.441406 167.24349 L 507.1875 167.24349 " transform="matrix(3,0,0,3,-102,-51)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 63.779948 146.496094 L 63.779948 186.425781 " transform="matrix(3,0,0,3,-102,-51)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 119.054688 154.488281 L 119.054688 178.433594 " transform="matrix(3,0,0,3,-102,-51)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 150.235677 154.488281 L 150.235677 178.433594 " transform="matrix(3,0,0,3,-102,-51)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 202.677083 153.070312 L 202.677083 177.016927 " transform="matrix(3,0,0,3,-102,-51)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 231.023438 153.070312 L 231.023438 177.016927 " transform="matrix(3,0,0,3,-102,-51)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 263.622396 153.070312 L 263.622396 177.016927 " transform="matrix(3,0,0,3,-102,-51)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 358.583333 146.496094 L 358.583333 182.658854 " transform="matrix(3,0,0,3,-102,-51)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-2" x="74.3246" y="559.832003"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-4" x="238.8074" y="559.832003"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-8" x="339.4787" y="559.832003"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-9" x="498.5775" y="559.832003"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-10" x="568.4729" y="559.832003"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-11" x="672.9642" y="559.832003"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-12" x="960.1021" y="559.832003"/>
+</g>
+<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 73.678385 177.785156 L 109.15625 178.291667 " transform="matrix(3,0,0,3,-102,-51)"/>
+<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 117.154948 178.40625 L 109.199219 175.292969 L 109.113281 181.291667 Z M 117.154948 178.40625 " transform="matrix(3,0,0,3,-102,-51)"/>
+<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 65.679688 177.671875 L 73.635417 180.785156 L 73.721354 174.786458 Z M 65.679688 177.671875 " transform="matrix(3,0,0,3,-102,-51)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 160.136719 178.433594 L 192.777344 178.433594 " transform="matrix(3,0,0,3,-102,-51)"/>
+<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 200.777344 178.433594 L 192.777344 175.433594 L 192.777344 181.433594 Z M 200.777344 178.433594 " transform="matrix(3,0,0,3,-102,-51)"/>
+<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 152.136719 178.433594 L 160.136719 181.433594 L 160.136719 175.433594 Z M 152.136719 178.433594 " transform="matrix(3,0,0,3,-102,-51)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 274.522135 176.423177 L 348.683594 176.97526 " transform="matrix(3,0,0,3,-102,-51)"/>
+<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 356.682292 177.035156 L 348.705729 173.97526 L 348.660156 179.97526 Z M 356.682292 177.035156 " transform="matrix(3,0,0,3,-102,-51)"/>
+<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 266.522135 176.364583 L 274.5 179.423177 L 274.544271 173.423177 Z M 266.522135 176.364583 " transform="matrix(3,0,0,3,-102,-51)"/>
+<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 83.6875 385.446615 C 91.158854 392.919271 91.158854 405.033854 83.6875 412.50651 C 76.214844 419.977865 64.10026 419.977865 56.627604 412.50651 C 49.154948 405.033854 49.154948 392.919271 56.627604 385.446615 C 64.10026 377.973958 76.214844 377.973958 83.6875 385.446615 " transform="matrix(3,0,0,3,-102,-51)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-2" x="82.2404" y="1163.257003"/>
+  <use xlink:href="#glyph0-13" x="108.0164" y="1163.257003"/>
+</g>
+<g style="fill:rgb(75.686646%,10.588074%,14.117432%);fill-opacity:1;">
+  <use xlink:href="#glyph0-2" x="60.9806" y="649.832003"/>
+  <use xlink:href="#glyph0-13" x="86.7566" y="649.832003"/>
+</g>
+<g style="fill:rgb(75.686646%,10.588074%,14.117432%);fill-opacity:1;">
+  <use xlink:href="#glyph0-2" x="230.4334" y="649.832003"/>
+  <use xlink:href="#glyph0-14" x="256.2094" y="649.832003"/>
+</g>
+<g style="fill:rgb(75.686646%,10.588074%,14.117432%);fill-opacity:1;">
+  <use xlink:href="#glyph0-2" x="320.3507" y="649.832003"/>
+  <use xlink:href="#glyph0-15" x="346.1267" y="649.832003"/>
+</g>
+<g style="fill:rgb(75.686646%,10.588074%,14.117432%);fill-opacity:1;">
+  <use xlink:href="#glyph0-2" x="477.6735" y="649.832003"/>
+  <use xlink:href="#glyph0-16" x="503.4495" y="649.832003"/>
+</g>
+<g style="fill:rgb(75.686646%,10.588074%,14.117432%);fill-opacity:1;">
+  <use xlink:href="#glyph0-2" x="562.7129" y="649.832003"/>
+  <use xlink:href="#glyph0-17" x="588.4889" y="649.832003"/>
+</g>
+<g style="fill:rgb(75.686646%,10.588074%,14.117432%);fill-opacity:1;">
+  <use xlink:href="#glyph0-2" x="660.5082" y="649.832003"/>
+  <use xlink:href="#glyph0-18" x="686.2842" y="649.832003"/>
+</g>
+<g style="fill:rgb(75.686646%,10.588074%,14.117432%);fill-opacity:1;">
+  <use xlink:href="#glyph0-2" x="945.3901" y="649.832003"/>
+  <use xlink:href="#glyph0-19" x="971.1661" y="649.832003"/>
+</g>
+<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 158.923177 385.446615 C 166.395833 392.919271 166.395833 405.033854 158.923177 412.50651 C 151.450521 419.977865 139.335938 419.977865 131.864583 412.50651 C 124.391927 405.033854 124.391927 392.919271 131.864583 385.446615 C 139.335938 377.973958 151.450521 377.973958 158.923177 385.446615 " transform="matrix(3,0,0,3,-102,-51)"/>
+<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 121.954427 335.839844 C 129.427083 343.3125 129.427083 355.427083 121.954427 362.89974 C 114.483073 370.372396 102.367188 370.372396 94.895833 362.89974 C 87.423177 355.427083 87.423177 343.3125 94.895833 335.839844 C 102.367188 328.36849 114.483073 328.36849 121.954427 335.839844 " transform="matrix(3,0,0,3,-102,-51)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 96.736979 364.522135 L 81.846354 383.825521 " transform="matrix(3,0,0,3,-102,-51)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 119.860677 364.714844 L 133.958333 383.632812 " transform="matrix(3,0,0,3,-102,-51)"/>
+<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 121.954427 435.053385 C 129.427083 442.52474 129.427083 454.640625 121.954427 462.111979 C 114.483073 469.584635 102.367188 469.584635 94.895833 462.111979 C 87.423177 454.640625 87.423177 442.52474 94.895833 435.053385 C 102.367188 427.580729 114.483073 427.580729 121.954427 435.053385 " transform="matrix(3,0,0,3,-102,-51)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-2" x="197.0436" y="1312.076003"/>
+  <use xlink:href="#glyph0-14" x="222.8196" y="1312.076003"/>
+</g>
+<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 194.238281 435.053385 C 201.710938 442.52474 201.710938 454.640625 194.238281 462.111979 C 186.765625 469.584635 174.651042 469.584635 167.178385 462.111979 C 159.707031 454.640625 159.707031 442.52474 167.178385 435.053385 C 174.651042 427.580729 186.765625 427.580729 194.238281 435.053385 " transform="matrix(3,0,0,3,-102,-51)"/>
+<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 158.923177 491.509115 C 166.395833 498.981771 166.395833 511.096354 158.923177 518.56901 C 151.450521 526.041667 139.335938 526.041667 131.864583 518.56901 C 124.391927 511.096354 124.391927 498.981771 131.864583 491.509115 C 139.335938 484.03776 151.450521 484.03776 158.923177 491.509115 " transform="matrix(3,0,0,3,-102,-51)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-2" x="307.9491" y="1481.446103"/>
+  <use xlink:href="#glyph0-15" x="333.7251" y="1481.446103"/>
+</g>
+<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 232.50651 488.911458 C 239.977865 496.384115 239.977865 508.498698 232.50651 515.970052 C 225.033854 523.442708 212.919271 523.442708 205.446615 515.970052 C 197.973958 508.498698 197.973958 496.384115 205.446615 488.911458 C 212.919271 481.438802 225.033854 481.438802 232.50651 488.911458 " transform="matrix(3,0,0,3,-102,-51)"/>
+<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 194.238281 547.966146 C 201.710938 555.438802 201.710938 567.553385 194.238281 575.026042 C 186.765625 582.497396 174.651042 582.497396 167.178385 575.026042 C 159.707031 567.553385 159.707031 555.438802 167.178385 547.966146 C 174.651042 540.49349 186.765625 540.49349 194.238281 547.966146 " transform="matrix(3,0,0,3,-102,-51)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-2" x="413.894" y="1650.816203"/>
+  <use xlink:href="#glyph0-16" x="439.67" y="1650.816203"/>
+</g>
+<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 269.473958 547.966146 C 276.946615 555.438802 276.946615 567.553385 269.473958 575.026042 C 262.002604 582.497396 249.888021 582.497396 242.415365 575.026042 C 234.942708 567.553385 234.942708 555.438802 242.415365 547.966146 C 249.888021 540.49349 262.002604 540.49349 269.473958 547.966146 " transform="matrix(3,0,0,3,-102,-51)"/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 595.519531 1741.71875 C 617.933594 1764.136719 617.933594 1800.480469 595.519531 1822.894531 C 573.101562 1845.3125 536.757812 1845.3125 514.339844 1822.894531 C 491.921875 1800.480469 491.921875 1764.136719 514.339844 1741.71875 C 536.757812 1719.300781 573.101562 1719.300781 595.519531 1741.71875 "/>
+<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 232.50651 597.572917 C 239.977865 605.044271 239.977865 617.160156 232.50651 624.63151 C 225.033854 632.104167 212.919271 632.104167 205.446615 624.63151 C 197.973958 617.160156 197.973958 605.044271 205.446615 597.572917 C 212.919271 590.10026 225.033854 590.10026 232.50651 597.572917 " transform="matrix(3,0,0,3,-102,-51)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-2" x="528.6971" y="1799.635103"/>
+  <use xlink:href="#glyph0-17" x="554.4731" y="1799.635103"/>
+</g>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 812.367188 1741.71875 C 834.785156 1764.136719 834.785156 1800.480469 812.367188 1822.894531 C 789.953125 1845.3125 753.605469 1845.3125 731.191406 1822.894531 C 708.773438 1800.480469 708.773438 1764.136719 731.191406 1741.71875 C 753.605469 1719.300781 789.953125 1719.300781 812.367188 1741.71875 "/>
+<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 304.789062 597.572917 C 312.261719 605.044271 312.261719 617.160156 304.789062 624.63151 C 297.317708 632.104167 285.201823 632.104167 277.730469 624.63151 C 270.257812 617.160156 270.257812 605.044271 277.730469 597.572917 C 285.201823 590.10026 297.317708 590.10026 304.789062 597.572917 " transform="matrix(3,0,0,3,-102,-51)"/>
+<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 269.473958 654.029948 C 276.946615 661.501302 276.946615 673.615885 269.473958 681.088542 C 262.002604 688.561198 249.888021 688.561198 242.415365 681.088542 C 234.942708 673.615885 234.942708 661.501302 242.415365 654.029948 C 249.888021 646.557292 262.002604 646.557292 269.473958 654.029948 " transform="matrix(3,0,0,3,-102,-51)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-2" x="639.6027" y="1969.005203"/>
+  <use xlink:href="#glyph0-18" x="665.3787" y="1969.005203"/>
+</g>
+<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 343.057292 651.43099 C 350.529948 658.903646 350.529948 671.018229 343.057292 678.490885 C 335.584635 685.96224 323.470052 685.96224 315.997396 678.490885 C 308.526042 671.018229 308.526042 658.903646 315.997396 651.43099 C 323.470052 643.958333 335.584635 643.958333 343.057292 651.43099 " transform="matrix(3,0,0,3,-102,-51)"/>
+<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 304.789062 707.888021 C 312.261719 715.359375 312.261719 727.47526 304.789062 734.946615 C 297.317708 742.419271 285.201823 742.419271 277.730469 734.946615 C 270.257812 727.47526 270.257812 715.359375 277.730469 707.888021 C 285.201823 700.415365 297.317708 700.415365 304.789062 707.888021 " transform="matrix(3,0,0,3,-102,-51)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-2" x="745.5475" y="2130.580003"/>
+  <use xlink:href="#glyph0-19" x="771.3235" y="2130.580003"/>
+</g>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 1033.117188 2064.867188 C 1055.53125 2087.285156 1055.53125 2123.628906 1033.117188 2146.046875 C 1010.699219 2168.460938 974.355469 2168.460938 951.9375 2146.046875 C 929.523438 2123.628906 929.523438 2087.285156 951.9375 2064.867188 C 974.355469 2042.449219 1010.699219 2042.449219 1033.117188 2064.867188 "/>
+<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 378.372396 705.289062 C 385.845052 712.761719 385.845052 724.876302 378.372396 732.348958 C 370.89974 739.820312 358.785156 739.820312 351.3125 732.348958 C 343.841146 724.876302 343.841146 712.761719 351.3125 705.289062 C 358.785156 697.816406 370.89974 697.816406 378.372396 705.289062 " transform="matrix(3,0,0,3,-102,-51)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph1-1" x="961.8556" y="2114.1207"/>
+  <use xlink:href="#glyph1-2" x="979.1836" y="2114.1207"/>
+  <use xlink:href="#glyph1-3" x="996.5116" y="2114.1207"/>
+  <use xlink:href="#glyph1-3" x="1009.8556" y="2114.1207"/>
+</g>
+<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 133.958333 414.320312 L 119.860677 433.238281 " transform="matrix(3,0,0,3,-102,-51)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 156.492188 414.566406 L 169.610677 432.992188 " transform="matrix(3,0,0,3,-102,-51)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 170.559896 464.807292 L 155.542969 488.813802 " transform="matrix(3,0,0,3,-102,-51)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 191.792969 464.182292 L 207.891927 486.841146 " transform="matrix(3,0,0,3,-102,-51)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 208.56901 518.501302 L 191.115885 545.434896 " transform="matrix(3,0,0,3,-102,-51)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 229.13151 518.66276 L 245.790365 545.27474 " transform="matrix(3,0,0,3,-102,-51)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 244.510417 576.839844 L 230.411458 595.757812 " transform="matrix(3,0,0,3,-102,-51)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 267.042969 577.085938 L 280.161458 595.513021 " transform="matrix(3,0,0,3,-102,-51)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 281.110677 627.328125 L 266.09375 651.333333 " transform="matrix(3,0,0,3,-102,-51)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 302.34375 626.701823 L 318.442708 649.360677 " transform="matrix(3,0,0,3,-102,-51)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 318.790365 680.802083 L 301.997396 705.575521 " transform="matrix(3,0,0,3,-102,-51)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 340.020833 680.964844 L 354.348958 702.815104 " transform="matrix(3,0,0,3,-102,-51)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-3" x="105.5986" y="1240.147003"/>
+  <use xlink:href="#glyph0-6" x="124.2706" y="1240.147003"/>
+  <use xlink:href="#glyph0-2" x="137.6146" y="1240.147003"/>
+  <use xlink:href="#glyph0-14" x="163.3906" y="1240.147003"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-3" x="226.2574" y="1388.965803"/>
+  <use xlink:href="#glyph0-6" x="244.9294" y="1388.965803"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph2-1" x="258.2734" y="1388.965803"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-3" x="335.2049" y="1559.044503"/>
+  <use xlink:href="#glyph0-6" x="353.8769" y="1559.044503"/>
+  <use xlink:href="#glyph0-2" x="367.2209" y="1559.044503"/>
+  <use xlink:href="#glyph0-16" x="392.9969" y="1559.044503"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-3" x="454.092" y="1720.619403"/>
+  <use xlink:href="#glyph0-6" x="472.764" y="1720.619403"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph2-1" x="486.108" y="1720.619403"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-3" x="557.0369" y="1877.942203"/>
+  <use xlink:href="#glyph0-6" x="575.7089" y="1877.942203"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph2-1" x="589.0529" y="1877.942203"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-3" x="659.1104" y="2048.020903"/>
+  <use xlink:href="#glyph0-6" x="677.7824" y="2048.020903"/>
+  <use xlink:href="#glyph0-2" x="691.1264" y="2048.020903"/>
+  <use xlink:href="#glyph0-19" x="716.9024" y="2048.020903"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-3" x="772.9896" y="2209.595743"/>
+  <use xlink:href="#glyph0-6" x="791.6616" y="2209.595743"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph2-1" x="805.0056" y="2209.595743"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-20" x="163.1454" y="90.578976"/>
+  <use xlink:href="#glyph0-21" x="197.8014" y="90.578976"/>
+  <use xlink:href="#glyph0-2" x="224.4894" y="90.578976"/>
+  <use xlink:href="#glyph0-22" x="250.2654" y="90.578976"/>
+  <use xlink:href="#glyph0-20" x="266.2494" y="90.578976"/>
+  <use xlink:href="#glyph0-23" x="300.9054" y="90.578976"/>
+  <use xlink:href="#glyph0-2" x="311.5614" y="90.578976"/>
+  <use xlink:href="#glyph0-24" x="337.3374" y="90.578976"/>
+  <use xlink:href="#glyph0-24" x="361.3374" y="90.578976"/>
+  <use xlink:href="#glyph0-6" x="385.3374" y="90.578976"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph3-1" x="398.6814" y="90.578976"/>
+  <use xlink:href="#glyph3-2" x="446.6814" y="90.578976"/>
+  <use xlink:href="#glyph3-3" x="494.6814" y="90.578976"/>
+  <use xlink:href="#glyph3-4" x="542.6814" y="90.578976"/>
+  <use xlink:href="#glyph3-5" x="590.6814" y="90.578976"/>
+  <use xlink:href="#glyph3-6" x="638.6814" y="90.578976"/>
+  <use xlink:href="#glyph3-7" x="686.6814" y="90.578976"/>
+  <use xlink:href="#glyph3-8" x="734.6814" y="90.578976"/>
+  <use xlink:href="#glyph3-9" x="782.6814" y="90.578976"/>
+  <use xlink:href="#glyph3-10" x="830.6814" y="90.578976"/>
+</g>
+</g>
+</svg>
Binary file 2015/images/vector/CharClassTree1.pdf has changed
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/2015/images/vector/CharClassTree1.svg	Fri Nov 27 11:59:04 2015 +0900
@@ -0,0 +1,467 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="1491pt" height="2265pt" viewBox="0 0 1491 2265" version="1.1">
+<defs>
+<g>
+<symbol overflow="visible" id="glyph0-0">
+<path style="stroke:none;" d="M 19.625 -31.96875 L 4.890625 -31.96875 L 4.890625 -2.25 L 19.625 -2.25 Z M 22.078125 -34.171875 L 22.078125 -0.046875 L 2.453125 -0.046875 L 2.453125 -34.171875 Z M 22.078125 -34.171875 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-1">
+<path style="stroke:none;" d="M 12.4375 -31.828125 L 12.4375 -35.09375 L 3.453125 -35.09375 L 3.453125 9.453125 L 12.4375 9.453125 L 12.4375 6.1875 L 7.296875 6.1875 L 7.296875 -31.828125 Z M 12.4375 -31.828125 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-2">
+<path style="stroke:none;" d="M 25.0625 -0.09375 C 24.351562 0.320312 23.375 0.53125 22.125 0.53125 C 21.070312 0.53125 20.234375 0.234375 19.609375 -0.359375 C 18.984375 -0.953125 18.671875 -1.921875 18.671875 -3.265625 C 17.546875 -1.921875 16.238281 -0.953125 14.75 -0.359375 C 13.269531 0.234375 11.664062 0.53125 9.9375 0.53125 C 8.8125 0.53125 7.742188 0.398438 6.734375 0.140625 C 5.734375 -0.109375 4.863281 -0.503906 4.125 -1.046875 C 3.394531 -1.597656 2.8125 -2.3125 2.375 -3.1875 C 1.945312 -4.070312 1.734375 -5.140625 1.734375 -6.390625 C 1.734375 -7.796875 1.972656 -8.945312 2.453125 -9.84375 C 2.929688 -10.738281 3.5625 -11.460938 4.34375 -12.015625 C 5.125 -12.578125 6.019531 -13.003906 7.03125 -13.296875 C 8.039062 -13.585938 9.070312 -13.828125 10.125 -14.015625 C 11.25 -14.242188 12.3125 -14.410156 13.3125 -14.515625 C 14.320312 -14.628906 15.210938 -14.789062 15.984375 -15 C 16.753906 -15.207031 17.363281 -15.507812 17.8125 -15.90625 C 18.257812 -16.3125 18.484375 -16.894531 18.484375 -17.65625 C 18.484375 -18.5625 18.3125 -19.285156 17.96875 -19.828125 C 17.632812 -20.367188 17.203125 -20.78125 16.671875 -21.0625 C 16.148438 -21.351562 15.5625 -21.546875 14.90625 -21.640625 C 14.25 -21.742188 13.597656 -21.796875 12.953125 -21.796875 C 11.234375 -21.796875 9.796875 -21.46875 8.640625 -20.8125 C 7.484375 -20.15625 6.859375 -18.914062 6.765625 -17.09375 L 2.6875 -17.09375 C 2.75 -18.625 3.066406 -19.914062 3.640625 -20.96875 C 4.222656 -22.03125 4.992188 -22.890625 5.953125 -23.546875 C 6.910156 -24.203125 8.003906 -24.671875 9.234375 -24.953125 C 10.472656 -25.242188 11.796875 -25.390625 13.203125 -25.390625 C 14.316406 -25.390625 15.425781 -25.304688 16.53125 -25.140625 C 17.632812 -24.984375 18.632812 -24.65625 19.53125 -24.15625 C 20.425781 -23.664062 21.144531 -22.972656 21.6875 -22.078125 C 22.238281 -21.179688 22.515625 -20.015625 22.515625 -18.578125 L 22.515625 -5.8125 C 22.515625 -4.851562 22.566406 -4.148438 22.671875 -3.703125 C 22.785156 -3.253906 23.164062 -3.03125 23.8125 -3.03125 C 24.164062 -3.03125 24.582031 -3.109375 25.0625 -3.265625 Z M 18.4375 -12.8125 C 17.914062 -12.425781 17.238281 -12.144531 16.40625 -11.96875 C 15.582031 -11.800781 14.710938 -11.660156 13.796875 -11.546875 C 12.890625 -11.429688 11.96875 -11.300781 11.03125 -11.15625 C 10.101562 -11.007812 9.269531 -10.773438 8.53125 -10.453125 C 7.800781 -10.140625 7.203125 -9.6875 6.734375 -9.09375 C 6.273438 -8.5 6.046875 -7.691406 6.046875 -6.671875 C 6.046875 -5.992188 6.179688 -5.421875 6.453125 -4.953125 C 6.722656 -4.492188 7.070312 -4.117188 7.5 -3.828125 C 7.9375 -3.546875 8.441406 -3.34375 9.015625 -3.21875 C 9.597656 -3.09375 10.207031 -3.03125 10.84375 -3.03125 C 12.1875 -3.03125 13.335938 -3.210938 14.296875 -3.578125 C 15.265625 -3.941406 16.050781 -4.40625 16.65625 -4.96875 C 17.257812 -5.53125 17.707031 -6.140625 18 -6.796875 C 18.289062 -7.453125 18.4375 -8.066406 18.4375 -8.640625 Z M 18.4375 -12.8125 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-3">
+<path style="stroke:none;" d="M 2.40625 -15.265625 L 2.40625 -11.421875 L 16.265625 -11.421875 L 16.265625 -15.265625 Z M 2.40625 -15.265625 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-4">
+<path style="stroke:none;" d="M 6.046875 -12.1875 C 6.046875 -13.40625 6.171875 -14.585938 6.421875 -15.734375 C 6.679688 -16.890625 7.097656 -17.914062 7.671875 -18.8125 C 8.253906 -19.707031 9.023438 -20.425781 9.984375 -20.96875 C 10.941406 -21.519531 12.109375 -21.796875 13.484375 -21.796875 C 14.890625 -21.796875 16.085938 -21.53125 17.078125 -21 C 18.078125 -20.46875 18.890625 -19.769531 19.515625 -18.90625 C 20.140625 -18.039062 20.59375 -17.039062 20.875 -15.90625 C 21.164062 -14.769531 21.3125 -13.597656 21.3125 -12.390625 C 21.3125 -11.234375 21.175781 -10.09375 20.90625 -8.96875 C 20.632812 -7.851562 20.191406 -6.851562 19.578125 -5.96875 C 18.972656 -5.09375 18.191406 -4.382812 17.234375 -3.84375 C 16.273438 -3.300781 15.109375 -3.03125 13.734375 -3.03125 C 12.421875 -3.03125 11.273438 -3.285156 10.296875 -3.796875 C 9.316406 -4.304688 8.515625 -4.992188 7.890625 -5.859375 C 7.265625 -6.722656 6.800781 -7.707031 6.5 -8.8125 C 6.195312 -9.914062 6.046875 -11.039062 6.046875 -12.1875 Z M 25.25 0 L 25.25 -34.265625 L 21.171875 -34.265625 L 21.171875 -21.5 L 21.078125 -21.5 C 20.628906 -22.238281 20.078125 -22.851562 19.421875 -23.34375 C 18.765625 -23.84375 18.066406 -24.242188 17.328125 -24.546875 C 16.585938 -24.859375 15.847656 -25.078125 15.109375 -25.203125 C 14.378906 -25.328125 13.695312 -25.390625 13.0625 -25.390625 C 11.164062 -25.390625 9.503906 -25.046875 8.078125 -24.359375 C 6.660156 -23.671875 5.476562 -22.742188 4.53125 -21.578125 C 3.59375 -20.410156 2.890625 -19.039062 2.421875 -17.46875 C 1.960938 -15.90625 1.734375 -14.242188 1.734375 -12.484375 C 1.734375 -10.722656 1.972656 -9.054688 2.453125 -7.484375 C 2.929688 -5.921875 3.640625 -4.546875 4.578125 -3.359375 C 5.523438 -2.171875 6.707031 -1.222656 8.125 -0.515625 C 9.550781 0.179688 11.226562 0.53125 13.15625 0.53125 C 14.882812 0.53125 16.46875 0.226562 17.90625 -0.375 C 19.34375 -0.988281 20.398438 -1.984375 21.078125 -3.359375 L 21.171875 -3.359375 L 21.171875 0 Z M 25.25 0 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-5">
+<path style="stroke:none;" d="M 0 6.1875 L 0 9.453125 L 8.96875 9.453125 L 8.96875 -35.09375 L 0 -35.09375 L 0 -31.828125 L 5.140625 -31.828125 L 5.140625 6.1875 Z M 0 6.1875 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-6">
+<path style="stroke:none;" d=""/>
+</symbol>
+<symbol overflow="visible" id="glyph0-7">
+<path style="stroke:none;" d="M 3.703125 -37.734375 L 3.703125 10.21875 L 6.953125 10.21875 L 6.953125 -37.734375 Z M 3.703125 -37.734375 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-8">
+<path style="stroke:none;" d="M 4.75 -21.21875 L 4.75 0 L 8.828125 0 L 8.828125 -21.21875 L 13.625 -21.21875 L 13.625 -24.8125 L 8.828125 -24.8125 L 8.828125 -28.265625 C 8.828125 -29.359375 9.097656 -30.097656 9.640625 -30.484375 C 10.191406 -30.867188 10.960938 -31.0625 11.953125 -31.0625 C 12.304688 -31.0625 12.691406 -31.035156 13.109375 -30.984375 C 13.523438 -30.929688 13.90625 -30.84375 14.25 -30.71875 L 14.25 -34.265625 C 13.875 -34.398438 13.4375 -34.5 12.9375 -34.5625 C 12.4375 -34.625 11.992188 -34.65625 11.609375 -34.65625 C 9.367188 -34.65625 7.664062 -34.132812 6.5 -33.09375 C 5.332031 -32.050781 4.75 -30.523438 4.75 -28.515625 L 4.75 -24.8125 L 0.578125 -24.8125 L 0.578125 -21.21875 Z M 4.75 -21.21875 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-9">
+<path style="stroke:none;" d="M 7.390625 -29.28125 L 7.390625 -34.265625 L 3.3125 -34.265625 L 3.3125 -29.28125 Z M 7.390625 3.125 L 7.390625 -24.8125 L 3.3125 -24.8125 L 3.3125 2.453125 C 3.3125 3.734375 3.148438 4.617188 2.828125 5.109375 C 2.515625 5.609375 1.910156 5.859375 1.015625 5.859375 L 0.140625 5.859375 C 0.015625 5.859375 -0.101562 5.847656 -0.21875 5.828125 C -0.332031 5.816406 -0.46875 5.796875 -0.625 5.765625 L -0.625 9.265625 C 0.0195312 9.390625 0.707031 9.453125 1.4375 9.453125 C 3.257812 9.453125 4.707031 8.945312 5.78125 7.9375 C 6.851562 6.9375 7.390625 5.332031 7.390625 3.125 Z M 7.390625 3.125 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-10">
+<path style="stroke:none;" d="M 3.078125 -24.8125 L 3.078125 0 L 7.15625 0 L 7.15625 -15.453125 C 7.15625 -15.929688 7.273438 -16.53125 7.515625 -17.25 C 7.753906 -17.976562 8.132812 -18.675781 8.65625 -19.34375 C 9.1875 -20.019531 9.875 -20.597656 10.71875 -21.078125 C 11.570312 -21.554688 12.59375 -21.796875 13.78125 -21.796875 C 14.707031 -21.796875 15.460938 -21.65625 16.046875 -21.375 C 16.640625 -21.101562 17.113281 -20.71875 17.46875 -20.21875 C 17.820312 -19.726562 18.070312 -19.144531 18.21875 -18.46875 C 18.363281 -17.800781 18.4375 -17.066406 18.4375 -16.265625 L 18.4375 0 L 22.515625 0 L 22.515625 -15.453125 C 22.515625 -17.378906 23.085938 -18.914062 24.234375 -20.0625 C 25.390625 -21.21875 26.972656 -21.796875 28.984375 -21.796875 C 29.984375 -21.796875 30.796875 -21.648438 31.421875 -21.359375 C 32.046875 -21.066406 32.53125 -20.671875 32.875 -20.171875 C 33.226562 -19.679688 33.46875 -19.097656 33.59375 -18.421875 C 33.726562 -17.753906 33.796875 -17.035156 33.796875 -16.265625 L 33.796875 0 L 37.875 0 L 37.875 -18.1875 C 37.875 -19.46875 37.671875 -20.5625 37.265625 -21.46875 C 36.867188 -22.382812 36.3125 -23.128906 35.59375 -23.703125 C 34.875 -24.285156 34.007812 -24.710938 33 -24.984375 C 31.988281 -25.253906 30.859375 -25.390625 29.609375 -25.390625 C 27.984375 -25.390625 26.488281 -25.019531 25.125 -24.28125 C 23.769531 -23.550781 22.675781 -22.515625 21.84375 -21.171875 C 21.332031 -22.703125 20.453125 -23.785156 19.203125 -24.421875 C 17.953125 -25.066406 16.5625 -25.390625 15.03125 -25.390625 C 11.539062 -25.390625 8.867188 -23.984375 7.015625 -21.171875 L 6.90625 -21.171875 L 6.90625 -24.8125 Z M 3.078125 -24.8125 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-11">
+<path style="stroke:none;" d="M 6.046875 -12.390625 C 6.046875 -13.890625 6.242188 -15.222656 6.640625 -16.390625 C 7.046875 -17.554688 7.597656 -18.539062 8.296875 -19.34375 C 9.003906 -20.144531 9.828125 -20.753906 10.765625 -21.171875 C 11.710938 -21.585938 12.71875 -21.796875 13.78125 -21.796875 C 14.832031 -21.796875 15.828125 -21.585938 16.765625 -21.171875 C 17.710938 -20.753906 18.535156 -20.144531 19.234375 -19.34375 C 19.941406 -18.539062 20.492188 -17.554688 20.890625 -16.390625 C 21.296875 -15.222656 21.5 -13.890625 21.5 -12.390625 C 21.5 -10.878906 21.296875 -9.539062 20.890625 -8.375 C 20.492188 -7.207031 19.941406 -6.226562 19.234375 -5.4375 C 18.535156 -4.65625 17.710938 -4.054688 16.765625 -3.640625 C 15.828125 -3.234375 14.832031 -3.03125 13.78125 -3.03125 C 12.71875 -3.03125 11.710938 -3.234375 10.765625 -3.640625 C 9.828125 -4.054688 9.003906 -4.65625 8.296875 -5.4375 C 7.597656 -6.226562 7.046875 -7.207031 6.640625 -8.375 C 6.242188 -9.539062 6.046875 -10.878906 6.046875 -12.390625 Z M 1.734375 -12.390625 C 1.734375 -10.554688 1.988281 -8.851562 2.5 -7.28125 C 3.007812 -5.71875 3.773438 -4.351562 4.796875 -3.1875 C 5.828125 -2.019531 7.09375 -1.109375 8.59375 -0.453125 C 10.09375 0.203125 11.820312 0.53125 13.78125 0.53125 C 15.757812 0.53125 17.492188 0.203125 18.984375 -0.453125 C 20.472656 -1.109375 21.726562 -2.019531 22.75 -3.1875 C 23.769531 -4.351562 24.535156 -5.71875 25.046875 -7.28125 C 25.566406 -8.851562 25.828125 -10.554688 25.828125 -12.390625 C 25.828125 -14.210938 25.566406 -15.914062 25.046875 -17.5 C 24.535156 -19.082031 23.769531 -20.457031 22.75 -21.625 C 21.726562 -22.789062 20.472656 -23.707031 18.984375 -24.375 C 17.492188 -25.050781 15.757812 -25.390625 13.78125 -25.390625 C 11.820312 -25.390625 10.09375 -25.050781 8.59375 -24.375 C 7.09375 -23.707031 5.828125 -22.789062 4.796875 -21.625 C 3.773438 -20.457031 3.007812 -19.082031 2.5 -17.5 C 1.988281 -15.914062 1.734375 -14.210938 1.734375 -12.390625 Z M 1.734375 -12.390625 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-12">
+<path style="stroke:none;" d="M 1.0625 -3.125 L 1.0625 0 L 21.984375 0 L 21.984375 -3.59375 L 6.140625 -3.59375 L 21.3125 -22.03125 L 21.3125 -24.8125 L 2.015625 -24.8125 L 2.015625 -21.21875 L 16.03125 -21.21875 Z M 1.0625 -3.125 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-13">
+<path style="stroke:none;" d="M 6.34375 -16.75 C 6.34375 -17.582031 6.347656 -18.503906 6.359375 -19.515625 C 6.378906 -20.523438 6.457031 -21.53125 6.59375 -22.53125 C 6.738281 -23.539062 6.945312 -24.523438 7.21875 -25.484375 C 7.488281 -26.441406 7.890625 -27.28125 8.421875 -28 C 8.953125 -28.726562 9.613281 -29.316406 10.40625 -29.765625 C 11.207031 -30.210938 12.1875 -30.4375 13.34375 -30.4375 C 14.5 -30.4375 15.472656 -30.210938 16.265625 -29.765625 C 17.066406 -29.316406 17.734375 -28.726562 18.265625 -28 C 18.796875 -27.28125 19.195312 -26.441406 19.46875 -25.484375 C 19.738281 -24.523438 19.941406 -23.539062 20.078125 -22.53125 C 20.222656 -21.53125 20.304688 -20.523438 20.328125 -19.515625 C 20.347656 -18.503906 20.359375 -17.582031 20.359375 -16.75 C 20.359375 -15.46875 20.316406 -14.035156 20.234375 -12.453125 C 20.148438 -10.867188 19.890625 -9.378906 19.453125 -7.984375 C 19.023438 -6.597656 18.332031 -5.425781 17.375 -4.46875 C 16.414062 -3.507812 15.070312 -3.03125 13.34375 -3.03125 C 11.613281 -3.03125 10.269531 -3.507812 9.3125 -4.46875 C 8.351562 -5.425781 7.65625 -6.597656 7.21875 -7.984375 C 6.789062 -9.378906 6.535156 -10.867188 6.453125 -12.453125 C 6.378906 -14.035156 6.34375 -15.46875 6.34375 -16.75 Z M 2.015625 -16.703125 C 2.015625 -15.453125 2.046875 -14.15625 2.109375 -12.8125 C 2.171875 -11.46875 2.328125 -10.15625 2.578125 -8.875 C 2.835938 -7.59375 3.207031 -6.382812 3.6875 -5.25 C 4.175781 -4.113281 4.832031 -3.113281 5.65625 -2.25 C 6.488281 -1.382812 7.535156 -0.703125 8.796875 -0.203125 C 10.066406 0.285156 11.582031 0.53125 13.34375 0.53125 C 15.132812 0.53125 16.65625 0.285156 17.90625 -0.203125 C 19.15625 -0.703125 20.191406 -1.382812 21.015625 -2.25 C 21.847656 -3.113281 22.503906 -4.113281 22.984375 -5.25 C 23.472656 -6.382812 23.84375 -7.59375 24.09375 -8.875 C 24.351562 -10.15625 24.515625 -11.46875 24.578125 -12.8125 C 24.640625 -14.15625 24.671875 -15.453125 24.671875 -16.703125 C 24.671875 -17.953125 24.640625 -19.25 24.578125 -20.59375 C 24.515625 -21.9375 24.351562 -23.25 24.09375 -24.53125 C 23.84375 -25.8125 23.472656 -27.023438 22.984375 -28.171875 C 22.503906 -29.328125 21.847656 -30.335938 21.015625 -31.203125 C 20.191406 -32.066406 19.144531 -32.753906 17.875 -33.265625 C 16.613281 -33.773438 15.101562 -34.03125 13.34375 -34.03125 C 11.582031 -34.03125 10.066406 -33.773438 8.796875 -33.265625 C 7.535156 -32.753906 6.488281 -32.066406 5.65625 -31.203125 C 4.832031 -30.335938 4.175781 -29.328125 3.6875 -28.171875 C 3.207031 -27.023438 2.835938 -25.8125 2.578125 -24.53125 C 2.328125 -23.25 2.171875 -21.9375 2.109375 -20.59375 C 2.046875 -19.25 2.015625 -17.953125 2.015625 -16.703125 Z M 2.015625 -16.703125 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-14">
+<path style="stroke:none;" d="M 17.09375 0 L 17.09375 -34.03125 L 13.96875 -34.03125 C 13.738281 -32.75 13.320312 -31.691406 12.71875 -30.859375 C 12.113281 -30.023438 11.367188 -29.367188 10.484375 -28.890625 C 9.609375 -28.410156 8.625 -28.082031 7.53125 -27.90625 C 6.445312 -27.726562 5.328125 -27.640625 4.171875 -27.640625 L 4.171875 -24.390625 L 13.015625 -24.390625 L 13.015625 0 Z M 17.09375 0 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-15">
+<path style="stroke:none;" d="M 2.109375 -21.984375 L 6.1875 -21.984375 C 6.15625 -23.003906 6.257812 -24.019531 6.5 -25.03125 C 6.738281 -26.039062 7.128906 -26.941406 7.671875 -27.734375 C 8.222656 -28.535156 8.921875 -29.1875 9.765625 -29.6875 C 10.617188 -30.1875 11.632812 -30.4375 12.8125 -30.4375 C 13.707031 -30.4375 14.554688 -30.289062 15.359375 -30 C 16.160156 -29.707031 16.859375 -29.289062 17.453125 -28.75 C 18.046875 -28.207031 18.515625 -27.5625 18.859375 -26.8125 C 19.210938 -26.0625 19.390625 -25.21875 19.390625 -24.28125 C 19.390625 -23.101562 19.203125 -22.066406 18.828125 -21.171875 C 18.460938 -20.273438 17.921875 -19.441406 17.203125 -18.671875 C 16.484375 -17.898438 15.578125 -17.140625 14.484375 -16.390625 C 13.398438 -15.640625 12.140625 -14.816406 10.703125 -13.921875 C 9.515625 -13.210938 8.375 -12.457031 7.28125 -11.65625 C 6.195312 -10.863281 5.222656 -9.9375 4.359375 -8.875 C 3.503906 -7.820312 2.796875 -6.582031 2.234375 -5.15625 C 1.671875 -3.738281 1.3125 -2.019531 1.15625 0 L 23.375 0 L 23.375 -3.59375 L 5.90625 -3.59375 C 6.09375 -4.65625 6.5 -5.59375 7.125 -6.40625 C 7.75 -7.21875 8.5 -7.976562 9.375 -8.6875 C 10.257812 -9.394531 11.226562 -10.054688 12.28125 -10.671875 C 13.34375 -11.296875 14.398438 -11.929688 15.453125 -12.578125 C 16.515625 -13.242188 17.539062 -13.945312 18.53125 -14.6875 C 19.519531 -15.425781 20.394531 -16.25 21.15625 -17.15625 C 21.925781 -18.070312 22.546875 -19.101562 23.015625 -20.25 C 23.484375 -21.40625 23.71875 -22.734375 23.71875 -24.234375 C 23.71875 -25.835938 23.4375 -27.242188 22.875 -28.453125 C 22.3125 -29.671875 21.550781 -30.6875 20.59375 -31.5 C 19.632812 -32.320312 18.503906 -32.945312 17.203125 -33.375 C 15.910156 -33.8125 14.53125 -34.03125 13.0625 -34.03125 C 11.269531 -34.03125 9.664062 -33.722656 8.25 -33.109375 C 6.84375 -32.503906 5.664062 -31.664062 4.71875 -30.59375 C 3.78125 -29.519531 3.085938 -28.25 2.640625 -26.78125 C 2.191406 -25.3125 2.015625 -23.710938 2.109375 -21.984375 Z M 2.109375 -21.984375 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-16">
+<path style="stroke:none;" d="M 10.46875 -19.4375 L 10.46875 -15.984375 C 11.226562 -16.078125 12.039062 -16.125 12.90625 -16.125 C 13.9375 -16.125 14.890625 -15.988281 15.765625 -15.71875 C 16.648438 -15.445312 17.410156 -15.03125 18.046875 -14.46875 C 18.691406 -13.90625 19.203125 -13.21875 19.578125 -12.40625 C 19.960938 -11.59375 20.15625 -10.65625 20.15625 -9.59375 C 20.15625 -8.570312 19.953125 -7.648438 19.546875 -6.828125 C 19.148438 -6.015625 18.613281 -5.328125 17.9375 -4.765625 C 17.269531 -4.210938 16.488281 -3.785156 15.59375 -3.484375 C 14.695312 -3.179688 13.753906 -3.03125 12.765625 -3.03125 C 10.429688 -3.03125 8.65625 -3.722656 7.4375 -5.109375 C 6.21875 -6.503906 5.578125 -8.304688 5.515625 -10.515625 L 1.4375 -10.515625 C 1.40625 -8.753906 1.648438 -7.1875 2.171875 -5.8125 C 2.703125 -4.4375 3.460938 -3.273438 4.453125 -2.328125 C 5.453125 -1.378906 6.65625 -0.664062 8.0625 -0.1875 C 9.46875 0.289062 11.035156 0.53125 12.765625 0.53125 C 14.367188 0.53125 15.878906 0.316406 17.296875 -0.109375 C 18.722656 -0.546875 19.960938 -1.195312 21.015625 -2.0625 C 22.078125 -2.925781 22.921875 -4.003906 23.546875 -5.296875 C 24.171875 -6.597656 24.484375 -8.097656 24.484375 -9.796875 C 24.484375 -11.835938 23.976562 -13.609375 22.96875 -15.109375 C 21.957031 -16.617188 20.414062 -17.597656 18.34375 -18.046875 L 18.34375 -18.140625 C 19.6875 -18.753906 20.804688 -19.648438 21.703125 -20.828125 C 22.597656 -22.015625 23.046875 -23.375 23.046875 -24.90625 C 23.046875 -26.476562 22.78125 -27.835938 22.25 -28.984375 C 21.71875 -30.140625 20.988281 -31.082031 20.0625 -31.8125 C 19.132812 -32.550781 18.035156 -33.101562 16.765625 -33.46875 C 15.503906 -33.84375 14.140625 -34.03125 12.671875 -34.03125 C 10.972656 -34.03125 9.472656 -33.757812 8.171875 -33.21875 C 6.878906 -32.675781 5.800781 -31.921875 4.9375 -30.953125 C 4.070312 -29.992188 3.40625 -28.84375 2.9375 -27.5 C 2.476562 -26.15625 2.21875 -24.671875 2.15625 -23.046875 L 6.234375 -23.046875 C 6.234375 -24.035156 6.363281 -24.976562 6.625 -25.875 C 6.882812 -26.769531 7.273438 -27.550781 7.796875 -28.21875 C 8.328125 -28.894531 9 -29.429688 9.8125 -29.828125 C 10.632812 -30.234375 11.585938 -30.4375 12.671875 -30.4375 C 14.398438 -30.4375 15.835938 -29.976562 16.984375 -29.0625 C 18.140625 -28.15625 18.71875 -26.785156 18.71875 -24.953125 C 18.71875 -24.054688 18.539062 -23.253906 18.1875 -22.546875 C 17.832031 -21.847656 17.359375 -21.265625 16.765625 -20.796875 C 16.179688 -20.335938 15.492188 -19.988281 14.703125 -19.75 C 13.921875 -19.507812 13.097656 -19.390625 12.234375 -19.390625 L 11.375 -19.390625 C 11.21875 -19.390625 11.054688 -19.390625 10.890625 -19.390625 C 10.765625 -19.390625 10.625 -19.40625 10.46875 -19.4375 Z M 10.46875 -19.4375 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-17">
+<path style="stroke:none;" d="M 16.265625 -11.5625 L 4.84375 -11.5625 L 16.171875 -28.21875 L 16.265625 -28.21875 Z M 20.109375 -11.5625 L 20.109375 -34.03125 L 16.84375 -34.03125 L 1.34375 -11.90625 L 1.34375 -7.96875 L 16.265625 -7.96875 L 16.265625 0 L 20.109375 0 L 20.109375 -7.96875 L 24.71875 -7.96875 L 24.71875 -11.5625 Z M 20.109375 -11.5625 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-18">
+<path style="stroke:none;" d="M 22.5625 -29.859375 L 22.5625 -33.453125 L 5.765625 -33.453125 L 2.59375 -15.796875 L 6.09375 -15.59375 C 6.894531 -16.5625 7.816406 -17.335938 8.859375 -17.921875 C 9.898438 -18.515625 11.09375 -18.8125 12.4375 -18.8125 C 13.582031 -18.8125 14.625 -18.617188 15.5625 -18.234375 C 16.507812 -17.847656 17.320312 -17.3125 18 -16.625 C 18.675781 -15.9375 19.195312 -15.117188 19.5625 -14.171875 C 19.925781 -13.234375 20.109375 -12.207031 20.109375 -11.09375 C 20.109375 -9.75 19.914062 -8.570312 19.53125 -7.5625 C 19.144531 -6.550781 18.625 -5.707031 17.96875 -5.03125 C 17.3125 -4.363281 16.546875 -3.863281 15.671875 -3.53125 C 14.796875 -3.195312 13.875 -3.03125 12.90625 -3.03125 C 11.882812 -3.03125 10.945312 -3.179688 10.09375 -3.484375 C 9.25 -3.785156 8.515625 -4.210938 7.890625 -4.765625 C 7.265625 -5.328125 6.769531 -5.984375 6.40625 -6.734375 C 6.039062 -7.492188 5.828125 -8.304688 5.765625 -9.171875 L 1.6875 -9.171875 C 1.71875 -7.628906 2.019531 -6.25 2.59375 -5.03125 C 3.164062 -3.820312 3.945312 -2.804688 4.9375 -1.984375 C 5.9375 -1.171875 7.082031 -0.546875 8.375 -0.109375 C 9.664062 0.316406 11.050781 0.53125 12.53125 0.53125 C 14.507812 0.53125 16.242188 0.21875 17.734375 -0.40625 C 19.222656 -1.03125 20.460938 -1.867188 21.453125 -2.921875 C 22.441406 -3.984375 23.1875 -5.191406 23.6875 -6.546875 C 24.1875 -7.910156 24.4375 -9.3125 24.4375 -10.75 C 24.4375 -12.707031 24.144531 -14.410156 23.5625 -15.859375 C 22.988281 -17.316406 22.207031 -18.53125 21.21875 -19.5 C 20.226562 -20.476562 19.0625 -21.207031 17.71875 -21.6875 C 16.375 -22.175781 14.945312 -22.421875 13.4375 -22.421875 C 12.289062 -22.421875 11.128906 -22.21875 9.953125 -21.8125 C 8.785156 -21.414062 7.835938 -20.800781 7.109375 -19.96875 L 7.015625 -20.0625 L 8.828125 -29.859375 Z M 22.5625 -29.859375 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-19">
+<path style="stroke:none;" d="M 19.875 -25.34375 L 23.953125 -25.34375 C 23.691406 -28.15625 22.726562 -30.304688 21.0625 -31.796875 C 19.40625 -33.285156 17.171875 -34.03125 14.359375 -34.03125 C 11.921875 -34.03125 9.898438 -33.515625 8.296875 -32.484375 C 6.703125 -31.460938 5.425781 -30.101562 4.46875 -28.40625 C 3.507812 -26.71875 2.828125 -24.773438 2.421875 -22.578125 C 2.023438 -20.390625 1.828125 -18.128906 1.828125 -15.796875 C 1.828125 -14.003906 1.960938 -12.144531 2.234375 -10.21875 C 2.503906 -8.300781 3.054688 -6.539062 3.890625 -4.9375 C 4.722656 -3.34375 5.90625 -2.03125 7.4375 -1 C 8.976562 0.0195312 11.007812 0.53125 13.53125 0.53125 C 15.675781 0.53125 17.476562 0.171875 18.9375 -0.546875 C 20.394531 -1.265625 21.5625 -2.175781 22.4375 -3.28125 C 23.320312 -4.382812 23.953125 -5.609375 24.328125 -6.953125 C 24.710938 -8.296875 24.90625 -9.59375 24.90625 -10.84375 C 24.90625 -12.414062 24.664062 -13.875 24.1875 -15.21875 C 23.707031 -16.5625 23.023438 -17.726562 22.140625 -18.71875 C 21.265625 -19.707031 20.175781 -20.484375 18.875 -21.046875 C 17.582031 -21.609375 16.125 -21.890625 14.5 -21.890625 C 12.644531 -21.890625 11.003906 -21.535156 9.578125 -20.828125 C 8.148438 -20.128906 6.957031 -18.992188 6 -17.421875 L 5.90625 -17.515625 C 5.9375 -18.828125 6.0625 -20.234375 6.28125 -21.734375 C 6.507812 -23.242188 6.921875 -24.644531 7.515625 -25.9375 C 8.109375 -27.238281 8.929688 -28.3125 9.984375 -29.15625 C 11.035156 -30.007812 12.425781 -30.4375 14.15625 -30.4375 C 15.789062 -30.4375 17.101562 -29.96875 18.09375 -29.03125 C 19.082031 -28.101562 19.675781 -26.875 19.875 -25.34375 Z M 13.734375 -18.28125 C 14.878906 -18.28125 15.882812 -18.070312 16.75 -17.65625 C 17.613281 -17.25 18.332031 -16.695312 18.90625 -16 C 19.488281 -15.3125 19.914062 -14.492188 20.1875 -13.546875 C 20.457031 -12.609375 20.59375 -11.613281 20.59375 -10.5625 C 20.59375 -9.570312 20.441406 -8.617188 20.140625 -7.703125 C 19.835938 -6.796875 19.394531 -5.988281 18.8125 -5.28125 C 18.238281 -4.570312 17.523438 -4.019531 16.671875 -3.625 C 15.828125 -3.226562 14.847656 -3.03125 13.734375 -3.03125 C 12.609375 -3.03125 11.601562 -3.226562 10.71875 -3.625 C 9.84375 -4.019531 9.109375 -4.550781 8.515625 -5.21875 C 7.921875 -5.894531 7.460938 -6.695312 7.140625 -7.625 C 6.828125 -8.5625 6.671875 -9.554688 6.671875 -10.609375 C 6.671875 -11.660156 6.820312 -12.660156 7.125 -13.609375 C 7.425781 -14.554688 7.878906 -15.375 8.484375 -16.0625 C 9.097656 -16.75 9.835938 -17.289062 10.703125 -17.6875 C 11.566406 -18.082031 12.578125 -18.28125 13.734375 -18.28125 Z M 13.734375 -18.28125 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-20">
+<path style="stroke:none;" d="M 27.84375 -23.953125 L 32.40625 -23.953125 C 32.144531 -25.773438 31.597656 -27.378906 30.765625 -28.765625 C 29.929688 -30.160156 28.890625 -31.320312 27.640625 -32.25 C 26.398438 -33.175781 24.976562 -33.878906 23.375 -34.359375 C 21.769531 -34.847656 20.070312 -35.09375 18.28125 -35.09375 C 15.664062 -35.09375 13.335938 -34.617188 11.296875 -33.671875 C 9.265625 -32.722656 7.566406 -31.429688 6.203125 -29.796875 C 4.847656 -28.171875 3.816406 -26.257812 3.109375 -24.0625 C 2.410156 -21.875 2.0625 -19.535156 2.0625 -17.046875 C 2.0625 -14.546875 2.390625 -12.207031 3.046875 -10.03125 C 3.703125 -7.851562 4.6875 -5.960938 6 -4.359375 C 7.3125 -2.765625 8.957031 -1.507812 10.9375 -0.59375 C 12.925781 0.3125 15.25 0.765625 17.90625 0.765625 C 22.289062 0.765625 25.742188 -0.429688 28.265625 -2.828125 C 30.796875 -5.234375 32.285156 -8.59375 32.734375 -12.90625 L 28.171875 -12.90625 C 28.078125 -11.5 27.789062 -10.1875 27.3125 -8.96875 C 26.832031 -7.757812 26.164062 -6.710938 25.3125 -5.828125 C 24.46875 -4.953125 23.460938 -4.265625 22.296875 -3.765625 C 21.128906 -3.273438 19.789062 -3.03125 18.28125 -3.03125 C 16.238281 -3.03125 14.476562 -3.410156 13 -4.171875 C 11.53125 -4.941406 10.320312 -5.972656 9.375 -7.265625 C 8.4375 -8.566406 7.742188 -10.085938 7.296875 -11.828125 C 6.847656 -13.578125 6.625 -15.425781 6.625 -17.375 C 6.625 -19.164062 6.847656 -20.894531 7.296875 -22.5625 C 7.742188 -24.226562 8.4375 -25.707031 9.375 -27 C 10.320312 -28.289062 11.523438 -29.320312 12.984375 -30.09375 C 14.441406 -30.863281 16.191406 -31.25 18.234375 -31.25 C 20.640625 -31.25 22.710938 -30.640625 24.453125 -29.421875 C 26.203125 -28.203125 27.332031 -26.378906 27.84375 -23.953125 Z M 27.84375 -23.953125 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-21">
+<path style="stroke:none;" d="M 3.078125 -34.265625 L 3.078125 0 L 7.15625 0 L 7.15625 -14.015625 C 7.15625 -15.140625 7.304688 -16.171875 7.609375 -17.109375 C 7.910156 -18.054688 8.363281 -18.878906 8.96875 -19.578125 C 9.582031 -20.285156 10.34375 -20.832031 11.25 -21.21875 C 12.164062 -21.601562 13.25 -21.796875 14.5 -21.796875 C 16.0625 -21.796875 17.289062 -21.347656 18.1875 -20.453125 C 19.082031 -19.554688 19.53125 -18.335938 19.53125 -16.796875 L 19.53125 0 L 23.609375 0 L 23.609375 -16.3125 C 23.609375 -17.664062 23.472656 -18.890625 23.203125 -19.984375 C 22.929688 -21.085938 22.457031 -22.039062 21.78125 -22.84375 C 21.113281 -23.644531 20.234375 -24.269531 19.140625 -24.71875 C 18.054688 -25.164062 16.703125 -25.390625 15.078125 -25.390625 C 14.335938 -25.390625 13.570312 -25.304688 12.78125 -25.140625 C 12 -24.984375 11.25 -24.738281 10.53125 -24.40625 C 9.8125 -24.070312 9.164062 -23.640625 8.59375 -23.109375 C 8.019531 -22.578125 7.570312 -21.929688 7.25 -21.171875 L 7.15625 -21.171875 L 7.15625 -34.265625 Z M 3.078125 -34.265625 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-22">
+<path style="stroke:none;" d="M 2.921875 -24.8125 L 2.921875 0 L 7.015625 0 L 7.015625 -11.046875 C 7.015625 -12.640625 7.171875 -14.050781 7.484375 -15.28125 C 7.804688 -16.519531 8.316406 -17.570312 9.015625 -18.4375 C 9.722656 -19.300781 10.648438 -19.957031 11.796875 -20.40625 C 12.953125 -20.851562 14.347656 -21.078125 15.984375 -21.078125 L 15.984375 -25.390625 C 13.773438 -25.453125 11.953125 -25.003906 10.515625 -24.046875 C 9.078125 -23.085938 7.859375 -21.597656 6.859375 -19.578125 L 6.765625 -19.578125 L 6.765625 -24.8125 Z M 2.921875 -24.8125 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-23">
+<path style="stroke:none;" d="M 3.3125 -34.265625 L 3.3125 0 L 7.390625 0 L 7.390625 -34.265625 Z M 3.3125 -34.265625 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-24">
+<path style="stroke:none;" d="M 5.5625 -7.828125 L 1.484375 -7.828125 C 1.546875 -6.285156 1.863281 -4.976562 2.4375 -3.90625 C 3.019531 -2.832031 3.789062 -1.96875 4.75 -1.3125 C 5.707031 -0.664062 6.8125 -0.195312 8.0625 0.09375 C 9.3125 0.382812 10.625 0.53125 12 0.53125 C 13.25 0.53125 14.503906 0.410156 15.765625 0.171875 C 17.023438 -0.0664062 18.160156 -0.488281 19.171875 -1.09375 C 20.179688 -1.707031 21 -2.507812 21.625 -3.5 C 22.25 -4.488281 22.5625 -5.738281 22.5625 -7.25 C 22.5625 -8.4375 22.328125 -9.425781 21.859375 -10.21875 C 21.398438 -11.019531 20.789062 -11.6875 20.03125 -12.21875 C 19.28125 -12.75 18.414062 -13.171875 17.4375 -13.484375 C 16.46875 -13.804688 15.472656 -14.078125 14.453125 -14.296875 C 13.492188 -14.523438 12.53125 -14.742188 11.5625 -14.953125 C 10.601562 -15.160156 9.738281 -15.414062 8.96875 -15.71875 C 8.207031 -16.019531 7.578125 -16.398438 7.078125 -16.859375 C 6.585938 -17.328125 6.34375 -17.914062 6.34375 -18.625 C 6.34375 -19.257812 6.5 -19.773438 6.8125 -20.171875 C 7.132812 -20.578125 7.550781 -20.898438 8.0625 -21.140625 C 8.570312 -21.378906 9.140625 -21.546875 9.765625 -21.640625 C 10.390625 -21.742188 11.003906 -21.796875 11.609375 -21.796875 C 12.285156 -21.796875 12.953125 -21.722656 13.609375 -21.578125 C 14.265625 -21.429688 14.863281 -21.195312 15.40625 -20.875 C 15.945312 -20.5625 16.394531 -20.140625 16.75 -19.609375 C 17.101562 -19.078125 17.3125 -18.410156 17.375 -17.609375 L 21.453125 -17.609375 C 21.359375 -19.117188 21.039062 -20.375 20.5 -21.375 C 19.957031 -22.382812 19.226562 -23.1875 18.3125 -23.78125 C 17.394531 -24.375 16.34375 -24.789062 15.15625 -25.03125 C 13.976562 -25.269531 12.6875 -25.390625 11.28125 -25.390625 C 10.1875 -25.390625 9.085938 -25.253906 7.984375 -24.984375 C 6.890625 -24.710938 5.898438 -24.296875 5.015625 -23.734375 C 4.140625 -23.171875 3.421875 -22.441406 2.859375 -21.546875 C 2.296875 -20.648438 2.015625 -19.582031 2.015625 -18.34375 C 2.015625 -16.738281 2.414062 -15.488281 3.21875 -14.59375 C 4.019531 -13.695312 5.019531 -13 6.21875 -12.5 C 7.414062 -12.007812 8.71875 -11.625 10.125 -11.34375 C 11.53125 -11.070312 12.832031 -10.769531 14.03125 -10.4375 C 15.238281 -10.101562 16.238281 -9.660156 17.03125 -9.109375 C 17.832031 -8.566406 18.234375 -7.769531 18.234375 -6.71875 C 18.234375 -5.945312 18.039062 -5.3125 17.65625 -4.8125 C 17.28125 -4.320312 16.796875 -3.945312 16.203125 -3.6875 C 15.609375 -3.4375 14.957031 -3.265625 14.25 -3.171875 C 13.550781 -3.078125 12.878906 -3.03125 12.234375 -3.03125 C 11.398438 -3.03125 10.59375 -3.109375 9.8125 -3.265625 C 9.03125 -3.421875 8.328125 -3.679688 7.703125 -4.046875 C 7.078125 -4.421875 6.570312 -4.921875 6.1875 -5.546875 C 5.800781 -6.171875 5.59375 -6.929688 5.5625 -7.828125 Z M 5.5625 -7.828125 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-25">
+<path style="stroke:none;" d="M 3.21875 -34.265625 L 3.21875 0 L 7.296875 0 L 7.296875 -3.3125 L 7.390625 -3.3125 C 7.835938 -2.570312 8.390625 -1.953125 9.046875 -1.453125 C 9.703125 -0.960938 10.394531 -0.570312 11.125 -0.28125 C 11.863281 0 12.609375 0.203125 13.359375 0.328125 C 14.117188 0.460938 14.800781 0.53125 15.40625 0.53125 C 17.289062 0.53125 18.945312 0.195312 20.375 -0.46875 C 21.800781 -1.144531 22.984375 -2.066406 23.921875 -3.234375 C 24.867188 -4.398438 25.570312 -5.769531 26.03125 -7.34375 C 26.5 -8.914062 26.734375 -10.582031 26.734375 -12.34375 C 26.734375 -14.09375 26.492188 -15.753906 26.015625 -17.328125 C 25.535156 -18.898438 24.820312 -20.285156 23.875 -21.484375 C 22.9375 -22.679688 21.753906 -23.628906 20.328125 -24.328125 C 18.898438 -25.035156 17.226562 -25.390625 15.3125 -25.390625 C 13.582031 -25.390625 12 -25.078125 10.5625 -24.453125 C 9.125 -23.828125 8.066406 -22.828125 7.390625 -21.453125 L 7.296875 -21.453125 L 7.296875 -34.265625 Z M 22.421875 -12.625 C 22.421875 -11.40625 22.289062 -10.21875 22.03125 -9.0625 C 21.769531 -7.914062 21.351562 -6.894531 20.78125 -6 C 20.207031 -5.101562 19.445312 -4.382812 18.5 -3.84375 C 17.5625 -3.300781 16.382812 -3.03125 14.96875 -3.03125 C 13.5625 -3.03125 12.363281 -3.289062 11.375 -3.8125 C 10.382812 -4.34375 9.578125 -5.039062 8.953125 -5.90625 C 8.328125 -6.769531 7.867188 -7.769531 7.578125 -8.90625 C 7.296875 -10.039062 7.15625 -11.21875 7.15625 -12.4375 C 7.15625 -13.582031 7.289062 -14.710938 7.5625 -15.828125 C 7.832031 -16.953125 8.269531 -17.953125 8.875 -18.828125 C 9.488281 -19.710938 10.273438 -20.425781 11.234375 -20.96875 C 12.191406 -21.519531 13.359375 -21.796875 14.734375 -21.796875 C 16.046875 -21.796875 17.1875 -21.535156 18.15625 -21.015625 C 19.132812 -20.503906 19.9375 -19.816406 20.5625 -18.953125 C 21.1875 -18.085938 21.648438 -17.101562 21.953125 -16 C 22.265625 -14.90625 22.421875 -13.78125 22.421875 -12.625 Z M 22.421875 -12.625 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-26">
+<path style="stroke:none;" d="M 3.21875 -24.8125 L 3.21875 9.453125 L 7.296875 9.453125 L 7.296875 -3.3125 L 7.390625 -3.3125 C 7.835938 -2.570312 8.390625 -1.953125 9.046875 -1.453125 C 9.703125 -0.960938 10.394531 -0.570312 11.125 -0.28125 C 11.863281 0 12.609375 0.203125 13.359375 0.328125 C 14.117188 0.460938 14.800781 0.53125 15.40625 0.53125 C 17.289062 0.53125 18.945312 0.195312 20.375 -0.46875 C 21.800781 -1.144531 22.984375 -2.066406 23.921875 -3.234375 C 24.867188 -4.398438 25.570312 -5.769531 26.03125 -7.34375 C 26.5 -8.914062 26.734375 -10.582031 26.734375 -12.34375 C 26.734375 -14.09375 26.492188 -15.753906 26.015625 -17.328125 C 25.535156 -18.898438 24.820312 -20.285156 23.875 -21.484375 C 22.9375 -22.679688 21.753906 -23.628906 20.328125 -24.328125 C 18.898438 -25.035156 17.226562 -25.390625 15.3125 -25.390625 C 13.582031 -25.390625 12 -25.078125 10.5625 -24.453125 C 9.125 -23.828125 8.066406 -22.828125 7.390625 -21.453125 L 7.296875 -21.453125 L 7.296875 -24.8125 Z M 22.421875 -12.625 C 22.421875 -11.40625 22.289062 -10.21875 22.03125 -9.0625 C 21.769531 -7.914062 21.351562 -6.894531 20.78125 -6 C 20.207031 -5.101562 19.445312 -4.382812 18.5 -3.84375 C 17.5625 -3.300781 16.382812 -3.03125 14.96875 -3.03125 C 13.5625 -3.03125 12.363281 -3.289062 11.375 -3.8125 C 10.382812 -4.34375 9.578125 -5.039062 8.953125 -5.90625 C 8.328125 -6.769531 7.867188 -7.769531 7.578125 -8.90625 C 7.296875 -10.039062 7.15625 -11.21875 7.15625 -12.4375 C 7.15625 -13.582031 7.289062 -14.710938 7.5625 -15.828125 C 7.832031 -16.953125 8.269531 -17.953125 8.875 -18.828125 C 9.488281 -19.710938 10.273438 -20.425781 11.234375 -20.96875 C 12.191406 -21.519531 13.359375 -21.796875 14.734375 -21.796875 C 16.046875 -21.796875 17.1875 -21.535156 18.15625 -21.015625 C 19.132812 -20.503906 19.9375 -19.816406 20.5625 -18.953125 C 21.1875 -18.085938 21.648438 -17.101562 21.953125 -16 C 22.265625 -14.90625 22.421875 -13.78125 22.421875 -12.625 Z M 22.421875 -12.625 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-27">
+<path style="stroke:none;" d="M 20.296875 -14.78125 L 6.046875 -14.78125 C 6.109375 -15.738281 6.316406 -16.640625 6.671875 -17.484375 C 7.023438 -18.335938 7.503906 -19.082031 8.109375 -19.71875 C 8.722656 -20.363281 9.453125 -20.867188 10.296875 -21.234375 C 11.140625 -21.609375 12.09375 -21.796875 13.15625 -21.796875 C 14.175781 -21.796875 15.109375 -21.609375 15.953125 -21.234375 C 16.804688 -20.867188 17.546875 -20.375 18.171875 -19.75 C 18.796875 -19.125 19.289062 -18.378906 19.65625 -17.515625 C 20.019531 -16.648438 20.234375 -15.738281 20.296875 -14.78125 Z M 24.234375 -7.875 L 20.203125 -7.875 C 19.859375 -6.238281 19.132812 -5.019531 18.03125 -4.21875 C 16.925781 -3.425781 15.507812 -3.03125 13.78125 -3.03125 C 12.4375 -3.03125 11.265625 -3.253906 10.265625 -3.703125 C 9.273438 -4.148438 8.457031 -4.75 7.8125 -5.5 C 7.175781 -6.25 6.710938 -7.109375 6.421875 -8.078125 C 6.140625 -9.054688 6.015625 -10.09375 6.046875 -11.1875 L 24.625 -11.1875 C 24.6875 -12.6875 24.550781 -14.269531 24.21875 -15.9375 C 23.882812 -17.601562 23.273438 -19.140625 22.390625 -20.546875 C 21.515625 -21.953125 20.347656 -23.109375 18.890625 -24.015625 C 17.429688 -24.929688 15.597656 -25.390625 13.390625 -25.390625 C 11.691406 -25.390625 10.128906 -25.066406 8.703125 -24.421875 C 7.285156 -23.785156 6.054688 -22.890625 5.015625 -21.734375 C 3.972656 -20.585938 3.164062 -19.226562 2.59375 -17.65625 C 2.019531 -16.09375 1.734375 -14.367188 1.734375 -12.484375 C 1.796875 -10.585938 2.070312 -8.835938 2.5625 -7.234375 C 3.0625 -5.640625 3.804688 -4.265625 4.796875 -3.109375 C 5.785156 -1.960938 7.007812 -1.066406 8.46875 -0.421875 C 9.925781 0.210938 11.644531 0.53125 13.625 0.53125 C 16.445312 0.53125 18.785156 -0.171875 20.640625 -1.578125 C 22.492188 -2.992188 23.691406 -5.09375 24.234375 -7.875 Z M 24.234375 -7.875 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-28">
+<path style="stroke:none;" d="M 24.484375 -2.109375 L 24.484375 -24.8125 L 20.640625 -24.8125 L 20.640625 -21.265625 L 20.59375 -21.265625 C 19.851562 -22.640625 18.828125 -23.671875 17.515625 -24.359375 C 16.203125 -25.046875 14.765625 -25.390625 13.203125 -25.390625 C 11.054688 -25.390625 9.242188 -24.976562 7.765625 -24.15625 C 6.296875 -23.34375 5.113281 -22.304688 4.21875 -21.046875 C 3.320312 -19.785156 2.679688 -18.378906 2.296875 -16.828125 C 1.921875 -15.273438 1.734375 -13.757812 1.734375 -12.28125 C 1.734375 -10.59375 1.960938 -8.988281 2.421875 -7.46875 C 2.890625 -5.945312 3.585938 -4.617188 4.515625 -3.484375 C 5.441406 -2.347656 6.59375 -1.441406 7.96875 -0.765625 C 9.34375 -0.0976562 10.957031 0.234375 12.8125 0.234375 C 14.414062 0.234375 15.925781 -0.125 17.34375 -0.84375 C 18.769531 -1.5625 19.835938 -2.6875 20.546875 -4.21875 L 20.640625 -4.21875 L 20.640625 -2.59375 C 20.640625 -1.21875 20.503906 0.0390625 20.234375 1.1875 C 19.960938 2.34375 19.519531 3.328125 18.90625 4.140625 C 18.300781 4.960938 17.535156 5.601562 16.609375 6.0625 C 15.679688 6.53125 14.546875 6.765625 13.203125 6.765625 C 12.523438 6.765625 11.816406 6.691406 11.078125 6.546875 C 10.347656 6.410156 9.671875 6.179688 9.046875 5.859375 C 8.421875 5.535156 7.890625 5.117188 7.453125 4.609375 C 7.023438 4.097656 6.796875 3.472656 6.765625 2.734375 L 2.6875 2.734375 C 2.75 4.078125 3.097656 5.210938 3.734375 6.140625 C 4.378906 7.066406 5.1875 7.816406 6.15625 8.390625 C 7.132812 8.972656 8.222656 9.390625 9.421875 9.640625 C 10.628906 9.898438 11.804688 10.03125 12.953125 10.03125 C 16.921875 10.03125 19.832031 9.019531 21.6875 7 C 23.550781 4.988281 24.484375 1.953125 24.484375 -2.109375 Z M 13.0625 -3.3125 C 11.71875 -3.3125 10.597656 -3.585938 9.703125 -4.140625 C 8.804688 -4.703125 8.082031 -5.441406 7.53125 -6.359375 C 6.988281 -7.273438 6.601562 -8.289062 6.375 -9.40625 C 6.15625 -10.53125 6.046875 -11.648438 6.046875 -12.765625 C 6.046875 -13.953125 6.179688 -15.085938 6.453125 -16.171875 C 6.722656 -17.265625 7.15625 -18.222656 7.75 -19.046875 C 8.34375 -19.878906 9.101562 -20.546875 10.03125 -21.046875 C 10.957031 -21.546875 12.078125 -21.796875 13.390625 -21.796875 C 14.671875 -21.796875 15.757812 -21.535156 16.65625 -21.015625 C 17.550781 -20.503906 18.28125 -19.828125 18.84375 -18.984375 C 19.40625 -18.140625 19.8125 -17.1875 20.0625 -16.125 C 20.320312 -15.070312 20.453125 -14 20.453125 -12.90625 C 20.453125 -11.757812 20.3125 -10.609375 20.03125 -9.453125 C 19.757812 -8.304688 19.335938 -7.273438 18.765625 -6.359375 C 18.191406 -5.441406 17.429688 -4.703125 16.484375 -4.140625 C 15.546875 -3.585938 14.40625 -3.3125 13.0625 -3.3125 Z M 13.0625 -3.3125 "/>
+</symbol>
+<symbol overflow="visible" id="glyph1-0">
+<path style="stroke:none;" d="M 9.8125 -15.984375 L 2.453125 -15.984375 L 2.453125 -1.125 L 9.8125 -1.125 Z M 11.046875 -17.09375 L 11.046875 -0.03125 L 1.21875 -0.03125 L 1.21875 -17.09375 Z M 11.046875 -17.09375 "/>
+</symbol>
+<symbol overflow="visible" id="glyph1-1">
+<path style="stroke:none;" d="M 1.84375 -17.140625 L 1.84375 0 L 4.015625 0 L 4.015625 -13.75 L 4.0625 -13.75 L 13.015625 0 L 15.5 0 L 15.5 -17.140625 L 13.34375 -17.140625 L 13.34375 -3.234375 L 13.296875 -3.234375 L 4.265625 -17.140625 Z M 1.84375 -17.140625 "/>
+</symbol>
+<symbol overflow="visible" id="glyph1-2">
+<path style="stroke:none;" d="M 15.546875 -6.1875 L 15.546875 -17.140625 L 13.265625 -17.140625 L 13.265625 -6.1875 C 13.265625 -4.65625 12.882812 -3.492188 12.125 -2.703125 C 11.363281 -1.910156 10.257812 -1.515625 8.8125 -1.515625 C 7.269531 -1.515625 6.09375 -1.910156 5.28125 -2.703125 C 4.46875 -3.492188 4.0625 -4.65625 4.0625 -6.1875 L 4.0625 -17.140625 L 1.78125 -17.140625 L 1.78125 -6.1875 C 1.78125 -3.90625 2.398438 -2.238281 3.640625 -1.1875 C 4.878906 -0.132812 6.601562 0.390625 8.8125 0.390625 C 10.96875 0.390625 12.628906 -0.15625 13.796875 -1.25 C 14.960938 -2.351562 15.546875 -4 15.546875 -6.1875 Z M 15.546875 -6.1875 "/>
+</symbol>
+<symbol overflow="visible" id="glyph1-3">
+<path style="stroke:none;" d="M 1.875 -17.140625 L 1.875 0 L 13.21875 0 L 13.21875 -1.921875 L 4.15625 -1.921875 L 4.15625 -17.140625 Z M 1.875 -17.140625 "/>
+</symbol>
+<symbol overflow="visible" id="glyph2-0">
+<path style="stroke:none;" d="M 19.625 -31.96875 L 4.890625 -31.96875 L 4.890625 -2.25 L 19.625 -2.25 Z M 22.078125 -34.171875 L 22.078125 -0.046875 L 2.453125 -0.046875 L 2.453125 -34.171875 Z M 22.078125 -34.171875 "/>
+</symbol>
+<symbol overflow="visible" id="glyph2-1">
+<path style="stroke:none;" d="M 3.40625 -3.453125 L 5.71875 -1.15625 L 14.453125 -9.890625 L 23.140625 -1.15625 L 25.4375 -3.453125 L 16.75 -12.1875 L 25.390625 -20.828125 L 23.09375 -23.140625 L 14.453125 -14.5 L 5.765625 -23.140625 L 3.453125 -20.828125 L 12.140625 -12.1875 Z M 3.40625 -3.453125 "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-0">
+<path style="stroke:none;" d="M 4.703125 -41.28125 L 4.703125 4.796875 L 43.25 4.796875 L 43.25 -41.28125 Z M 39.03125 -38.78125 L 24 -20.25 L 8.96875 -38.78125 Z M 40.75 0.390625 L 25.6875 -18.1875 L 40.75 -36.765625 L 40.609375 -36.765625 L 40.609375 0.390625 Z M 9.03125 2.296875 L 24 -16.125 L 38.96875 2.296875 Z M 7.34375 0.4375 L 7.34375 -36.859375 L 7.203125 -36.859375 L 22.3125 -18.1875 L 7.203125 0.4375 Z M 7.34375 0.4375 "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-1">
+<path style="stroke:none;" d="M 26.59375 -31.828125 C 28.984375 -31.734375 30.390625 -31.390625 32.15625 -30.625 C 37.015625 -28.46875 39.796875 -24.046875 39.796875 -18.578125 C 39.796875 -12.671875 36.578125 -7.53125 31.296875 -5.140625 C 29.046875 -4.078125 26.78125 -3.453125 23.28125 -2.875 C 24.1875 -1.734375 24.484375 -1.25 24.953125 0.34375 C 28.265625 -0.390625 30.09375 -0.953125 32.25 -1.875 C 39.21875 -4.84375 43.25 -10.984375 43.25 -18.4375 C 43.25 -23.046875 41.609375 -27.21875 38.59375 -30.140625 C 35.46875 -33.21875 30.765625 -34.890625 25.390625 -34.890625 C 18.953125 -34.890625 13.734375 -32.734375 9.890625 -28.515625 C 6.671875 -24.90625 4.84375 -20.15625 4.84375 -15.265625 C 4.84375 -8.546875 8.25 -3.546875 12.8125 -3.546875 C 16.265625 -3.546875 19.109375 -6.4375 21.890625 -12.765625 C 24.046875 -17.8125 25.875 -25.15625 26.59375 -31.828125 Z M 23.140625 -31.78125 C 22.515625 -25.625 20.734375 -18.53125 18.765625 -14.015625 C 16.703125 -9.3125 14.78125 -7.0625 12.765625 -7.0625 C 10.171875 -7.0625 8.15625 -10.609375 8.15625 -15.21875 C 8.15625 -21.171875 11.140625 -26.59375 15.984375 -29.515625 C 18.1875 -30.859375 20.25 -31.53125 23.140625 -31.78125 Z M 23.140625 -31.78125 "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-2">
+<path style="stroke:none;" d="M 13.484375 -33.9375 C 14.40625 -32.5 15.03125 -31.25 15.84375 -29.515625 L 12.71875 -29.515625 C 12.90625 -28.609375 13.015625 -27.640625 13.015625 -26.25 L 6.671875 -26.25 C 4.84375 -26.25 4.03125 -26.296875 2.828125 -26.546875 L 2.828125 -23.65625 C 4.03125 -23.859375 4.984375 -23.90625 6.671875 -23.90625 L 13.015625 -23.90625 L 13.015625 -20.96875 L 9.5 -20.96875 C 7.296875 -20.96875 6.1875 -21.03125 4.84375 -21.171875 C 4.984375 -19.96875 5.046875 -18.953125 5.046875 -16.796875 L 5.046875 -11.515625 C 5.046875 -9.640625 4.984375 -8.296875 4.84375 -7.296875 C 6.1875 -7.4375 7.203125 -7.484375 9.40625 -7.484375 L 13.015625 -7.484375 L 13.015625 -4.171875 L 6.8125 -4.171875 C 5.140625 -4.171875 4.171875 -4.21875 3.03125 -4.421875 L 3.03125 -1.53125 C 4.265625 -1.6875 5.90625 -1.78125 6.8125 -1.78125 L 13.015625 -1.78125 L 13.015625 -1.296875 C 13.015625 1.109375 12.90625 2.25 12.71875 3.546875 L 15.9375 3.546875 C 15.703125 2.359375 15.640625 1.15625 15.640625 -1.296875 L 15.640625 -1.78125 L 20.78125 -1.78125 C 23.28125 -1.78125 23.8125 -1.78125 25.015625 -1.578125 L 25.015625 -4.421875 C 24.28125 -4.265625 23.046875 -4.171875 20.921875 -4.171875 L 15.640625 -4.171875 L 15.640625 -7.484375 L 19.484375 -7.484375 C 21.546875 -7.484375 22.84375 -7.4375 23.71875 -7.34375 C 23.609375 -8.109375 23.5625 -9.171875 23.5625 -11.46875 L 23.5625 -16.9375 C 23.5625 -19.015625 23.609375 -19.875 23.71875 -21.171875 C 22.65625 -21.03125 21.84375 -20.96875 19.109375 -20.96875 L 15.640625 -20.96875 L 15.640625 -23.90625 L 21.078125 -23.90625 C 22.796875 -23.90625 23.90625 -23.859375 25.109375 -23.71875 L 25.109375 -26.5 C 23.953125 -26.296875 22.9375 -26.25 21.078125 -26.25 L 15.640625 -26.25 C 15.640625 -27.703125 15.703125 -28.46875 15.890625 -29.375 L 16.171875 -28.65625 L 18.90625 -29.65625 C 17.71875 -31.78125 17.328125 -32.453125 16.3125 -33.9375 L 19.484375 -33.9375 C 21.3125 -33.9375 22.5625 -33.890625 23.859375 -33.75 L 23.859375 -36.765625 C 22.703125 -36.578125 21.3125 -36.484375 19.109375 -36.484375 L 10.9375 -36.484375 C 11.5625 -37.625 11.65625 -37.828125 12.71875 -40.078125 L 9.640625 -40.890625 C 9.21875 -39.078125 8.359375 -37.203125 7.109375 -35.1875 C 5.859375 -33.265625 4.65625 -31.828125 2.359375 -29.765625 C 3.21875 -29.234375 3.9375 -28.609375 4.5625 -27.84375 C 7.109375 -30.484375 8.109375 -31.734375 9.5 -33.9375 Z M 13.015625 -18.765625 L 13.015625 -15.359375 L 7.578125 -15.359375 L 7.578125 -18.765625 Z M 15.640625 -18.765625 L 21.03125 -18.765625 L 21.03125 -15.359375 L 15.640625 -15.359375 Z M 13.015625 -13.203125 L 13.015625 -9.703125 L 7.578125 -9.703125 L 7.578125 -13.203125 Z M 15.640625 -13.203125 L 21.03125 -13.203125 L 21.03125 -9.703125 L 15.640625 -9.703125 Z M 31.96875 -33.9375 C 33.359375 -31.6875 34.078125 -30.34375 34.9375 -28.171875 L 37.578125 -29.1875 C 36.859375 -30.71875 35.90625 -32.40625 34.890625 -33.9375 L 39.984375 -33.9375 C 42 -33.9375 43.53125 -33.890625 45.03125 -33.703125 L 45.03125 -36.765625 C 43.625 -36.53125 42.34375 -36.484375 39.9375 -36.484375 L 29.140625 -36.484375 C 29.859375 -37.96875 30.046875 -38.453125 30.71875 -39.984375 L 27.75 -40.796875 C 27.265625 -38.734375 26.78125 -37.578125 25.78125 -35.71875 C 24.53125 -33.453125 23.71875 -32.296875 21.453125 -29.953125 C 22.421875 -29.375 22.890625 -29.046875 23.71875 -28.265625 C 25.734375 -30.578125 26.546875 -31.734375 27.84375 -33.9375 Z M 40.3125 -23.859375 C 40.3125 -19.578125 40.171875 -15.890625 40.03125 -14.296875 C 39.796875 -12.140625 39.546875 -11.765625 38.25 -11.765625 C 37.25 -11.765625 36.046875 -11.90625 34.125 -12.1875 C 34.46875 -11.1875 34.609375 -10.5625 34.65625 -9.3125 C 36.234375 -9.125 37.390625 -9.078125 38.40625 -9.078125 C 41.09375 -9.078125 42.234375 -9.9375 42.671875 -12.28125 C 42.90625 -14.015625 43.15625 -18.234375 43.15625 -21.890625 C 43.203125 -24.8125 43.203125 -25.6875 43.34375 -26.640625 C 42.1875 -26.5 41.046875 -26.453125 38.96875 -26.453125 L 31.390625 -26.453125 C 29.46875 -26.453125 28.21875 -26.5 27.21875 -26.640625 C 27.40625 -25.53125 27.453125 -24.34375 27.453125 -22.125 L 27.453125 -0.90625 C 27.453125 2.25 28.65625 2.828125 35.1875 2.828125 C 41.421875 2.828125 43.203125 2.40625 44.109375 0.71875 C 44.828125 -0.625 45.125 -2.359375 45.265625 -6.234375 C 44.359375 -6.53125 43.6875 -6.859375 42.34375 -7.625 C 42.34375 -3.9375 42.09375 -1.96875 41.609375 -1.109375 C 41.046875 -0.046875 39.984375 0.140625 35.046875 0.140625 C 30.8125 0.140625 30.34375 -0.046875 30.34375 -1.6875 L 30.34375 -23.859375 Z M 40.3125 -23.859375 "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-3">
+<path style="stroke:none;" d="M 16.65625 -13.625 C 16.3125 -11.46875 15.890625 -10.375 14.96875 -9.078125 C 13.96875 -7.625 12.859375 -6.671875 10.375 -5.09375 C 11.375 -4.375 11.765625 -4.03125 12.625 -3.03125 C 16.984375 -6 18.8125 -8.828125 19.484375 -13.625 L 27.890625 -13.625 L 27.890625 -7.921875 C 27.890625 -6 27.84375 -4.796875 27.640625 -3.640625 L 30.90625 -3.640625 C 30.71875 -4.703125 30.671875 -5.90625 30.671875 -7.96875 L 30.671875 -13.625 L 34.609375 -13.625 C 36.578125 -13.625 37.625 -13.578125 38.734375 -13.390625 L 38.734375 -16.421875 C 37.78125 -16.21875 36.671875 -16.171875 34.609375 -16.171875 L 30.671875 -16.171875 L 30.671875 -24.28125 L 33.890625 -24.28125 C 35.8125 -24.28125 36.859375 -24.234375 37.921875 -24.046875 L 37.921875 -27.078125 C 36.859375 -26.875 35.90625 -26.828125 33.890625 -26.828125 L 30.671875 -26.828125 L 30.671875 -29.5625 C 30.671875 -31.34375 30.71875 -32.296875 30.90625 -33.3125 L 27.640625 -33.3125 C 27.84375 -32.25 27.890625 -31.296875 27.890625 -29.5625 L 27.890625 -26.828125 L 20.015625 -26.828125 L 20.015625 -29.65625 C 20.015625 -31.390625 20.0625 -32.25 20.25 -33.3125 L 16.984375 -33.3125 C 17.140625 -32.015625 17.234375 -30.859375 17.234375 -29.5625 L 17.234375 -26.828125 L 14.0625 -26.828125 C 12.046875 -26.828125 11.046875 -26.875 10.03125 -27.078125 L 10.03125 -24.046875 C 11.140625 -24.234375 12.140625 -24.28125 14.0625 -24.28125 L 17.234375 -24.28125 L 17.234375 -23.46875 C 17.234375 -20.40625 17.1875 -18.671875 16.984375 -16.171875 L 13.34375 -16.171875 C 11.328125 -16.171875 10.3125 -16.21875 9.359375 -16.421875 L 9.359375 -13.390625 C 10.375 -13.578125 11.46875 -13.625 13.34375 -13.625 Z M 20.015625 -24.28125 L 27.890625 -24.28125 L 27.890625 -16.171875 L 19.734375 -16.171875 C 19.921875 -19.109375 20.015625 -20.828125 20.015625 -23.234375 Z M 43.921875 3.703125 C 43.734375 2.40625 43.625 0.90625 43.625 -2.015625 L 43.625 -32.109375 C 43.625 -34.609375 43.734375 -36.234375 43.921875 -38.015625 C 42.140625 -37.828125 40.75 -37.78125 38.203125 -37.78125 L 9.5 -37.78125 C 7.015625 -37.78125 5.609375 -37.828125 3.890625 -38.015625 C 4.078125 -36.140625 4.171875 -34.515625 4.171875 -32.109375 L 4.171875 -2.0625 C 4.171875 0.71875 4.078125 2.296875 3.890625 3.703125 L 7.25 3.703125 L 7.25 0.8125 L 40.5625 0.8125 L 40.5625 3.703125 Z M 7.25 -35.046875 L 40.5625 -35.046875 L 40.5625 -1.921875 L 7.25 -1.921875 Z M 7.25 -35.046875 "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-4">
+<path style="stroke:none;" d="M 34.9375 -37.6875 C 36.390625 -36.140625 38.6875 -32.59375 39.890625 -30.046875 L 42.28125 -31.484375 C 40.84375 -34.3125 39.5 -36.34375 37.34375 -38.921875 Z M 4.03125 -22.890625 C 6.1875 -23.515625 7.53125 -23.765625 13.6875 -24.625 C 11.515625 -15.546875 7.390625 -5.953125 3.40625 -0.71875 L 6.671875 1.203125 C 11.65625 -7.578125 15.03125 -15.9375 17.046875 -24.90625 C 18.8125 -25.109375 19.4375 -25.15625 20.5 -25.15625 C 24.953125 -25.15625 26.40625 -23.515625 26.40625 -18.4375 C 26.40625 -13.0625 25.6875 -8.15625 24.390625 -5.09375 C 23.765625 -3.546875 22.84375 -2.78125 21.640625 -2.78125 C 19.921875 -2.78125 17.234375 -3.59375 14.5 -4.984375 C 14.640625 -4.125 14.640625 -3.84375 14.640625 -3.125 C 14.640625 -2.453125 14.640625 -2.109375 14.546875 -1.390625 C 17.71875 -0.046875 19.734375 0.484375 21.796875 0.484375 C 24.046875 0.484375 25.34375 -0.140625 26.5 -1.78125 C 28.46875 -4.5625 29.71875 -10.9375 29.71875 -18.28125 C 29.71875 -22.21875 29.046875 -24.4375 27.359375 -26.015625 C 25.875 -27.453125 23.859375 -28.03125 20.453125 -28.03125 C 19.34375 -28.03125 18.71875 -27.984375 17.609375 -27.890625 C 18 -29.953125 18.4375 -32.15625 18.625 -33.359375 C 19.015625 -35.953125 19.25 -37.0625 19.53125 -37.96875 L 15.703125 -38.40625 C 15.703125 -38.109375 15.703125 -37.875 15.703125 -37.78125 C 15.703125 -35.765625 15.078125 -31.203125 14.25 -27.59375 C 7.203125 -26.59375 5.375 -26.40625 3.640625 -26.359375 Z M 40.421875 -40.21875 C 42.28125 -38.0625 44.296875 -34.9375 45.3125 -32.6875 L 47.71875 -34.078125 C 46.125 -37.109375 44.921875 -38.875 42.765625 -41.515625 Z M 32.359375 -29.28125 C 36.671875 -25.015625 40.5625 -18.140625 42.140625 -12.046875 L 45.21875 -13.78125 C 43.203125 -20.109375 39.9375 -25.6875 35.1875 -30.765625 Z M 32.359375 -29.28125 "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-5">
+<path style="stroke:none;" d="M 25.34375 -18.1875 C 26.40625 -14.921875 26.96875 -13.578125 28.5625 -10.984375 C 29.609375 -9.359375 30.390625 -8.25 31.78125 -6.671875 C 28.125 -3.40625 24.8125 -1.390625 19.390625 0.8125 C 20.296875 1.578125 20.640625 2.015625 21.359375 3.265625 C 26.640625 0.90625 30.140625 -1.34375 33.703125 -4.65625 C 36.90625 -1.484375 40.421875 1.015625 44.734375 3.078125 C 45.21875 1.828125 45.703125 1.0625 46.421875 0.09375 C 42 -1.734375 39.078125 -3.59375 35.671875 -6.671875 C 38.203125 -9.40625 40.796875 -13.53125 42.390625 -17.28125 C 42.953125 -18.578125 42.953125 -18.578125 43.296875 -19.34375 L 41.859375 -20.96875 C 40.9375 -20.78125 39.84375 -20.734375 37.625 -20.734375 L 33.546875 -20.734375 L 33.546875 -29.953125 L 41.8125 -29.953125 C 41.140625 -27.9375 40.46875 -26.59375 39.125 -24.578125 C 40.171875 -24.28125 40.796875 -24 41.8125 -23.375 C 42.71875 -25.015625 43.578125 -26.734375 44.109375 -28.03125 C 45.171875 -30.859375 45.3125 -31.203125 45.40625 -31.390625 L 43.6875 -32.875 C 42.765625 -32.6875 41.609375 -32.640625 38.875 -32.640625 L 33.546875 -32.640625 L 33.546875 -35.1875 C 33.546875 -37.390625 33.59375 -38.5 33.84375 -39.546875 L 30.4375 -39.546875 C 30.671875 -38.359375 30.71875 -37.34375 30.71875 -35.234375 L 30.71875 -32.640625 L 25.109375 -32.640625 C 22.75 -32.640625 21.796875 -32.6875 20.359375 -32.828125 C 20.59375 -31.203125 20.640625 -29.71875 20.640625 -27.078125 C 20.640625 -19.296875 20.015625 -13.15625 18.8125 -8.6875 C 17.71875 -4.46875 16.21875 -1.625 13.53125 1.625 C 14.546875 2.15625 14.96875 2.453125 16.03125 3.453125 C 20.359375 -1.96875 22.421875 -8.203125 23.1875 -18.1875 Z M 23.375 -20.734375 C 23.46875 -23.09375 23.515625 -24.53125 23.515625 -26.15625 L 23.515625 -29.953125 L 30.71875 -29.953125 L 30.71875 -20.734375 Z M 39.546875 -18.1875 C 38.203125 -14.59375 36.390625 -11.65625 33.75 -8.640625 C 30.953125 -11.71875 29.46875 -14.296875 28.125 -18.1875 Z M 11.5625 -16.421875 C 13.0625 -14.359375 14.546875 -12.8125 17.09375 -10.703125 C 17.515625 -11.609375 17.953125 -12.28125 18.625 -13.109375 C 16.984375 -14.203125 16.515625 -14.59375 15.265625 -15.796875 C 16.703125 -17.46875 16.84375 -17.65625 18.28125 -19.921875 C 18.4375 -20.15625 18.671875 -20.5 18.90625 -20.921875 L 16.84375 -22.421875 C 15.84375 -20.25 15.078125 -19.015625 13.734375 -17.328125 C 12.859375 -18.28125 12.625 -18.625 11.765625 -19.875 C 14.15625 -23.28125 15.40625 -25.4375 17.046875 -28.9375 C 17.46875 -29.90625 17.46875 -29.953125 17.71875 -30.390625 L 16.375 -31.96875 C 15.59375 -31.875 14.734375 -31.828125 13.015625 -31.828125 L 11.65625 -31.828125 L 11.65625 -36.234375 C 11.65625 -38.0625 11.765625 -39.265625 11.90625 -40.125 L 8.546875 -40.125 C 8.6875 -39.21875 8.734375 -37.875 8.734375 -36.1875 L 8.734375 -31.828125 L 6.859375 -31.828125 C 5.28125 -31.828125 4.21875 -31.875 3.03125 -32.0625 L 3.03125 -28.890625 C 4.125 -29.09375 5.28125 -29.140625 6.71875 -29.140625 L 14.015625 -29.140625 C 11.46875 -22.703125 7.15625 -17.09375 1.53125 -12.90625 C 2.25 -11.90625 2.59375 -11.234375 3.03125 -10.125 C 5.65625 -12.53125 7.25 -14.15625 8.78125 -15.984375 L 8.78125 -1.34375 C 8.78125 0.625 8.6875 2.40625 8.546875 3.640625 L 11.859375 3.640625 C 11.65625 2.40625 11.5625 0.71875 11.5625 -1.203125 Z M 11.5625 -16.421875 "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-6">
+<path style="stroke:none;" d="M 8.734375 -15.984375 C 10.171875 -16.65625 10.9375 -16.890625 13.875 -17.5625 C 19.578125 -18.90625 23.28125 -19.484375 26.5 -19.484375 C 32.296875 -19.484375 35.375 -17.140625 35.375 -12.765625 C 35.375 -8.5 32.0625 -4.84375 26.59375 -3.078125 C 23.859375 -2.15625 20.109375 -1.578125 17.140625 -1.578125 C 16.9375 -1.578125 16.75 -1.578125 16.46875 -1.625 C 17.234375 -0.140625 17.421875 0.34375 17.71875 1.6875 C 23.515625 0.953125 24.671875 0.765625 27.59375 -0.140625 C 34.265625 -2.25 38.59375 -7.15625 38.59375 -12.53125 C 38.59375 -14.5 38.0625 -16.46875 37.109375 -18 C 35.28125 -20.96875 31.875 -22.46875 26.921875 -22.46875 C 22.796875 -22.46875 18.578125 -21.84375 12.28125 -20.359375 C 9.3125 -19.625 9.078125 -19.578125 7.875 -19.484375 Z M 8.734375 -15.984375 "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-7">
+<path style="stroke:none;" d="M 4.9375 -27.890625 C 7.296875 -28.421875 11.5625 -28.796875 21.5 -29.46875 C 26.828125 -29.8125 29.234375 -30.046875 32.0625 -30.53125 C 30.234375 -29.65625 28.984375 -28.984375 27.5 -27.984375 C 21.796875 -24.140625 18.53125 -18.8125 18.53125 -13.25 C 18.53125 -9.3125 20.453125 -5.765625 23.859375 -3.453125 C 26.59375 -1.578125 29.46875 -0.578125 34.21875 0.234375 C 34.984375 0.390625 35.1875 0.4375 35.71875 0.53125 L 36.34375 -3.359375 C 36.140625 -3.359375 35.953125 -3.359375 35.859375 -3.359375 C 34.03125 -3.359375 31.015625 -4.03125 28.65625 -4.890625 C 24.390625 -6.53125 21.9375 -9.75 21.9375 -13.78125 C 21.9375 -17.765625 24 -21.640625 27.84375 -24.859375 C 30.484375 -27.125 33.84375 -28.84375 37.0625 -29.71875 C 38.875 -30.140625 40.515625 -30.34375 42.4375 -30.34375 L 42.140625 -33.9375 C 41.375 -33.703125 39.125 -33.5 36.4375 -33.40625 C 30.234375 -33.125 14.875 -32.25 9.171875 -31.828125 C 7.6875 -31.734375 7.109375 -31.6875 6.4375 -31.6875 C 6.09375 -31.6875 5.609375 -31.6875 4.703125 -31.6875 Z M 4.9375 -27.890625 "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-8">
+<path style="stroke:none;" d="M 11.140625 -37.4375 C 11.28125 -36.484375 11.328125 -35.90625 11.328125 -34.890625 C 11.328125 -34.125 11.328125 -33.21875 11.28125 -31.78125 C 10.890625 -16.65625 10.84375 -15.453125 10.84375 -12.234375 C 10.84375 -7.203125 11.515625 -4.65625 13.484375 -2.40625 C 15.40625 -0.1875 18.4375 0.953125 22.515625 0.953125 C 28.125 0.953125 32.640625 -1.015625 36.046875 -5.046875 C 38.15625 -7.484375 39.546875 -10.3125 41.375 -15.9375 C 39.84375 -16.703125 39.265625 -17.09375 37.921875 -18.234375 C 37.25 -14.875 36.671875 -13.015625 35.5625 -10.703125 C 32.828125 -5.234375 28.421875 -2.359375 22.703125 -2.359375 C 20.203125 -2.359375 18.046875 -3.03125 16.703125 -4.21875 C 15.265625 -5.515625 14.640625 -7.109375 14.453125 -9.984375 C 14.40625 -11.09375 14.359375 -12.28125 14.359375 -12.859375 C 14.359375 -15.03125 14.5 -21.546875 14.6875 -27.3125 C 14.828125 -33.359375 15.03125 -35.8125 15.3125 -37.4375 Z M 11.140625 -37.4375 "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-9">
+<path style="stroke:none;" d="M 42 -3.84375 C 41.375 -4.21875 41.140625 -4.375 40.375 -4.9375 C 35.328125 -8.59375 31.15625 -10.796875 26.96875 -11.953125 C 26.78125 -16.609375 26.78125 -16.609375 26.6875 -19.296875 C 30.234375 -19.53125 34.03125 -19.921875 37.34375 -20.453125 C 39.03125 -20.6875 39.5 -20.734375 40.125 -20.78125 L 39.9375 -24.09375 C 37.296875 -23.1875 33.171875 -22.609375 26.640625 -22.125 C 26.59375 -24.671875 26.59375 -24.671875 26.546875 -28.609375 C 31.875 -28.9375 33.171875 -29.09375 37.6875 -29.765625 C 40.171875 -30.09375 40.171875 -30.09375 40.984375 -30.140625 L 40.75 -33.40625 C 38.109375 -32.546875 33.171875 -31.875 26.546875 -31.4375 C 26.59375 -34.890625 26.6875 -37.203125 26.875 -38.203125 L 23.1875 -38.203125 C 23.375 -37.15625 23.375 -37.15625 23.421875 -31.296875 C 21.84375 -31.296875 20.203125 -31.25 19.25 -31.25 C 14.015625 -31.25 9.03125 -31.625 6.953125 -32.203125 L 6.90625 -28.9375 C 7.203125 -28.984375 7.4375 -28.984375 7.578125 -28.984375 C 7.828125 -28.984375 8.109375 -28.984375 8.453125 -28.9375 C 12.765625 -28.609375 16.65625 -28.46875 20.15625 -28.46875 C 21.265625 -28.46875 22.03125 -28.46875 23.421875 -28.515625 L 23.515625 -21.9375 C 22.171875 -21.890625 20.5 -21.890625 19.25 -21.890625 C 14.40625 -21.890625 10.421875 -22.171875 8.25 -22.65625 L 8.203125 -19.484375 C 8.359375 -19.484375 8.546875 -19.484375 8.59375 -19.484375 C 8.875 -19.484375 9.265625 -19.484375 9.796875 -19.4375 C 12.765625 -19.203125 15.03125 -19.109375 17.90625 -19.109375 C 19.4375 -19.109375 21.84375 -19.15625 23.5625 -19.203125 C 23.609375 -17.953125 23.609375 -17.046875 23.65625 -16.421875 C 23.71875 -15.03125 23.71875 -14.015625 23.765625 -13.578125 C 23.765625 -13.296875 23.8125 -13.109375 23.8125 -13.0625 C 23.8125 -12.625 23.8125 -12.625 23.859375 -12.484375 C 21.796875 -12.8125 21.125 -12.859375 19.53125 -12.859375 C 17.421875 -12.859375 15.984375 -12.71875 14.546875 -12.390625 C 10.3125 -11.421875 7.828125 -8.921875 7.828125 -5.765625 C 7.828125 -3.796875 8.78125 -1.921875 10.421875 -0.71875 C 12.046875 0.53125 14.6875 1.203125 17.859375 1.203125 C 21.640625 1.203125 24.578125 0.140625 25.96875 -1.828125 C 26.828125 -2.96875 27.171875 -4.515625 27.171875 -7.0625 C 27.171875 -7.6875 27.171875 -7.6875 27.078125 -8.78125 C 28.375 -8.25 29.46875 -7.78125 30.28125 -7.34375 C 34.375 -5.234375 37.875 -2.78125 40.078125 -0.484375 Z M 23.90625 -7.734375 C 23.90625 -5.421875 23.609375 -4.078125 22.9375 -3.40625 C 22.03125 -2.359375 20.203125 -1.828125 17.65625 -1.828125 C 13.484375 -1.828125 11.09375 -3.265625 11.09375 -5.8125 C 11.09375 -8.359375 14.203125 -10.078125 18.953125 -10.078125 C 21.078125 -10.078125 22.03125 -9.984375 23.859375 -9.546875 Z M 23.90625 -7.734375 "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-10">
+<path style="stroke:none;" d="M 5.328125 -26.78125 C 5.765625 -26.828125 6.046875 -26.828125 6.140625 -26.828125 C 6.140625 -26.828125 6.234375 -26.828125 6.34375 -26.828125 C 8.203125 -26.734375 8.640625 -26.734375 10.3125 -26.734375 C 12.09375 -26.734375 12.671875 -26.734375 13.625 -26.78125 C 11.859375 -17.375 8.15625 -6.4375 4.609375 -0.234375 L 8.109375 1.25 C 10.65625 -4.609375 12.046875 -8.25 13.625 -13.390625 C 14.921875 -17.765625 16.265625 -23.1875 16.984375 -26.96875 C 19.34375 -27.171875 22.65625 -27.59375 25.109375 -28.125 C 26.0625 -28.3125 26.0625 -28.3125 26.453125 -28.375 L 26.203125 -31.6875 C 23.90625 -30.90625 21.3125 -30.4375 17.5625 -30.046875 C 17.8125 -31.484375 17.953125 -32.15625 18.1875 -33.703125 C 18.765625 -37.109375 18.765625 -37.109375 19.0625 -38.25 L 15.265625 -38.640625 C 15.265625 -36.53125 15.171875 -35.71875 14.203125 -29.8125 C 12.8125 -29.71875 12.28125 -29.71875 11.328125 -29.71875 C 8.78125 -29.71875 6.859375 -29.859375 5.328125 -30.140625 Z M 41.5625 -24.4375 C 37.96875 -24.578125 37.25 -24.578125 36.34375 -24.578125 C 32.296875 -24.578125 29.1875 -24.1875 23.609375 -22.984375 L 23.953125 -19.734375 C 28.3125 -20.921875 31.6875 -21.359375 35.953125 -21.359375 C 37.96875 -21.359375 39.3125 -21.265625 41.609375 -21.03125 Z M 24.09375 -14.0625 C 21.546875 -10.796875 20.875 -9.3125 20.875 -7.15625 C 20.875 -2.40625 24.953125 0.046875 32.828125 0.046875 C 35.375 0.046875 38.15625 -0.1875 41.375 -0.765625 C 42.953125 -1.015625 42.953125 -1.015625 43.484375 -1.109375 L 43.15625 -4.703125 C 40.421875 -3.75 36.140625 -3.078125 32.546875 -3.078125 C 27.078125 -3.078125 24.140625 -4.609375 24.140625 -7.484375 C 24.140625 -8.640625 24.578125 -9.890625 25.34375 -10.890625 C 25.6875 -11.421875 25.828125 -11.5625 26.78125 -12.71875 Z M 24.09375 -14.0625 "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-11">
+<path style="stroke:none;" d="M 27.40625 -12.28125 C 25.15625 -8.546875 20.828125 -5.09375 15.265625 -2.546875 C 16.265625 -1.78125 16.796875 -1.203125 17.328125 -0.28125 C 23.46875 -3.703125 27.796875 -7.578125 30.53125 -12.28125 L 35.28125 -12.28125 C 34.3125 -9.984375 33.03125 -7.96875 31.34375 -6 C 28.75 -3.03125 26.203125 -1.015625 21.9375 1.296875 C 23.046875 2.15625 23.421875 2.5 24.140625 3.546875 C 26.0625 2.359375 26.921875 1.734375 28.03125 0.859375 C 29.8125 -0.578125 32.5 -3.265625 33.9375 -5.046875 C 35.71875 -7.203125 36.90625 -9.265625 38.203125 -12.28125 L 41.421875 -12.28125 C 41.234375 -8.546875 40.890625 -5.46875 40.375 -3.078125 C 39.75 -0.1875 39.40625 0.1875 37.484375 0.1875 C 35.8125 0.1875 34.03125 0.046875 31.78125 -0.34375 C 32.359375 0.765625 32.59375 1.578125 32.734375 2.78125 C 34.21875 2.875 35.8125 2.96875 36.90625 2.96875 C 40.171875 2.96875 41.375 2.5 42.234375 0.765625 C 43.109375 -0.90625 43.96875 -6.390625 44.359375 -12.046875 C 44.453125 -13.96875 44.5 -14.25 44.59375 -14.875 C 43.390625 -14.734375 42.234375 -14.6875 39.890625 -14.6875 L 24 -14.6875 C 25.0625 -16.125 25.4375 -16.75 26.203125 -18.1875 L 40.890625 -18.1875 C 43.015625 -18.1875 44.453125 -18.140625 45.640625 -18 L 45.640625 -21.03125 C 44.59375 -20.828125 43.203125 -20.734375 40.890625 -20.734375 L 20.40625 -20.734375 C 18.1875 -20.734375 17.046875 -20.828125 15.984375 -21.03125 L 15.984375 -17.90625 C 16.9375 -18.09375 18.34375 -18.1875 20.296875 -18.1875 L 23.234375 -18.1875 C 21.265625 -14.15625 17.765625 -10.9375 12.09375 -8.0625 C 12.859375 -7.484375 13.484375 -6.765625 14.0625 -5.90625 C 17.515625 -7.921875 19.921875 -9.796875 22.125 -12.28125 Z M 8.640625 -27.546875 L 6.671875 -27.546875 C 4.9375 -27.546875 3.796875 -27.59375 2.5 -27.796875 L 2.5 -24.625 C 3.75 -24.765625 5.046875 -24.859375 6.578125 -24.859375 L 8.640625 -24.859375 L 8.640625 -11.140625 C 4.75 -9.359375 4.265625 -9.171875 2.453125 -8.78125 L 3.359375 -5.421875 C 3.796875 -5.65625 5.140625 -6.34375 5.90625 -6.671875 C 8.734375 -7.921875 13.109375 -10.3125 15.890625 -12.09375 L 15.703125 -14.96875 C 13.875 -13.78125 13.15625 -13.34375 11.609375 -12.53125 L 11.609375 -24.859375 L 12.765625 -24.859375 C 14.109375 -24.859375 15.359375 -24.8125 16.75 -24.671875 L 16.75 -27.75 C 15.703125 -27.59375 14.640625 -27.546875 12.765625 -27.546875 L 11.609375 -27.546875 L 11.609375 -34.171875 C 11.609375 -36.53125 11.65625 -38.015625 11.90625 -39.5 L 8.359375 -39.5 C 8.546875 -38.15625 8.640625 -36.484375 8.640625 -34.21875 Z M 37.015625 -23.90625 C 38.875 -23.90625 40.375 -23.859375 41.421875 -23.765625 C 41.28125 -24.625 41.234375 -25.828125 41.234375 -28.03125 L 41.234375 -34.03125 C 41.234375 -36.234375 41.28125 -37.25 41.421875 -38.5 C 40.078125 -38.296875 38.640625 -38.25 36.4375 -38.25 L 23.90625 -38.25 C 21.796875 -38.25 20.734375 -38.296875 19.296875 -38.5 C 19.4375 -37.109375 19.484375 -36.484375 19.484375 -34.265625 L 19.484375 -28.03125 C 19.484375 -26.203125 19.4375 -25.015625 19.296875 -23.71875 C 20.359375 -23.859375 21.703125 -23.90625 23.65625 -23.90625 Z M 22.3125 -35.765625 L 38.40625 -35.765625 L 38.40625 -32.25 L 22.3125 -32.25 Z M 22.3125 -29.90625 L 38.40625 -29.90625 L 38.40625 -26.25 L 22.3125 -26.25 Z M 22.3125 -29.90625 "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-12">
+<path style="stroke:none;" d="M 22.03125 -39.796875 C 19.921875 -36.53125 18.046875 -34.375 14.640625 -31.4375 C 10.65625 -27.9375 6.53125 -25.296875 1.578125 -23.09375 C 2.6875 -21.984375 3.078125 -21.453125 3.59375 -20.359375 C 7.484375 -22.21875 10.515625 -24.09375 13.78125 -26.59375 C 18 -29.859375 20.640625 -32.59375 23.859375 -37.109375 C 26.015625 -34.03125 28.21875 -31.578125 31.25 -29.046875 C 35.140625 -25.734375 39.984375 -22.5625 44.78125 -20.203125 C 45.359375 -21.40625 45.84375 -22.21875 46.703125 -23.234375 C 42.140625 -25.0625 37.625 -27.75 33.546875 -31.109375 C 29.859375 -34.125 27.640625 -36.53125 25.625 -39.796875 Z M 12.671875 -21.9375 C 13.6875 -22.078125 14.921875 -22.125 16.421875 -22.125 L 31.34375 -22.125 C 33.171875 -22.125 34.3125 -22.078125 35.375 -21.9375 L 35.375 -25.203125 C 34.375 -25.0625 33.21875 -25.015625 31.34375 -25.015625 L 16.46875 -25.015625 C 14.6875 -25.015625 13.53125 -25.0625 12.671875 -25.203125 Z M 12.34375 3.125 L 12.34375 0.34375 L 35.515625 0.34375 L 35.515625 3.125 L 38.96875 3.125 C 38.78125 1.734375 38.6875 0.28125 38.6875 -1.578125 L 38.6875 -12.1875 C 38.6875 -14.0625 38.734375 -15.3125 38.921875 -16.609375 C 37.921875 -16.46875 36.90625 -16.421875 35.1875 -16.421875 L 12.671875 -16.421875 C 10.9375 -16.421875 9.9375 -16.46875 8.921875 -16.609375 C 9.125 -15.265625 9.171875 -13.96875 9.171875 -12.1875 L 9.171875 -1.578125 C 9.171875 0.234375 9.078125 1.625 8.875 3.125 Z M 12.34375 -13.484375 L 35.515625 -13.484375 L 35.515625 -2.5 L 12.34375 -2.5 Z M 12.34375 -13.484375 "/>
+</symbol>
+</g>
+</defs>
+<g id="surface1">
+<rect x="0" y="0" width="1491" height="2265" style="fill:rgb(100%,100%,100%);fill-opacity:1;stroke:none;"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-1" x="184.3546" y="224.422003"/>
+  <use xlink:href="#glyph0-2" x="196.7866" y="224.422003"/>
+  <use xlink:href="#glyph0-3" x="222.5626" y="224.422003"/>
+  <use xlink:href="#glyph0-4" x="241.2346" y="224.422003"/>
+  <use xlink:href="#glyph0-5" x="269.6986" y="224.422003"/>
+  <use xlink:href="#glyph0-6" x="282.1306" y="224.422003"/>
+  <use xlink:href="#glyph0-7" x="295.4746" y="224.422003"/>
+  <use xlink:href="#glyph0-6" x="306.1306" y="224.422003"/>
+  <use xlink:href="#glyph0-1" x="319.4746" y="224.422003"/>
+  <use xlink:href="#glyph0-8" x="331.9066" y="224.422003"/>
+  <use xlink:href="#glyph0-6" x="346.1146" y="224.422003"/>
+  <use xlink:href="#glyph0-3" x="359.4586" y="224.422003"/>
+  <use xlink:href="#glyph0-6" x="378.1306" y="224.422003"/>
+  <use xlink:href="#glyph0-9" x="391.4746" y="224.422003"/>
+  <use xlink:href="#glyph0-5" x="402.1306" y="224.422003"/>
+  <use xlink:href="#glyph0-6" x="414.5626" y="224.422003"/>
+  <use xlink:href="#glyph0-7" x="427.9066" y="224.422003"/>
+  <use xlink:href="#glyph0-6" x="438.5626" y="224.422003"/>
+  <use xlink:href="#glyph0-10" x="451.9066" y="224.422003"/>
+  <use xlink:href="#glyph0-6" x="492.8506" y="224.422003"/>
+  <use xlink:href="#glyph0-7" x="506.1946" y="224.422003"/>
+  <use xlink:href="#glyph0-6" x="516.8506" y="224.422003"/>
+  <use xlink:href="#glyph0-1" x="530.1946" y="224.422003"/>
+  <use xlink:href="#glyph0-11" x="542.6266" y="224.422003"/>
+  <use xlink:href="#glyph0-3" x="570.1786" y="224.422003"/>
+  <use xlink:href="#glyph0-12" x="588.8506" y="224.422003"/>
+  <use xlink:href="#glyph0-5" x="611.8906" y="224.422003"/>
+</g>
+<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 589.606771 164.019531 L 1044.352865 164.019531 " transform="matrix(3,0,0,3,-1677,-42)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 600.945312 143.272135 L 600.945312 183.200521 " transform="matrix(3,0,0,3,-1677,-42)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 656.220052 151.264323 L 656.220052 175.209635 " transform="matrix(3,0,0,3,-1677,-42)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 687.401042 151.264323 L 687.401042 175.209635 " transform="matrix(3,0,0,3,-1677,-42)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 739.842448 149.846354 L 739.842448 173.791667 " transform="matrix(3,0,0,3,-1677,-42)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 768.188802 149.846354 L 768.188802 173.791667 " transform="matrix(3,0,0,3,-1677,-42)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 800.78776 149.846354 L 800.78776 173.791667 " transform="matrix(3,0,0,3,-1677,-42)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 895.747396 143.272135 L 895.747396 179.433594 " transform="matrix(3,0,0,3,-1677,-42)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-2" x="110.8207" y="559.159003"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-4" x="275.3035" y="559.159003"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-8" x="375.9748" y="559.159003"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-9" x="535.0736" y="559.159003"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-10" x="604.969" y="559.159003"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-11" x="709.4602" y="559.159003"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-12" x="996.598" y="559.159003"/>
+</g>
+<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 610.84375 174.561198 L 646.321615 175.067708 " transform="matrix(3,0,0,3,-1677,-42)"/>
+<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 654.320312 175.182292 L 646.364583 172.067708 L 646.278646 178.067708 Z M 654.320312 175.182292 " transform="matrix(3,0,0,3,-1677,-42)"/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 131.535156 481.34375 L 155.402344 490.683594 L 155.660156 472.683594 Z M 131.535156 481.34375 "/>
+<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 602.845052 174.446615 L 610.800781 177.561198 L 610.886719 171.561198 Z M 602.845052 174.446615 " transform="matrix(3,0,0,3,-1677,-42)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 697.302083 175.209635 L 729.942708 175.209635 " transform="matrix(3,0,0,3,-1677,-42)"/>
+<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 737.942708 175.209635 L 729.942708 172.209635 L 729.942708 178.209635 Z M 737.942708 175.209635 " transform="matrix(3,0,0,3,-1677,-42)"/>
+<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 689.302083 175.209635 L 697.302083 178.209635 L 697.302083 172.209635 Z M 689.302083 175.209635 " transform="matrix(3,0,0,3,-1677,-42)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 811.6875 173.199219 L 885.847656 173.751302 " transform="matrix(3,0,0,3,-1677,-42)"/>
+<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 893.847656 173.811198 L 885.871094 170.751302 L 885.825521 176.751302 Z M 893.847656 173.811198 " transform="matrix(3,0,0,3,-1677,-42)"/>
+<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 803.6875 173.139323 L 811.665365 176.199219 L 811.709635 170.199219 Z M 803.6875 173.139323 " transform="matrix(3,0,0,3,-1677,-42)"/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 185.558594 1104.667969 C 207.972656 1127.085938 207.972656 1163.429688 185.558594 1185.84375 C 163.140625 1208.261719 126.796875 1208.261719 104.378906 1185.84375 C 81.960938 1163.429688 81.960938 1127.085938 104.378906 1104.667969 C 126.796875 1082.25 163.140625 1082.25 185.558594 1104.667969 "/>
+<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 620.852865 382.222656 C 628.324219 389.69401 628.324219 401.809896 620.852865 409.28125 C 613.380208 416.753906 601.265625 416.753906 593.792969 409.28125 C 586.320312 401.809896 586.320312 389.69401 593.792969 382.222656 C 601.265625 374.75 613.380208 374.75 620.852865 382.222656 " transform="matrix(3,0,0,3,-1677,-42)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-2" x="118.7365" y="1162.584003"/>
+  <use xlink:href="#glyph0-13" x="144.5125" y="1162.584003"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-2" x="97.4767" y="649.159003"/>
+  <use xlink:href="#glyph0-13" x="123.2527" y="649.159003"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-2" x="266.9294" y="649.159003"/>
+  <use xlink:href="#glyph0-14" x="292.7054" y="649.159003"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-2" x="356.8468" y="649.159003"/>
+  <use xlink:href="#glyph0-15" x="382.6228" y="649.159003"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-2" x="514.1696" y="649.159003"/>
+  <use xlink:href="#glyph0-16" x="539.9456" y="649.159003"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-2" x="599.209" y="649.159003"/>
+  <use xlink:href="#glyph0-17" x="624.985" y="649.159003"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-2" x="697.0042" y="649.159003"/>
+  <use xlink:href="#glyph0-18" x="722.7802" y="649.159003"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-2" x="981.886" y="649.159003"/>
+  <use xlink:href="#glyph0-19" x="1007.662" y="649.159003"/>
+</g>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 411.265625 1104.667969 C 433.683594 1127.085938 433.683594 1163.429688 411.265625 1185.84375 C 388.847656 1208.261719 352.503906 1208.261719 330.089844 1185.84375 C 307.671875 1163.429688 307.671875 1127.085938 330.089844 1104.667969 C 352.503906 1082.25 388.847656 1082.25 411.265625 1104.667969 "/>
+<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 696.088542 382.222656 C 703.561198 389.69401 703.561198 401.809896 696.088542 409.28125 C 688.615885 416.753906 676.501302 416.753906 669.029948 409.28125 C 661.557292 401.809896 661.557292 389.69401 669.029948 382.222656 C 676.501302 374.75 688.615885 374.75 696.088542 382.222656 " transform="matrix(3,0,0,3,-1677,-42)"/>
+<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 659.119792 332.615885 C 666.592448 340.088542 666.592448 352.203125 659.119792 359.675781 C 651.648438 367.147135 639.532552 367.147135 632.061198 359.675781 C 624.588542 352.203125 624.588542 340.088542 632.061198 332.615885 C 639.532552 325.143229 651.648438 325.143229 659.119792 332.615885 " transform="matrix(3,0,0,3,-1677,-42)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 633.902344 361.296875 L 619.011719 380.60026 " transform="matrix(3,0,0,3,-1677,-42)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 657.026042 361.489583 L 671.123698 380.407552 " transform="matrix(3,0,0,3,-1677,-42)"/>
+<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 659.119792 431.828125 C 666.592448 439.300781 666.592448 451.415365 659.119792 458.888021 C 651.648438 466.360677 639.532552 466.360677 632.061198 458.888021 C 624.588542 451.415365 624.588542 439.300781 632.061198 431.828125 C 639.532552 424.356771 651.648438 424.356771 659.119792 431.828125 " transform="matrix(3,0,0,3,-1677,-42)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-2" x="233.5397" y="1311.402803"/>
+  <use xlink:href="#glyph0-14" x="259.3157" y="1311.402803"/>
+</g>
+<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 731.403646 431.828125 C 738.876302 439.300781 738.876302 451.415365 731.403646 458.888021 C 723.93099 466.360677 711.816406 466.360677 704.34375 458.888021 C 696.872396 451.415365 696.872396 439.300781 704.34375 431.828125 C 711.816406 424.356771 723.93099 424.356771 731.403646 431.828125 " transform="matrix(3,0,0,3,-1677,-42)"/>
+<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 696.088542 488.285156 C 703.561198 495.757812 703.561198 507.872396 696.088542 515.345052 C 688.615885 522.816406 676.501302 522.816406 669.029948 515.345052 C 661.557292 507.872396 661.557292 495.757812 669.029948 488.285156 C 676.501302 480.8125 688.615885 480.8125 696.088542 488.285156 " transform="matrix(3,0,0,3,-1677,-42)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-2" x="344.4452" y="1480.772903"/>
+  <use xlink:href="#glyph0-15" x="370.2212" y="1480.772903"/>
+</g>
+<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 769.671875 485.6875 C 777.143229 493.158854 777.143229 505.273438 769.671875 512.746094 C 762.199219 520.21875 750.084635 520.21875 742.611979 512.746094 C 735.139323 505.273438 735.139323 493.158854 742.611979 485.6875 C 750.084635 478.214844 762.199219 478.214844 769.671875 485.6875 " transform="matrix(3,0,0,3,-1677,-42)"/>
+<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 731.403646 544.742188 C 738.876302 552.214844 738.876302 564.329427 731.403646 571.800781 C 723.93099 579.273438 711.816406 579.273438 704.34375 571.800781 C 696.872396 564.329427 696.872396 552.214844 704.34375 544.742188 C 711.816406 537.269531 723.93099 537.269531 731.403646 544.742188 " transform="matrix(3,0,0,3,-1677,-42)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-2" x="450.3901" y="1650.143003"/>
+  <use xlink:href="#glyph0-16" x="476.1661" y="1650.143003"/>
+</g>
+<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 806.639323 544.742188 C 814.111979 552.214844 814.111979 564.329427 806.639323 571.800781 C 799.167969 579.273438 787.053385 579.273438 779.580729 571.800781 C 772.108073 564.329427 772.108073 552.214844 779.580729 544.742188 C 787.053385 537.269531 799.167969 537.269531 806.639323 544.742188 " transform="matrix(3,0,0,3,-1677,-42)"/>
+<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 769.671875 594.347656 C 777.143229 601.820312 777.143229 613.934896 769.671875 621.407552 C 762.199219 628.880208 750.084635 628.880208 742.611979 621.407552 C 735.139323 613.934896 735.139323 601.820312 742.611979 594.347656 C 750.084635 586.876302 762.199219 586.876302 769.671875 594.347656 " transform="matrix(3,0,0,3,-1677,-42)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-2" x="565.1932" y="1798.961903"/>
+  <use xlink:href="#glyph0-17" x="590.9692" y="1798.961903"/>
+</g>
+<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 841.954427 594.347656 C 849.427083 601.820312 849.427083 613.934896 841.954427 621.407552 C 834.483073 628.880208 822.367188 628.880208 814.895833 621.407552 C 807.423177 613.934896 807.423177 601.820312 814.895833 594.347656 C 822.367188 586.876302 834.483073 586.876302 841.954427 594.347656 " transform="matrix(3,0,0,3,-1677,-42)"/>
+<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 806.639323 650.804688 C 814.111979 658.277344 814.111979 670.391927 806.639323 677.864583 C 799.167969 685.33724 787.053385 685.33724 779.580729 677.864583 C 772.108073 670.391927 772.108073 658.277344 779.580729 650.804688 C 787.053385 643.333333 799.167969 643.333333 806.639323 650.804688 " transform="matrix(3,0,0,3,-1677,-42)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-2" x="676.0987" y="1968.331903"/>
+  <use xlink:href="#glyph0-18" x="701.8747" y="1968.331903"/>
+</g>
+<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 880.222656 648.207031 C 887.695312 655.678385 887.695312 667.794271 880.222656 675.265625 C 872.75 682.738281 860.635417 682.738281 853.16276 675.265625 C 845.691406 667.794271 845.691406 655.678385 853.16276 648.207031 C 860.635417 640.734375 872.75 640.734375 880.222656 648.207031 " transform="matrix(3,0,0,3,-1677,-42)"/>
+<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 841.954427 704.66276 C 849.427083 712.135417 849.427083 724.25 841.954427 731.722656 C 834.483073 739.195312 822.367188 739.195312 814.895833 731.722656 C 807.423177 724.25 807.423177 712.135417 814.895833 704.66276 C 822.367188 697.191406 834.483073 697.191406 841.954427 704.66276 " transform="matrix(3,0,0,3,-1677,-42)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-2" x="782.0436" y="2129.906803"/>
+  <use xlink:href="#glyph0-19" x="807.8196" y="2129.906803"/>
+</g>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 1069.613281 2064.195312 C 1092.027344 2086.609375 1092.027344 2122.957031 1069.613281 2145.371094 C 1047.195312 2167.789062 1010.851562 2167.789062 988.433594 2145.371094 C 966.019531 2122.957031 966.019531 2086.609375 988.433594 2064.195312 C 1010.851562 2041.777344 1047.195312 2041.777344 1069.613281 2064.195312 "/>
+<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 915.53776 702.065104 C 923.010417 709.536458 923.010417 721.652344 915.53776 729.123698 C 908.065104 736.596354 895.950521 736.596354 888.477865 729.123698 C 881.00651 721.652344 881.00651 709.536458 888.477865 702.065104 C 895.950521 694.592448 908.065104 694.592448 915.53776 702.065104 " transform="matrix(3,0,0,3,-1677,-42)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph1-1" x="998.352" y="2113.4475"/>
+  <use xlink:href="#glyph1-2" x="1015.68" y="2113.4475"/>
+  <use xlink:href="#glyph1-3" x="1033.008" y="2113.4475"/>
+  <use xlink:href="#glyph1-3" x="1046.352" y="2113.4475"/>
+</g>
+<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 671.123698 411.096354 L 657.026042 430.014323 " transform="matrix(3,0,0,3,-1677,-42)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 693.657552 411.342448 L 706.776042 429.768229 " transform="matrix(3,0,0,3,-1677,-42)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 707.72526 461.583333 L 692.708333 485.589844 " transform="matrix(3,0,0,3,-1677,-42)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 728.958333 460.958333 L 745.057292 483.615885 " transform="matrix(3,0,0,3,-1677,-42)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 745.734375 515.277344 L 728.28125 542.210938 " transform="matrix(3,0,0,3,-1677,-42)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 766.296875 515.438802 L 782.955729 542.049479 " transform="matrix(3,0,0,3,-1677,-42)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 781.675781 573.615885 L 767.576823 592.533854 " transform="matrix(3,0,0,3,-1677,-42)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 804.208333 573.861979 L 817.326823 592.28776 " transform="matrix(3,0,0,3,-1677,-42)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 818.276042 624.102865 L 803.259115 648.109375 " transform="matrix(3,0,0,3,-1677,-42)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 839.509115 623.477865 L 855.608073 646.136719 " transform="matrix(3,0,0,3,-1677,-42)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 855.955729 677.576823 L 839.16276 702.351562 " transform="matrix(3,0,0,3,-1677,-42)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 877.186198 677.740885 L 891.514323 699.591146 " transform="matrix(3,0,0,3,-1677,-42)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-3" x="142.0947" y="1239.474003"/>
+  <use xlink:href="#glyph0-6" x="160.7667" y="1239.474003"/>
+  <use xlink:href="#glyph0-2" x="174.1107" y="1239.474003"/>
+  <use xlink:href="#glyph0-14" x="199.8867" y="1239.474003"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-3" x="262.7534" y="1388.292603"/>
+  <use xlink:href="#glyph0-6" x="281.4254" y="1388.292603"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph2-1" x="294.7694" y="1388.292603"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-3" x="371.701" y="1558.371303"/>
+  <use xlink:href="#glyph0-6" x="390.373" y="1558.371303"/>
+  <use xlink:href="#glyph0-2" x="403.717" y="1558.371303"/>
+  <use xlink:href="#glyph0-16" x="429.493" y="1558.371303"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-3" x="490.5881" y="1719.946103"/>
+  <use xlink:href="#glyph0-6" x="509.2601" y="1719.946103"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph2-1" x="522.6041" y="1719.946103"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-3" x="593.533" y="1877.269003"/>
+  <use xlink:href="#glyph0-6" x="612.205" y="1877.269003"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph2-1" x="625.549" y="1877.269003"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-3" x="695.6065" y="2047.347703"/>
+  <use xlink:href="#glyph0-6" x="714.2785" y="2047.347703"/>
+  <use xlink:href="#glyph0-2" x="727.6225" y="2047.347703"/>
+  <use xlink:href="#glyph0-19" x="753.3985" y="2047.347703"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-3" x="809.4857" y="2208.922503"/>
+  <use xlink:href="#glyph0-6" x="828.1577" y="2208.922503"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph2-1" x="841.5017" y="2208.922503"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-20" x="100.7237" y="89.905976"/>
+  <use xlink:href="#glyph0-21" x="135.3797" y="89.905976"/>
+  <use xlink:href="#glyph0-2" x="162.0677" y="89.905976"/>
+  <use xlink:href="#glyph0-22" x="187.8437" y="89.905976"/>
+  <use xlink:href="#glyph0-20" x="203.8277" y="89.905976"/>
+  <use xlink:href="#glyph0-23" x="238.4837" y="89.905976"/>
+  <use xlink:href="#glyph0-2" x="249.1397" y="89.905976"/>
+  <use xlink:href="#glyph0-24" x="274.9157" y="89.905976"/>
+  <use xlink:href="#glyph0-24" x="298.9157" y="89.905976"/>
+  <use xlink:href="#glyph0-6" x="322.9157" y="89.905976"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph3-1" x="336.2597" y="89.905976"/>
+  <use xlink:href="#glyph3-2" x="384.2597" y="89.905976"/>
+  <use xlink:href="#glyph3-3" x="432.2597" y="89.905976"/>
+  <use xlink:href="#glyph3-4" x="480.2597" y="89.905976"/>
+  <use xlink:href="#glyph3-5" x="528.2597" y="89.905976"/>
+  <use xlink:href="#glyph3-6" x="576.2597" y="89.905976"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph3-7" x="622.8197" y="89.905976"/>
+  <use xlink:href="#glyph3-8" x="670.8197" y="89.905976"/>
+  <use xlink:href="#glyph3-9" x="718.8197" y="89.905976"/>
+  <use xlink:href="#glyph3-6" x="766.8197" y="89.905976"/>
+  <use xlink:href="#glyph3-10" x="814.8197" y="89.905976"/>
+  <use xlink:href="#glyph3-11" x="862.8197" y="89.905976"/>
+  <use xlink:href="#glyph3-12" x="910.8197" y="89.905976"/>
+</g>
+<g style="fill:rgb(75.686646%,10.588074%,14.117432%);fill-opacity:1;">
+  <use xlink:href="#glyph0-25" x="472.9516" y="314.422003"/>
+  <use xlink:href="#glyph0-13" x="501.4156" y="314.422003"/>
+</g>
+<g style="fill:rgb(75.686646%,10.588074%,14.117432%);fill-opacity:1;">
+  <use xlink:href="#glyph0-25" x="751.5618" y="310.560003"/>
+  <use xlink:href="#glyph0-14" x="780.0258" y="310.560003"/>
+</g>
+<g style="fill:rgb(75.686646%,10.588074%,14.117432%);fill-opacity:1;">
+  <use xlink:href="#glyph0-1" x="1073.344" y="207.415003"/>
+  <use xlink:href="#glyph0-21" x="1085.776" y="207.415003"/>
+  <use xlink:href="#glyph0-6" x="1112.464" y="207.415003"/>
+  <use xlink:href="#glyph0-3" x="1125.808" y="207.415003"/>
+  <use xlink:href="#glyph0-6" x="1144.48" y="207.415003"/>
+  <use xlink:href="#glyph0-26" x="1157.824" y="207.415003"/>
+  <use xlink:href="#glyph0-5" x="1186.288" y="207.415003"/>
+</g>
+<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(75.686646%,10.588074%,14.117432%);stroke-opacity:1;stroke-miterlimit:10;" d="M 724.134115 151.264323 L 724.134115 175.209635 " transform="matrix(3,0,0,3,-1677,-42)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(75.686646%,10.588074%,14.117432%);stroke-opacity:1;stroke-miterlimit:10;" d="M 818.21224 149.846354 L 818.21224 173.791667 " transform="matrix(3,0,0,3,-1677,-42)"/>
+<g style="fill:rgb(75.686646%,10.588074%,14.117432%);fill-opacity:1;">
+  <use xlink:href="#glyph0-21" x="487.1836" y="378.615003"/>
+</g>
+<g style="fill:rgb(75.686646%,10.588074%,14.117432%);fill-opacity:1;">
+  <use xlink:href="#glyph0-26" x="764.9058" y="378.615003"/>
+</g>
+<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(75.686646%,10.588074%,14.117432%);stroke-opacity:1;stroke-miterlimit:10;" d="M 731.608073 145.936198 L 805.769531 146.488281 " transform="matrix(3,0,0,3,-1677,-42)"/>
+<path style="fill-rule:nonzero;fill:rgb(75.686646%,10.588074%,14.117432%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(75.686646%,10.588074%,14.117432%);stroke-opacity:1;stroke-miterlimit:10;" d="M 813.769531 146.548177 L 805.791667 143.488281 L 805.747396 149.488281 Z M 813.769531 146.548177 " transform="matrix(3,0,0,3,-1677,-42)"/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(75.686646%,10.588074%,14.117432%);fill-opacity:1;" d="M 493.824219 395.632812 L 517.757812 404.808594 L 517.890625 386.808594 Z M 493.824219 395.632812 "/>
+<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(75.686646%,10.588074%,14.117432%);stroke-opacity:1;stroke-miterlimit:10;" d="M 723.608073 145.876302 L 731.585938 148.936198 L 731.630208 142.936198 Z M 723.608073 145.876302 " transform="matrix(3,0,0,3,-1677,-42)"/>
+<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 902.89974 364.434896 C 910.372396 371.907552 910.372396 384.022135 902.89974 391.494792 C 895.427083 398.966146 883.3125 398.966146 875.839844 391.494792 C 868.36849 384.022135 868.36849 371.907552 875.839844 364.434896 C 883.3125 356.96224 895.427083 356.96224 902.89974 364.434896 " transform="matrix(3,0,0,3,-1677,-42)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-25" x="963.5343" y="1109.222003"/>
+  <use xlink:href="#glyph0-13" x="991.9983" y="1109.222003"/>
+</g>
+<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 978.135417 364.434896 C 985.608073 371.907552 985.608073 384.022135 978.135417 391.494792 C 970.664062 398.966146 958.549479 398.966146 951.076823 391.494792 C 943.604167 384.022135 943.604167 371.907552 951.076823 364.434896 C 958.549479 356.96224 970.664062 356.96224 978.135417 364.434896 " transform="matrix(3,0,0,3,-1677,-42)"/>
+<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 941.167969 314.828125 C 948.639323 322.300781 948.639323 334.415365 941.167969 341.888021 C 933.695312 349.360677 921.580729 349.360677 914.108073 341.888021 C 906.635417 334.415365 906.635417 322.300781 914.108073 314.828125 C 921.580729 307.356771 933.695312 307.356771 941.167969 314.828125 " transform="matrix(3,0,0,3,-1677,-42)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 915.949219 343.510417 L 901.058594 362.8125 " transform="matrix(3,0,0,3,-1677,-42)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 939.072917 343.701823 L 953.171875 362.621094 " transform="matrix(3,0,0,3,-1677,-42)"/>
+<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 941.167969 414.041667 C 948.639323 421.513021 948.639323 433.628906 941.167969 441.10026 C 933.695312 448.572917 921.580729 448.572917 914.108073 441.10026 C 906.635417 433.628906 906.635417 421.513021 914.108073 414.041667 C 921.580729 406.56901 933.695312 406.56901 941.167969 414.041667 " transform="matrix(3,0,0,3,-1677,-42)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-25" x="1078.337" y="1258.041003"/>
+  <use xlink:href="#glyph0-14" x="1106.801" y="1258.041003"/>
+</g>
+<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 953.171875 393.308594 L 939.072917 412.226562 " transform="matrix(3,0,0,3,-1677,-42)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-3" x="986.892" y="1186.111003"/>
+  <use xlink:href="#glyph0-6" x="1005.564" y="1186.111003"/>
+  <use xlink:href="#glyph0-25" x="1018.908" y="1186.111003"/>
+  <use xlink:href="#glyph0-14" x="1047.372" y="1186.111003"/>
+</g>
+<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1014.86849 414.041667 C 1022.341146 421.513021 1022.341146 433.628906 1014.86849 441.10026 C 1007.395833 448.572917 995.28125 448.572917 987.808594 441.10026 C 980.33724 433.628906 980.33724 421.513021 987.808594 414.041667 C 995.28125 406.56901 1007.395833 406.56901 1014.86849 414.041667 " transform="matrix(3,0,0,3,-1677,-42)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph1-1" x="1296.344" y="1249.377"/>
+  <use xlink:href="#glyph1-2" x="1313.672" y="1249.377"/>
+  <use xlink:href="#glyph1-3" x="1331" y="1249.377"/>
+  <use xlink:href="#glyph1-3" x="1344.344" y="1249.377"/>
+</g>
+<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 975.994792 393.34375 L 989.950521 412.191406 " transform="matrix(3,0,0,3,-1677,-42)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-3" x="1133.379" y="1323.804403"/>
+  <use xlink:href="#glyph0-6" x="1152.051" y="1323.804403"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph2-1" x="1165.395" y="1323.804403"/>
+</g>
+<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 839.054688 422.361979 L 785.175781 422.361979 " transform="matrix(3,0,0,3,-1677,-42)"/>
+<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 777.175781 422.361979 L 785.175781 425.361979 L 785.175781 419.361979 Z M 777.175781 422.361979 " transform="matrix(3,0,0,3,-1677,-42)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-10" x="688.8804" y="1323.804403"/>
+  <use xlink:href="#glyph0-27" x="729.8244" y="1323.804403"/>
+  <use xlink:href="#glyph0-22" x="755.6004" y="1323.804403"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-28" x="770.2404" y="1323.804403"/>
+  <use xlink:href="#glyph0-27" x="797.7924" y="1323.804403"/>
+</g>
+</g>
+</svg>
Binary file 2015/images/vector/CharClassTreeMerge.pdf has changed
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/2015/images/vector/CharClassTreeMerge.svg	Fri Nov 27 11:59:04 2015 +0900
@@ -0,0 +1,690 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="1515pt" height="2199pt" viewBox="0 0 1515 2199" version="1.1">
+<defs>
+<g>
+<symbol overflow="visible" id="glyph0-0">
+<path style="stroke:none;" d="M 19.625 -31.96875 L 4.890625 -31.96875 L 4.890625 -2.25 L 19.625 -2.25 Z M 22.078125 -34.171875 L 22.078125 -0.046875 L 2.453125 -0.046875 L 2.453125 -34.171875 Z M 22.078125 -34.171875 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-1">
+<path style="stroke:none;" d="M 25.0625 -0.09375 C 24.351562 0.320312 23.375 0.53125 22.125 0.53125 C 21.070312 0.53125 20.234375 0.234375 19.609375 -0.359375 C 18.984375 -0.953125 18.671875 -1.921875 18.671875 -3.265625 C 17.546875 -1.921875 16.238281 -0.953125 14.75 -0.359375 C 13.269531 0.234375 11.664062 0.53125 9.9375 0.53125 C 8.8125 0.53125 7.742188 0.398438 6.734375 0.140625 C 5.734375 -0.109375 4.863281 -0.503906 4.125 -1.046875 C 3.394531 -1.597656 2.8125 -2.3125 2.375 -3.1875 C 1.945312 -4.070312 1.734375 -5.140625 1.734375 -6.390625 C 1.734375 -7.796875 1.972656 -8.945312 2.453125 -9.84375 C 2.929688 -10.738281 3.5625 -11.460938 4.34375 -12.015625 C 5.125 -12.578125 6.019531 -13.003906 7.03125 -13.296875 C 8.039062 -13.585938 9.070312 -13.828125 10.125 -14.015625 C 11.25 -14.242188 12.3125 -14.410156 13.3125 -14.515625 C 14.320312 -14.628906 15.210938 -14.789062 15.984375 -15 C 16.753906 -15.207031 17.363281 -15.507812 17.8125 -15.90625 C 18.257812 -16.3125 18.484375 -16.894531 18.484375 -17.65625 C 18.484375 -18.5625 18.3125 -19.285156 17.96875 -19.828125 C 17.632812 -20.367188 17.203125 -20.78125 16.671875 -21.0625 C 16.148438 -21.351562 15.5625 -21.546875 14.90625 -21.640625 C 14.25 -21.742188 13.597656 -21.796875 12.953125 -21.796875 C 11.234375 -21.796875 9.796875 -21.46875 8.640625 -20.8125 C 7.484375 -20.15625 6.859375 -18.914062 6.765625 -17.09375 L 2.6875 -17.09375 C 2.75 -18.625 3.066406 -19.914062 3.640625 -20.96875 C 4.222656 -22.03125 4.992188 -22.890625 5.953125 -23.546875 C 6.910156 -24.203125 8.003906 -24.671875 9.234375 -24.953125 C 10.472656 -25.242188 11.796875 -25.390625 13.203125 -25.390625 C 14.316406 -25.390625 15.425781 -25.304688 16.53125 -25.140625 C 17.632812 -24.984375 18.632812 -24.65625 19.53125 -24.15625 C 20.425781 -23.664062 21.144531 -22.972656 21.6875 -22.078125 C 22.238281 -21.179688 22.515625 -20.015625 22.515625 -18.578125 L 22.515625 -5.8125 C 22.515625 -4.851562 22.566406 -4.148438 22.671875 -3.703125 C 22.785156 -3.253906 23.164062 -3.03125 23.8125 -3.03125 C 24.164062 -3.03125 24.582031 -3.109375 25.0625 -3.265625 Z M 18.4375 -12.8125 C 17.914062 -12.425781 17.238281 -12.144531 16.40625 -11.96875 C 15.582031 -11.800781 14.710938 -11.660156 13.796875 -11.546875 C 12.890625 -11.429688 11.96875 -11.300781 11.03125 -11.15625 C 10.101562 -11.007812 9.269531 -10.773438 8.53125 -10.453125 C 7.800781 -10.140625 7.203125 -9.6875 6.734375 -9.09375 C 6.273438 -8.5 6.046875 -7.691406 6.046875 -6.671875 C 6.046875 -5.992188 6.179688 -5.421875 6.453125 -4.953125 C 6.722656 -4.492188 7.070312 -4.117188 7.5 -3.828125 C 7.9375 -3.546875 8.441406 -3.34375 9.015625 -3.21875 C 9.597656 -3.09375 10.207031 -3.03125 10.84375 -3.03125 C 12.1875 -3.03125 13.335938 -3.210938 14.296875 -3.578125 C 15.265625 -3.941406 16.050781 -4.40625 16.65625 -4.96875 C 17.257812 -5.53125 17.707031 -6.140625 18 -6.796875 C 18.289062 -7.453125 18.4375 -8.066406 18.4375 -8.640625 Z M 18.4375 -12.8125 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-2">
+<path style="stroke:none;" d="M 6.34375 -16.75 C 6.34375 -17.582031 6.347656 -18.503906 6.359375 -19.515625 C 6.378906 -20.523438 6.457031 -21.53125 6.59375 -22.53125 C 6.738281 -23.539062 6.945312 -24.523438 7.21875 -25.484375 C 7.488281 -26.441406 7.890625 -27.28125 8.421875 -28 C 8.953125 -28.726562 9.613281 -29.316406 10.40625 -29.765625 C 11.207031 -30.210938 12.1875 -30.4375 13.34375 -30.4375 C 14.5 -30.4375 15.472656 -30.210938 16.265625 -29.765625 C 17.066406 -29.316406 17.734375 -28.726562 18.265625 -28 C 18.796875 -27.28125 19.195312 -26.441406 19.46875 -25.484375 C 19.738281 -24.523438 19.941406 -23.539062 20.078125 -22.53125 C 20.222656 -21.53125 20.304688 -20.523438 20.328125 -19.515625 C 20.347656 -18.503906 20.359375 -17.582031 20.359375 -16.75 C 20.359375 -15.46875 20.316406 -14.035156 20.234375 -12.453125 C 20.148438 -10.867188 19.890625 -9.378906 19.453125 -7.984375 C 19.023438 -6.597656 18.332031 -5.425781 17.375 -4.46875 C 16.414062 -3.507812 15.070312 -3.03125 13.34375 -3.03125 C 11.613281 -3.03125 10.269531 -3.507812 9.3125 -4.46875 C 8.351562 -5.425781 7.65625 -6.597656 7.21875 -7.984375 C 6.789062 -9.378906 6.535156 -10.867188 6.453125 -12.453125 C 6.378906 -14.035156 6.34375 -15.46875 6.34375 -16.75 Z M 2.015625 -16.703125 C 2.015625 -15.453125 2.046875 -14.15625 2.109375 -12.8125 C 2.171875 -11.46875 2.328125 -10.15625 2.578125 -8.875 C 2.835938 -7.59375 3.207031 -6.382812 3.6875 -5.25 C 4.175781 -4.113281 4.832031 -3.113281 5.65625 -2.25 C 6.488281 -1.382812 7.535156 -0.703125 8.796875 -0.203125 C 10.066406 0.285156 11.582031 0.53125 13.34375 0.53125 C 15.132812 0.53125 16.65625 0.285156 17.90625 -0.203125 C 19.15625 -0.703125 20.191406 -1.382812 21.015625 -2.25 C 21.847656 -3.113281 22.503906 -4.113281 22.984375 -5.25 C 23.472656 -6.382812 23.84375 -7.59375 24.09375 -8.875 C 24.351562 -10.15625 24.515625 -11.46875 24.578125 -12.8125 C 24.640625 -14.15625 24.671875 -15.453125 24.671875 -16.703125 C 24.671875 -17.953125 24.640625 -19.25 24.578125 -20.59375 C 24.515625 -21.9375 24.351562 -23.25 24.09375 -24.53125 C 23.84375 -25.8125 23.472656 -27.023438 22.984375 -28.171875 C 22.503906 -29.328125 21.847656 -30.335938 21.015625 -31.203125 C 20.191406 -32.066406 19.144531 -32.753906 17.875 -33.265625 C 16.613281 -33.773438 15.101562 -34.03125 13.34375 -34.03125 C 11.582031 -34.03125 10.066406 -33.773438 8.796875 -33.265625 C 7.535156 -32.753906 6.488281 -32.066406 5.65625 -31.203125 C 4.832031 -30.335938 4.175781 -29.328125 3.6875 -28.171875 C 3.207031 -27.023438 2.835938 -25.8125 2.578125 -24.53125 C 2.328125 -23.25 2.171875 -21.9375 2.109375 -20.59375 C 2.046875 -19.25 2.015625 -17.953125 2.015625 -16.703125 Z M 2.015625 -16.703125 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-3">
+<path style="stroke:none;" d="M 17.09375 0 L 17.09375 -34.03125 L 13.96875 -34.03125 C 13.738281 -32.75 13.320312 -31.691406 12.71875 -30.859375 C 12.113281 -30.023438 11.367188 -29.367188 10.484375 -28.890625 C 9.609375 -28.410156 8.625 -28.082031 7.53125 -27.90625 C 6.445312 -27.726562 5.328125 -27.640625 4.171875 -27.640625 L 4.171875 -24.390625 L 13.015625 -24.390625 L 13.015625 0 Z M 17.09375 0 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-4">
+<path style="stroke:none;" d="M 2.109375 -21.984375 L 6.1875 -21.984375 C 6.15625 -23.003906 6.257812 -24.019531 6.5 -25.03125 C 6.738281 -26.039062 7.128906 -26.941406 7.671875 -27.734375 C 8.222656 -28.535156 8.921875 -29.1875 9.765625 -29.6875 C 10.617188 -30.1875 11.632812 -30.4375 12.8125 -30.4375 C 13.707031 -30.4375 14.554688 -30.289062 15.359375 -30 C 16.160156 -29.707031 16.859375 -29.289062 17.453125 -28.75 C 18.046875 -28.207031 18.515625 -27.5625 18.859375 -26.8125 C 19.210938 -26.0625 19.390625 -25.21875 19.390625 -24.28125 C 19.390625 -23.101562 19.203125 -22.066406 18.828125 -21.171875 C 18.460938 -20.273438 17.921875 -19.441406 17.203125 -18.671875 C 16.484375 -17.898438 15.578125 -17.140625 14.484375 -16.390625 C 13.398438 -15.640625 12.140625 -14.816406 10.703125 -13.921875 C 9.515625 -13.210938 8.375 -12.457031 7.28125 -11.65625 C 6.195312 -10.863281 5.222656 -9.9375 4.359375 -8.875 C 3.503906 -7.820312 2.796875 -6.582031 2.234375 -5.15625 C 1.671875 -3.738281 1.3125 -2.019531 1.15625 0 L 23.375 0 L 23.375 -3.59375 L 5.90625 -3.59375 C 6.09375 -4.65625 6.5 -5.59375 7.125 -6.40625 C 7.75 -7.21875 8.5 -7.976562 9.375 -8.6875 C 10.257812 -9.394531 11.226562 -10.054688 12.28125 -10.671875 C 13.34375 -11.296875 14.398438 -11.929688 15.453125 -12.578125 C 16.515625 -13.242188 17.539062 -13.945312 18.53125 -14.6875 C 19.519531 -15.425781 20.394531 -16.25 21.15625 -17.15625 C 21.925781 -18.070312 22.546875 -19.101562 23.015625 -20.25 C 23.484375 -21.40625 23.71875 -22.734375 23.71875 -24.234375 C 23.71875 -25.835938 23.4375 -27.242188 22.875 -28.453125 C 22.3125 -29.671875 21.550781 -30.6875 20.59375 -31.5 C 19.632812 -32.320312 18.503906 -32.945312 17.203125 -33.375 C 15.910156 -33.8125 14.53125 -34.03125 13.0625 -34.03125 C 11.269531 -34.03125 9.664062 -33.722656 8.25 -33.109375 C 6.84375 -32.503906 5.664062 -31.664062 4.71875 -30.59375 C 3.78125 -29.519531 3.085938 -28.25 2.640625 -26.78125 C 2.191406 -25.3125 2.015625 -23.710938 2.109375 -21.984375 Z M 2.109375 -21.984375 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-5">
+<path style="stroke:none;" d="M 3.078125 -24.8125 L 3.078125 0 L 7.15625 0 L 7.15625 -14.015625 C 7.15625 -15.140625 7.304688 -16.171875 7.609375 -17.109375 C 7.910156 -18.054688 8.363281 -18.878906 8.96875 -19.578125 C 9.582031 -20.285156 10.34375 -20.832031 11.25 -21.21875 C 12.164062 -21.601562 13.25 -21.796875 14.5 -21.796875 C 16.0625 -21.796875 17.289062 -21.347656 18.1875 -20.453125 C 19.082031 -19.554688 19.53125 -18.335938 19.53125 -16.796875 L 19.53125 0 L 23.609375 0 L 23.609375 -16.3125 C 23.609375 -17.664062 23.472656 -18.890625 23.203125 -19.984375 C 22.929688 -21.085938 22.457031 -22.039062 21.78125 -22.84375 C 21.113281 -23.644531 20.234375 -24.269531 19.140625 -24.71875 C 18.054688 -25.164062 16.703125 -25.390625 15.078125 -25.390625 C 11.390625 -25.390625 8.703125 -23.882812 7.015625 -20.875 L 6.90625 -20.875 L 6.90625 -24.8125 Z M 3.078125 -24.8125 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-6">
+<path style="stroke:none;" d="M 10.46875 -19.4375 L 10.46875 -15.984375 C 11.226562 -16.078125 12.039062 -16.125 12.90625 -16.125 C 13.9375 -16.125 14.890625 -15.988281 15.765625 -15.71875 C 16.648438 -15.445312 17.410156 -15.03125 18.046875 -14.46875 C 18.691406 -13.90625 19.203125 -13.21875 19.578125 -12.40625 C 19.960938 -11.59375 20.15625 -10.65625 20.15625 -9.59375 C 20.15625 -8.570312 19.953125 -7.648438 19.546875 -6.828125 C 19.148438 -6.015625 18.613281 -5.328125 17.9375 -4.765625 C 17.269531 -4.210938 16.488281 -3.785156 15.59375 -3.484375 C 14.695312 -3.179688 13.753906 -3.03125 12.765625 -3.03125 C 10.429688 -3.03125 8.65625 -3.722656 7.4375 -5.109375 C 6.21875 -6.503906 5.578125 -8.304688 5.515625 -10.515625 L 1.4375 -10.515625 C 1.40625 -8.753906 1.648438 -7.1875 2.171875 -5.8125 C 2.703125 -4.4375 3.460938 -3.273438 4.453125 -2.328125 C 5.453125 -1.378906 6.65625 -0.664062 8.0625 -0.1875 C 9.46875 0.289062 11.035156 0.53125 12.765625 0.53125 C 14.367188 0.53125 15.878906 0.316406 17.296875 -0.109375 C 18.722656 -0.546875 19.960938 -1.195312 21.015625 -2.0625 C 22.078125 -2.925781 22.921875 -4.003906 23.546875 -5.296875 C 24.171875 -6.597656 24.484375 -8.097656 24.484375 -9.796875 C 24.484375 -11.835938 23.976562 -13.609375 22.96875 -15.109375 C 21.957031 -16.617188 20.414062 -17.597656 18.34375 -18.046875 L 18.34375 -18.140625 C 19.6875 -18.753906 20.804688 -19.648438 21.703125 -20.828125 C 22.597656 -22.015625 23.046875 -23.375 23.046875 -24.90625 C 23.046875 -26.476562 22.78125 -27.835938 22.25 -28.984375 C 21.71875 -30.140625 20.988281 -31.082031 20.0625 -31.8125 C 19.132812 -32.550781 18.035156 -33.101562 16.765625 -33.46875 C 15.503906 -33.84375 14.140625 -34.03125 12.671875 -34.03125 C 10.972656 -34.03125 9.472656 -33.757812 8.171875 -33.21875 C 6.878906 -32.675781 5.800781 -31.921875 4.9375 -30.953125 C 4.070312 -29.992188 3.40625 -28.84375 2.9375 -27.5 C 2.476562 -26.15625 2.21875 -24.671875 2.15625 -23.046875 L 6.234375 -23.046875 C 6.234375 -24.035156 6.363281 -24.976562 6.625 -25.875 C 6.882812 -26.769531 7.273438 -27.550781 7.796875 -28.21875 C 8.328125 -28.894531 9 -29.429688 9.8125 -29.828125 C 10.632812 -30.234375 11.585938 -30.4375 12.671875 -30.4375 C 14.398438 -30.4375 15.835938 -29.976562 16.984375 -29.0625 C 18.140625 -28.15625 18.71875 -26.785156 18.71875 -24.953125 C 18.71875 -24.054688 18.539062 -23.253906 18.1875 -22.546875 C 17.832031 -21.847656 17.359375 -21.265625 16.765625 -20.796875 C 16.179688 -20.335938 15.492188 -19.988281 14.703125 -19.75 C 13.921875 -19.507812 13.097656 -19.390625 12.234375 -19.390625 L 11.375 -19.390625 C 11.21875 -19.390625 11.054688 -19.390625 10.890625 -19.390625 C 10.765625 -19.390625 10.625 -19.40625 10.46875 -19.4375 Z M 10.46875 -19.4375 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-7">
+<path style="stroke:none;" d="M 16.265625 -11.5625 L 4.84375 -11.5625 L 16.171875 -28.21875 L 16.265625 -28.21875 Z M 20.109375 -11.5625 L 20.109375 -34.03125 L 16.84375 -34.03125 L 1.34375 -11.90625 L 1.34375 -7.96875 L 16.265625 -7.96875 L 16.265625 0 L 20.109375 0 L 20.109375 -7.96875 L 24.71875 -7.96875 L 24.71875 -11.5625 Z M 20.109375 -11.5625 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-8">
+<path style="stroke:none;" d="M 22.5625 -29.859375 L 22.5625 -33.453125 L 5.765625 -33.453125 L 2.59375 -15.796875 L 6.09375 -15.59375 C 6.894531 -16.5625 7.816406 -17.335938 8.859375 -17.921875 C 9.898438 -18.515625 11.09375 -18.8125 12.4375 -18.8125 C 13.582031 -18.8125 14.625 -18.617188 15.5625 -18.234375 C 16.507812 -17.847656 17.320312 -17.3125 18 -16.625 C 18.675781 -15.9375 19.195312 -15.117188 19.5625 -14.171875 C 19.925781 -13.234375 20.109375 -12.207031 20.109375 -11.09375 C 20.109375 -9.75 19.914062 -8.570312 19.53125 -7.5625 C 19.144531 -6.550781 18.625 -5.707031 17.96875 -5.03125 C 17.3125 -4.363281 16.546875 -3.863281 15.671875 -3.53125 C 14.796875 -3.195312 13.875 -3.03125 12.90625 -3.03125 C 11.882812 -3.03125 10.945312 -3.179688 10.09375 -3.484375 C 9.25 -3.785156 8.515625 -4.210938 7.890625 -4.765625 C 7.265625 -5.328125 6.769531 -5.984375 6.40625 -6.734375 C 6.039062 -7.492188 5.828125 -8.304688 5.765625 -9.171875 L 1.6875 -9.171875 C 1.71875 -7.628906 2.019531 -6.25 2.59375 -5.03125 C 3.164062 -3.820312 3.945312 -2.804688 4.9375 -1.984375 C 5.9375 -1.171875 7.082031 -0.546875 8.375 -0.109375 C 9.664062 0.316406 11.050781 0.53125 12.53125 0.53125 C 14.507812 0.53125 16.242188 0.21875 17.734375 -0.40625 C 19.222656 -1.03125 20.460938 -1.867188 21.453125 -2.921875 C 22.441406 -3.984375 23.1875 -5.191406 23.6875 -6.546875 C 24.1875 -7.910156 24.4375 -9.3125 24.4375 -10.75 C 24.4375 -12.707031 24.144531 -14.410156 23.5625 -15.859375 C 22.988281 -17.316406 22.207031 -18.53125 21.21875 -19.5 C 20.226562 -20.476562 19.0625 -21.207031 17.71875 -21.6875 C 16.375 -22.175781 14.945312 -22.421875 13.4375 -22.421875 C 12.289062 -22.421875 11.128906 -22.21875 9.953125 -21.8125 C 8.785156 -21.414062 7.835938 -20.800781 7.109375 -19.96875 L 7.015625 -20.0625 L 8.828125 -29.859375 Z M 22.5625 -29.859375 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-9">
+<path style="stroke:none;" d="M 19.875 -25.34375 L 23.953125 -25.34375 C 23.691406 -28.15625 22.726562 -30.304688 21.0625 -31.796875 C 19.40625 -33.285156 17.171875 -34.03125 14.359375 -34.03125 C 11.921875 -34.03125 9.898438 -33.515625 8.296875 -32.484375 C 6.703125 -31.460938 5.425781 -30.101562 4.46875 -28.40625 C 3.507812 -26.71875 2.828125 -24.773438 2.421875 -22.578125 C 2.023438 -20.390625 1.828125 -18.128906 1.828125 -15.796875 C 1.828125 -14.003906 1.960938 -12.144531 2.234375 -10.21875 C 2.503906 -8.300781 3.054688 -6.539062 3.890625 -4.9375 C 4.722656 -3.34375 5.90625 -2.03125 7.4375 -1 C 8.976562 0.0195312 11.007812 0.53125 13.53125 0.53125 C 15.675781 0.53125 17.476562 0.171875 18.9375 -0.546875 C 20.394531 -1.265625 21.5625 -2.175781 22.4375 -3.28125 C 23.320312 -4.382812 23.953125 -5.609375 24.328125 -6.953125 C 24.710938 -8.296875 24.90625 -9.59375 24.90625 -10.84375 C 24.90625 -12.414062 24.664062 -13.875 24.1875 -15.21875 C 23.707031 -16.5625 23.023438 -17.726562 22.140625 -18.71875 C 21.265625 -19.707031 20.175781 -20.484375 18.875 -21.046875 C 17.582031 -21.609375 16.125 -21.890625 14.5 -21.890625 C 12.644531 -21.890625 11.003906 -21.535156 9.578125 -20.828125 C 8.148438 -20.128906 6.957031 -18.992188 6 -17.421875 L 5.90625 -17.515625 C 5.9375 -18.828125 6.0625 -20.234375 6.28125 -21.734375 C 6.507812 -23.242188 6.921875 -24.644531 7.515625 -25.9375 C 8.109375 -27.238281 8.929688 -28.3125 9.984375 -29.15625 C 11.035156 -30.007812 12.425781 -30.4375 14.15625 -30.4375 C 15.789062 -30.4375 17.101562 -29.96875 18.09375 -29.03125 C 19.082031 -28.101562 19.675781 -26.875 19.875 -25.34375 Z M 13.734375 -18.28125 C 14.878906 -18.28125 15.882812 -18.070312 16.75 -17.65625 C 17.613281 -17.25 18.332031 -16.695312 18.90625 -16 C 19.488281 -15.3125 19.914062 -14.492188 20.1875 -13.546875 C 20.457031 -12.609375 20.59375 -11.613281 20.59375 -10.5625 C 20.59375 -9.570312 20.441406 -8.617188 20.140625 -7.703125 C 19.835938 -6.796875 19.394531 -5.988281 18.8125 -5.28125 C 18.238281 -4.570312 17.523438 -4.019531 16.671875 -3.625 C 15.828125 -3.226562 14.847656 -3.03125 13.734375 -3.03125 C 12.609375 -3.03125 11.601562 -3.226562 10.71875 -3.625 C 9.84375 -4.019531 9.109375 -4.550781 8.515625 -5.21875 C 7.921875 -5.894531 7.460938 -6.695312 7.140625 -7.625 C 6.828125 -8.5625 6.671875 -9.554688 6.671875 -10.609375 C 6.671875 -11.660156 6.820312 -12.660156 7.125 -13.609375 C 7.425781 -14.554688 7.878906 -15.375 8.484375 -16.0625 C 9.097656 -16.75 9.835938 -17.289062 10.703125 -17.6875 C 11.566406 -18.082031 12.578125 -18.28125 13.734375 -18.28125 Z M 13.734375 -18.28125 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-10">
+<path style="stroke:none;" d="M 2.40625 -15.265625 L 2.40625 -11.421875 L 16.265625 -11.421875 L 16.265625 -15.265625 Z M 2.40625 -15.265625 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-11">
+<path style="stroke:none;" d=""/>
+</symbol>
+<symbol overflow="visible" id="glyph0-12">
+<path style="stroke:none;" d="M 3.21875 -34.265625 L 3.21875 0 L 7.296875 0 L 7.296875 -3.3125 L 7.390625 -3.3125 C 7.835938 -2.570312 8.390625 -1.953125 9.046875 -1.453125 C 9.703125 -0.960938 10.394531 -0.570312 11.125 -0.28125 C 11.863281 0 12.609375 0.203125 13.359375 0.328125 C 14.117188 0.460938 14.800781 0.53125 15.40625 0.53125 C 17.289062 0.53125 18.945312 0.195312 20.375 -0.46875 C 21.800781 -1.144531 22.984375 -2.066406 23.921875 -3.234375 C 24.867188 -4.398438 25.570312 -5.769531 26.03125 -7.34375 C 26.5 -8.914062 26.734375 -10.582031 26.734375 -12.34375 C 26.734375 -14.09375 26.492188 -15.753906 26.015625 -17.328125 C 25.535156 -18.898438 24.820312 -20.285156 23.875 -21.484375 C 22.9375 -22.679688 21.753906 -23.628906 20.328125 -24.328125 C 18.898438 -25.035156 17.226562 -25.390625 15.3125 -25.390625 C 13.582031 -25.390625 12 -25.078125 10.5625 -24.453125 C 9.125 -23.828125 8.066406 -22.828125 7.390625 -21.453125 L 7.296875 -21.453125 L 7.296875 -34.265625 Z M 22.421875 -12.625 C 22.421875 -11.40625 22.289062 -10.21875 22.03125 -9.0625 C 21.769531 -7.914062 21.351562 -6.894531 20.78125 -6 C 20.207031 -5.101562 19.445312 -4.382812 18.5 -3.84375 C 17.5625 -3.300781 16.382812 -3.03125 14.96875 -3.03125 C 13.5625 -3.03125 12.363281 -3.289062 11.375 -3.8125 C 10.382812 -4.34375 9.578125 -5.039062 8.953125 -5.90625 C 8.328125 -6.769531 7.867188 -7.769531 7.578125 -8.90625 C 7.296875 -10.039062 7.15625 -11.21875 7.15625 -12.4375 C 7.15625 -13.582031 7.289062 -14.710938 7.5625 -15.828125 C 7.832031 -16.953125 8.269531 -17.953125 8.875 -18.828125 C 9.488281 -19.710938 10.273438 -20.425781 11.234375 -20.96875 C 12.191406 -21.519531 13.359375 -21.796875 14.734375 -21.796875 C 16.046875 -21.796875 17.1875 -21.535156 18.15625 -21.015625 C 19.132812 -20.503906 19.9375 -19.816406 20.5625 -18.953125 C 21.1875 -18.085938 21.648438 -17.101562 21.953125 -16 C 22.265625 -14.90625 22.421875 -13.78125 22.421875 -12.625 Z M 22.421875 -12.625 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-13">
+<path style="stroke:none;" d="M 12.4375 -31.828125 L 12.4375 -35.09375 L 3.453125 -35.09375 L 3.453125 9.453125 L 12.4375 9.453125 L 12.4375 6.1875 L 7.296875 6.1875 L 7.296875 -31.828125 Z M 12.4375 -31.828125 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-14">
+<path style="stroke:none;" d="M 6.046875 -12.1875 C 6.046875 -13.40625 6.171875 -14.585938 6.421875 -15.734375 C 6.679688 -16.890625 7.097656 -17.914062 7.671875 -18.8125 C 8.253906 -19.707031 9.023438 -20.425781 9.984375 -20.96875 C 10.941406 -21.519531 12.109375 -21.796875 13.484375 -21.796875 C 14.890625 -21.796875 16.085938 -21.53125 17.078125 -21 C 18.078125 -20.46875 18.890625 -19.769531 19.515625 -18.90625 C 20.140625 -18.039062 20.59375 -17.039062 20.875 -15.90625 C 21.164062 -14.769531 21.3125 -13.597656 21.3125 -12.390625 C 21.3125 -11.234375 21.175781 -10.09375 20.90625 -8.96875 C 20.632812 -7.851562 20.191406 -6.851562 19.578125 -5.96875 C 18.972656 -5.09375 18.191406 -4.382812 17.234375 -3.84375 C 16.273438 -3.300781 15.109375 -3.03125 13.734375 -3.03125 C 12.421875 -3.03125 11.273438 -3.285156 10.296875 -3.796875 C 9.316406 -4.304688 8.515625 -4.992188 7.890625 -5.859375 C 7.265625 -6.722656 6.800781 -7.707031 6.5 -8.8125 C 6.195312 -9.914062 6.046875 -11.039062 6.046875 -12.1875 Z M 25.25 0 L 25.25 -34.265625 L 21.171875 -34.265625 L 21.171875 -21.5 L 21.078125 -21.5 C 20.628906 -22.238281 20.078125 -22.851562 19.421875 -23.34375 C 18.765625 -23.84375 18.066406 -24.242188 17.328125 -24.546875 C 16.585938 -24.859375 15.847656 -25.078125 15.109375 -25.203125 C 14.378906 -25.328125 13.695312 -25.390625 13.0625 -25.390625 C 11.164062 -25.390625 9.503906 -25.046875 8.078125 -24.359375 C 6.660156 -23.671875 5.476562 -22.742188 4.53125 -21.578125 C 3.59375 -20.410156 2.890625 -19.039062 2.421875 -17.46875 C 1.960938 -15.90625 1.734375 -14.242188 1.734375 -12.484375 C 1.734375 -10.722656 1.972656 -9.054688 2.453125 -7.484375 C 2.929688 -5.921875 3.640625 -4.546875 4.578125 -3.359375 C 5.523438 -2.171875 6.707031 -1.222656 8.125 -0.515625 C 9.550781 0.179688 11.226562 0.53125 13.15625 0.53125 C 14.882812 0.53125 16.46875 0.226562 17.90625 -0.375 C 19.34375 -0.988281 20.398438 -1.984375 21.078125 -3.359375 L 21.171875 -3.359375 L 21.171875 0 Z M 25.25 0 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-15">
+<path style="stroke:none;" d="M 0 6.1875 L 0 9.453125 L 8.96875 9.453125 L 8.96875 -35.09375 L 0 -35.09375 L 0 -31.828125 L 5.140625 -31.828125 L 5.140625 6.1875 Z M 0 6.1875 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-16">
+<path style="stroke:none;" d="M 3.703125 -37.734375 L 3.703125 10.21875 L 6.953125 10.21875 L 6.953125 -37.734375 Z M 3.703125 -37.734375 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-17">
+<path style="stroke:none;" d="M 4.75 -21.21875 L 4.75 0 L 8.828125 0 L 8.828125 -21.21875 L 13.625 -21.21875 L 13.625 -24.8125 L 8.828125 -24.8125 L 8.828125 -28.265625 C 8.828125 -29.359375 9.097656 -30.097656 9.640625 -30.484375 C 10.191406 -30.867188 10.960938 -31.0625 11.953125 -31.0625 C 12.304688 -31.0625 12.691406 -31.035156 13.109375 -30.984375 C 13.523438 -30.929688 13.90625 -30.84375 14.25 -30.71875 L 14.25 -34.265625 C 13.875 -34.398438 13.4375 -34.5 12.9375 -34.5625 C 12.4375 -34.625 11.992188 -34.65625 11.609375 -34.65625 C 9.367188 -34.65625 7.664062 -34.132812 6.5 -33.09375 C 5.332031 -32.050781 4.75 -30.523438 4.75 -28.515625 L 4.75 -24.8125 L 0.578125 -24.8125 L 0.578125 -21.21875 Z M 4.75 -21.21875 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-18">
+<path style="stroke:none;" d="M 7.390625 -29.28125 L 7.390625 -34.265625 L 3.3125 -34.265625 L 3.3125 -29.28125 Z M 7.390625 3.125 L 7.390625 -24.8125 L 3.3125 -24.8125 L 3.3125 2.453125 C 3.3125 3.734375 3.148438 4.617188 2.828125 5.109375 C 2.515625 5.609375 1.910156 5.859375 1.015625 5.859375 L 0.140625 5.859375 C 0.015625 5.859375 -0.101562 5.847656 -0.21875 5.828125 C -0.332031 5.816406 -0.46875 5.796875 -0.625 5.765625 L -0.625 9.265625 C 0.0195312 9.390625 0.707031 9.453125 1.4375 9.453125 C 3.257812 9.453125 4.707031 8.945312 5.78125 7.9375 C 6.851562 6.9375 7.390625 5.332031 7.390625 3.125 Z M 7.390625 3.125 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-19">
+<path style="stroke:none;" d="M 3.078125 -24.8125 L 3.078125 0 L 7.15625 0 L 7.15625 -15.453125 C 7.15625 -15.929688 7.273438 -16.53125 7.515625 -17.25 C 7.753906 -17.976562 8.132812 -18.675781 8.65625 -19.34375 C 9.1875 -20.019531 9.875 -20.597656 10.71875 -21.078125 C 11.570312 -21.554688 12.59375 -21.796875 13.78125 -21.796875 C 14.707031 -21.796875 15.460938 -21.65625 16.046875 -21.375 C 16.640625 -21.101562 17.113281 -20.71875 17.46875 -20.21875 C 17.820312 -19.726562 18.070312 -19.144531 18.21875 -18.46875 C 18.363281 -17.800781 18.4375 -17.066406 18.4375 -16.265625 L 18.4375 0 L 22.515625 0 L 22.515625 -15.453125 C 22.515625 -17.378906 23.085938 -18.914062 24.234375 -20.0625 C 25.390625 -21.21875 26.972656 -21.796875 28.984375 -21.796875 C 29.984375 -21.796875 30.796875 -21.648438 31.421875 -21.359375 C 32.046875 -21.066406 32.53125 -20.671875 32.875 -20.171875 C 33.226562 -19.679688 33.46875 -19.097656 33.59375 -18.421875 C 33.726562 -17.753906 33.796875 -17.035156 33.796875 -16.265625 L 33.796875 0 L 37.875 0 L 37.875 -18.1875 C 37.875 -19.46875 37.671875 -20.5625 37.265625 -21.46875 C 36.867188 -22.382812 36.3125 -23.128906 35.59375 -23.703125 C 34.875 -24.285156 34.007812 -24.710938 33 -24.984375 C 31.988281 -25.253906 30.859375 -25.390625 29.609375 -25.390625 C 27.984375 -25.390625 26.488281 -25.019531 25.125 -24.28125 C 23.769531 -23.550781 22.675781 -22.515625 21.84375 -21.171875 C 21.332031 -22.703125 20.453125 -23.785156 19.203125 -24.421875 C 17.953125 -25.066406 16.5625 -25.390625 15.03125 -25.390625 C 11.539062 -25.390625 8.867188 -23.984375 7.015625 -21.171875 L 6.90625 -21.171875 L 6.90625 -24.8125 Z M 3.078125 -24.8125 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-20">
+<path style="stroke:none;" d="M 6.046875 -12.390625 C 6.046875 -13.890625 6.242188 -15.222656 6.640625 -16.390625 C 7.046875 -17.554688 7.597656 -18.539062 8.296875 -19.34375 C 9.003906 -20.144531 9.828125 -20.753906 10.765625 -21.171875 C 11.710938 -21.585938 12.71875 -21.796875 13.78125 -21.796875 C 14.832031 -21.796875 15.828125 -21.585938 16.765625 -21.171875 C 17.710938 -20.753906 18.535156 -20.144531 19.234375 -19.34375 C 19.941406 -18.539062 20.492188 -17.554688 20.890625 -16.390625 C 21.296875 -15.222656 21.5 -13.890625 21.5 -12.390625 C 21.5 -10.878906 21.296875 -9.539062 20.890625 -8.375 C 20.492188 -7.207031 19.941406 -6.226562 19.234375 -5.4375 C 18.535156 -4.65625 17.710938 -4.054688 16.765625 -3.640625 C 15.828125 -3.234375 14.832031 -3.03125 13.78125 -3.03125 C 12.71875 -3.03125 11.710938 -3.234375 10.765625 -3.640625 C 9.828125 -4.054688 9.003906 -4.65625 8.296875 -5.4375 C 7.597656 -6.226562 7.046875 -7.207031 6.640625 -8.375 C 6.242188 -9.539062 6.046875 -10.878906 6.046875 -12.390625 Z M 1.734375 -12.390625 C 1.734375 -10.554688 1.988281 -8.851562 2.5 -7.28125 C 3.007812 -5.71875 3.773438 -4.351562 4.796875 -3.1875 C 5.828125 -2.019531 7.09375 -1.109375 8.59375 -0.453125 C 10.09375 0.203125 11.820312 0.53125 13.78125 0.53125 C 15.757812 0.53125 17.492188 0.203125 18.984375 -0.453125 C 20.472656 -1.109375 21.726562 -2.019531 22.75 -3.1875 C 23.769531 -4.351562 24.535156 -5.71875 25.046875 -7.28125 C 25.566406 -8.851562 25.828125 -10.554688 25.828125 -12.390625 C 25.828125 -14.210938 25.566406 -15.914062 25.046875 -17.5 C 24.535156 -19.082031 23.769531 -20.457031 22.75 -21.625 C 21.726562 -22.789062 20.472656 -23.707031 18.984375 -24.375 C 17.492188 -25.050781 15.757812 -25.390625 13.78125 -25.390625 C 11.820312 -25.390625 10.09375 -25.050781 8.59375 -24.375 C 7.09375 -23.707031 5.828125 -22.789062 4.796875 -21.625 C 3.773438 -20.457031 3.007812 -19.082031 2.5 -17.5 C 1.988281 -15.914062 1.734375 -14.210938 1.734375 -12.390625 Z M 1.734375 -12.390625 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-21">
+<path style="stroke:none;" d="M 1.0625 -3.125 L 1.0625 0 L 21.984375 0 L 21.984375 -3.59375 L 6.140625 -3.59375 L 21.3125 -22.03125 L 21.3125 -24.8125 L 2.015625 -24.8125 L 2.015625 -21.21875 L 16.03125 -21.21875 Z M 1.0625 -3.125 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-22">
+<path style="stroke:none;" d="M 20.296875 -14.78125 L 6.046875 -14.78125 C 6.109375 -15.738281 6.316406 -16.640625 6.671875 -17.484375 C 7.023438 -18.335938 7.503906 -19.082031 8.109375 -19.71875 C 8.722656 -20.363281 9.453125 -20.867188 10.296875 -21.234375 C 11.140625 -21.609375 12.09375 -21.796875 13.15625 -21.796875 C 14.175781 -21.796875 15.109375 -21.609375 15.953125 -21.234375 C 16.804688 -20.867188 17.546875 -20.375 18.171875 -19.75 C 18.796875 -19.125 19.289062 -18.378906 19.65625 -17.515625 C 20.019531 -16.648438 20.234375 -15.738281 20.296875 -14.78125 Z M 24.234375 -7.875 L 20.203125 -7.875 C 19.859375 -6.238281 19.132812 -5.019531 18.03125 -4.21875 C 16.925781 -3.425781 15.507812 -3.03125 13.78125 -3.03125 C 12.4375 -3.03125 11.265625 -3.253906 10.265625 -3.703125 C 9.273438 -4.148438 8.457031 -4.75 7.8125 -5.5 C 7.175781 -6.25 6.710938 -7.109375 6.421875 -8.078125 C 6.140625 -9.054688 6.015625 -10.09375 6.046875 -11.1875 L 24.625 -11.1875 C 24.6875 -12.6875 24.550781 -14.269531 24.21875 -15.9375 C 23.882812 -17.601562 23.273438 -19.140625 22.390625 -20.546875 C 21.515625 -21.953125 20.347656 -23.109375 18.890625 -24.015625 C 17.429688 -24.929688 15.597656 -25.390625 13.390625 -25.390625 C 11.691406 -25.390625 10.128906 -25.066406 8.703125 -24.421875 C 7.285156 -23.785156 6.054688 -22.890625 5.015625 -21.734375 C 3.972656 -20.585938 3.164062 -19.226562 2.59375 -17.65625 C 2.019531 -16.09375 1.734375 -14.367188 1.734375 -12.484375 C 1.796875 -10.585938 2.070312 -8.835938 2.5625 -7.234375 C 3.0625 -5.640625 3.804688 -4.265625 4.796875 -3.109375 C 5.785156 -1.960938 7.007812 -1.066406 8.46875 -0.421875 C 9.925781 0.210938 11.644531 0.53125 13.625 0.53125 C 16.445312 0.53125 18.785156 -0.171875 20.640625 -1.578125 C 22.492188 -2.992188 23.691406 -5.09375 24.234375 -7.875 Z M 24.234375 -7.875 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-23">
+<path style="stroke:none;" d="M 2.921875 -24.8125 L 2.921875 0 L 7.015625 0 L 7.015625 -11.046875 C 7.015625 -12.640625 7.171875 -14.050781 7.484375 -15.28125 C 7.804688 -16.519531 8.316406 -17.570312 9.015625 -18.4375 C 9.722656 -19.300781 10.648438 -19.957031 11.796875 -20.40625 C 12.953125 -20.851562 14.347656 -21.078125 15.984375 -21.078125 L 15.984375 -25.390625 C 13.773438 -25.453125 11.953125 -25.003906 10.515625 -24.046875 C 9.078125 -23.085938 7.859375 -21.597656 6.859375 -19.578125 L 6.765625 -19.578125 L 6.765625 -24.8125 Z M 2.921875 -24.8125 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-24">
+<path style="stroke:none;" d="M 24.484375 -2.109375 L 24.484375 -24.8125 L 20.640625 -24.8125 L 20.640625 -21.265625 L 20.59375 -21.265625 C 19.851562 -22.640625 18.828125 -23.671875 17.515625 -24.359375 C 16.203125 -25.046875 14.765625 -25.390625 13.203125 -25.390625 C 11.054688 -25.390625 9.242188 -24.976562 7.765625 -24.15625 C 6.296875 -23.34375 5.113281 -22.304688 4.21875 -21.046875 C 3.320312 -19.785156 2.679688 -18.378906 2.296875 -16.828125 C 1.921875 -15.273438 1.734375 -13.757812 1.734375 -12.28125 C 1.734375 -10.59375 1.960938 -8.988281 2.421875 -7.46875 C 2.890625 -5.945312 3.585938 -4.617188 4.515625 -3.484375 C 5.441406 -2.347656 6.59375 -1.441406 7.96875 -0.765625 C 9.34375 -0.0976562 10.957031 0.234375 12.8125 0.234375 C 14.414062 0.234375 15.925781 -0.125 17.34375 -0.84375 C 18.769531 -1.5625 19.835938 -2.6875 20.546875 -4.21875 L 20.640625 -4.21875 L 20.640625 -2.59375 C 20.640625 -1.21875 20.503906 0.0390625 20.234375 1.1875 C 19.960938 2.34375 19.519531 3.328125 18.90625 4.140625 C 18.300781 4.960938 17.535156 5.601562 16.609375 6.0625 C 15.679688 6.53125 14.546875 6.765625 13.203125 6.765625 C 12.523438 6.765625 11.816406 6.691406 11.078125 6.546875 C 10.347656 6.410156 9.671875 6.179688 9.046875 5.859375 C 8.421875 5.535156 7.890625 5.117188 7.453125 4.609375 C 7.023438 4.097656 6.796875 3.472656 6.765625 2.734375 L 2.6875 2.734375 C 2.75 4.078125 3.097656 5.210938 3.734375 6.140625 C 4.378906 7.066406 5.1875 7.816406 6.15625 8.390625 C 7.132812 8.972656 8.222656 9.390625 9.421875 9.640625 C 10.628906 9.898438 11.804688 10.03125 12.953125 10.03125 C 16.921875 10.03125 19.832031 9.019531 21.6875 7 C 23.550781 4.988281 24.484375 1.953125 24.484375 -2.109375 Z M 13.0625 -3.3125 C 11.71875 -3.3125 10.597656 -3.585938 9.703125 -4.140625 C 8.804688 -4.703125 8.082031 -5.441406 7.53125 -6.359375 C 6.988281 -7.273438 6.601562 -8.289062 6.375 -9.40625 C 6.15625 -10.53125 6.046875 -11.648438 6.046875 -12.765625 C 6.046875 -13.953125 6.179688 -15.085938 6.453125 -16.171875 C 6.722656 -17.265625 7.15625 -18.222656 7.75 -19.046875 C 8.34375 -19.878906 9.101562 -20.546875 10.03125 -21.046875 C 10.957031 -21.546875 12.078125 -21.796875 13.390625 -21.796875 C 14.671875 -21.796875 15.757812 -21.535156 16.65625 -21.015625 C 17.550781 -20.503906 18.28125 -19.828125 18.84375 -18.984375 C 19.40625 -18.140625 19.8125 -17.1875 20.0625 -16.125 C 20.320312 -15.070312 20.453125 -14 20.453125 -12.90625 C 20.453125 -11.757812 20.3125 -10.609375 20.03125 -9.453125 C 19.757812 -8.304688 19.335938 -7.273438 18.765625 -6.359375 C 18.191406 -5.441406 17.429688 -4.703125 16.484375 -4.140625 C 15.546875 -3.585938 14.40625 -3.3125 13.0625 -3.3125 Z M 13.0625 -3.3125 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-25">
+<path style="stroke:none;" d="M 3.078125 -34.265625 L 3.078125 0 L 7.15625 0 L 7.15625 -14.015625 C 7.15625 -15.140625 7.304688 -16.171875 7.609375 -17.109375 C 7.910156 -18.054688 8.363281 -18.878906 8.96875 -19.578125 C 9.582031 -20.285156 10.34375 -20.832031 11.25 -21.21875 C 12.164062 -21.601562 13.25 -21.796875 14.5 -21.796875 C 16.0625 -21.796875 17.289062 -21.347656 18.1875 -20.453125 C 19.082031 -19.554688 19.53125 -18.335938 19.53125 -16.796875 L 19.53125 0 L 23.609375 0 L 23.609375 -16.3125 C 23.609375 -17.664062 23.472656 -18.890625 23.203125 -19.984375 C 22.929688 -21.085938 22.457031 -22.039062 21.78125 -22.84375 C 21.113281 -23.644531 20.234375 -24.269531 19.140625 -24.71875 C 18.054688 -25.164062 16.703125 -25.390625 15.078125 -25.390625 C 14.335938 -25.390625 13.570312 -25.304688 12.78125 -25.140625 C 12 -24.984375 11.25 -24.738281 10.53125 -24.40625 C 9.8125 -24.070312 9.164062 -23.640625 8.59375 -23.109375 C 8.019531 -22.578125 7.570312 -21.929688 7.25 -21.171875 L 7.15625 -21.171875 L 7.15625 -34.265625 Z M 3.078125 -34.265625 "/>
+</symbol>
+<symbol overflow="visible" id="glyph0-26">
+<path style="stroke:none;" d="M 3.21875 -24.8125 L 3.21875 9.453125 L 7.296875 9.453125 L 7.296875 -3.3125 L 7.390625 -3.3125 C 7.835938 -2.570312 8.390625 -1.953125 9.046875 -1.453125 C 9.703125 -0.960938 10.394531 -0.570312 11.125 -0.28125 C 11.863281 0 12.609375 0.203125 13.359375 0.328125 C 14.117188 0.460938 14.800781 0.53125 15.40625 0.53125 C 17.289062 0.53125 18.945312 0.195312 20.375 -0.46875 C 21.800781 -1.144531 22.984375 -2.066406 23.921875 -3.234375 C 24.867188 -4.398438 25.570312 -5.769531 26.03125 -7.34375 C 26.5 -8.914062 26.734375 -10.582031 26.734375 -12.34375 C 26.734375 -14.09375 26.492188 -15.753906 26.015625 -17.328125 C 25.535156 -18.898438 24.820312 -20.285156 23.875 -21.484375 C 22.9375 -22.679688 21.753906 -23.628906 20.328125 -24.328125 C 18.898438 -25.035156 17.226562 -25.390625 15.3125 -25.390625 C 13.582031 -25.390625 12 -25.078125 10.5625 -24.453125 C 9.125 -23.828125 8.066406 -22.828125 7.390625 -21.453125 L 7.296875 -21.453125 L 7.296875 -24.8125 Z M 22.421875 -12.625 C 22.421875 -11.40625 22.289062 -10.21875 22.03125 -9.0625 C 21.769531 -7.914062 21.351562 -6.894531 20.78125 -6 C 20.207031 -5.101562 19.445312 -4.382812 18.5 -3.84375 C 17.5625 -3.300781 16.382812 -3.03125 14.96875 -3.03125 C 13.5625 -3.03125 12.363281 -3.289062 11.375 -3.8125 C 10.382812 -4.34375 9.578125 -5.039062 8.953125 -5.90625 C 8.328125 -6.769531 7.867188 -7.769531 7.578125 -8.90625 C 7.296875 -10.039062 7.15625 -11.21875 7.15625 -12.4375 C 7.15625 -13.582031 7.289062 -14.710938 7.5625 -15.828125 C 7.832031 -16.953125 8.269531 -17.953125 8.875 -18.828125 C 9.488281 -19.710938 10.273438 -20.425781 11.234375 -20.96875 C 12.191406 -21.519531 13.359375 -21.796875 14.734375 -21.796875 C 16.046875 -21.796875 17.1875 -21.535156 18.15625 -21.015625 C 19.132812 -20.503906 19.9375 -19.816406 20.5625 -18.953125 C 21.1875 -18.085938 21.648438 -17.101562 21.953125 -16 C 22.265625 -14.90625 22.421875 -13.78125 22.421875 -12.625 Z M 22.421875 -12.625 "/>
+</symbol>
+<symbol overflow="visible" id="glyph1-0">
+<path style="stroke:none;" d="M 9.8125 -15.984375 L 2.453125 -15.984375 L 2.453125 -1.125 L 9.8125 -1.125 Z M 11.046875 -17.09375 L 11.046875 -0.03125 L 1.21875 -0.03125 L 1.21875 -17.09375 Z M 11.046875 -17.09375 "/>
+</symbol>
+<symbol overflow="visible" id="glyph1-1">
+<path style="stroke:none;" d="M 1.84375 -17.140625 L 1.84375 0 L 4.015625 0 L 4.015625 -13.75 L 4.0625 -13.75 L 13.015625 0 L 15.5 0 L 15.5 -17.140625 L 13.34375 -17.140625 L 13.34375 -3.234375 L 13.296875 -3.234375 L 4.265625 -17.140625 Z M 1.84375 -17.140625 "/>
+</symbol>
+<symbol overflow="visible" id="glyph1-2">
+<path style="stroke:none;" d="M 15.546875 -6.1875 L 15.546875 -17.140625 L 13.265625 -17.140625 L 13.265625 -6.1875 C 13.265625 -4.65625 12.882812 -3.492188 12.125 -2.703125 C 11.363281 -1.910156 10.257812 -1.515625 8.8125 -1.515625 C 7.269531 -1.515625 6.09375 -1.910156 5.28125 -2.703125 C 4.46875 -3.492188 4.0625 -4.65625 4.0625 -6.1875 L 4.0625 -17.140625 L 1.78125 -17.140625 L 1.78125 -6.1875 C 1.78125 -3.90625 2.398438 -2.238281 3.640625 -1.1875 C 4.878906 -0.132812 6.601562 0.390625 8.8125 0.390625 C 10.96875 0.390625 12.628906 -0.15625 13.796875 -1.25 C 14.960938 -2.351562 15.546875 -4 15.546875 -6.1875 Z M 15.546875 -6.1875 "/>
+</symbol>
+<symbol overflow="visible" id="glyph1-3">
+<path style="stroke:none;" d="M 1.875 -17.140625 L 1.875 0 L 13.21875 0 L 13.21875 -1.921875 L 4.15625 -1.921875 L 4.15625 -17.140625 Z M 1.875 -17.140625 "/>
+</symbol>
+<symbol overflow="visible" id="glyph2-0">
+<path style="stroke:none;" d="M 19.625 -31.96875 L 4.890625 -31.96875 L 4.890625 -2.25 L 19.625 -2.25 Z M 22.078125 -34.171875 L 22.078125 -0.046875 L 2.453125 -0.046875 L 2.453125 -34.171875 Z M 22.078125 -34.171875 "/>
+</symbol>
+<symbol overflow="visible" id="glyph2-1">
+<path style="stroke:none;" d="M 3.40625 -3.453125 L 5.71875 -1.15625 L 14.453125 -9.890625 L 23.140625 -1.15625 L 25.4375 -3.453125 L 16.75 -12.1875 L 25.390625 -20.828125 L 23.09375 -23.140625 L 14.453125 -14.5 L 5.765625 -23.140625 L 3.453125 -20.828125 L 12.140625 -12.1875 Z M 3.40625 -3.453125 "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-0">
+<path style="stroke:none;" d="M 4.703125 -41.28125 L 4.703125 4.796875 L 43.25 4.796875 L 43.25 -41.28125 Z M 39.03125 -38.78125 L 24 -20.25 L 8.96875 -38.78125 Z M 40.75 0.390625 L 25.6875 -18.1875 L 40.75 -36.765625 L 40.609375 -36.765625 L 40.609375 0.390625 Z M 9.03125 2.296875 L 24 -16.125 L 38.96875 2.296875 Z M 7.34375 0.4375 L 7.34375 -36.859375 L 7.203125 -36.859375 L 22.3125 -18.1875 L 7.203125 0.4375 Z M 7.34375 0.4375 "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-1">
+<path style="stroke:none;" d="M 7.6875 -30.390625 C 9.265625 -30.578125 11.09375 -30.671875 13.875 -30.671875 L 33.59375 -30.671875 C 36.671875 -30.671875 38.015625 -30.625 39.890625 -30.390625 L 39.890625 -34.21875 C 38.203125 -33.984375 36.8125 -33.9375 33.59375 -33.9375 L 13.875 -33.9375 C 11.234375 -33.9375 9.359375 -34.03125 7.6875 -34.265625 Z M 44.59375 -6.140625 C 42.765625 -5.859375 41.421875 -5.8125 38.203125 -5.8125 L 9.703125 -5.8125 C 6.484375 -5.8125 5.09375 -5.90625 3.359375 -6.140625 L 3.359375 -2.203125 C 5.09375 -2.453125 6.859375 -2.546875 9.75 -2.546875 L 38.203125 -2.546875 C 41.140625 -2.546875 42.90625 -2.453125 44.59375 -2.203125 Z M 44.59375 -6.140625 "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-2">
+<path style="stroke:none;" d="M 18.8125 -19.78125 C 18.484375 -15.546875 17.8125 -12.90625 16.21875 -9.890625 C 13.921875 -5.515625 10.265625 -2.359375 4.125 0.625 C 5.140625 1.578125 5.609375 2.203125 6.234375 3.3125 C 12.09375 0.28125 15.84375 -2.96875 18.34375 -7.15625 C 20.546875 -10.890625 21.640625 -14.5 22.078125 -19.78125 L 33.265625 -19.78125 C 33.265625 -11.46875 32.6875 -4.9375 31.6875 -2.015625 C 31.34375 -1.109375 30.8125 -0.8125 29.28125 -0.8125 C 27.546875 -0.8125 25.15625 -1.109375 22.515625 -1.625 C 22.984375 -0.234375 23.140625 0.484375 23.28125 1.78125 C 26.296875 2.0625 27.984375 2.15625 29.5625 2.15625 C 32.359375 2.15625 33.5 1.6875 34.3125 0.234375 C 35.5625 -2.015625 36.484375 -10.125 36.484375 -19.4375 C 36.53125 -21.59375 36.53125 -21.984375 36.671875 -22.84375 C 35.28125 -22.65625 33.84375 -22.609375 31.625 -22.609375 L 15.84375 -22.609375 C 13.875 -22.609375 12.234375 -22.703125 10.84375 -22.890625 L 10.84375 -19.484375 C 12.34375 -19.6875 13.96875 -19.78125 15.796875 -19.78125 Z M 16.84375 -39.703125 C 16.609375 -38.25 15.984375 -36.765625 14.78125 -34.65625 C 11.5625 -28.890625 7.4375 -24.484375 1.625 -20.59375 C 2.734375 -19.6875 3.359375 -18.953125 3.984375 -18 C 10.75 -22.984375 15.40625 -28.5625 19.109375 -36 C 19.828125 -37.484375 20.015625 -37.875 20.453125 -38.453125 Z M 27.5 -38.359375 C 27.75 -37.96875 28.03125 -37.4375 28.265625 -37.015625 C 32.78125 -28.171875 36.859375 -23.328125 44.453125 -17.71875 C 45.171875 -18.953125 45.796875 -19.78125 46.703125 -20.640625 C 40.125 -24.953125 36.046875 -29.28125 32.546875 -35.5625 C 31.53125 -37.390625 31.109375 -38.359375 30.71875 -39.59375 Z M 27.5 -38.359375 "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-3">
+<path style="stroke:none;" d="M 39.359375 -26.921875 C 41.1875 -26.921875 43.015625 -26.828125 44.734375 -26.640625 L 44.734375 -30.09375 C 43.296875 -29.859375 41.8125 -29.765625 39.3125 -29.765625 L 25.203125 -29.765625 L 25.203125 -35.140625 C 25.203125 -36.625 25.296875 -38.015625 25.53125 -39.5 L 21.640625 -39.5 C 21.890625 -37.96875 21.984375 -36.71875 21.984375 -35.09375 L 21.984375 -29.765625 L 8.59375 -29.765625 C 6.53125 -29.765625 4.984375 -29.859375 3.359375 -30.09375 L 3.359375 -26.640625 C 5.1875 -26.828125 6.71875 -26.921875 8.640625 -26.921875 L 21.546875 -26.921875 C 18.859375 -22.125 16.796875 -19.15625 13.921875 -15.9375 C 10.46875 -12.046875 6 -8.296875 1.734375 -5.71875 C 2.6875 -4.984375 3.453125 -4.078125 4.171875 -2.921875 C 7.625 -5.328125 10.515625 -7.828125 13.4375 -10.796875 C 17.09375 -14.546875 19.6875 -18.28125 22.171875 -23.5625 C 22.078125 -21.59375 21.984375 -19.15625 21.984375 -17.5625 L 21.984375 -1.96875 C 21.984375 0.234375 21.890625 1.875 21.640625 3.546875 L 25.53125 3.546875 C 25.296875 2.015625 25.203125 0.28125 25.203125 -1.96875 L 25.203125 -17.5625 C 25.203125 -19.34375 25.109375 -21.5 24.953125 -23.765625 C 26.875 -20.15625 27.75 -18.71875 29.328125 -16.5625 C 31.875 -13.0625 33.453125 -11.375 37.296875 -8.015625 C 39.640625 -5.953125 40.84375 -5.046875 43.78125 -3.078125 C 44.546875 -4.421875 44.96875 -4.890625 46.171875 -6.09375 C 41.609375 -8.640625 37.78125 -11.5625 33.9375 -15.59375 C 30.953125 -18.671875 28.515625 -22.03125 25.6875 -26.921875 Z M 39.359375 -26.921875 "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-4">
+<path style="stroke:none;" d="M 26.59375 -31.828125 C 28.984375 -31.734375 30.390625 -31.390625 32.15625 -30.625 C 37.015625 -28.46875 39.796875 -24.046875 39.796875 -18.578125 C 39.796875 -12.671875 36.578125 -7.53125 31.296875 -5.140625 C 29.046875 -4.078125 26.78125 -3.453125 23.28125 -2.875 C 24.1875 -1.734375 24.484375 -1.25 24.953125 0.34375 C 28.265625 -0.390625 30.09375 -0.953125 32.25 -1.875 C 39.21875 -4.84375 43.25 -10.984375 43.25 -18.4375 C 43.25 -23.046875 41.609375 -27.21875 38.59375 -30.140625 C 35.46875 -33.21875 30.765625 -34.890625 25.390625 -34.890625 C 18.953125 -34.890625 13.734375 -32.734375 9.890625 -28.515625 C 6.671875 -24.90625 4.84375 -20.15625 4.84375 -15.265625 C 4.84375 -8.546875 8.25 -3.546875 12.8125 -3.546875 C 16.265625 -3.546875 19.109375 -6.4375 21.890625 -12.765625 C 24.046875 -17.8125 25.875 -25.15625 26.59375 -31.828125 Z M 23.140625 -31.78125 C 22.515625 -25.625 20.734375 -18.53125 18.765625 -14.015625 C 16.703125 -9.3125 14.78125 -7.0625 12.765625 -7.0625 C 10.171875 -7.0625 8.15625 -10.609375 8.15625 -15.21875 C 8.15625 -21.171875 11.140625 -26.59375 15.984375 -29.515625 C 18.1875 -30.859375 20.25 -31.53125 23.140625 -31.78125 Z M 23.140625 -31.78125 "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-5">
+<path style="stroke:none;" d="M 35.375 -36.71875 C 34.9375 -33.984375 32.875 -28.9375 30.34375 -24.4375 C 24.8125 -14.6875 17.515625 -8.359375 6.671875 -3.75 C 7.96875 -2.40625 8.359375 -1.875 9.125 -0.390625 C 17.140625 -4.421875 22.515625 -8.296875 27.21875 -13.6875 C 31.578125 -18.578125 34.890625 -24.34375 38.15625 -32.59375 C 38.96875 -34.65625 38.96875 -34.65625 39.359375 -35.375 Z M 35.375 -36.71875 "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-6">
+<path style="stroke:none;" d="M 4.171875 -16.46875 C 5.609375 -16.609375 6.625 -16.65625 10.125 -16.65625 L 37.96875 -16.65625 C 41.1875 -16.65625 42.28125 -16.609375 43.828125 -16.46875 L 43.828125 -20.359375 C 42.34375 -20.15625 41.5625 -20.109375 38.015625 -20.109375 L 10.125 -20.109375 C 6.859375 -20.109375 5.5625 -20.15625 4.171875 -20.40625 Z M 4.171875 -16.46875 "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-7">
+<path style="stroke:none;" d="M 18.34375 1.484375 C 18.140625 0.34375 18.09375 -0.71875 18.09375 -3.59375 L 18.09375 -18.046875 C 18.09375 -19.25 18.046875 -20.015625 17.90625 -20.875 L 18 -20.921875 C 18.4375 -20.59375 18.8125 -20.40625 19.484375 -20.109375 C 26.25 -17.28125 33.796875 -13.296875 37.390625 -10.609375 L 39.453125 -14.15625 C 31.578125 -18.71875 24.953125 -21.84375 18.09375 -24.28125 L 18.09375 -33.265625 C 18.09375 -36.234375 18.140625 -37.15625 18.34375 -38.25 L 14.203125 -38.25 C 14.40625 -37.203125 14.453125 -36.390625 14.5 -33.359375 L 14.5 -3.546875 C 14.453125 -0.625 14.40625 0.390625 14.203125 1.484375 Z M 30.234375 -35.09375 C 31.6875 -33.59375 33.984375 -30 35.1875 -27.453125 L 37.578125 -28.890625 C 36.140625 -31.734375 34.796875 -33.75 32.640625 -36.34375 Z M 35.71875 -37.6875 C 37.578125 -35.46875 39.59375 -32.40625 40.609375 -30.09375 L 43.015625 -31.484375 C 41.421875 -34.515625 40.21875 -36.28125 38.0625 -38.96875 Z M 35.71875 -37.6875 "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-8">
+<path style="stroke:none;" d="M 16.65625 -32.296875 C 11.765625 -32.296875 8.109375 -32.5 6.390625 -32.828125 L 6.34375 -29.515625 C 6.859375 -29.5625 6.953125 -29.5625 7.390625 -29.5625 C 7.53125 -29.5625 7.921875 -29.5625 8.15625 -29.5625 C 9.9375 -29.515625 14.453125 -29.421875 15.21875 -29.421875 C 15.453125 -29.421875 15.9375 -29.46875 16.125 -29.515625 C 15.84375 -29.046875 15.84375 -29.046875 15.703125 -28.796875 C 12.234375 -22.65625 8.25 -17.609375 4.9375 -15.078125 L 7.625 -12.390625 C 8.40625 -13.6875 9.453125 -14.78125 11.328125 -16.375 C 15.21875 -19.6875 19.015625 -21.453125 22.03125 -21.453125 C 24.28125 -21.453125 25.4375 -20.296875 25.828125 -17.65625 C 22.609375 -16.265625 20.296875 -15.03125 18.671875 -13.828125 C 15.40625 -11.375 13.78125 -8.875 13.78125 -6.234375 C 13.78125 -1.296875 17.953125 1.15625 26.546875 1.15625 C 30.234375 1.15625 34.421875 0.8125 38.203125 0.1875 C 39.171875 0.046875 39.40625 0 40.125 -0.046875 L 39.703125 -3.75 C 36.953125 -2.640625 31.625 -1.875 26.875 -1.875 C 20.109375 -1.875 17.140625 -3.265625 17.140625 -6.4375 C 17.140625 -9.3125 19.625 -11.5625 26.15625 -14.640625 C 26.203125 -14.0625 26.203125 -13.96875 26.203125 -13.203125 C 26.203125 -10.265625 26.0625 -7.34375 25.921875 -6.28125 L 29.1875 -6.34375 C 29.09375 -7.015625 29.09375 -7.390625 29.09375 -8.0625 C 29.09375 -8.5 29.09375 -9.171875 29.140625 -10.21875 C 29.1875 -11.1875 29.1875 -12.234375 29.1875 -12.859375 C 29.1875 -14.0625 29.1875 -14.546875 29.09375 -15.796875 C 35.09375 -18.140625 39.40625 -19.578125 41.90625 -20.015625 L 40.375 -23.375 C 39.59375 -22.84375 39.453125 -22.796875 37.109375 -21.984375 C 34.984375 -21.21875 32.25 -20.203125 28.75 -18.8125 C 28.125 -22.375 25.96875 -24.140625 22.421875 -24.140625 C 19.921875 -24.140625 17.375 -23.328125 15.171875 -21.796875 C 14.6875 -21.453125 14.6875 -21.453125 12.953125 -20.109375 C 12.90625 -20.15625 12.90625 -20.15625 12.859375 -20.25 C 12.859375 -20.25 12.859375 -20.25 12.859375 -20.296875 C 12.859375 -20.296875 12.90625 -20.296875 12.90625 -20.359375 C 12.953125 -20.40625 13.203125 -20.59375 13.53125 -20.828125 C 13.734375 -20.96875 14.6875 -22.078125 15.171875 -22.65625 C 16.84375 -24.71875 18.046875 -26.640625 19.484375 -29.46875 C 25.296875 -29.65625 30.34375 -30.046875 35.328125 -30.71875 C 36.1875 -30.859375 36.484375 -30.90625 37.25 -30.953125 L 36.953125 -34.21875 C 34.3125 -33.359375 29.515625 -32.78125 21.84375 -32.40625 C 21.40625 -32.40625 21.40625 -32.40625 20.828125 -32.359375 C 21.078125 -32.78125 21.703125 -34.078125 22.3125 -35.609375 C 23.140625 -37.578125 23.140625 -37.578125 23.5625 -38.203125 L 19.734375 -38.875 C 19.578125 -37.34375 19.015625 -35.671875 17.421875 -32.296875 Z M 16.65625 -32.296875 "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-9">
+<path style="stroke:none;" d=""/>
+</symbol>
+<symbol overflow="visible" id="glyph3-10">
+<path style="stroke:none;" d="M 3.703125 -36.765625 C 3.984375 -35.046875 4.078125 -33.796875 4.078125 -31.390625 L 4.078125 -5.65625 C 4.078125 -3.265625 3.984375 -2.0625 3.703125 -0.28125 L 8.25 -0.28125 C 7.96875 -1.921875 7.828125 -3.546875 7.828125 -5.65625 L 7.828125 -31.390625 C 7.828125 -33.40625 7.96875 -35.1875 8.25 -36.765625 Z M 3.703125 -36.765625 "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-11">
+<path style="stroke:none;" d="M 7.734375 -0.28125 C 7.484375 -2.15625 7.390625 -3.59375 7.390625 -5.71875 L 7.390625 -14.96875 C 7.78125 -16.890625 8.359375 -18.09375 9.59375 -19.734375 C 11.609375 -22.3125 13.78125 -23.515625 16.46875 -23.515625 C 20.25 -23.515625 22.3125 -21.21875 22.3125 -16.890625 L 22.3125 -5.71875 C 22.3125 -3.59375 22.21875 -2.15625 21.984375 -0.28125 L 26.296875 -0.28125 C 26.0625 -1.875 25.96875 -3.21875 25.96875 -5.65625 L 25.96875 -17.515625 C 25.96875 -19.875 25.53125 -21.640625 24.625 -23.046875 C 23.09375 -25.390625 20.40625 -26.640625 16.9375 -26.640625 C 12.625 -26.640625 9.5 -24.765625 7.25 -20.828125 C 7.390625 -21.9375 7.390625 -22.3125 7.390625 -22.890625 L 7.390625 -26.15625 L 3.40625 -26.15625 C 3.703125 -24.234375 3.796875 -22.890625 3.796875 -20.734375 L 3.796875 -5.71875 C 3.796875 -3.40625 3.703125 -2.109375 3.40625 -0.28125 Z M 7.734375 -0.28125 "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-12">
+<path style="stroke:none;" d="M 2.015625 -7.296875 C 2.5 -5.328125 2.828125 -4.515625 3.546875 -3.5 C 5.328125 -1.0625 8.6875 0.234375 13.0625 0.234375 C 19.625 0.234375 23.71875 -2.734375 23.71875 -7.53125 C 23.71875 -9.5 22.890625 -11.328125 21.40625 -12.53125 C 19.96875 -13.625 18.4375 -14.203125 13.78125 -15.265625 C 10.796875 -15.890625 9.546875 -16.265625 8.453125 -16.890625 C 7.390625 -17.46875 6.8125 -18.4375 6.8125 -19.53125 C 6.8125 -22.078125 9.3125 -23.859375 12.8125 -23.859375 C 14.96875 -23.859375 16.703125 -23.234375 17.8125 -22.03125 C 18.484375 -21.359375 18.71875 -20.78125 19.015625 -19.484375 L 22.796875 -20.109375 C 22.171875 -22.3125 21.5 -23.421875 20.25 -24.484375 C 18.53125 -26.015625 15.984375 -26.78125 12.71875 -26.78125 C 9.5 -26.78125 6.90625 -25.921875 5.234375 -24.28125 C 3.890625 -22.984375 3.171875 -21.359375 3.171875 -19.625 C 3.171875 -17.515625 4.078125 -15.75 5.765625 -14.59375 C 7.390625 -13.484375 9.03125 -12.90625 12.859375 -12.09375 C 16.421875 -11.375 17.375 -11.09375 18.53125 -10.375 C 19.53125 -9.75 20.015625 -8.734375 20.015625 -7.390625 C 20.015625 -4.5625 17.375 -2.78125 13.203125 -2.78125 C 10.75 -2.78125 8.828125 -3.359375 7.625 -4.46875 C 6.671875 -5.328125 6.28125 -6.1875 5.953125 -7.96875 Z M 2.015625 -7.296875 "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-13">
+<path style="stroke:none;" d="M 26.0625 -12.671875 C 25.96875 -13.96875 25.78125 -15.84375 25.734375 -16.375 C 24.765625 -22.796875 20.296875 -26.78125 14.109375 -26.78125 C 6.90625 -26.78125 2.203125 -21.40625 2.203125 -13.203125 C 2.203125 -4.890625 6.953125 0.390625 14.5 0.390625 C 18 0.390625 20.921875 -0.765625 23.1875 -2.96875 C 24.28125 -4.078125 24.90625 -4.9375 25.828125 -6.953125 L 22.46875 -8.296875 C 21.125 -4.609375 18.4375 -2.6875 14.546875 -2.6875 C 11.65625 -2.6875 9.3125 -3.84375 7.78125 -5.953125 C 6.484375 -7.6875 6 -9.453125 5.859375 -12.671875 Z M 6 -15.703125 C 6.28125 -17.515625 6.53125 -18.390625 7.203125 -19.578125 C 8.640625 -22.265625 11.09375 -23.765625 14.015625 -23.765625 C 16.3125 -23.765625 18.1875 -23.046875 19.6875 -21.59375 C 21.21875 -20.109375 21.9375 -18.390625 22.21875 -15.703125 Z M 6 -15.703125 "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-14">
+<path style="stroke:none;" d="M 20.015625 -26.15625 C 18 -26.5 17.1875 -26.59375 15.75 -26.59375 C 13.4375 -26.59375 11.8125 -26.109375 9.984375 -24.90625 C 8.96875 -24.234375 8.25 -23.46875 7.34375 -21.984375 C 7.390625 -22.3125 7.390625 -23.046875 7.390625 -23.421875 L 7.390625 -26.15625 L 3.40625 -26.15625 C 3.640625 -24.4375 3.75 -23.140625 3.75 -20.734375 L 3.75 -5.71875 C 3.75 -3.75 3.640625 -2.5 3.40625 -0.28125 L 7.734375 -0.28125 C 7.484375 -2.15625 7.390625 -3.5 7.390625 -5.65625 L 7.390625 -15.453125 C 7.578125 -17.609375 8.015625 -18.765625 9.171875 -20.25 C 10.609375 -22.171875 12.625 -23.1875 15.078125 -23.1875 C 16.265625 -23.1875 17.140625 -23.046875 18.953125 -22.46875 Z M 20.015625 -26.15625 "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-15">
+<path style="stroke:none;" d="M 6.4375 -33.3125 C 6.671875 -31.734375 6.765625 -29.90625 6.765625 -27.984375 L 6.765625 -26.15625 L 4.84375 -26.15625 C 2.828125 -26.15625 1.875 -26.203125 0.53125 -26.453125 L 0.53125 -22.796875 C 2.109375 -22.984375 3.21875 -23.09375 4.84375 -23.09375 L 6.765625 -23.09375 L 6.765625 -5.90625 C 6.765625 -3.640625 7.15625 -2.25 8.109375 -1.296875 C 9.078125 -0.34375 10.703125 0.1875 12.8125 0.1875 C 14.78125 0.1875 16.265625 -0.09375 18.234375 -0.90625 L 17.1875 -4.265625 C 15.59375 -3.3125 14.640625 -3.03125 13.390625 -3.03125 C 12.390625 -3.03125 11.5625 -3.3125 11.046875 -3.84375 C 10.609375 -4.265625 10.421875 -4.984375 10.421875 -6.390625 L 10.421875 -23.09375 L 12.71875 -23.09375 C 14.875 -23.09375 16.078125 -23.046875 17.609375 -22.796875 L 17.609375 -26.453125 C 15.9375 -26.203125 14.921875 -26.15625 12.71875 -26.15625 L 10.421875 -26.15625 L 10.421875 -27.984375 C 10.421875 -30.046875 10.515625 -31.78125 10.75 -33.3125 Z M 6.4375 -33.3125 "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-16">
+<path style="stroke:none;" d="M 26.546875 -31.96875 C 23.28125 -31.875 19.53125 -31.78125 14.921875 -31.578125 C 7.203125 -31.296875 7.203125 -31.296875 5.8125 -31.296875 C 5.09375 -31.296875 4.75 -31.296875 3.890625 -31.34375 L 4.03125 -27.84375 C 7.25 -28.375 16.9375 -28.84375 26.59375 -29.046875 C 26.59375 -27.21875 26.59375 -27.21875 26.59375 -26.546875 C 26.59375 -25.96875 26.640625 -25.484375 26.640625 -25.296875 C 26.640625 -23.515625 26.640625 -23.328125 26.6875 -22.65625 C 25.4375 -24.046875 23.421875 -24.8125 21.125 -24.8125 C 16.21875 -24.8125 12.625 -21.453125 12.625 -16.890625 C 12.625 -12.484375 15.890625 -9.3125 20.5 -9.3125 C 23.046875 -9.3125 25.109375 -10.171875 26.546875 -11.90625 C 27.125 -12.578125 27.40625 -13.109375 27.84375 -14.25 C 27.640625 -9.890625 25.96875 -6.765625 22.46875 -4.125 C 20.546875 -2.6875 18.4375 -1.734375 14.6875 -0.53125 C 15.703125 0.53125 15.984375 0.953125 16.796875 2.5 C 20.296875 1.15625 22.421875 0.046875 24.390625 -1.390625 C 28.515625 -4.515625 30.8125 -8.921875 30.8125 -13.921875 C 30.8125 -16.03125 30.484375 -17.5625 29.65625 -19.578125 L 29.65625 -29.09375 C 33.546875 -29.1875 34.078125 -29.1875 34.796875 -29.1875 C 40.515625 -29.1875 42.1875 -29.140625 43.96875 -28.9375 L 43.96875 -32.359375 C 42.390625 -32.15625 38.6875 -32.0625 29.609375 -32.015625 L 29.609375 -32.546875 C 29.609375 -36.28125 29.65625 -37.015625 29.859375 -38.546875 L 26.25 -38.546875 C 26.40625 -37.53125 26.453125 -37.015625 26.453125 -35.765625 Z M 26.40625 -17.953125 C 26.40625 -14.59375 24.09375 -12.28125 20.78125 -12.28125 C 17.859375 -12.28125 15.84375 -14.25 15.84375 -17.046875 C 15.84375 -19.921875 18.140625 -22.078125 21.171875 -22.078125 C 22.46875 -22.078125 23.46875 -21.84375 24.390625 -21.3125 C 25.78125 -20.546875 26.40625 -19.53125 26.40625 -17.953125 Z M 26.40625 -17.953125 "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-17">
+<path style="stroke:none;" d="M 11.5625 -32.15625 C 12.625 -32.296875 13.109375 -32.359375 14.15625 -32.40625 C 21.453125 -32.640625 27.21875 -32.96875 28.75 -33.265625 C 29.046875 -33.3125 29.046875 -33.3125 29.1875 -33.3125 L 29.28125 -33.21875 L 29.09375 -33.03125 C 28.984375 -32.921875 28.890625 -32.828125 28.890625 -32.828125 C 28.515625 -32.453125 28.515625 -32.453125 28.21875 -32.15625 C 24.90625 -28.890625 17.328125 -22.21875 12.1875 -18.140625 C 8.921875 -15.5 7.203125 -14.25 5.46875 -13.25 L 7.625 -10.171875 C 13.203125 -15.3125 20.78125 -18.390625 27.84375 -18.390625 C 34.3125 -18.390625 38.15625 -15.640625 38.15625 -11.046875 C 38.15625 -6.953125 35.515625 -4.03125 30.484375 -2.640625 C 29.8125 -4.75 29.28125 -5.90625 28.265625 -7.25 C 26.359375 -9.796875 23.5625 -11.1875 20.359375 -11.1875 C 16.375 -11.1875 13.390625 -8.78125 13.390625 -5.5625 C 13.390625 -1.15625 17.28125 1.34375 24.046875 1.34375 C 34.703125 1.34375 41.671875 -3.59375 41.671875 -11.09375 C 41.671875 -17.234375 36.53125 -21.171875 28.515625 -21.171875 C 24.28125 -21.171875 20.40625 -20.15625 16.75 -18.1875 L 16.65625 -18.34375 C 20.015625 -20.5 25.828125 -25.484375 32.453125 -31.96875 C 33.984375 -33.453125 34.21875 -33.640625 34.890625 -33.984375 L 32.875 -36.625 C 32.25 -36.28125 31.828125 -36.1875 30.578125 -36.09375 C 26.25 -35.765625 19.875 -35.46875 15.890625 -35.46875 C 13.578125 -35.46875 12.71875 -35.515625 11.375 -35.765625 Z M 27.3125 -1.78125 C 25.578125 -1.484375 25.015625 -1.4375 23.8125 -1.4375 C 21.75 -1.4375 19.6875 -1.875 18.4375 -2.546875 C 17.140625 -3.3125 16.515625 -4.21875 16.515625 -5.46875 C 16.515625 -7.296875 18 -8.453125 20.40625 -8.453125 C 23.859375 -8.453125 26.25 -6.140625 27.3125 -1.78125 Z M 27.3125 -1.78125 "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-18">
+<path style="stroke:none;" d="M 9.84375 -11.28125 C 5.859375 -11.28125 2.640625 -8.0625 2.640625 -4.078125 C 2.640625 -0.09375 5.859375 3.125 9.84375 3.125 C 13.828125 3.125 17.046875 -0.09375 17.046875 -4.078125 C 17.046875 -8.0625 13.828125 -11.28125 9.84375 -11.28125 Z M 9.84375 -8.546875 C 12.28125 -8.546875 14.296875 -6.53125 14.296875 -4.078125 C 14.296875 -1.625 12.28125 0.390625 9.84375 0.390625 C 7.390625 0.390625 5.375 -1.625 5.375 -4.078125 C 5.375 -6.53125 7.390625 -8.546875 9.84375 -8.546875 Z M 9.84375 -8.546875 "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-19">
+<path style="stroke:none;" d="M 27.125 -40.171875 C 26.5 -38.40625 24.09375 -35.046875 21.40625 -32.15625 C 20.640625 -32.734375 20.0625 -33.21875 18.234375 -34.609375 L 16.171875 -32.40625 C 20.640625 -29.1875 22.46875 -27.703125 25.78125 -24.53125 C 24.90625 -23.65625 24.90625 -23.65625 22.3125 -21.21875 C 18.046875 -21.078125 18.046875 -21.078125 17.1875 -21.078125 C 15.703125 -21.078125 14.59375 -21.125 13.734375 -21.265625 L 14.25 -18.046875 C 15.078125 -18.1875 15.171875 -18.1875 16.5625 -18.28125 C 21.265625 -18.53125 23.765625 -18.671875 24.09375 -18.671875 C 21.84375 -14.359375 18.140625 -10.890625 12.8125 -8.015625 C 13.734375 -7.25 14.40625 -6.53125 14.96875 -5.71875 C 17.71875 -7.4375 19.6875 -9.03125 21.546875 -10.984375 C 23.140625 -8.6875 24.53125 -7.25 27.078125 -4.984375 C 22.421875 -2.15625 18 -0.484375 12.34375 0.53125 C 13.390625 1.78125 13.625 2.109375 14.15625 3.3125 C 20.40625 1.828125 24.34375 0.140625 29.421875 -3.21875 C 30.671875 -2.359375 31.6875 -1.734375 33.640625 -0.765625 C 37.6875 1.25 39.9375 2.0625 44.453125 3.171875 C 45.265625 1.390625 45.265625 1.34375 46.03125 0.140625 C 40.9375 -0.71875 36.046875 -2.5 31.921875 -4.984375 C 34.5625 -7.0625 37.25 -9.796875 38.875 -12.140625 C 39.546875 -13.109375 39.546875 -13.109375 39.984375 -13.578125 L 38.015625 -15.40625 C 37.25 -15.265625 35.8125 -15.171875 34.078125 -15.171875 L 24.953125 -15.171875 C 26.0625 -16.75 26.359375 -17.1875 27.265625 -18.90625 C 32.546875 -19.25 32.546875 -19.25 40.75 -20.15625 C 41.71875 -18.8125 42.09375 -18.234375 43.390625 -16.3125 L 45.890625 -18.046875 C 42.71875 -22.3125 40.84375 -24.578125 37.578125 -28.03125 L 35.328125 -26.5 C 37.15625 -24.625 37.875 -23.859375 39.078125 -22.375 C 32.921875 -21.796875 32.921875 -21.796875 26.25 -21.40625 C 30.53125 -25.390625 33.40625 -28.421875 36.578125 -32.296875 C 37.734375 -33.703125 38.015625 -34.03125 38.5 -34.5625 L 35.46875 -36.34375 C 34.421875 -34.171875 31.96875 -31.0625 27.796875 -26.59375 C 26.15625 -28.125 25.4375 -28.796875 23.46875 -30.484375 C 25.4375 -32.546875 27.265625 -34.796875 28.796875 -36.953125 C 29.46875 -38.015625 29.609375 -38.15625 30 -38.6875 Z M 35.5625 -12.71875 C 33.9375 -10.375 32.15625 -8.59375 29.46875 -6.625 C 27.03125 -8.5 25.390625 -10.171875 23.515625 -12.71875 Z M 12.046875 -40.375 C 10.375 -36.71875 6.671875 -32.828125 2.15625 -30.09375 C 3.03125 -29.375 3.453125 -28.84375 4.078125 -27.75 C 7.828125 -30.34375 10.9375 -33.359375 13.625 -37.15625 C 14.359375 -38.109375 14.359375 -38.109375 14.734375 -38.59375 Z M 7.6875 -2.203125 C 7.6875 0.28125 7.578125 2.015625 7.390625 3.359375 L 10.890625 3.359375 C 10.75 1.921875 10.65625 0.140625 10.65625 -2.359375 L 10.65625 -22.171875 C 12 -23.8125 13.203125 -25.4375 13.828125 -26.546875 C 14.453125 -27.59375 14.6875 -27.984375 15.21875 -28.65625 L 12.484375 -30.34375 C 11.953125 -28.9375 11.09375 -27.453125 9.640625 -25.4375 C 7.25 -22.03125 4.609375 -19.390625 1.25 -17.046875 C 2.203125 -16.03125 2.453125 -15.59375 3.03125 -14.40625 C 5.234375 -16.125 6.34375 -17.28125 7.78125 -19.15625 C 7.734375 -16.46875 7.734375 -16.46875 7.734375 -16.125 C 7.734375 -15.453125 7.734375 -14.359375 7.6875 -12.71875 Z M 7.6875 -2.203125 "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-20">
+<path style="stroke:none;" d="M 17.609375 -24.765625 C 17.71875 -24.765625 17.765625 -24.765625 17.8125 -24.765625 C 17.90625 -24.765625 18.046875 -24.765625 18.28125 -24.71875 C 18.390625 -24.71875 18.671875 -24.71875 19.109375 -24.671875 C 19.296875 -24.671875 19.828125 -24.671875 20.640625 -24.578125 C 22.3125 -24.484375 24.09375 -24.4375 26.0625 -24.4375 C 27.890625 -24.4375 29.375 -24.484375 31.53125 -24.578125 C 31.6875 -17.5625 31.875 -13.0625 32.015625 -12.046875 C 30.90625 -12.625 28.65625 -13.015625 26.6875 -13.015625 C 21.359375 -13.015625 17.5625 -10.171875 17.5625 -6.1875 C 17.5625 -2.015625 21.078125 0.625 26.640625 0.625 C 30.578125 0.625 33.5 -0.859375 34.65625 -3.40625 C 35.046875 -4.265625 35.234375 -5.421875 35.234375 -6.671875 C 35.234375 -7.109375 35.234375 -7.203125 35.140625 -7.921875 C 35.375 -7.78125 35.375 -7.78125 35.5625 -7.625 C 35.859375 -7.4375 35.859375 -7.4375 36.046875 -7.34375 C 39.453125 -5.375 41.375 -4.03125 42.859375 -2.359375 L 44.359375 -5.71875 C 43.828125 -6.046875 43.734375 -6.140625 43.15625 -6.53125 C 39.984375 -8.875 38.640625 -9.640625 35.140625 -11.234375 C 34.75 -17.609375 34.65625 -20.0625 34.609375 -24.8125 C 37.109375 -25.109375 38.453125 -25.296875 39.703125 -25.578125 C 42.953125 -26.25 42.953125 -26.25 43.0625 -26.25 L 42.90625 -29.515625 C 41.09375 -28.75 38.296875 -28.171875 34.609375 -27.75 C 34.5625 -28.796875 34.5625 -29.5625 34.5625 -30.09375 C 34.5625 -34.078125 34.65625 -36.34375 34.890625 -37.625 L 31.296875 -37.625 C 31.390625 -37.15625 31.4375 -36.484375 31.4375 -35.671875 C 31.4375 -32.015625 31.4375 -32.015625 31.484375 -27.5 C 29.515625 -27.40625 28.21875 -27.359375 26.359375 -27.359375 C 22.125 -27.359375 20.0625 -27.546875 17.71875 -28.125 Z M 32.0625 -9.125 C 32.0625 -9.125 32.109375 -8.015625 32.109375 -7.6875 C 32.109375 -5.8125 31.828125 -4.65625 31.203125 -3.9375 C 30.28125 -2.875 28.421875 -2.25 26.296875 -2.25 C 22.9375 -2.25 20.734375 -3.796875 20.734375 -6.140625 C 20.734375 -8.546875 23.1875 -10.125 26.921875 -10.125 C 28.84375 -10.125 30.09375 -9.890625 32.0625 -9.125 Z M 9.125 -37.6875 C 9.078125 -37.0625 9.03125 -36.765625 8.59375 -34.65625 C 6.71875 -26.359375 6.09375 -21.3125 6.09375 -14.921875 C 6.09375 -10.078125 6.578125 -5.140625 7.4375 -0.671875 C 7.625 0.4375 7.6875 0.671875 7.734375 1.109375 L 11.140625 0.765625 C 11.046875 0.09375 11.046875 0.046875 11.046875 -0.1875 C 11.046875 -3.03125 12.90625 -9.125 15.171875 -13.828125 L 12.8125 -14.921875 C 12.71875 -14.59375 12.625 -14.40625 12.4375 -13.96875 C 10.796875 -10.03125 10.46875 -9.125 9.59375 -5.515625 L 9.40625 -5.5625 C 9.40625 -6.046875 9.40625 -6.046875 9.40625 -6.484375 C 9.359375 -7.34375 9.359375 -7.4375 9.359375 -7.828125 C 9.265625 -10.03125 9.171875 -12.859375 9.171875 -14.546875 C 9.171875 -22.421875 10.796875 -32.25 12.859375 -37.0625 Z M 9.125 -37.6875 "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-21">
+<path style="stroke:none;" d="M 27.40625 -12.28125 C 25.15625 -8.546875 20.828125 -5.09375 15.265625 -2.546875 C 16.265625 -1.78125 16.796875 -1.203125 17.328125 -0.28125 C 23.46875 -3.703125 27.796875 -7.578125 30.53125 -12.28125 L 35.28125 -12.28125 C 34.3125 -9.984375 33.03125 -7.96875 31.34375 -6 C 28.75 -3.03125 26.203125 -1.015625 21.9375 1.296875 C 23.046875 2.15625 23.421875 2.5 24.140625 3.546875 C 26.0625 2.359375 26.921875 1.734375 28.03125 0.859375 C 29.8125 -0.578125 32.5 -3.265625 33.9375 -5.046875 C 35.71875 -7.203125 36.90625 -9.265625 38.203125 -12.28125 L 41.421875 -12.28125 C 41.234375 -8.546875 40.890625 -5.46875 40.375 -3.078125 C 39.75 -0.1875 39.40625 0.1875 37.484375 0.1875 C 35.8125 0.1875 34.03125 0.046875 31.78125 -0.34375 C 32.359375 0.765625 32.59375 1.578125 32.734375 2.78125 C 34.21875 2.875 35.8125 2.96875 36.90625 2.96875 C 40.171875 2.96875 41.375 2.5 42.234375 0.765625 C 43.109375 -0.90625 43.96875 -6.390625 44.359375 -12.046875 C 44.453125 -13.96875 44.5 -14.25 44.59375 -14.875 C 43.390625 -14.734375 42.234375 -14.6875 39.890625 -14.6875 L 24 -14.6875 C 25.0625 -16.125 25.4375 -16.75 26.203125 -18.1875 L 40.890625 -18.1875 C 43.015625 -18.1875 44.453125 -18.140625 45.640625 -18 L 45.640625 -21.03125 C 44.59375 -20.828125 43.203125 -20.734375 40.890625 -20.734375 L 20.40625 -20.734375 C 18.1875 -20.734375 17.046875 -20.828125 15.984375 -21.03125 L 15.984375 -17.90625 C 16.9375 -18.09375 18.34375 -18.1875 20.296875 -18.1875 L 23.234375 -18.1875 C 21.265625 -14.15625 17.765625 -10.9375 12.09375 -8.0625 C 12.859375 -7.484375 13.484375 -6.765625 14.0625 -5.90625 C 17.515625 -7.921875 19.921875 -9.796875 22.125 -12.28125 Z M 8.640625 -27.546875 L 6.671875 -27.546875 C 4.9375 -27.546875 3.796875 -27.59375 2.5 -27.796875 L 2.5 -24.625 C 3.75 -24.765625 5.046875 -24.859375 6.578125 -24.859375 L 8.640625 -24.859375 L 8.640625 -11.140625 C 4.75 -9.359375 4.265625 -9.171875 2.453125 -8.78125 L 3.359375 -5.421875 C 3.796875 -5.65625 5.140625 -6.34375 5.90625 -6.671875 C 8.734375 -7.921875 13.109375 -10.3125 15.890625 -12.09375 L 15.703125 -14.96875 C 13.875 -13.78125 13.15625 -13.34375 11.609375 -12.53125 L 11.609375 -24.859375 L 12.765625 -24.859375 C 14.109375 -24.859375 15.359375 -24.8125 16.75 -24.671875 L 16.75 -27.75 C 15.703125 -27.59375 14.640625 -27.546875 12.765625 -27.546875 L 11.609375 -27.546875 L 11.609375 -34.171875 C 11.609375 -36.53125 11.65625 -38.015625 11.90625 -39.5 L 8.359375 -39.5 C 8.546875 -38.15625 8.640625 -36.484375 8.640625 -34.21875 Z M 37.015625 -23.90625 C 38.875 -23.90625 40.375 -23.859375 41.421875 -23.765625 C 41.28125 -24.625 41.234375 -25.828125 41.234375 -28.03125 L 41.234375 -34.03125 C 41.234375 -36.234375 41.28125 -37.25 41.421875 -38.5 C 40.078125 -38.296875 38.640625 -38.25 36.4375 -38.25 L 23.90625 -38.25 C 21.796875 -38.25 20.734375 -38.296875 19.296875 -38.5 C 19.4375 -37.109375 19.484375 -36.484375 19.484375 -34.265625 L 19.484375 -28.03125 C 19.484375 -26.203125 19.4375 -25.015625 19.296875 -23.71875 C 20.359375 -23.859375 21.703125 -23.90625 23.65625 -23.90625 Z M 22.3125 -35.765625 L 38.40625 -35.765625 L 38.40625 -32.25 L 22.3125 -32.25 Z M 22.3125 -29.90625 L 38.40625 -29.90625 L 38.40625 -26.25 L 22.3125 -26.25 Z M 22.3125 -29.90625 "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-22">
+<path style="stroke:none;" d="M 37.0625 -22.46875 L 37.0625 -1.828125 C 37.0625 0.484375 36.953125 1.78125 36.765625 3.171875 L 40.375 3.171875 C 40.125 1.78125 40.078125 0.671875 40.078125 -1.734375 L 40.078125 -22.46875 L 41.765625 -22.46875 C 43.53125 -22.46875 44.78125 -22.375 46.078125 -22.171875 L 46.078125 -25.578125 C 44.78125 -25.390625 43.53125 -25.296875 41.609375 -25.296875 L 29.140625 -25.296875 C 29.140625 -26.359375 29.140625 -26.59375 29.140625 -27.359375 L 29.140625 -32.78125 C 34.890625 -33.703125 38.359375 -34.5625 43.4375 -36.34375 C 44.40625 -36.625 44.6875 -36.71875 45.40625 -36.90625 L 43.34375 -39.703125 C 39.546875 -37.53125 30.8125 -35.328125 25.921875 -35.28125 C 26.0625 -33.796875 26.109375 -32.546875 26.109375 -29.71875 C 26.109375 -19.203125 25.4375 -13.109375 23.8125 -8.546875 C 22.46875 -4.84375 20.734375 -2.296875 17.234375 0.90625 C 18.234375 1.578125 18.859375 2.15625 19.6875 3.21875 C 23.328125 -0.484375 25.203125 -3.3125 26.640625 -7.296875 C 28.03125 -11.28125 28.75 -15.703125 29.046875 -22.46875 Z M 3.359375 -34.171875 C 4.703125 -34.375 6.046875 -34.46875 7.875 -34.46875 L 19.4375 -34.46875 C 21.546875 -34.46875 22.703125 -34.421875 23.859375 -34.21875 L 23.859375 -37.484375 C 22.703125 -37.296875 21.59375 -37.25 19.390625 -37.25 L 7.96875 -37.25 C 5.953125 -37.25 4.75 -37.296875 3.359375 -37.53125 Z M 21.75 -25.828125 C 21.75 -27.21875 21.796875 -28.46875 21.890625 -29.421875 C 20.59375 -29.28125 19.390625 -29.234375 17.375 -29.234375 L 10.703125 -29.234375 C 8.5 -29.234375 7.203125 -29.28125 5.71875 -29.421875 C 5.859375 -27.890625 5.90625 -26.40625 5.90625 -23.328125 C 5.90625 -9.21875 5.09375 -4.46875 1.625 0.953125 C 2.6875 1.484375 3.3125 1.96875 4.21875 2.921875 C 7.15625 -2.109375 8.25 -6.34375 8.6875 -14.453125 L 17.5625 -14.453125 L 19.4375 -14.40625 L 20.5 -14.40625 C 20.734375 -14.40625 21.078125 -14.40625 21.890625 -14.296875 C 21.796875 -15.359375 21.75 -16.21875 21.75 -17.8125 Z M 8.78125 -17.09375 C 8.828125 -18.90625 8.828125 -19.0625 8.828125 -21.453125 L 8.828125 -26.59375 L 18.8125 -26.59375 L 18.8125 -17.09375 Z M 8.78125 -17.09375 "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-23">
+<path style="stroke:none;" d="M 4.65625 -23.09375 C 5.953125 -23.421875 6.34375 -23.515625 7.4375 -23.71875 C 7.875 -23.8125 10.171875 -24.1875 14.296875 -24.8125 C 12.71875 -18.625 11.28125 -14.40625 9.03125 -9.59375 C 7.34375 -5.953125 5.515625 -2.78125 4.03125 -0.90625 L 7.296875 1.015625 C 8.78125 -1.6875 9.796875 -3.59375 10.421875 -4.75 C 13.6875 -11.375 15.890625 -17.515625 17.65625 -25.109375 C 19.4375 -25.296875 20.0625 -25.34375 21.125 -25.34375 C 25.578125 -25.34375 27.03125 -23.71875 27.03125 -18.625 C 27.03125 -13.25 26.296875 -8.359375 25.015625 -5.28125 C 24.390625 -3.75 23.46875 -2.96875 22.265625 -2.96875 C 20.546875 -2.96875 17.859375 -3.796875 15.125 -5.1875 C 15.265625 -4.3125 15.265625 -3.984375 15.265625 -3.265625 C 15.265625 -2.640625 15.265625 -2.296875 15.171875 -1.578125 C 18.34375 -0.234375 20.359375 0.28125 22.421875 0.28125 C 24.671875 0.28125 25.96875 -0.34375 27.125 -1.96875 C 29.09375 -4.75 30.34375 -11.140625 30.34375 -18.484375 C 30.34375 -22.421875 29.65625 -24.625 27.984375 -26.203125 C 26.5 -27.640625 24.484375 -28.21875 21.078125 -28.21875 C 19.96875 -28.21875 19.34375 -28.171875 18.234375 -28.078125 C 18.671875 -30.390625 19.015625 -32.15625 19.25 -33.546875 C 19.6875 -36.28125 19.828125 -37.109375 20.15625 -38.15625 L 16.3125 -38.59375 C 16.3125 -38.296875 16.3125 -38.0625 16.3125 -37.96875 C 16.3125 -35.953125 15.703125 -31.34375 14.875 -27.796875 C 10.984375 -27.171875 6 -26.59375 4.265625 -26.546875 Z M 32.96875 -29.421875 C 37.625 -24.671875 40.9375 -18.8125 42.765625 -12.1875 L 45.84375 -13.96875 C 43.578125 -20.734375 40.703125 -25.6875 35.8125 -30.953125 Z M 32.96875 -29.421875 "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-24">
+<path style="stroke:none;" d="M 15.265625 -34.796875 C 19.53125 -32.828125 19.53125 -32.828125 22.609375 -31.78125 C 25.828125 -30.625 25.828125 -30.625 31.96875 -29.046875 L 33.3125 -32.40625 C 28.078125 -33.21875 20.78125 -35.609375 17.046875 -37.734375 Z M 11.28125 -29.609375 C 11.234375 -28.75 11.1875 -28.375 10.9375 -27.078125 C 10.265625 -23.046875 9.40625 -17.46875 8.921875 -13.828125 C 8.734375 -12.28125 8.6875 -11.859375 8.546875 -10.984375 L 12.28125 -10.890625 C 13.109375 -11.953125 13.4375 -12.28125 14.203125 -12.859375 C 17.8125 -15.5 22.75 -17.046875 27.640625 -17.046875 C 33.5 -17.046875 36.953125 -14.734375 36.953125 -10.796875 C 36.953125 -5.90625 31.921875 -2.734375 24 -2.734375 C 19.96875 -2.734375 15.40625 -3.640625 11.765625 -5.140625 C 12.046875 -3.890625 12.09375 -3.265625 12.09375 -2.15625 C 12.09375 -1.96875 12.09375 -1.6875 12.046875 -1.25 C 14.96875 -0.53125 14.96875 -0.53125 15.890625 -0.28125 C 18.53125 0.28125 21.40625 0.578125 24.28125 0.578125 C 29.375 0.578125 33.171875 -0.4375 36.234375 -2.59375 C 38.921875 -4.515625 40.5625 -7.625 40.5625 -10.84375 C 40.5625 -16.46875 35.515625 -20.109375 27.703125 -20.109375 C 22.421875 -20.109375 17.140625 -18.53125 13.828125 -15.984375 C 13.296875 -15.546875 12.953125 -15.21875 12.34375 -14.546875 L 12.234375 -14.59375 C 12.34375 -15.03125 12.390625 -15.125 12.4375 -15.703125 C 12.578125 -16.796875 12.671875 -17.140625 13.828125 -24.09375 C 14.25 -26.734375 14.5 -27.890625 14.921875 -29.375 Z M 11.28125 -29.609375 "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-25">
+<path style="stroke:none;" d="M 7.4375 -12.09375 L 6.71875 -12.09375 C 4.75 -12.09375 3.359375 -12.1875 2.109375 -12.390625 L 2.109375 -9.125 C 3.546875 -9.3125 4.890625 -9.40625 6.671875 -9.40625 L 7.4375 -9.40625 L 7.4375 -1.484375 C 7.4375 0.625 7.34375 1.96875 7.15625 3.59375 L 10.84375 3.59375 C 10.65625 2.25 10.5625 0.8125 10.5625 -1.4375 L 10.5625 -9.40625 L 37.734375 -9.40625 L 37.734375 -1.203125 C 37.734375 0.09375 37.296875 0.390625 35.1875 0.390625 C 32.921875 0.390625 30.953125 0.234375 28.46875 -0.09375 C 28.890625 1.0625 29.046875 1.78125 29.1875 3.078125 C 30.765625 3.21875 32.453125 3.265625 34.03125 3.265625 C 39.640625 3.265625 40.796875 2.59375 40.796875 -0.625 L 40.796875 -9.40625 L 41.1875 -9.40625 C 43.015625 -9.40625 44.453125 -9.3125 45.796875 -9.125 L 45.796875 -12.390625 C 44.546875 -12.1875 43.203125 -12.09375 41.1875 -12.09375 L 40.796875 -12.09375 L 40.796875 -25.34375 C 40.796875 -27.171875 40.84375 -28.375 40.984375 -29.765625 C 39.84375 -29.609375 38.6875 -29.5625 36.625 -29.5625 L 25.15625 -29.5625 L 25.15625 -35.1875 L 40.46875 -35.1875 C 42.34375 -35.1875 44.015625 -35.09375 45.5 -34.890625 L 45.5 -38.203125 C 43.96875 -38.015625 42.53125 -37.921875 40.46875 -37.921875 L 8.015625 -37.921875 C 5.953125 -37.921875 4.375 -38.015625 2.96875 -38.203125 L 2.96875 -34.890625 C 4.46875 -35.09375 6.046875 -35.1875 8.015625 -35.1875 L 22.171875 -35.1875 L 22.171875 -29.5625 L 11.5625 -29.5625 C 9.5 -29.5625 8.40625 -29.609375 7.25 -29.765625 C 7.390625 -28.421875 7.4375 -26.96875 7.4375 -25.25 Z M 10.5625 -12.09375 L 10.5625 -18.390625 L 22.171875 -18.390625 L 22.171875 -12.09375 Z M 10.5625 -20.96875 L 10.5625 -26.875 L 22.171875 -26.875 L 22.171875 -20.96875 Z M 25.15625 -12.09375 L 25.15625 -18.390625 L 37.734375 -18.390625 L 37.734375 -12.09375 Z M 25.15625 -20.96875 L 25.15625 -26.875 L 37.734375 -26.875 L 37.734375 -20.96875 Z M 25.15625 -20.96875 "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-26">
+<path style="stroke:none;" d="M 5.71875 -30.8125 C 5.90625 -30.8125 6.140625 -30.859375 6.1875 -30.859375 C 6.28125 -30.859375 6.625 -30.859375 7.109375 -30.90625 C 13.34375 -31.34375 14.5 -31.484375 17.8125 -32.40625 C 15.078125 -30.046875 15.078125 -30.046875 13.484375 -28.125 C 9.3125 -22.9375 7.109375 -17.421875 7.109375 -12.140625 C 7.109375 -4.265625 12.34375 1.203125 19.875 1.203125 C 25.578125 1.203125 30.625 -2.0625 32.734375 -7.15625 C 33.984375 -10.078125 34.609375 -13.34375 34.609375 -16.9375 C 34.609375 -20.78125 34.171875 -23.328125 32.6875 -27.890625 C 35.8125 -22.078125 37.484375 -19.875 41.375 -16.375 L 42.28125 -15.546875 L 42.53125 -15.359375 L 43.34375 -14.640625 L 45.171875 -17.953125 C 42.859375 -19.0625 38.640625 -23.234375 36.484375 -26.59375 C 34.703125 -29.140625 32.78125 -32.828125 31.96875 -35.328125 L 28.515625 -34.171875 C 30.28125 -30.53125 31.484375 -24.234375 31.484375 -18.71875 C 31.484375 -14.640625 30.953125 -11.5625 29.765625 -8.734375 C 28.078125 -4.796875 24.09375 -2.15625 19.875 -2.15625 C 14.453125 -2.15625 10.421875 -6.34375 10.421875 -12 C 10.421875 -16.890625 12.625 -22.125 16.984375 -27.40625 C 19.015625 -29.859375 19.96875 -30.765625 22.609375 -32.59375 L 20.59375 -35.609375 C 18.8125 -34.75 13.25 -34.078125 7.921875 -34.078125 C 6.90625 -34.078125 6.484375 -34.125 5.65625 -34.21875 Z M 34.421875 -37.78125 C 35.8125 -36.28125 38.15625 -32.6875 39.3125 -30.140625 L 41.765625 -31.578125 C 40.3125 -34.421875 38.96875 -36.4375 36.8125 -39.03125 Z M 39.890625 -40.3125 C 41.71875 -38.15625 43.734375 -35.046875 44.78125 -32.78125 L 47.1875 -34.171875 C 45.59375 -37.203125 44.40625 -38.96875 42.1875 -41.609375 Z M 39.890625 -40.3125 "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-27">
+<path style="stroke:none;" d="M 5.328125 -26.78125 C 5.765625 -26.828125 6.046875 -26.828125 6.140625 -26.828125 C 6.140625 -26.828125 6.234375 -26.828125 6.34375 -26.828125 C 8.203125 -26.734375 8.640625 -26.734375 10.3125 -26.734375 C 12.09375 -26.734375 12.671875 -26.734375 13.625 -26.78125 C 11.859375 -17.375 8.15625 -6.4375 4.609375 -0.234375 L 8.109375 1.25 C 10.65625 -4.609375 12.046875 -8.25 13.625 -13.390625 C 14.921875 -17.765625 16.265625 -23.1875 16.984375 -26.96875 C 19.34375 -27.171875 22.65625 -27.59375 25.109375 -28.125 C 26.0625 -28.3125 26.0625 -28.3125 26.453125 -28.375 L 26.203125 -31.6875 C 23.90625 -30.90625 21.3125 -30.4375 17.5625 -30.046875 C 17.8125 -31.484375 17.953125 -32.15625 18.1875 -33.703125 C 18.765625 -37.109375 18.765625 -37.109375 19.0625 -38.25 L 15.265625 -38.640625 C 15.265625 -36.53125 15.171875 -35.71875 14.203125 -29.8125 C 12.8125 -29.71875 12.28125 -29.71875 11.328125 -29.71875 C 8.78125 -29.71875 6.859375 -29.859375 5.328125 -30.140625 Z M 41.5625 -24.4375 C 37.96875 -24.578125 37.25 -24.578125 36.34375 -24.578125 C 32.296875 -24.578125 29.1875 -24.1875 23.609375 -22.984375 L 23.953125 -19.734375 C 28.3125 -20.921875 31.6875 -21.359375 35.953125 -21.359375 C 37.96875 -21.359375 39.3125 -21.265625 41.609375 -21.03125 Z M 24.09375 -14.0625 C 21.546875 -10.796875 20.875 -9.3125 20.875 -7.15625 C 20.875 -2.40625 24.953125 0.046875 32.828125 0.046875 C 35.375 0.046875 38.15625 -0.1875 41.375 -0.765625 C 42.953125 -1.015625 42.953125 -1.015625 43.484375 -1.109375 L 43.15625 -4.703125 C 40.421875 -3.75 36.140625 -3.078125 32.546875 -3.078125 C 27.078125 -3.078125 24.140625 -4.609375 24.140625 -7.484375 C 24.140625 -8.640625 24.578125 -9.890625 25.34375 -10.890625 C 25.6875 -11.421875 25.828125 -11.5625 26.78125 -12.71875 Z M 24.09375 -14.0625 "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-28">
+<path style="stroke:none;" d="M 14.734375 -37.390625 C 15.03125 -36.625 15.078125 -36.390625 15.546875 -34.3125 C 16.84375 -28.078125 17.8125 -24.4375 19.0625 -20.921875 C 16.078125 -19.4375 14.59375 -18.484375 12.765625 -16.984375 C 9.9375 -14.6875 8.5 -11.90625 8.5 -8.828125 C 8.5 -5.046875 10.515625 -2.40625 14.453125 -0.953125 C 16.75 -0.09375 20.359375 0.34375 25.109375 0.34375 C 28.46875 0.34375 30.765625 0.1875 35.71875 -0.28125 L 37.34375 -0.484375 L 37.828125 -0.53125 C 38.359375 -0.578125 38.546875 -0.578125 39.265625 -0.578125 L 38.875 -4.5625 C 36.046875 -3.546875 30.671875 -2.921875 25.15625 -2.921875 C 15.75 -2.921875 12.046875 -4.65625 12.046875 -8.96875 C 12.046875 -12.953125 15.59375 -16.125 23.8125 -19.4375 C 28.03125 -21.125 34.890625 -23.328125 38.25 -24.09375 L 36.8125 -27.75 C 35.90625 -27.265625 35.421875 -27.078125 33.75 -26.453125 C 26.359375 -23.90625 24.765625 -23.28125 22.125 -22.171875 C 20.828125 -25.625 18.53125 -35.765625 18.53125 -38.0625 Z M 32.359375 -37.53125 C 33.75 -36.046875 36.046875 -32.453125 37.25 -29.90625 L 39.703125 -31.34375 C 38.203125 -34.171875 36.90625 -36.1875 34.75 -38.78125 Z M 37.828125 -40.125 C 39.640625 -37.921875 41.671875 -34.84375 42.71875 -32.59375 L 45.125 -33.9375 C 43.53125 -36.953125 42.34375 -38.734375 40.125 -41.421875 Z M 37.828125 -40.125 "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-29">
+<path style="stroke:none;" d="M 8.734375 -15.984375 C 10.171875 -16.65625 10.9375 -16.890625 13.875 -17.5625 C 19.578125 -18.90625 23.28125 -19.484375 26.5 -19.484375 C 32.296875 -19.484375 35.375 -17.140625 35.375 -12.765625 C 35.375 -8.5 32.0625 -4.84375 26.59375 -3.078125 C 23.859375 -2.15625 20.109375 -1.578125 17.140625 -1.578125 C 16.9375 -1.578125 16.75 -1.578125 16.46875 -1.625 C 17.234375 -0.140625 17.421875 0.34375 17.71875 1.6875 C 23.515625 0.953125 24.671875 0.765625 27.59375 -0.140625 C 34.265625 -2.25 38.59375 -7.15625 38.59375 -12.53125 C 38.59375 -14.5 38.0625 -16.46875 37.109375 -18 C 35.28125 -20.96875 31.875 -22.46875 26.921875 -22.46875 C 22.796875 -22.46875 18.578125 -21.84375 12.28125 -20.359375 C 9.3125 -19.625 9.078125 -19.578125 7.875 -19.484375 Z M 8.734375 -15.984375 "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-30">
+<path style="stroke:none;" d="M 4.9375 -27.890625 C 7.296875 -28.421875 11.5625 -28.796875 21.5 -29.46875 C 26.828125 -29.8125 29.234375 -30.046875 32.0625 -30.53125 C 30.234375 -29.65625 28.984375 -28.984375 27.5 -27.984375 C 21.796875 -24.140625 18.53125 -18.8125 18.53125 -13.25 C 18.53125 -9.3125 20.453125 -5.765625 23.859375 -3.453125 C 26.59375 -1.578125 29.46875 -0.578125 34.21875 0.234375 C 34.984375 0.390625 35.1875 0.4375 35.71875 0.53125 L 36.34375 -3.359375 C 36.140625 -3.359375 35.953125 -3.359375 35.859375 -3.359375 C 34.03125 -3.359375 31.015625 -4.03125 28.65625 -4.890625 C 24.390625 -6.53125 21.9375 -9.75 21.9375 -13.78125 C 21.9375 -17.765625 24 -21.640625 27.84375 -24.859375 C 30.484375 -27.125 33.84375 -28.84375 37.0625 -29.71875 C 38.875 -30.140625 40.515625 -30.34375 42.4375 -30.34375 L 42.140625 -33.9375 C 41.375 -33.703125 39.125 -33.5 36.4375 -33.40625 C 30.234375 -33.125 14.875 -32.25 9.171875 -31.828125 C 7.6875 -31.734375 7.109375 -31.6875 6.4375 -31.6875 C 6.09375 -31.6875 5.609375 -31.6875 4.703125 -31.6875 Z M 4.9375 -27.890625 "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-31">
+<path style="stroke:none;" d="M 6.53125 -34.03125 C 6.625 -33.171875 6.625 -33.03125 6.671875 -31.203125 C 6.90625 -19.390625 7.578125 -13.25 9.265625 -8.6875 C 10.890625 -4.078125 13.390625 -1.390625 16.078125 -1.390625 C 19.484375 -1.390625 21.703125 -4.609375 24.046875 -13.015625 C 22.703125 -14.0625 22.265625 -14.5 21.21875 -15.75 C 20.59375 -12.484375 19.828125 -9.9375 18.71875 -7.53125 C 18 -5.953125 17.1875 -5.140625 16.3125 -5.140625 C 14.5 -5.140625 12.53125 -8.453125 11.46875 -13.34375 C 10.75 -16.421875 10.21875 -22.984375 10.21875 -28.265625 C 10.21875 -30.90625 10.3125 -32.5 10.5625 -33.984375 Z M 30.8125 -29.953125 C 36.4375 -23.421875 39.9375 -15.21875 40.796875 -6.28125 L 44.203125 -7.6875 C 43.34375 -13.0625 42.4375 -16.46875 40.609375 -20.5 C 38.828125 -24.578125 36.859375 -27.75 33.75 -31.4375 Z M 30.8125 -29.953125 "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-32">
+<path style="stroke:none;" d="M 29.71875 -38.6875 C 28.03125 -36.046875 22.03125 -30.4375 15.640625 -25.53125 C 12.140625 -22.84375 12.140625 -22.84375 11.5625 -22.265625 C 10.65625 -21.3125 10.171875 -20.203125 10.171875 -19.0625 C 10.171875 -17.421875 10.9375 -16.375 13.625 -14.25 C 20.640625 -8.78125 22.5625 -7.203125 25.78125 -4.21875 C 28.9375 -1.296875 30.8125 0.71875 31.96875 2.359375 L 34.984375 -0.625 C 34.46875 -1.0625 34.375 -1.109375 33.640625 -1.828125 C 26.59375 -8.5 25.25 -9.59375 18.28125 -14.921875 C 14.40625 -17.953125 14.015625 -18.28125 14.015625 -19.15625 C 14.015625 -19.828125 14.359375 -20.203125 16.125 -21.546875 C 22.171875 -26.203125 24.765625 -28.375 27.171875 -30.625 C 32.15625 -35.421875 32.546875 -35.765625 33.078125 -36.1875 Z M 29.71875 -38.6875 "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-33">
+<path style="stroke:none;" d="M 35.328125 -0.28125 C 34.609375 -1.53125 33.984375 -2.921875 32.78125 -5.8125 L 22.03125 -32.296875 C 20.828125 -35.234375 20.59375 -35.859375 20.40625 -36.765625 L 15.546875 -36.765625 C 15.3125 -35.671875 14.921875 -34.5625 14.015625 -32.296875 L 3.265625 -5.8125 C 1.96875 -2.59375 1.625 -1.875 0.671875 -0.28125 L 5.65625 -0.28125 C 6 -1.96875 6.4375 -3.359375 7.15625 -5.1875 L 9.640625 -11.375 L 26.40625 -11.375 L 28.890625 -5.1875 C 29.46875 -3.703125 30 -2.015625 30.390625 -0.28125 Z M 25.25 -14.6875 L 10.796875 -14.6875 L 16.9375 -30.53125 C 17.046875 -30.71875 17.1875 -31.25 17.46875 -32.015625 C 17.5625 -32.359375 17.765625 -32.875 18 -33.59375 C 18.90625 -30.953125 18.90625 -30.90625 19.0625 -30.53125 Z M 25.25 -14.6875 "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-34">
+<path style="stroke:none;" d="M 30.234375 -17.28125 L 30.234375 -19.4375 C 30.234375 -20.78125 30.28125 -21.796875 30.484375 -22.890625 L 27.171875 -22.890625 C 27.3125 -21.890625 27.40625 -20.6875 27.40625 -19.390625 L 27.40625 -17.28125 L 19.25 -17.28125 C 17.328125 -17.28125 15.84375 -17.375 14.5 -17.5625 L 14.5 -14.359375 C 15.796875 -14.546875 17.46875 -14.640625 19.25 -14.640625 L 26.546875 -14.640625 C 25.109375 -12.390625 23.765625 -10.796875 21.890625 -9.078125 C 19.25 -6.71875 16.125 -4.75 11.953125 -2.921875 C 12.8125 -2.15625 13.25 -1.625 14.015625 -0.390625 C 16.84375 -1.828125 19.25 -3.359375 21.546875 -5.328125 C 24.234375 -7.578125 25.6875 -9.265625 27.59375 -12.234375 C 27.453125 -9.59375 27.40625 -8.6875 27.40625 -7.34375 L 27.40625 -1.4375 C 27.40625 0.53125 27.3125 2.109375 27.125 3.40625 L 30.53125 3.40625 C 30.34375 2.0625 30.234375 0.578125 30.234375 -1.390625 L 30.234375 -7.390625 C 30.234375 -9.078125 30.1875 -10.265625 30.046875 -12.390625 C 32.0625 -9.59375 33.9375 -7.578125 36.234375 -5.65625 C 38.546875 -3.796875 41.90625 -1.625 44.875 -0.1875 C 45.453125 -1.578125 45.84375 -2.203125 46.703125 -3.171875 C 42.90625 -4.65625 39.703125 -6.4375 36.859375 -8.59375 C 34.421875 -10.5625 33.03125 -12 31.109375 -14.640625 L 40.84375 -14.640625 C 42.484375 -14.640625 44.203125 -14.546875 45.5 -14.40625 L 45.5 -17.5625 C 44.15625 -17.375 42.625 -17.28125 40.84375 -17.28125 Z M 31.484375 -35.28125 C 31.53125 -34.5625 31.53125 -34.21875 31.53125 -33.890625 L 31.53125 -25.734375 C 31.53125 -23.328125 32.640625 -22.84375 37.828125 -22.84375 C 41.375 -22.84375 42.90625 -23.09375 43.734375 -23.71875 C 44.5 -24.34375 44.96875 -25.875 45.171875 -28.265625 C 44.015625 -28.46875 43.34375 -28.703125 42.390625 -29.234375 C 42.390625 -28.03125 42.28125 -27.125 42.09375 -26.546875 C 41.8125 -25.6875 41.140625 -25.484375 38.734375 -25.484375 C 37.53125 -25.484375 35.671875 -25.53125 35.1875 -25.625 C 34.5625 -25.734375 34.3125 -26.015625 34.3125 -26.640625 L 34.3125 -33.9375 C 34.3125 -34.421875 34.3125 -34.703125 34.375 -35.28125 L 41.46875 -35.28125 L 41.46875 -30.234375 L 44.5 -30.234375 C 44.40625 -31.109375 44.359375 -31.875 44.359375 -33.125 L 44.359375 -34.703125 C 44.359375 -36.09375 44.40625 -37.109375 44.5 -38.015625 C 43.296875 -37.875 41.90625 -37.828125 39.03125 -37.828125 L 20.015625 -37.828125 C 17.8125 -37.828125 16.5625 -37.875 15.171875 -38.015625 C 15.265625 -37.015625 15.3125 -36.234375 15.3125 -34.9375 L 15.3125 -31.96875 C 15.3125 -31.015625 15.265625 -30.046875 15.171875 -29.1875 L 18.140625 -29.1875 L 18.140625 -35.28125 L 24.140625 -35.28125 C 23.859375 -30.90625 23.234375 -28.84375 21.453125 -26.828125 C 19.921875 -25.0625 17.8125 -23.859375 14.5 -22.9375 C 15.453125 -21.9375 15.84375 -21.359375 16.265625 -20.40625 C 19.96875 -21.75 22.171875 -23.234375 23.90625 -25.4375 C 25.734375 -27.796875 26.546875 -30.4375 26.96875 -35.28125 Z M 4.265625 -37.296875 C 7.4375 -35.09375 9.359375 -33.3125 11.859375 -30.1875 L 13.828125 -32.6875 C 11.234375 -35.515625 9.359375 -37.15625 6.234375 -39.453125 Z M 2.015625 -25.578125 C 5.375 -23.5625 7.296875 -21.984375 10.3125 -18.953125 L 12.1875 -21.59375 C 9.125 -24.390625 7.015625 -25.921875 3.84375 -27.84375 Z M 9.9375 -14.40625 C 7.34375 -7.25 4.890625 -2.59375 2.296875 0.046875 L 5.140625 2.546875 C 5.859375 1.203125 5.859375 1.203125 6.34375 0.4375 C 8.640625 -3.453125 10.421875 -7.15625 12.484375 -12.53125 Z M 9.9375 -14.40625 "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-35">
+<path style="stroke:none;" d="M 7.25 -25.390625 C 7.96875 -25.484375 8.203125 -25.53125 9.125 -25.53125 C 15.453125 -25.625 21.453125 -26.109375 26.203125 -26.78125 C 26.5 -26.296875 26.5 -26.203125 27.03125 -25.203125 C 29.09375 -21.171875 30.28125 -19.203125 32.78125 -15.796875 C 30.765625 -16.84375 26.96875 -17.515625 22.84375 -17.515625 C 18.953125 -17.515625 16.078125 -16.984375 13.53125 -15.75 C 10.171875 -14.109375 8.109375 -11.09375 8.109375 -7.921875 C 8.109375 -6 8.875 -4.125 10.265625 -2.640625 C 12.484375 -0.34375 16.890625 0.953125 22.75 0.953125 C 27.5 0.953125 32.0625 0.140625 36.859375 -1.625 L 36.34375 -5.328125 C 32.734375 -3.453125 27.453125 -2.25 22.703125 -2.25 C 18.578125 -2.25 15.125 -3.078125 13.34375 -4.46875 C 12.1875 -5.421875 11.515625 -6.71875 11.515625 -8.203125 C 11.515625 -9.9375 12.53125 -11.65625 14.109375 -12.671875 C 16.265625 -14.015625 19.203125 -14.6875 23.234375 -14.6875 C 26.5 -14.6875 29.1875 -14.25 31.625 -13.4375 C 32.96875 -12.953125 33.640625 -12.53125 34.9375 -11.46875 L 38.15625 -13.296875 C 34.796875 -17.765625 31.25 -23.515625 29.515625 -27.265625 C 30 -27.359375 30 -27.359375 31.15625 -27.59375 C 34.171875 -28.171875 34.75 -28.3125 37.625 -29.09375 C 39.078125 -29.46875 39.453125 -29.5625 40.46875 -29.765625 L 39.984375 -33.171875 C 37.390625 -32.0625 33.03125 -30.90625 28.375 -30.140625 C 27.9375 -31.0625 27.796875 -31.296875 26.640625 -34.375 C 25.4375 -37.4375 25.4375 -37.4375 25.25 -38.6875 L 21.453125 -38.15625 C 21.890625 -37.296875 22.171875 -36.625 22.703125 -35.375 C 23.5625 -33.21875 24.34375 -31.296875 25.0625 -29.65625 C 20.546875 -29.046875 15.125 -28.65625 10.75 -28.65625 C 9.125 -28.65625 8.296875 -28.703125 7.0625 -28.890625 Z M 7.25 -25.390625 "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-36">
+<path style="stroke:none;" d="M 7.625 -0.28125 C 7.390625 -2.203125 7.296875 -3.5 7.296875 -5.71875 L 7.296875 -15.125 C 7.296875 -16.375 8.015625 -18.625 8.875 -19.921875 C 10.375 -22.21875 12.671875 -23.5625 15.171875 -23.5625 C 18.625 -23.5625 20.546875 -21.265625 20.546875 -17.046875 L 20.546875 -5.71875 C 20.546875 -3.265625 20.453125 -2.015625 20.203125 -0.28125 L 24.53125 -0.28125 C 24.28125 -1.921875 24.1875 -3.265625 24.1875 -5.65625 L 24.1875 -15.125 C 24.1875 -16.5625 24.859375 -18.671875 25.78125 -20.0625 C 27.171875 -22.265625 29.421875 -23.5625 31.828125 -23.5625 C 35.671875 -23.5625 37.34375 -21.59375 37.34375 -17.046875 L 37.34375 -5.71875 C 37.34375 -3.171875 37.296875 -2.0625 37.015625 -0.28125 L 41.328125 -0.28125 C 41.09375 -1.96875 40.984375 -3.265625 40.984375 -5.65625 L 40.984375 -17.515625 C 40.984375 -20.359375 40.515625 -22.21875 39.359375 -23.765625 C 37.921875 -25.6875 35.515625 -26.6875 32.359375 -26.6875 C 28.3125 -26.6875 25.734375 -25.15625 23.46875 -21.453125 C 22.984375 -22.890625 22.703125 -23.46875 21.984375 -24.234375 C 20.546875 -25.875 18.53125 -26.6875 15.796875 -26.6875 C 13.015625 -26.6875 10.65625 -25.828125 9.03125 -24.1875 C 8.0625 -23.1875 7.625 -22.609375 7.203125 -21.796875 C 7.25 -22.703125 7.296875 -23.28125 7.296875 -23.515625 L 7.296875 -26.15625 L 3.40625 -26.15625 C 3.640625 -24.4375 3.75 -23.140625 3.75 -20.734375 L 3.75 -5.71875 C 3.75 -3.453125 3.640625 -2.015625 3.40625 -0.28125 Z M 7.625 -0.28125 "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-37">
+<path style="stroke:none;" d="M 2.203125 -7.296875 C 5.8125 -4.3125 8.59375 -1.296875 11.65625 3.171875 L 14.359375 0.625 C 11.09375 -3.796875 8.640625 -6.390625 4.703125 -9.546875 Z M 2.203125 -7.296875 "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-38">
+<path style="stroke:none;" d="M 19.734375 -0.28125 C 27.078125 -0.28125 31.296875 -3.9375 31.296875 -10.375 C 31.296875 -13.4375 30.28125 -15.890625 28.3125 -17.5625 C 27.03125 -18.671875 25.875 -19.15625 23.65625 -19.578125 C 25.578125 -20.203125 26.453125 -20.640625 27.453125 -21.5 C 29.1875 -23.046875 30.046875 -25.15625 30.046875 -27.9375 C 30.046875 -33.59375 26.15625 -36.765625 19.203125 -36.765625 L 8.96875 -36.765625 C 6.1875 -36.765625 5.234375 -36.765625 3.75 -36.859375 C 4.03125 -35.140625 4.125 -33.84375 4.125 -31.78125 L 4.125 -6.09375 C 4.125 -3.3125 4.03125 -2.0625 3.703125 -0.140625 C 5.375 -0.234375 6.859375 -0.28125 8.96875 -0.28125 Z M 7.828125 -21.125 L 7.828125 -33.5 L 19.109375 -33.5 C 23.859375 -33.5 26.25 -31.484375 26.25 -27.5 C 26.25 -23.46875 23.609375 -21.125 19.15625 -21.125 Z M 7.828125 -17.859375 L 19.296875 -17.859375 C 24.625 -17.859375 27.40625 -15.40625 27.40625 -10.65625 C 27.40625 -6.046875 24.625 -3.546875 19.390625 -3.546875 L 7.828125 -3.546875 Z M 7.828125 -17.859375 "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-39">
+<path style="stroke:none;" d="M 14.875 -37.6875 C 15.171875 -36.90625 15.265625 -36.671875 15.703125 -34.65625 C 16.9375 -28.515625 17.859375 -25.15625 19.203125 -21.21875 C 16.21875 -19.734375 14.734375 -18.8125 12.90625 -17.328125 C 10.078125 -15.03125 8.640625 -12.234375 8.640625 -9.171875 C 8.640625 -5.375 10.65625 -2.734375 14.59375 -1.296875 C 16.890625 -0.4375 20.5 0 25.25 0 C 28.609375 0 30.90625 -0.140625 35.859375 -0.625 C 38.5 -0.90625 38.5 -0.90625 39.40625 -0.90625 L 39.03125 -4.890625 C 36.1875 -3.890625 30.8125 -3.265625 25.296875 -3.265625 C 15.890625 -3.265625 12.1875 -4.9375 12.1875 -9.3125 C 12.1875 -13.296875 15.75 -16.46875 23.953125 -19.734375 C 28.171875 -21.453125 35.046875 -23.65625 38.40625 -24.390625 L 36.953125 -28.03125 C 36 -27.546875 35.5625 -27.40625 33.890625 -26.78125 C 26.453125 -24.1875 25.109375 -23.65625 22.265625 -22.515625 C 20.640625 -27.3125 18.859375 -35.1875 18.671875 -38.40625 Z M 14.875 -37.6875 "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-40">
+<path style="stroke:none;" d="M 32.546875 -24.578125 L 28.3125 -24.578125 C 25.921875 -24.578125 24.28125 -24.671875 22.796875 -24.859375 L 22.796875 -21.40625 C 24.4375 -21.59375 26.203125 -21.703125 28.3125 -21.703125 L 32.546875 -21.703125 L 32.546875 -3.359375 C 32.546875 0.046875 32.453125 1.578125 32.203125 3.5 L 36.046875 3.5 C 35.765625 1.6875 35.671875 -0.28125 35.671875 -3.359375 L 35.671875 -21.703125 L 40.21875 -21.703125 C 42.625 -21.703125 44.203125 -21.59375 45.984375 -21.40625 L 45.984375 -24.859375 C 44.40625 -24.671875 42.8125 -24.578125 40.21875 -24.578125 L 35.671875 -24.578125 L 35.671875 -34.265625 C 35.671875 -36.34375 35.765625 -38.109375 36 -39.59375 L 32.203125 -39.59375 C 32.453125 -37.875 32.546875 -36.53125 32.546875 -34.265625 Z M 5.1875 -34.9375 C 6.234375 -35.09375 7.4375 -35.140625 9.078125 -35.140625 L 16.890625 -35.140625 C 18.53125 -35.140625 19.4375 -35.09375 20.6875 -34.9375 L 20.6875 -37.96875 C 19.53125 -37.78125 18.578125 -37.734375 16.890625 -37.734375 L 9.078125 -37.734375 C 7.34375 -37.734375 6.34375 -37.78125 5.1875 -37.96875 Z M 2.921875 -28.265625 C 4.265625 -28.46875 5.46875 -28.515625 7.0625 -28.515625 L 18.671875 -28.515625 C 20.40625 -28.515625 21.703125 -28.46875 22.84375 -28.265625 L 22.84375 -31.4375 C 21.75 -31.25 20.546875 -31.15625 18.671875 -31.15625 L 7.109375 -31.15625 C 5.375 -31.15625 4.21875 -31.25 2.921875 -31.4375 Z M 5.234375 -21.75 C 6.34375 -21.890625 7.109375 -21.9375 8.6875 -21.9375 L 17.234375 -21.9375 C 18.765625 -21.9375 19.390625 -21.890625 20.640625 -21.75 L 20.640625 -24.671875 C 19.578125 -24.53125 18.859375 -24.484375 17.234375 -24.484375 L 8.6875 -24.484375 C 7.015625 -24.484375 6.234375 -24.53125 5.234375 -24.671875 Z M 5.234375 -15.125 C 6.34375 -15.265625 7.0625 -15.3125 8.6875 -15.3125 L 17.234375 -15.3125 C 18.859375 -15.3125 19.484375 -15.265625 20.640625 -15.125 L 20.640625 -18.046875 C 19.578125 -17.90625 18.859375 -17.859375 17.234375 -17.859375 L 8.6875 -17.859375 C 6.953125 -17.859375 6.1875 -17.90625 5.234375 -18.046875 Z M 8.640625 1.0625 L 17.765625 1.0625 L 17.765625 2.921875 L 20.96875 2.921875 C 20.78125 1.734375 20.6875 0.484375 20.6875 -1.15625 L 20.6875 -7.484375 C 20.6875 -9.3125 20.734375 -10.21875 20.875 -11.328125 C 19.921875 -11.234375 19.015625 -11.1875 17.609375 -11.1875 L 8.828125 -11.1875 C 7.296875 -11.1875 6.53125 -11.234375 5.46875 -11.375 C 5.65625 -10.125 5.71875 -9.03125 5.71875 -7.4375 L 5.71875 -1.0625 C 5.71875 0.765625 5.609375 2.15625 5.421875 3.546875 L 8.640625 3.546875 Z M 8.59375 -8.59375 L 17.8125 -8.59375 L 17.8125 -1.484375 L 8.59375 -1.484375 Z M 8.59375 -8.59375 "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-41">
+<path style="stroke:none;" d="M 13.53125 -33.84375 C 14.5 -32.40625 15.3125 -30.953125 16.21875 -28.9375 L 18.8125 -30 C 18.046875 -31.34375 17.328125 -32.5 16.375 -33.84375 L 18.953125 -33.84375 C 20.96875 -33.84375 22.265625 -33.796875 23.515625 -33.640625 L 23.515625 -36.671875 C 22.375 -36.484375 21.03125 -36.390625 18.8125 -36.390625 L 11.421875 -36.390625 C 12.046875 -37.484375 12.390625 -38.109375 13.15625 -39.703125 L 10.125 -40.703125 C 9.40625 -38.546875 8.78125 -37.203125 7.390625 -35.234375 C 5.90625 -32.96875 4.703125 -31.6875 2.453125 -29.65625 C 3.40625 -29.046875 3.9375 -28.515625 4.703125 -27.546875 C 6.625 -29.421875 8.203125 -31.34375 9.890625 -33.84375 Z M 32.296875 -33.84375 C 33.5 -32.15625 34.171875 -31.015625 35.140625 -29.046875 L 37.6875 -30.140625 C 36.859375 -31.484375 36.234375 -32.40625 35.234375 -33.84375 L 40.265625 -33.84375 C 42.234375 -33.84375 43.828125 -33.75 45.265625 -33.59375 L 45.265625 -36.671875 C 43.875 -36.484375 42.53125 -36.390625 40.265625 -36.390625 L 29.46875 -36.390625 C 30.1875 -37.6875 30.484375 -38.296875 31.15625 -39.75 L 28.265625 -40.75 C 26.921875 -36.671875 24.8125 -33.40625 21.703125 -30.625 C 22.796875 -30.046875 23.234375 -29.71875 24.046875 -28.9375 C 25.578125 -30.484375 26.546875 -31.734375 27.984375 -33.84375 Z M 29.375 -4.3125 L 29.375 -1.015625 C 29.375 1.0625 29.28125 2.453125 29.09375 3.546875 L 32.59375 3.546875 C 32.40625 2.203125 32.296875 0.8125 32.296875 -1.015625 L 32.296875 -4.3125 L 40.078125 -4.3125 C 42.234375 -4.3125 43.828125 -4.21875 45.359375 -4.03125 L 45.359375 -7.15625 C 44.15625 -6.953125 42.625 -6.859375 40.078125 -6.859375 L 32.296875 -6.859375 L 32.296875 -10.265625 L 33.984375 -10.265625 C 36.484375 -10.265625 38.015625 -10.21875 39.3125 -10.078125 C 39.171875 -11.140625 39.125 -12.34375 39.125 -15.078125 L 39.125 -23.328125 C 39.125 -25.6875 39.171875 -27.125 39.265625 -28.609375 C 37.78125 -28.46875 36.859375 -28.421875 34.265625 -28.421875 L 14.015625 -28.421875 C 11.765625 -28.421875 10.75 -28.46875 9.359375 -28.5625 C 9.453125 -27.21875 9.5 -25.828125 9.5 -23.609375 L 9.5 -14.96875 C 9.5 -12.390625 9.453125 -11.28125 9.3125 -10.078125 C 10.609375 -10.21875 12.140625 -10.265625 14.640625 -10.265625 L 16.375 -10.265625 C 16.3125 -8.0625 16.265625 -8.0625 16.125 -6.859375 L 8.015625 -6.859375 C 5.515625 -6.859375 4.078125 -6.953125 2.78125 -7.15625 L 2.78125 -4.03125 C 4.421875 -4.21875 5.90625 -4.3125 8.015625 -4.3125 L 15.453125 -4.3125 C 14.59375 -2.5 13.296875 -1.296875 11.046875 -0.34375 C 9.3125 0.4375 8.296875 0.71875 4.46875 1.4375 C 5.421875 2.40625 5.859375 2.96875 6.4375 4.078125 C 9.890625 3.265625 12.578125 2.25 14.546875 0.953125 C 16.46875 -0.34375 17.609375 -1.875 18.484375 -4.3125 Z M 19.109375 -6.859375 C 19.25 -8.0625 19.296875 -8.5 19.390625 -10.265625 L 29.375 -10.265625 L 29.375 -6.859375 Z M 12.28125 -26.0625 L 36.34375 -26.0625 L 36.34375 -23.09375 L 12.28125 -23.09375 Z M 12.28125 -20.828125 L 36.34375 -20.828125 L 36.34375 -17.859375 L 12.28125 -17.859375 Z M 12.28125 -15.59375 L 36.34375 -15.59375 L 36.34375 -12.578125 L 12.28125 -12.578125 Z M 12.28125 -15.59375 "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-42">
+<path style="stroke:none;" d="M 22.421875 -8.0625 L 22.421875 -5.328125 L 10.5625 -5.328125 C 8.59375 -5.328125 7.53125 -5.375 6.484375 -5.5625 L 6.484375 -2.828125 C 7.734375 -3.03125 8.734375 -3.078125 10.65625 -3.078125 L 22.421875 -3.078125 L 22.421875 -0.234375 L 7.625 -0.234375 C 5.421875 -0.234375 4.171875 -0.28125 2.734375 -0.53125 L 2.734375 2.359375 C 4.125 2.15625 5.609375 2.0625 7.625 2.0625 L 40.421875 2.0625 C 42.4375 2.0625 43.875 2.15625 45.3125 2.359375 L 45.3125 -0.53125 C 43.875 -0.28125 42.625 -0.234375 40.421875 -0.234375 L 25.203125 -0.234375 L 25.203125 -3.078125 L 37.78125 -3.078125 C 39.640625 -3.078125 40.65625 -3.03125 41.90625 -2.828125 L 41.90625 -5.5625 C 40.796875 -5.375 39.84375 -5.328125 37.875 -5.328125 L 25.203125 -5.328125 L 25.203125 -8.0625 L 34.984375 -8.0625 C 36.625 -8.0625 37.875 -8.015625 39.59375 -7.875 C 39.5 -8.640625 39.453125 -9.984375 39.453125 -11.71875 L 39.453125 -16.984375 C 39.453125 -18.34375 39.5 -19.25 39.59375 -20.15625 C 38.203125 -20.015625 36.953125 -19.96875 35.140625 -19.96875 L 13.15625 -19.96875 C 10.984375 -19.96875 9.546875 -20.015625 8.59375 -20.15625 C 8.6875 -19.0625 8.734375 -18.140625 8.734375 -16.84375 L 8.734375 -11.765625 C 8.734375 -9.703125 8.734375 -9.171875 8.59375 -7.875 C 9.984375 -8.015625 11.234375 -8.0625 13.203125 -8.0625 Z M 22.421875 -17.8125 L 22.421875 -15.078125 L 11.46875 -15.078125 L 11.46875 -17.8125 Z M 25.203125 -17.8125 L 36.71875 -17.8125 L 36.71875 -15.078125 L 25.203125 -15.078125 Z M 22.421875 -13.015625 L 22.421875 -10.21875 L 11.46875 -10.21875 L 11.46875 -13.015625 Z M 25.203125 -13.015625 L 36.71875 -13.015625 L 36.71875 -10.21875 L 25.203125 -10.21875 Z M 35.5625 -27.21875 C 38.359375 -27.21875 39.171875 -27.171875 40.375 -27.078125 C 40.21875 -28.3125 40.171875 -29.328125 40.171875 -30.71875 L 40.171875 -35.09375 C 40.171875 -36.578125 40.21875 -37.484375 40.375 -38.546875 C 39.03125 -38.40625 37.828125 -38.359375 35.71875 -38.359375 L 12.484375 -38.359375 C 10.421875 -38.359375 9.125 -38.40625 7.734375 -38.546875 C 7.875 -37.4375 7.921875 -36.53125 7.921875 -35.09375 L 7.921875 -30.71875 C 7.921875 -29.046875 7.875 -28.125 7.734375 -27.078125 C 8.875 -27.171875 9.796875 -27.21875 12.484375 -27.21875 Z M 10.65625 -36.1875 L 37.4375 -36.1875 L 37.4375 -33.84375 L 10.65625 -33.84375 Z M 10.65625 -31.78125 L 37.390625 -31.78125 L 37.390625 -29.328125 L 10.65625 -29.328125 Z M 2.734375 -22.21875 C 3.984375 -22.421875 5.140625 -22.46875 7.484375 -22.46875 L 40.609375 -22.46875 C 43.015625 -22.46875 44.0625 -22.421875 45.3125 -22.21875 L 45.3125 -25.0625 C 44.015625 -24.859375 42.578125 -24.8125 40.5625 -24.8125 L 7.484375 -24.8125 C 5.46875 -24.8125 4.03125 -24.859375 2.734375 -25.0625 Z M 2.734375 -22.21875 "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-43">
+<path style="stroke:none;" d="M 19.109375 -37.484375 C 9.03125 -37.484375 2.5 -30.046875 2.5 -18.53125 C 2.5 -6.953125 8.921875 0.4375 19.0625 0.4375 C 29.1875 0.4375 35.671875 -6.953125 35.671875 -18.53125 C 35.671875 -30.09375 29.234375 -37.484375 19.109375 -37.484375 Z M 19.15625 -2.96875 C 11.46875 -2.96875 6.390625 -9.171875 6.390625 -18.578125 C 6.390625 -27.984375 11.421875 -34.125 19.109375 -34.125 C 22.421875 -34.125 25.296875 -32.96875 27.5 -30.8125 C 30.28125 -28.03125 31.734375 -23.8125 31.734375 -18.53125 C 31.734375 -13.390625 30.1875 -8.921875 27.453125 -6.234375 C 25.296875 -4.078125 22.46875 -2.96875 19.15625 -2.96875 Z M 19.15625 -2.96875 "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-44">
+<path style="stroke:none;" d="M 15.703125 5.71875 C 13.015625 1.578125 11.953125 -0.578125 10.890625 -3.984375 C 9.796875 -7.4375 9.265625 -11.09375 9.265625 -14.875 C 9.265625 -18.671875 9.796875 -22.265625 10.890625 -25.734375 C 11.953125 -29.140625 13.015625 -31.296875 15.703125 -35.421875 L 12.671875 -37.34375 C 9.890625 -33.078125 8.734375 -30.765625 7.578125 -27.359375 C 6.28125 -23.46875 5.609375 -19.34375 5.609375 -14.875 C 5.609375 -10.421875 6.28125 -6.28125 7.578125 -2.40625 C 8.734375 1.0625 9.890625 3.359375 12.671875 7.625 Z M 15.703125 5.71875 "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-45">
+<path style="stroke:none;" d="M 17.421875 -11.609375 L 28.984375 -11.609375 L 28.984375 -14.875 L 17.421875 -14.875 L 17.421875 -26.453125 L 14.0625 -26.453125 L 14.0625 -14.875 L 2.453125 -14.875 L 2.453125 -11.609375 L 14.0625 -11.609375 L 14.0625 0 L 17.421875 0 Z M 17.421875 -11.609375 "/>
+</symbol>
+<symbol overflow="visible" id="glyph3-46">
+<path style="stroke:none;" d="M 1.34375 -35.421875 C 4.03125 -31.296875 5.09375 -29.140625 6.140625 -25.734375 C 7.25 -22.265625 7.78125 -18.71875 7.78125 -14.875 C 7.78125 -11.046875 7.25 -7.4375 6.140625 -3.984375 C 5.09375 -0.578125 4.03125 1.578125 1.34375 5.71875 L 4.375 7.625 C 7.15625 3.359375 8.296875 1.0625 9.453125 -2.40625 C 10.796875 -6.28125 11.421875 -10.375 11.421875 -14.875 C 11.421875 -19.34375 10.796875 -23.46875 9.453125 -27.359375 C 8.296875 -30.765625 7.15625 -33.078125 4.375 -37.34375 Z M 1.34375 -35.421875 "/>
+</symbol>
+</g>
+</defs>
+<g id="surface1">
+<rect x="0" y="0" width="1515" height="2199" style="fill:rgb(100%,100%,100%);fill-opacity:1;stroke:none;"/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 133.117188 881.757812 C 155.535156 904.175781 155.535156 940.519531 133.117188 962.933594 C 110.699219 985.351562 74.355469 985.351562 51.9375 962.933594 C 29.523438 940.519531 29.523438 904.175781 51.9375 881.757812 C 74.355469 859.339844 110.699219 859.339844 133.117188 881.757812 "/>
+<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1203.372396 325.919271 C 1210.84375 333.391927 1210.84375 345.50651 1203.372396 352.977865 C 1195.89974 360.450521 1183.785156 360.450521 1176.3125 352.977865 C 1168.841146 345.50651 1168.841146 333.391927 1176.3125 325.919271 C 1183.785156 318.446615 1195.89974 318.446615 1203.372396 325.919271 " transform="matrix(3,0,0,3,-3477,-96)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-1" x="66.29559" y="939.674003"/>
+  <use xlink:href="#glyph0-2" x="92.07159" y="939.674003"/>
+</g>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 358.824219 881.757812 C 381.242188 904.175781 381.242188 940.519531 358.824219 962.933594 C 336.410156 985.351562 300.0625 985.351562 277.648438 962.933594 C 255.230469 940.519531 255.230469 904.175781 277.648438 881.757812 C 300.0625 859.339844 336.410156 859.339844 358.824219 881.757812 "/>
+<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1278.608073 325.919271 C 1286.080729 333.391927 1286.080729 345.50651 1278.608073 352.977865 C 1271.135417 360.450521 1259.020833 360.450521 1251.549479 352.977865 C 1244.076823 345.50651 1244.076823 333.391927 1251.549479 325.919271 C 1259.020833 318.446615 1271.135417 318.446615 1278.608073 325.919271 " transform="matrix(3,0,0,3,-3477,-96)"/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 247.917969 732.9375 C 270.335938 755.355469 270.335938 791.699219 247.917969 814.117188 C 225.503906 836.53125 189.160156 836.53125 166.742188 814.117188 C 144.324219 791.699219 144.324219 755.355469 166.742188 732.9375 C 189.160156 710.523438 225.503906 710.523438 247.917969 732.9375 "/>
+<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1241.640625 276.3125 C 1249.111979 283.785156 1249.111979 295.89974 1241.640625 303.372396 C 1234.167969 310.845052 1222.053385 310.845052 1214.580729 303.372396 C 1207.108073 295.89974 1207.108073 283.785156 1214.580729 276.3125 C 1222.053385 268.841146 1234.167969 268.841146 1241.640625 276.3125 " transform="matrix(3,0,0,3,-3477,-96)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1216.421875 304.99349 L 1201.53125 324.296875 " transform="matrix(3,0,0,3,-3477,-96)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1239.545573 305.186198 L 1253.644531 324.104167 " transform="matrix(3,0,0,3,-3477,-96)"/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 247.917969 1030.574219 C 270.335938 1052.992188 270.335938 1089.339844 247.917969 1111.753906 C 225.503906 1134.171875 189.160156 1134.171875 166.742188 1111.753906 C 144.324219 1089.339844 144.324219 1052.992188 166.742188 1030.574219 C 189.160156 1008.160156 225.503906 1008.160156 247.917969 1030.574219 "/>
+<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1241.640625 375.526042 C 1249.111979 382.997396 1249.111979 395.111979 1241.640625 402.584635 C 1234.167969 410.057292 1222.053385 410.057292 1214.580729 402.584635 C 1207.108073 395.111979 1207.108073 382.997396 1214.580729 375.526042 C 1222.053385 368.053385 1234.167969 368.053385 1241.640625 375.526042 " transform="matrix(3,0,0,3,-3477,-96)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-1" x="181.0987" y="1088.493003"/>
+  <use xlink:href="#glyph0-3" x="206.8747" y="1088.493003"/>
+</g>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 464.769531 1030.574219 C 487.1875 1052.992188 487.1875 1089.339844 464.769531 1111.753906 C 442.351562 1134.171875 406.007812 1134.171875 383.59375 1111.753906 C 361.175781 1089.339844 361.175781 1052.992188 383.59375 1030.574219 C 406.007812 1008.160156 442.351562 1008.160156 464.769531 1030.574219 "/>
+<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1313.923177 375.526042 C 1321.395833 382.997396 1321.395833 395.111979 1313.923177 402.584635 C 1306.450521 410.057292 1294.335938 410.057292 1286.864583 402.584635 C 1279.391927 395.111979 1279.391927 382.997396 1286.864583 375.526042 C 1294.335938 368.053385 1306.450521 368.053385 1313.923177 375.526042 " transform="matrix(3,0,0,3,-3477,-96)"/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 358.824219 1199.945312 C 381.242188 1222.363281 381.242188 1258.707031 358.824219 1281.125 C 336.410156 1303.542969 300.0625 1303.542969 277.648438 1281.125 C 255.230469 1258.707031 255.230469 1222.363281 277.648438 1199.945312 C 300.0625 1177.53125 336.410156 1177.53125 358.824219 1199.945312 "/>
+<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1278.608073 431.981771 C 1286.080729 439.454427 1286.080729 451.56901 1278.608073 459.041667 C 1271.135417 466.514323 1259.020833 466.514323 1251.549479 459.041667 C 1244.076823 451.56901 1244.076823 439.454427 1251.549479 431.981771 C 1259.020833 424.510417 1271.135417 424.510417 1278.608073 431.981771 " transform="matrix(3,0,0,3,-3477,-96)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-1" x="292.0043" y="1257.863403"/>
+  <use xlink:href="#glyph0-4" x="317.7803" y="1257.863403"/>
+</g>
+<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1352.191406 429.384115 C 1359.66276 436.855469 1359.66276 448.971354 1352.191406 456.442708 C 1344.71875 463.915365 1332.604167 463.915365 1325.13151 456.442708 C 1317.658854 448.971354 1317.658854 436.855469 1325.13151 429.384115 C 1332.604167 421.911458 1344.71875 421.911458 1352.191406 429.384115 " transform="matrix(3,0,0,3,-3477,-96)"/>
+<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(75.686646%,10.588074%,14.117432%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1313.923177 488.438802 C 1321.395833 495.911458 1321.395833 508.026042 1313.923177 515.498698 C 1306.450521 522.970052 1294.335938 522.970052 1286.864583 515.498698 C 1279.391927 508.026042 1279.391927 495.911458 1286.864583 488.438802 C 1294.335938 480.966146 1306.450521 480.966146 1313.923177 488.438802 " transform="matrix(3,0,0,3,-3477,-96)"/>
+<g style="fill:rgb(75.686646%,10.588074%,14.117432%);fill-opacity:1;">
+  <use xlink:href="#glyph0-5" x="410.8371" y="1399.561506"/>
+</g>
+<g style="fill:rgb(75.686646%,10.588074%,14.117432%);fill-opacity:1;">
+  <use xlink:href="#glyph0-1" x="397.9491" y="1454.9055"/>
+  <use xlink:href="#glyph0-6" x="423.7251" y="1454.9055"/>
+</g>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 910.730469 1370.734375 C 933.148438 1393.152344 933.148438 1429.496094 910.730469 1451.910156 C 888.3125 1474.328125 851.96875 1474.328125 829.554688 1451.910156 C 807.136719 1429.496094 807.136719 1393.152344 829.554688 1370.734375 C 851.96875 1348.316406 888.3125 1348.316406 910.730469 1370.734375 "/>
+<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1462.576823 488.911458 C 1470.049479 496.384115 1470.049479 508.498698 1462.576823 515.970052 C 1455.105469 523.442708 1442.989583 523.442708 1435.518229 515.970052 C 1428.045573 508.498698 1428.045573 496.384115 1435.518229 488.911458 C 1442.989583 481.438802 1455.105469 481.438802 1462.576823 488.911458 " transform="matrix(3,0,0,3,-3477,-96)"/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 799.824219 1519.550781 C 822.242188 1541.96875 822.242188 1578.3125 799.824219 1600.730469 C 777.410156 1623.148438 741.0625 1623.148438 718.648438 1600.730469 C 696.230469 1578.3125 696.230469 1541.96875 718.648438 1519.550781 C 741.0625 1497.136719 777.410156 1497.136719 799.824219 1519.550781 "/>
+<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1425.608073 538.518229 C 1433.080729 545.989583 1433.080729 558.104167 1425.608073 565.576823 C 1418.135417 573.049479 1406.020833 573.049479 1398.549479 565.576823 C 1391.076823 558.104167 1391.076823 545.989583 1398.549479 538.518229 C 1406.020833 531.045573 1418.135417 531.045573 1425.608073 538.518229 " transform="matrix(3,0,0,3,-3477,-96)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-1" x="733.0043" y="1577.469703"/>
+  <use xlink:href="#glyph0-7" x="758.7803" y="1577.469703"/>
+</g>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 1016.675781 1519.550781 C 1039.09375 1541.96875 1039.09375 1578.3125 1016.675781 1600.730469 C 994.257812 1623.148438 957.914062 1623.148438 935.496094 1600.730469 C 913.082031 1578.3125 913.082031 1541.96875 935.496094 1519.550781 C 957.914062 1497.136719 994.257812 1497.136719 1016.675781 1519.550781 "/>
+<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1497.891927 538.518229 C 1505.364583 545.989583 1505.364583 558.104167 1497.891927 565.576823 C 1490.420573 573.049479 1478.304688 573.049479 1470.833333 565.576823 C 1463.359375 558.104167 1463.359375 545.989583 1470.833333 538.518229 C 1478.304688 531.045573 1490.420573 531.045573 1497.891927 538.518229 " transform="matrix(3,0,0,3,-3477,-96)"/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 910.730469 1688.921875 C 933.148438 1711.339844 933.148438 1747.683594 910.730469 1770.101562 C 888.3125 1792.519531 851.96875 1792.519531 829.554688 1770.101562 C 807.136719 1747.683594 807.136719 1711.339844 829.554688 1688.921875 C 851.96875 1666.507812 888.3125 1666.507812 910.730469 1688.921875 "/>
+<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(75.686646%,10.588074%,14.117432%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1462.576823 594.973958 C 1470.049479 602.446615 1470.049479 614.561198 1462.576823 622.033854 C 1455.105469 629.50651 1442.989583 629.50651 1435.518229 622.033854 C 1428.045573 614.561198 1428.045573 602.446615 1435.518229 594.973958 C 1442.989583 587.502604 1455.105469 587.502604 1462.576823 594.973958 " transform="matrix(3,0,0,3,-3477,-96)"/>
+<g style="fill:rgb(75.686646%,10.588074%,14.117432%);fill-opacity:1;">
+  <use xlink:href="#glyph0-5" x="856.7978" y="1719.167806"/>
+</g>
+<g style="fill:rgb(75.686646%,10.588074%,14.117432%);fill-opacity:1;">
+  <use xlink:href="#glyph0-1" x="843.9098" y="1774.5118"/>
+  <use xlink:href="#glyph0-8" x="869.6858" y="1774.5118"/>
+</g>
+<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1591.71875 593.123698 C 1599.191406 600.596354 1599.191406 612.710938 1591.71875 620.183594 C 1584.246094 627.654948 1572.13151 627.654948 1564.658854 620.183594 C 1557.1875 612.710938 1557.1875 600.596354 1564.658854 593.123698 C 1572.13151 585.651042 1584.246094 585.651042 1591.71875 593.123698 " transform="matrix(3,0,0,3,-3477,-96)"/>
+<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1553.450521 649.580729 C 1560.923177 657.053385 1560.923177 669.167969 1553.450521 676.639323 C 1545.979167 684.111979 1533.864583 684.111979 1526.391927 676.639323 C 1518.919271 669.167969 1518.919271 657.053385 1526.391927 649.580729 C 1533.864583 642.108073 1545.979167 642.108073 1553.450521 649.580729 " transform="matrix(3,0,0,3,-3477,-96)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-1" x="1116.532" y="1910.658703"/>
+  <use xlink:href="#glyph0-9" x="1142.308" y="1910.658703"/>
+</g>
+<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1627.033854 646.981771 C 1634.50651 654.454427 1634.50651 666.56901 1627.033854 674.041667 C 1619.561198 681.514323 1607.446615 681.514323 1599.973958 674.041667 C 1592.502604 666.56901 1592.502604 654.454427 1599.973958 646.981771 C 1607.446615 639.510417 1619.561198 639.510417 1627.033854 646.981771 " transform="matrix(3,0,0,3,-3477,-96)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph1-1" x="1332.84" y="1894.1994"/>
+  <use xlink:href="#glyph1-2" x="1350.168" y="1894.1994"/>
+  <use xlink:href="#glyph1-3" x="1367.496" y="1894.1994"/>
+  <use xlink:href="#glyph1-3" x="1380.84" y="1894.1994"/>
+</g>
+<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1253.644531 354.792969 L 1239.545573 373.710938 " transform="matrix(3,0,0,3,-3477,-96)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1276.177083 355.039062 L 1289.295573 373.464844 " transform="matrix(3,0,0,3,-3477,-96)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1290.24349 405.279948 L 1275.227865 429.286458 " transform="matrix(3,0,0,3,-3477,-96)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1311.477865 404.654948 L 1327.576823 427.313802 " transform="matrix(3,0,0,3,-3477,-96)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1328.253906 458.973958 L 1310.800781 485.907552 " transform="matrix(3,0,0,3,-3477,-96)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1355.50651 451.997396 L 1432.201823 493.356771 " transform="matrix(3,0,0,3,-3477,-96)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1437.611979 517.785156 L 1423.514323 536.703125 " transform="matrix(3,0,0,3,-3477,-96)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1460.145833 518.03125 L 1473.264323 536.457031 " transform="matrix(3,0,0,3,-3477,-96)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1474.213542 568.272135 L 1459.196615 592.278646 " transform="matrix(3,0,0,3,-3477,-96)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1500.903646 561.674479 L 1561.648438 597.027344 " transform="matrix(3,0,0,3,-3477,-96)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1567.450521 622.494792 L 1550.658854 647.269531 " transform="matrix(3,0,0,3,-3477,-96)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1588.683594 622.657552 L 1603.010417 644.507812 " transform="matrix(3,0,0,3,-3477,-96)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-10" x="89.6537" y="1016.564003"/>
+  <use xlink:href="#glyph0-11" x="108.3257" y="1016.564003"/>
+  <use xlink:href="#glyph0-1" x="121.6697" y="1016.564003"/>
+  <use xlink:href="#glyph0-3" x="147.4457" y="1016.564003"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-10" x="210.3125" y="1165.383003"/>
+  <use xlink:href="#glyph0-11" x="228.9845" y="1165.383003"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph2-1" x="242.3285" y="1165.383003"/>
+</g>
+<g style="fill:rgb(75.686646%,10.588074%,14.117432%);fill-opacity:1;">
+  <use xlink:href="#glyph0-10" x="317.916" y="1335.461903"/>
+  <use xlink:href="#glyph0-11" x="336.588" y="1335.461903"/>
+  <use xlink:href="#glyph0-12" x="349.932" y="1335.461903"/>
+  <use xlink:href="#glyph0-2" x="378.396" y="1335.461903"/>
+</g>
+<g style="fill:rgb(75.686646%,10.588074%,14.117432%);fill-opacity:1;">
+  <use xlink:href="#glyph0-10" x="302.2522" y="1655.776803"/>
+  <use xlink:href="#glyph0-11" x="320.9242" y="1655.776803"/>
+  <use xlink:href="#glyph0-1" x="334.2682" y="1655.776803"/>
+  <use xlink:href="#glyph0-6" x="360.0442" y="1655.776803"/>
+</g>
+<g style="fill:rgb(75.686646%,10.588074%,14.117432%);fill-opacity:1;">
+  <use xlink:href="#glyph0-10" x="749.512" y="1655.776803"/>
+  <use xlink:href="#glyph0-11" x="768.184" y="1655.776803"/>
+  <use xlink:href="#glyph0-1" x="781.528" y="1655.776803"/>
+  <use xlink:href="#glyph0-8" x="807.304" y="1655.776803"/>
+</g>
+<g style="fill:rgb(75.686646%,10.588074%,14.117432%);fill-opacity:1;">
+  <use xlink:href="#glyph0-10" x="743.3845" y="1989.674503"/>
+  <use xlink:href="#glyph0-11" x="762.0565" y="1989.674503"/>
+  <use xlink:href="#glyph0-12" x="775.4005" y="1989.674503"/>
+  <use xlink:href="#glyph0-3" x="803.8645" y="1989.674503"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-10" x="1143.974" y="1989.674503"/>
+  <use xlink:href="#glyph0-11" x="1162.646" y="1989.674503"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph2-1" x="1175.99" y="1989.674503"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-13" x="208.4491" y="223.537003"/>
+  <use xlink:href="#glyph0-1" x="220.8811" y="223.537003"/>
+  <use xlink:href="#glyph0-10" x="246.6571" y="223.537003"/>
+  <use xlink:href="#glyph0-14" x="265.3291" y="223.537003"/>
+  <use xlink:href="#glyph0-15" x="293.7931" y="223.537003"/>
+  <use xlink:href="#glyph0-11" x="306.2251" y="223.537003"/>
+  <use xlink:href="#glyph0-16" x="319.5691" y="223.537003"/>
+  <use xlink:href="#glyph0-11" x="330.2251" y="223.537003"/>
+  <use xlink:href="#glyph0-13" x="343.5691" y="223.537003"/>
+  <use xlink:href="#glyph0-17" x="356.0011" y="223.537003"/>
+  <use xlink:href="#glyph0-11" x="370.2091" y="223.537003"/>
+  <use xlink:href="#glyph0-10" x="383.5531" y="223.537003"/>
+  <use xlink:href="#glyph0-11" x="402.2251" y="223.537003"/>
+  <use xlink:href="#glyph0-18" x="415.5691" y="223.537003"/>
+  <use xlink:href="#glyph0-15" x="426.2251" y="223.537003"/>
+  <use xlink:href="#glyph0-11" x="438.6571" y="223.537003"/>
+  <use xlink:href="#glyph0-16" x="452.0011" y="223.537003"/>
+  <use xlink:href="#glyph0-11" x="462.6571" y="223.537003"/>
+  <use xlink:href="#glyph0-19" x="476.0011" y="223.537003"/>
+  <use xlink:href="#glyph0-11" x="516.9451" y="223.537003"/>
+  <use xlink:href="#glyph0-16" x="530.2891" y="223.537003"/>
+  <use xlink:href="#glyph0-11" x="540.9451" y="223.537003"/>
+  <use xlink:href="#glyph0-13" x="554.2891" y="223.537003"/>
+  <use xlink:href="#glyph0-20" x="566.7211" y="223.537003"/>
+  <use xlink:href="#glyph0-10" x="594.2731" y="223.537003"/>
+  <use xlink:href="#glyph0-21" x="612.9451" y="223.537003"/>
+  <use xlink:href="#glyph0-15" x="635.9851" y="223.537003"/>
+</g>
+<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1197.638021 181.723958 L 1652.384115 181.723958 " transform="matrix(3,0,0,3,-3477,-96)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1208.976562 160.976562 L 1208.976562 200.90625 " transform="matrix(3,0,0,3,-3477,-96)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1264.252604 168.96875 L 1264.252604 192.914062 " transform="matrix(3,0,0,3,-3477,-96)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1295.433594 168.96875 L 1295.433594 192.914062 " transform="matrix(3,0,0,3,-3477,-96)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1347.873698 167.550781 L 1347.873698 191.496094 " transform="matrix(3,0,0,3,-3477,-96)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1376.220052 167.550781 L 1376.220052 191.496094 " transform="matrix(3,0,0,3,-3477,-96)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1408.81901 167.550781 L 1408.81901 191.496094 " transform="matrix(3,0,0,3,-3477,-96)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1503.779948 160.976562 L 1503.779948 197.139323 " transform="matrix(3,0,0,3,-3477,-96)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-1" x="134.9152" y="558.273003"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-14" x="299.398" y="558.273003"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-17" x="400.0693" y="558.273003"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-18" x="559.1681" y="558.273003"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-19" x="629.0635" y="558.273003"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-20" x="733.5547" y="558.273003"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-21" x="1020.693" y="558.273003"/>
+</g>
+<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1218.875 192.265625 L 1254.352865 192.772135 " transform="matrix(3,0,0,3,-3477,-96)"/>
+<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1262.351562 192.886719 L 1254.395833 189.773438 L 1254.309896 195.772135 Z M 1262.351562 192.886719 " transform="matrix(3,0,0,3,-3477,-96)"/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 155.628906 480.457031 L 179.496094 489.796875 L 179.753906 471.800781 Z M 155.628906 480.457031 "/>
+<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1210.876302 192.152344 L 1218.833333 195.265625 L 1218.917969 189.266927 Z M 1210.876302 192.152344 " transform="matrix(3,0,0,3,-3477,-96)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1305.333333 192.914062 L 1337.973958 192.914062 " transform="matrix(3,0,0,3,-3477,-96)"/>
+<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1345.973958 192.914062 L 1337.973958 189.914062 L 1337.973958 195.914062 Z M 1345.973958 192.914062 " transform="matrix(3,0,0,3,-3477,-96)"/>
+<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1297.333333 192.914062 L 1305.333333 195.914062 L 1305.333333 189.914062 Z M 1297.333333 192.914062 " transform="matrix(3,0,0,3,-3477,-96)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1419.71875 190.903646 L 1493.880208 191.455729 " transform="matrix(3,0,0,3,-3477,-96)"/>
+<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1501.880208 191.515625 L 1493.902344 188.455729 L 1493.856771 194.455729 Z M 1501.880208 191.515625 " transform="matrix(3,0,0,3,-3477,-96)"/>
+<path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1411.71875 190.84375 L 1419.696615 193.903646 L 1419.740885 187.903646 Z M 1411.71875 190.84375 " transform="matrix(3,0,0,3,-3477,-96)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-1" x="121.5712" y="648.273003"/>
+  <use xlink:href="#glyph0-2" x="147.3472" y="648.273003"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-1" x="291.0239" y="648.273003"/>
+  <use xlink:href="#glyph0-3" x="316.7999" y="648.273003"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-1" x="380.9413" y="648.273003"/>
+  <use xlink:href="#glyph0-4" x="406.7173" y="648.273003"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-1" x="538.2641" y="648.273003"/>
+  <use xlink:href="#glyph0-6" x="564.0401" y="648.273003"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-1" x="623.3035" y="648.273003"/>
+  <use xlink:href="#glyph0-7" x="649.0795" y="648.273003"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-1" x="721.0987" y="648.273003"/>
+  <use xlink:href="#glyph0-8" x="746.8747" y="648.273003"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-1" x="1005.981" y="648.273003"/>
+  <use xlink:href="#glyph0-9" x="1031.757" y="648.273003"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph3-1" x="383.8502" y="89.019976"/>
+  <use xlink:href="#glyph3-2" x="431.8502" y="89.019976"/>
+  <use xlink:href="#glyph3-3" x="479.8502" y="89.019976"/>
+  <use xlink:href="#glyph3-4" x="527.8502" y="89.019976"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-11" x="575.8502" y="89.019976"/>
+  <use xlink:href="#glyph0-19" x="589.1942" y="89.019976"/>
+  <use xlink:href="#glyph0-22" x="630.1382" y="89.019976"/>
+  <use xlink:href="#glyph0-23" x="655.9142" y="89.019976"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-24" x="670.5542" y="89.019976"/>
+  <use xlink:href="#glyph0-22" x="698.1062" y="89.019976"/>
+</g>
+<g style="fill:rgb(75.686646%,10.588074%,14.117432%);fill-opacity:1;">
+  <use xlink:href="#glyph0-12" x="497.0461" y="313.537003"/>
+  <use xlink:href="#glyph0-2" x="525.5101" y="313.537003"/>
+</g>
+<g style="fill:rgb(75.686646%,10.588074%,14.117432%);fill-opacity:1;">
+  <use xlink:href="#glyph0-12" x="775.6563" y="309.674003"/>
+  <use xlink:href="#glyph0-3" x="804.1203" y="309.674003"/>
+</g>
+<g style="fill:rgb(75.686646%,10.588074%,14.117432%);fill-opacity:1;">
+  <use xlink:href="#glyph0-13" x="1080.076" y="223.537003"/>
+  <use xlink:href="#glyph0-25" x="1092.508" y="223.537003"/>
+  <use xlink:href="#glyph0-11" x="1119.196" y="223.537003"/>
+  <use xlink:href="#glyph0-10" x="1132.54" y="223.537003"/>
+  <use xlink:href="#glyph0-11" x="1151.212" y="223.537003"/>
+  <use xlink:href="#glyph0-26" x="1164.556" y="223.537003"/>
+  <use xlink:href="#glyph0-15" x="1193.02" y="223.537003"/>
+</g>
+<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(75.686646%,10.588074%,14.117432%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1332.165365 168.96875 L 1332.165365 192.914062 " transform="matrix(3,0,0,3,-3477,-96)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(75.686646%,10.588074%,14.117432%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1426.24349 167.550781 L 1426.24349 191.496094 " transform="matrix(3,0,0,3,-3477,-96)"/>
+<g style="fill:rgb(75.686646%,10.588074%,14.117432%);fill-opacity:1;">
+  <use xlink:href="#glyph0-25" x="511.2781" y="377.730003"/>
+</g>
+<g style="fill:rgb(75.686646%,10.588074%,14.117432%);fill-opacity:1;">
+  <use xlink:href="#glyph0-26" x="789.0003" y="377.730003"/>
+</g>
+<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(75.686646%,10.588074%,14.117432%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1339.640625 163.640625 L 1413.800781 164.192708 " transform="matrix(3,0,0,3,-3477,-96)"/>
+<path style="fill-rule:nonzero;fill:rgb(75.686646%,10.588074%,14.117432%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(75.686646%,10.588074%,14.117432%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1421.800781 164.252604 L 1413.822917 161.192708 L 1413.778646 167.192708 Z M 1421.800781 164.252604 " transform="matrix(3,0,0,3,-3477,-96)"/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(75.686646%,10.588074%,14.117432%);fill-opacity:1;" d="M 517.921875 394.746094 L 541.851562 403.921875 L 541.988281 385.925781 Z M 517.921875 394.746094 "/>
+<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(75.686646%,10.588074%,14.117432%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1331.640625 163.582031 L 1339.61849 166.640625 L 1339.661458 160.640625 Z M 1331.640625 163.582031 " transform="matrix(3,0,0,3,-3477,-96)"/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 340.484375 1524.511719 C 362.898438 1546.929688 362.898438 1583.273438 340.484375 1605.691406 C 318.066406 1628.109375 281.722656 1628.109375 259.304688 1605.691406 C 236.886719 1583.273438 236.886719 1546.929688 259.304688 1524.511719 C 281.722656 1502.097656 318.066406 1502.097656 340.484375 1524.511719 "/>
+<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(75.686646%,10.588074%,14.117432%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1272.49349 540.170573 C 1279.967448 547.643229 1279.967448 559.757812 1272.49349 567.230469 C 1265.022135 574.703125 1252.907552 574.703125 1245.434896 567.230469 C 1237.963542 559.757812 1237.963542 547.643229 1245.434896 540.170573 C 1252.907552 532.699219 1265.022135 532.699219 1272.49349 540.170573 " transform="matrix(3,0,0,3,-3477,-96)"/>
+<g style="fill:rgb(75.686646%,10.588074%,14.117432%);fill-opacity:1;">
+  <use xlink:href="#glyph0-12" x="272.3177" y="1582.430403"/>
+  <use xlink:href="#glyph0-2" x="300.7817" y="1582.430403"/>
+</g>
+<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(75.686646%,10.588074%,14.117432%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1313.923177 592.376302 C 1321.395833 599.847656 1321.395833 611.963542 1313.923177 619.434896 C 1306.450521 626.907552 1294.335938 626.907552 1286.864583 619.434896 C 1279.391927 611.963542 1279.391927 599.847656 1286.864583 592.376302 C 1294.335938 584.903646 1306.450521 584.903646 1313.923177 592.376302 " transform="matrix(3,0,0,3,-3477,-96)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-1" x="397.9491" y="1739.044603"/>
+  <use xlink:href="#glyph0-6" x="423.7251" y="1739.044603"/>
+</g>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 570.152344 1519.550781 C 592.570312 1541.96875 592.570312 1578.3125 570.152344 1600.730469 C 547.738281 1623.148438 511.394531 1623.148438 488.976562 1600.730469 C 466.558594 1578.3125 466.558594 1541.96875 488.976562 1519.550781 C 511.394531 1497.136719 547.738281 1497.136719 570.152344 1519.550781 "/>
+<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(75.686646%,10.588074%,14.117432%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1349.050781 538.518229 C 1356.523438 545.989583 1356.523438 558.104167 1349.050781 565.576823 C 1341.579427 573.049479 1329.463542 573.049479 1321.992188 565.576823 C 1314.519531 558.104167 1314.519531 545.989583 1321.992188 538.518229 C 1329.463542 531.045573 1341.579427 531.045573 1349.050781 538.518229 " transform="matrix(3,0,0,3,-3477,-96)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(75.686646%,10.588074%,14.117432%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1288.432292 516.904948 L 1270.925781 538.764323 " transform="matrix(3,0,0,3,-3477,-96)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(75.686646%,10.588074%,14.117432%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1311.382812 517.635417 L 1324.532552 536.380208 " transform="matrix(3,0,0,3,-3477,-96)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(75.686646%,10.588074%,14.117432%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1325.066406 568.076823 L 1310.848958 589.876302 " transform="matrix(3,0,0,3,-3477,-96)"/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 665.664062 1688.921875 C 688.082031 1711.339844 688.082031 1747.683594 665.664062 1770.101562 C 643.246094 1792.519531 606.902344 1792.519531 584.484375 1770.101562 C 562.070312 1747.683594 562.070312 1711.339844 584.484375 1688.921875 C 606.902344 1666.507812 643.246094 1666.507812 665.664062 1688.921875 "/>
+<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(75.686646%,10.588074%,14.117432%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1380.888021 594.973958 C 1388.359375 602.446615 1388.359375 614.561198 1380.888021 622.033854 C 1373.415365 629.50651 1361.300781 629.50651 1353.829427 622.033854 C 1346.355469 614.561198 1346.355469 602.446615 1353.829427 594.973958 C 1361.300781 587.502604 1373.415365 587.502604 1380.888021 594.973958 " transform="matrix(3,0,0,3,-3477,-96)"/>
+<g style="fill:rgb(75.686646%,10.588074%,14.117432%);fill-opacity:1;">
+  <use xlink:href="#glyph1-1" x="594.4028" y="1738.1758"/>
+  <use xlink:href="#glyph1-2" x="611.7308" y="1738.1758"/>
+  <use xlink:href="#glyph1-3" x="629.0588" y="1738.1758"/>
+  <use xlink:href="#glyph1-3" x="642.4028" y="1738.1758"/>
+</g>
+<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(75.686646%,10.588074%,14.117432%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1344.923177 568.717448 L 1357.957031 591.833333 " transform="matrix(3,0,0,3,-3477,-96)"/>
+<g style="fill:rgb(75.686646%,10.588074%,14.117432%);fill-opacity:1;">
+  <use xlink:href="#glyph0-10" x="421.3073" y="1825.855603"/>
+  <use xlink:href="#glyph0-11" x="439.9793" y="1825.855603"/>
+  <use xlink:href="#glyph0-1" x="453.3233" y="1825.855603"/>
+  <use xlink:href="#glyph0-7" x="479.0993" y="1825.855603"/>
+</g>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 799.824219 1844.945312 C 822.242188 1867.363281 822.242188 1903.707031 799.824219 1926.125 C 777.410156 1948.542969 741.0625 1948.542969 718.648438 1926.125 C 696.230469 1903.707031 696.230469 1867.363281 718.648438 1844.945312 C 741.0625 1822.53125 777.410156 1822.53125 799.824219 1844.945312 "/>
+<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(75.686646%,10.588074%,14.117432%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1425.608073 646.981771 C 1433.080729 654.454427 1433.080729 666.56901 1425.608073 674.041667 C 1418.135417 681.514323 1406.020833 681.514323 1398.549479 674.041667 C 1391.076823 666.56901 1391.076823 654.454427 1398.549479 646.981771 C 1406.020833 639.510417 1418.135417 639.510417 1425.608073 646.981771 " transform="matrix(3,0,0,3,-3477,-96)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-1" x="733.0043" y="1902.863403"/>
+  <use xlink:href="#glyph0-8" x="758.7803" y="1902.863403"/>
+</g>
+<path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(75.686646%,10.588074%,14.117432%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1496.615885 646.981771 C 1504.088542 654.454427 1504.088542 666.56901 1496.615885 674.041667 C 1489.144531 681.514323 1477.028646 681.514323 1469.557292 674.041667 C 1462.084635 666.56901 1462.084635 654.454427 1469.557292 646.981771 C 1477.028646 639.510417 1489.144531 639.510417 1496.615885 646.981771 " transform="matrix(3,0,0,3,-3477,-96)"/>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 910.730469 2008.527344 C 933.148438 2030.945312 933.148438 2067.289062 910.730469 2089.707031 C 888.3125 2112.125 851.96875 2112.125 829.554688 2089.707031 C 807.136719 2067.289062 807.136719 2030.945312 829.554688 2008.527344 C 851.96875 1986.113281 888.3125 1986.113281 910.730469 2008.527344 "/>
+<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(75.686646%,10.588074%,14.117432%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1462.576823 701.509115 C 1470.049479 708.981771 1470.049479 721.096354 1462.576823 728.56901 C 1455.105469 736.041667 1442.989583 736.041667 1435.518229 728.56901 C 1428.045573 721.096354 1428.045573 708.981771 1435.518229 701.509115 C 1442.989583 694.03776 1455.105469 694.03776 1462.576823 701.509115 " transform="matrix(3,0,0,3,-3477,-96)"/>
+<g style="fill:rgb(75.686646%,10.588074%,14.117432%);fill-opacity:1;">
+  <use xlink:href="#glyph0-12" x="842.5658" y="2066.446103"/>
+  <use xlink:href="#glyph0-3" x="871.0298" y="2066.446103"/>
+</g>
+<g style="fill:rgb(75.686646%,10.588074%,14.117432%);fill-opacity:1;">
+  <use xlink:href="#glyph0-10" x="896.4293" y="2142.202013"/>
+  <use xlink:href="#glyph0-11" x="915.1013" y="2142.202013"/>
+  <use xlink:href="#glyph0-1" x="928.4453" y="2142.202013"/>
+  <use xlink:href="#glyph0-9" x="954.2213" y="2142.202013"/>
+</g>
+<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 1103.113281 2008.527344 C 1125.53125 2030.945312 1125.53125 2067.289062 1103.113281 2089.707031 C 1080.699219 2112.125 1044.351562 2112.125 1021.9375 2089.707031 C 999.519531 2067.289062 999.519531 2030.945312 1021.9375 2008.527344 C 1044.351562 1986.113281 1080.699219 1986.113281 1103.113281 2008.527344 "/>
+<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(75.686646%,10.588074%,14.117432%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1526.704427 701.509115 C 1534.177083 708.981771 1534.177083 721.096354 1526.704427 728.56901 C 1519.233073 736.041667 1507.11849 736.041667 1499.645833 728.56901 C 1492.173177 721.096354 1492.173177 708.981771 1499.645833 701.509115 C 1507.11849 694.03776 1519.233073 694.03776 1526.704427 701.509115 " transform="matrix(3,0,0,3,-3477,-96)"/>
+<g style="fill:rgb(75.686646%,10.588074%,14.117432%);fill-opacity:1;">
+  <use xlink:href="#glyph1-1" x="1031.854" y="2057.7821"/>
+  <use xlink:href="#glyph1-2" x="1049.182" y="2057.7821"/>
+  <use xlink:href="#glyph1-3" x="1066.51" y="2057.7821"/>
+  <use xlink:href="#glyph1-3" x="1079.854" y="2057.7821"/>
+</g>
+<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(75.686646%,10.588074%,14.117432%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1437.959635 624.101562 L 1423.165365 644.914062 " transform="matrix(3,0,0,3,-3477,-96)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(75.686646%,10.588074%,14.117432%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1459.528646 624.516927 L 1472.605469 644.498698 " transform="matrix(3,0,0,3,-3477,-96)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(75.686646%,10.588074%,14.117432%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1472.951823 676.746094 L 1459.182292 698.804688 " transform="matrix(3,0,0,3,-3477,-96)"/>
+<path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(75.686646%,10.588074%,14.117432%);stroke-opacity:1;stroke-miterlimit:10;" d="M 1492.333333 677.268229 L 1503.928385 698.282552 " transform="matrix(3,0,0,3,-3477,-96)"/>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph0-12" x="816.73222" y="814.31082"/>
+  <use xlink:href="#glyph0-2" x="845.19622" y="814.31082"/>
+  <use xlink:href="#glyph0-11" x="871.88422" y="814.31082"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph3-4" x="885.22822" y="814.31082"/>
+  <use xlink:href="#glyph3-1" x="933.22822" y="814.31082"/>
+  <use xlink:href="#glyph3-2" x="981.22822" y="814.31082"/>
+  <use xlink:href="#glyph3-3" x="1029.22822" y="814.31082"/>
+  <use xlink:href="#glyph3-4" x="1077.22822" y="814.31082"/>
+  <use xlink:href="#glyph3-5" x="1125.22822" y="814.31082"/>
+  <use xlink:href="#glyph3-6" x="1173.22822" y="814.31082"/>
+  <use xlink:href="#glyph3-7" x="1221.22822" y="814.31082"/>
+  <use xlink:href="#glyph3-8" x="1269.22822" y="814.31082"/>
+  <use xlink:href="#glyph3-9" x="1317.22822" y="814.31082"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph3-10" x="816.73222" y="886.31088"/>
+  <use xlink:href="#glyph3-11" x="828.68422" y="886.31088"/>
+  <use xlink:href="#glyph3-12" x="858.34822" y="886.31088"/>
+  <use xlink:href="#glyph3-13" x="884.12422" y="886.31088"/>
+  <use xlink:href="#glyph3-14" x="912.34822" y="886.31088"/>
+  <use xlink:href="#glyph3-15" x="932.98822" y="886.31088"/>
+  <use xlink:href="#glyph3-9" x="951.80422" y="886.31088"/>
+  <use xlink:href="#glyph3-16" x="967.78822" y="886.31088"/>
+  <use xlink:href="#glyph3-17" x="1015.78822" y="886.31088"/>
+  <use xlink:href="#glyph3-18" x="1063.78822" y="886.31088"/>
+  <use xlink:href="#glyph3-10" x="1111.78822" y="886.31088"/>
+  <use xlink:href="#glyph3-11" x="1123.74022" y="886.31088"/>
+  <use xlink:href="#glyph3-12" x="1153.40422" y="886.31088"/>
+  <use xlink:href="#glyph3-13" x="1179.18022" y="886.31088"/>
+  <use xlink:href="#glyph3-14" x="1207.40422" y="886.31088"/>
+  <use xlink:href="#glyph3-15" x="1228.04422" y="886.31088"/>
+  <use xlink:href="#glyph3-9" x="1246.86022" y="886.31088"/>
+  <use xlink:href="#glyph3-19" x="1262.84422" y="886.31088"/>
+  <use xlink:href="#glyph3-20" x="1310.84422" y="886.31088"/>
+  <use xlink:href="#glyph3-9" x="1358.84422" y="886.31088"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph3-10" x="816.73222" y="958.31094"/>
+  <use xlink:href="#glyph3-11" x="828.68422" y="958.31094"/>
+  <use xlink:href="#glyph3-12" x="858.34822" y="958.31094"/>
+  <use xlink:href="#glyph3-13" x="884.12422" y="958.31094"/>
+  <use xlink:href="#glyph3-14" x="912.34822" y="958.31094"/>
+  <use xlink:href="#glyph3-15" x="932.98822" y="958.31094"/>
+  <use xlink:href="#glyph3-9" x="951.80422" y="958.31094"/>
+  <use xlink:href="#glyph3-21" x="967.78822" y="958.31094"/>
+  <use xlink:href="#glyph3-22" x="1015.78822" y="958.31094"/>
+  <use xlink:href="#glyph3-23" x="1063.78822" y="958.31094"/>
+  <use xlink:href="#glyph3-24" x="1111.78822" y="958.31094"/>
+  <use xlink:href="#glyph3-25" x="1159.78822" y="958.31094"/>
+  <use xlink:href="#glyph3-26" x="1207.78822" y="958.31094"/>
+  <use xlink:href="#glyph3-9" x="1255.78822" y="958.31094"/>
+  <use xlink:href="#glyph3-1" x="1271.77222" y="958.31094"/>
+  <use xlink:href="#glyph3-2" x="1319.77222" y="958.31094"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph3-3" x="816.73222" y="1030.310976"/>
+  <use xlink:href="#glyph3-8" x="864.73222" y="1030.310976"/>
+  <use xlink:href="#glyph3-27" x="912.73222" y="1030.310976"/>
+  <use xlink:href="#glyph3-28" x="960.73222" y="1030.310976"/>
+  <use xlink:href="#glyph3-29" x="1008.73222" y="1030.310976"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph3-30" x="1055.29222" y="1030.310976"/>
+  <use xlink:href="#glyph3-31" x="1103.29222" y="1030.310976"/>
+  <use xlink:href="#glyph3-32" x="1151.29222" y="1030.310976"/>
+  <use xlink:href="#glyph3-18" x="1199.29222" y="1030.310976"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph3-33" x="816.73222" y="1102.31103"/>
+  <use xlink:href="#glyph3-9" x="852.73222" y="1102.31103"/>
+  <use xlink:href="#glyph3-4" x="868.71622" y="1102.31103"/>
+  <use xlink:href="#glyph3-3" x="916.71622" y="1102.31103"/>
+  <use xlink:href="#glyph3-4" x="964.71622" y="1102.31103"/>
+  <use xlink:href="#glyph3-34" x="1012.71622" y="1102.31103"/>
+  <use xlink:href="#glyph3-35" x="1060.71622" y="1102.31103"/>
+  <use xlink:href="#glyph3-9" x="1108.71622" y="1102.31103"/>
+  <use xlink:href="#glyph3-36" x="1124.70022" y="1102.31103"/>
+  <use xlink:href="#glyph3-37" x="1169.38822" y="1102.31103"/>
+  <use xlink:href="#glyph3-38" x="1217.38822" y="1102.31103"/>
+  <use xlink:href="#glyph3-4" x="1251.56422" y="1102.31103"/>
+  <use xlink:href="#glyph3-3" x="1299.56422" y="1102.31103"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph3-4" x="816.73222" y="1174.31106"/>
+  <use xlink:href="#glyph3-34" x="864.73222" y="1174.31106"/>
+  <use xlink:href="#glyph3-35" x="912.73222" y="1174.31106"/>
+  <use xlink:href="#glyph3-8" x="960.73222" y="1174.31106"/>
+  <use xlink:href="#glyph3-9" x="1008.73222" y="1174.31106"/>
+  <use xlink:href="#glyph3-11" x="1024.71622" y="1174.31106"/>
+  <use xlink:href="#glyph3-9" x="1054.38022" y="1174.31106"/>
+  <use xlink:href="#glyph3-39" x="1070.36422" y="1174.31106"/>
+  <use xlink:href="#glyph3-16" x="1118.36422" y="1174.31106"/>
+  <use xlink:href="#glyph3-17" x="1166.36422" y="1174.31106"/>
+  <use xlink:href="#glyph3-39" x="1214.36422" y="1174.31106"/>
+  <use xlink:href="#glyph3-37" x="1262.36422" y="1174.31106"/>
+</g>
+<g style="fill:rgb(0%,0%,0%);fill-opacity:1;">
+  <use xlink:href="#glyph3-40" x="816.73222" y="1246.31112"/>
+  <use xlink:href="#glyph3-41" x="864.73222" y="1246.31112"/>
+  <use xlink:href="#glyph3-42" x="912.73222" y="1246.31112"/>
+  <use xlink:href="#glyph3-20" x="960.73222" y="1246.31112"/>
+  <use xlink:href="#glyph3-9" x="1008.73222" y="1246.31112"/>
+  <use xlink:href="#glyph3-43" x="1024.71622" y="1246.31112"/>
+  <use xlink:href="#glyph3-44" x="1062.87622" y="1246.31112"/>
+  <use xlink:href="#glyph3-36" x="1079.96422" y="1246.31112"/>
+  <use xlink:href="#glyph3-9" x="1124.65222" y="1246.31112"/>
+  <use xlink:href="#glyph3-45" x="1140.63622" y="1246.31112"/>
+  <use xlink:href="#glyph3-9" x="1172.12422" y="1246.31112"/>
+  <use xlink:href="#glyph3-11" x="1188.10822" y="1246.31112"/>
+  <use xlink:href="#glyph3-46" x="1217.77222" y="1246.31112"/>
+</g>
+</g>
+</svg>